Slashdot is powered by your submissions, so send in your scoop

 



Forgot your password?
typodupeerror

Comment Re: same same. (Score 1, Insightful) 221

I'm a home Arch linux user. It is a rolling release so I'm upgrading "all the time". It went almost always OK. I think I had only about 3 hiccups (i.e. I needed to resolve something non-trivial manually) in the last 10 years. It works just fine almost always. I'm not afraid to do an update :)
Government

Russian Spies Are Analyzing Data From China's WeChat App (nytimes.com) 17

An anonymous reader shared this report from The New York Times: Russian counterintelligence agents are analyzing data from the popular Chinese messaging and social media app WeChat to monitor people who might be in contact with Chinese spies, according to a Russian intelligence document obtained by The New York Times. The disclosure highlights the rising level of concern about Chinese influence in Russia as the two countries deepen their relationship. As Russia has become isolated from the West over its war in Ukraine, it has become increasingly reliant on Chinese money, companies and technology. But it has also faced what the document describes as increased Chinese espionage efforts.

The document indicates that the Russian domestic security agency, known as the F.S.B., pulls purloined data into an analytical tool known as "Skopishche" (a Russian word for a mob of people). Information from WeChat is among the data being analyzed, according to the document... One Western intelligence agency told The Times that the information in the document was consistent with what it knew about "Russian penetration of Chinese communications...." By design, [WeChat] does not use end-to-end encryption to protect user data. That is because the Chinese government exercises strict control over the app and relies on its weak security to monitor and censor speech. Foreign intelligence agencies can exploit that weakness, too...

WeChat was briefly banned in Russia in 2017, but access was restored after Tencent took steps to comply with laws requiring foreign digital platforms above a certain size to register as "organizers of information dissemination." The Times confirmed that WeChat is currently licensed by the government to operate in Russia. That license would require Tencent to store user data on Russian servers and to provide access to security agencies upon request.

Comment Re:I haven't read the paper (Score 1) 37

I did not read the paper. Only some comments based on the video: https://www.youtube.com/watch?...

If I understand it correctly; using references to recompute everything in a data dependency manner to save as much space as possible would lead only to space reduction of O(t*log(t)) when compared to space unconstrained algorithm (i.e. an algorithm which uses about as much space as time). This is the old result. They also shift "temporary" variables typically needed during an computation into the computation intermediate results. They combine storing and modification into the same memory using "roots of unity" number systems. I do not know them but a trivial example is swapping two variables using xor without a need for a temporary:
a = a xor b
b = b xor a
a = a xor b
(similar addition/subtraction trick is not used because it needs carry over in general)

Practical usefulness seems rather limited. We often care more about small computation time than small memory usage.

Comment Re:DRM (Score 1) 35

You are not the only one.
Though in my case it was more about their mandatory account creation and online checking with the mother ship at the game launch. There where bugs in it or problems with the server availability or whatever. It did not work well. I uninstalled the one game I had and decided not to buy anything Ubisoft related any more.

Comment It is not such a big deal (Score 3, Interesting) 31

The orbits below 400 km will clean themselves over time (at most few tens of years). Companies can make satellites a bit more aerodynamic, load them with enough fuel to maintain the orbit for the expected lifetime and continue launching without issues.
Other options are not feasible anyway. The clean space is a common good and there is little incentive for individual players not to pollute. Barring some international enforcement, space will get full of junk. The current political situation is not cooperative at the international level. The clean space enforcement is very unlikely.

Comment Not that much better than VP9 (Score 2) 46

My small test indicated that it is only about 20% smaller (though TFA claims 30%) and requires about 45% more CPU to decode when compared to VP9. Encoding is also many times slower than VP9. Both encoding and decoding were done on CPU (no HW support; ffmpeg; linux). AV1 may be more interesting later when it is better supported.

Comment Re:Sounds like they have two years to ask. (Score 3, Informative) 6

Don't be scared. You are not affected by CRA if you do not earn money on your open source software.

The CRA regulates commercial activity:
(10) This Regulation applies to economic operators only in relation to products with digital elements made available on the market, hence supplied for distribution or use on the Union market in the course of a commercial activity.
(10c) .. the provision of free and open-source software products that are not monetized by their manufacturers is not considered a commercial activity.
(10c) This Regulation does not apply to natural or legal persons who contribute source code to free and open-source products that are not under their responsibility.

Also non-profit organizations hosting open source are not under CRA. On the other side, commercial entities which profit from open source are responsible! These commercial entities are also responsible to publish vulnerabilities they find in open source and also the patches developed. In general, CRA seems to be more good than bad for open source.

More info. for non-layers is here: https://berthub.eu/articles/po...

Comment Re:We've seen this movie: VB & RoR (Score 1) 159

Cross compiling does not require anything that has anything to do with AI/LLMs anyway.

It does when the target language (like Rust) has ownership and borrowing which strongly favors your program to have a design suitable for linear (affine) type systems. The system must be redesigned to work idiomatically in Rust.

Comment Re:Cassiniâ"Huygens (Score 2) 54

It had only one wide angle camera. You would need about 3400 images to cover the sky when it was already there. You cannot do it in one time. The moons will move by the time you take all the images so you can miss some. Also you need to take a photo of each moon more times to be sure it is in orbit of Saturn. It does not make sense to do it when the probe is already there.
It might have found some while still far away when one picture can capture more space around Saturn.

Slashdot Top Deals

* UNIX is a Trademark of Bell Laboratories.

Working...