Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment Re:HÃ? (Score 1) 419

"So it's not completely insane to be concerned. They figure your personal odds of dying because of it to be one in a trillion, which most of us would say is too low to think about. But I can understand why a few people might say that even one-in-a-trillion (especially since it's repeated for everybody on the planet) is worth considering."

But it is insane to get into a car and drive to the protest since you are far more likely to die or cause a death then the launch...
In other words yes it is insane to worry about it.

Comment Re: One more in a crowded field (Score 1) 337

Yes and no. If you only include a basic "standard" library you are pretty much going to make the language useless. If your "standard" library includes things like widgets then it is a lot more likely to be useful.
Java had Swing which will not perfect worked as a cross platform gui.
For Swift on linux the best bet would probably be QT bindings so you can have a cross platform SDK.
Will QT make the effort to port to Swift?
Who knows.
Swift is not likely to flourish on systems besides IOS and OS/X who should do what really does not matter. Now if Apple had ported Cocca to the Linux and Windows you would have had something really interesting.

Comment Re:replacement = $2 mill? (Score 1) 456

simple
Things where simpler back then. a system to control all this was not in place a the time they made this. Some teacher had a bright kid and said, "let's see if we can have a computer control all the HVACs.
They had an Amiga which for the time was a very powerful computer "much more so than an x86 dos box running at best a 286" so they did it.
I would love to know how they are using radio links for this. DTFM over audio?
Today if they wanted to roll there own they could use some cheap wifi routers and maybe some aurdino clones and use a VPN to keep it all secure.

Comment Re:Hire That Programmer Immediately! (Score 1) 456

"diving through bad pointers would take out the entire system; and not meticulously free()ing every malloc() would lead to unrecoverable memory leaks which would... take out the entire system."

Ummm good programmers always free every malloc.
That is not really the issue without an mmu you can actually fragment memory over time.
Maybe the programer didn't use any dynamically allocated memory and just put everything on the stack? Frankly in most small embedded system you try and avoid alloc for that very reason.
Other option is the system just does a reset every x days.

Slashdot Top Deals

To the systems programmer, users and applications serve only to provide a test load.

Working...