Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror
×

Submission + - Bad Lockup Bug Plagues Linux

jones_supa writes: A hard to track system lockup bug seems to have appeared in the span of couple of most recent Linux kernel releases. Dave Jones of Red Hat was the one to first report his experience of frequent lockups with 3.18. Later he found out that the issue is present in 3.17 too. The problem was first suspected to be related to Xen. A patch dating back to 2005 was pushed for Xen to fix a vmalloc_fault() path that was similar to what was reported by Dave. The patch had a comment that read "the line below does not always work. Needs investigating!" But it looks like this issue was never properly investigated. Due to the nature of the bug and its difficulty in tracking down, testers might be finding multiple but similar bugs within the kernel. Linus even suggested taking a look in the watchdog code. He also concluded the Xen bug to be a different issue. The bug hunt continues in the Linux Kernel Mailing List.

Submission + - A Glimpse of Star War episode 7

Midnight Thunder writes: The Star Wars episode 7 trailer is now out. This is the first real opportunity to get a feeling of whether childhood dreams will be crushed or that Disney, with the help of JJ Abrams, is able to breath new life into the story, without making it feel like a merchandising excuse.

Submission + - Raspberry Pi and Coder by Google for beginners and kids (opensource.com)

Jason Hibbets writes: Coder is an experiment for Raspberry Pi, built by a small team of Googlers in New York. It converts a Raspberry Pi into a friendly environment for learning web programming. It is ideal for beginners and requires absolutely no experience with coding. Luis Ibanez, an engineer at Google, has written this getting started guide that shows how easy it is to set up Coder.

Comment Re:+ operator for string concat? (Score 1) 729

This is why I find JavaScript such a dangerous language. I mean, if you can fuck this up:


var a = "1";
var b = 1;
a + b; // gives you "11"

Imagine the crapfest a complex application would mean.

P.S: For any JS fanboy, here's the Python way of handling this:


TypeError: unsupported operand type(s) for +: 'int' and 'str'

Comment Is COOL a new acronym? (Score 1) 511

When you search for jobs for developers, Java/.Net devs are in general better paid than the "cool" script-kiddies. There are also some C/C++ jobs but not as many. I've also seen a decline in RoR jobs lately, so there you go.

The thing with working in "cool" projects based on the technology used, is that you'll have to keep on learning the new fad every two or three years. We had this with PHP, then it was RoR, now it's Node.JS. If you chose Python, tough luck because it hasn't been mainstream yet. It doesn't matter what language you're using, probably the project is a CRUD application and believe me, doing user authentication, input validation, database operations or sending emails is a PITA in Ruby, in JavaScript, in PHP and in every freaking language.

OTOH I've been developing software for the last 15 years using different languages/platforms and I don't see where all this hate for Java comes from. I mean, it's everywhere, it's free, it has great tools and libraries, lots of documentation and lots of people working on or with it and big names behind it. Name one language/platform that has all of this and we can have a talk.

Comment normal people (Score 3, Insightful) 608

Have this guy seen "normal people" use a computer? There are some people so uninterested in the thing (even when is their primary work tool) that they can't be bothered to learn so simple stuff as mouse dragging or keyboard shortcuts.

Hell, I've seen people using Spreadsheet software for 10 years without learning how to use formulas. Don't even try to show them what all that HTML gibberish is.

And Spreadsheet software is a pretty good introduction tool for programming.

Comment Electric is bad for business (Score 1) 659

Just think of all the people who depend on gas, from the moment it's pumped out of the ground, until it reaches the gas pump: refineries, transportation, station employees, etc. If you can recreate this with Hydrogen, you might make it easier for the industry to shift.

With electric cars, you destroy this whole industry from all angles. All those truck drivers, station employees, refinery workers. Hell, most of the roadside restaurants would probably go out of business.

But, any of today's thermal central pollutes less than the same amount of cars producing the same amount of energy, the cost of electric transportation is way less than moving all that energy in liquid form even accounting for the loss of power on the way. So, yes, electric cars are the way to go if we want to pollute less or if we start by making all those processes to generate & transport hydrogen cleaner, we can have the best of both worlds.

Slashdot Top Deals

Always draw your curves, then plot your reading.

Working...