Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Submission + - Software error caused Soyuz/Galileo failure 3

schwit1 writes: A report today in Russia says that the investigation into the Soyuz launch failure last week that while the Russian Fregat upper stage fired correctly in attempting to place the two Galileo GPS satellites into orbit, its software was programmed for the wrong orbit.

Comment Re:If you can be replaced for $10/hour... (Score 2) 441

There is something going on here that no one seems to be talking about: the collapse of markets.

Karl Marx made one chilling prediction: when the workers did not have the money to buy the goods they produced, markets would collapse and capitalism itself would collapse. Henry Ford beat Marx when he paid his workers an unheard of $5 a day, creating in a single stroke the blue collar middle class and a market for his own goods. And this made America an economic powerhouse, not just for it power to produce, but for its power to consume. Gaining entry into that market is sufficient to make other nations bend over backward. It is the main well of American soft power.

Until now.

With the growth of capital intensive, rather than labor intensive, manufacturing, the wealth from the manufacturing industry is concentrated in a few hands, and markets continue to shrink even as productive capacity grows. Marx has become relevant again. In the early 2000's, when I heard about the shenanigans in the banking industry, I pessimistically predicted that these idiots would make Marx relevant again. And they have. Now I'm afraid that our new aristocracy will make Lenin relevant again. And believe me, you don't want to make Lenin relevant.

So that means we are going to have to employ people, and pay them a decent wage. Yes, even those that are less than the best and brightest, because being less than bright, they will find stupid ways to make money, most of which will land them in jail. And we have a burgeoning prison industry that would love that, but the prison industry is bankrupting us. Where once we had employment for ditch diggers and farmhands, now those jobs are done by machines. So, yes, we need to find something that they can do, and pay them for it. And it would cost far less to employ the barely literate as street sweepers and park gardeners, with a decent wage, than to house them all in prisons.

If you think you are immune to this trend, please keep in mind that one of the main thrusts of high tech research now is AI. Medicine and law are already within the scope of work that can be partially automated by AI, but the goal is to produce systems that can produce code on demand. And then, we will all discover what the blue collar worker had been experiencing for decades.

But the one percent cannot support capitalism, certainly not when they're own markets are dying.

We need to figure this out. And soon.

Comment Zero sum (Score 1) 611

Of course in theory we should then get that back in lower prices of consumer goods, since the manufacturers will of course pass the lower marketing costs from not having to buy advertising everywhere on to us. In practice of course they will keep the money, which is why I say fuck 'em and I refuse to play their game and look at their ads.
Google

Google Expands Safe Browsing To Block Unwanted Downloads 106

An anonymous reader writes "Google today announced it is expanding its Safe Browsing service to protect users against malware that makes unexpected changes to your computer. Google says it will show a warning in Chrome whenever an attempt is made to trick you into downloading and installing such software. In the case of malware, PUA stands for Potentially Unwanted Application, which is also sometimes called Potentially Unwanted Program or PUP. In short, the broad terms encompass any downloads that the user does not want, typically because they display popups, show ads, install toolbars in the default browser, change the homepage or the search engine, run several processes in the background that slow down the PC, and so on."

Comment Re:memory management circa 2014 (Score 1) 637

Oh come on, you think your little niche is the whole world? A modern day "real programmer" wouldn't waste any time on a shitty 8bit processor.

I did my time in the 8bit 6502 days. I loved them. Those days are gone.

If you're not coding 64bit then you are stuck in the past. Tell yourself anything you want, but if you are still coding on a 8bit processor then you are horribly obsolete.

Comment Computing is bigger than any one language! (Score 1) 637

I'm no fan of Java-based curricula, for the same reason I'd be no fan of Fortran-based curricula. Computing isn't about one language. Each language and system shows you one hyperplane of a vast multidimensional space. The best programmers know lots of languages, and choose wisely among them — or even create new ones when appropriate.

In the production world, there are times where some C++ or Java code is appropriate ... and there are times when what you want is a couple of lines of shellscript and some pipes ... and there are times when the most sensible algorithm for something can't be neatly expressed in a language like C++ or Java, and really requires something like Common Lisp or Haskell. If you need to exploit multiple processors without getting bogged down in locking bullshit and race conditions, you're much better off using Go than Java.

(Just last night, at a meetup, I was talking with two bright young physicists who reported that their universities don't do a good enough job of teaching Fortran, which is the language they actually need to do their job. Scientific computing still relies heavily on Fortran, Matlab, and other languages well removed from what's trendy in the CS department — no matter if that CS department is in the Java, Haskell, or Python camp. But if you want to learn to write good Fortran, you basically need a mentor in the physics department with time to teach you.)

And there are times when the right thing to do is to create a new language, whether a domain-specific language or a new approach on general-purpose computing. There's a good reason Rob Pike came up with Sawzall, a logs-analysis DSL that compiles to arbitrarily parallel mapreduces; and then Go, a C-like systems language with a rocket engine of concurrency built in.

(And there's a good reason a lot of people adopting Go have been coming not from the C++/Java camps that the Go developers expected, but from Python and Ruby: because Go gives you the raw speed of a concurrent and native-compiled language, plus libraries designed by actual engineers, without a lot of the verbose bullshit of C++ or Java. Would I recommend Go as a first language? I'm not so sure about that ....)

What would an optimal computing curriculum look like? I have no freakin' clue. It would have to cover particular basics — variable binding, iteration, recursion, sequencing, data structures, libraries and APIs, concurrency — no matter what the language. But it can't leave its students thinking that one language is Intuitive and the other ones are Just Gratuitously Weird ... and that's too much of what I see from young programmers in industry today.

Social Networks

Hotel Charges Guests $500 For Bad Online Reviews 183

njnnja (2833511) writes In an incredibly misguided attempt to reduce the quantity of bad reviews (such as these), the Union Street Guest House, a hotel about 2 hours outside of New York City, had instituted a policy to charge groups such as wedding parties $500 for each bad review posted online. The policy has been removed from their webpage but the wayback machine has archived the policy. "If you have booked the Inn for a wedding or other type of event anywhere in the region and given us a deposit of any kind for guests to stay at USGH there will be a $500 fine that will be deducted from your deposit for every negative review of USGH placed on any internet site by anyone in your party and/or attending your wedding or event If you stay here to attend a wedding anywhere in the area and leave us a negative review on any internet site you agree to a $500. fine for each negative review."

Slashdot Top Deals

There are two ways to write error-free programs; only the third one works.

Working...