Become a fan of Slashdot on Facebook

 



Forgot your password?
typodupeerror
×

Comment Motofone F3 (Score 1) 313

The Motofone F3 is dirt cheap, light, compact and lasts long on a charge. It features an epaper display that is perfectly readable in full sunlight and is always on. It's quite convenient to be able to read the time without pressing the power button first. The disadvantage is that the segment display shows only a few letters at a time. If you want to do any amount of texting, it's too inconvenient.

Comment Apps crashing (Score 1) 484

I do have some apps crash, but that's the app developer's problem. Not much the OS vendor can do about that.

I've written a somewhat popular Android app and most of its crashes are either the fault of the runtime or of vendor specific customizations.

The Developer Console provides excellent reporting on both uncaught Java exceptions and crashes in native code. Most often, the Dalvik VM crashes during garbage collection. The Dalvik class loader is also flaky and has issues with multithreading that only got worked around in newer versions. I've also seen the libchromium crash inside my app from adverts delivered by Googles Admob service, which is somewhat scary from a security perspective.

Another issue is that apps using Googles compatibility library now crash on HTC devices running Android 4.1 as soon as the user presses the menu key. HTC is no longer providing updates and Google simply states that it's not their fault and therefore not their problem. Now thousands of app developers have to independently find out about the issue and work around it.

So when an app crashes, there's a good chance that it's not the fault of the app developer. On a brighter note, the ART VM used in Android 5 and newer seem to be rock solid.

Comment Re:capabilities? (Score 2) 83

AFAIK, Stingray is based on an IMSI catcher. It simulates a cell tower and gets cell phones in the area to connect to it by providing the strongest signal. It then records the data of all connected cell phones and forwards it to the network.

Since IMSI catchers are well understood, all this secrecy is a bit surprising. It makes speculation about additional capabilities plausible. It could use exploits in the modem software to install malware. Such malware could do all sorts of things like reading local files, including contacts, messages, browsing history and possibly passwords. It could also store files on the device. It could provide side channels for encrypted communication from https to WhatsApp calls. It could also turn on the microphone and camera. All this is pure speculation, but it seems plausible.

Comment Re:Don't forget Firefox Hello! (Score 1) 147

Videoconferencing from any device on the planet without installing any special software is bloat?

YES, in the same way that every user on the planet would probably want a calculator once in a while but that doesn't mean the browser needs to add one!

Firefox comes with a couple of calculators built in. It has since before it was called Firefox.

Comment Re:Still ARM11, still a crappy CPU (Score 1) 355

Yes they are. Most multimedia processing is parallelizable, and thus benefits greatly from SIMD instructions - for example, just about every CPU-based video codec ever. If you want an actual example, I wrote a high-performance edge detection algorithm for laser tracing, with its convolution cores written in optimized in SSE2 assembly, and am hoping to write a NEON version. It'll never run reasonably on the original Raspberry Pi because it's too underpowered to do it without SIMD (I didn't even bother writing a plain C version of the cores, because honestly any platforms without SSE2 or NEON are going to be too slow to use anyway).

Obviously you can use SIMD instructions for a lot more, but multimedia is the obvious example. And as I mentioned, the Pi makes up for it for standard codecs only with its GPU blob decoder, but that doesn't help you with anything that isn't video decoding (e.g. filtering).

Slashdot Top Deals

8 Catfish = 1 Octo-puss

Working...