Follow Slashdot blog updates by subscribing to our blog RSS feed

 



Forgot your password?
typodupeerror
×

Comment Re:Some misconceptions (Score 2) 319

And Java can be concurrent as well. It depends on the framework you are using to run it. Tomcat is thread bound, but things like akka and vert.x are not. In fact I suggest you look at the vert.x site to examine the speed increases you get on multi-core java with vert.x vs. node.js. Plus vert.x is a polyglot so you can also do Scala if it makes more sense. It is all about using asynchronous programming techniques which you HAVE to do in JavaScript, since it is single threaded, and you can do with Java. node.js is more about using cheaper web developers to put together a back end that barely functions. The node.js code I have seen is so unmaintainable with massive promise structures that will make your head hurt. If you truly need to scale to those kinds of levels you can do it even better with Java and the correct runtime environment.
Patents

Algorithmic Patenting 85

An anonymous reader writes: Venturebeat reports on companies using software to "create" patents. They say a company called Cloem will use the software to "linguistically manipulate a seed set of a client's patent claims by, for example, substituting in synonyms or reordering steps in a process, thereby generating tens of thousands of potentially patentable inventions." The article says, "There is reason to believe that at least some of its computer-conceived inventions could be patentable and, indeed, patents have already been granted on inventions designed wholly or in part by software."
Toys

1950s Toy That Included Actual Uranium Ore Goes On Display At Museum 286

hypnosec writes: The Gilbert Atomic Energy Lab — dubbed the world's most dangerous toy — has gone on display at the Ulster Museum in Northern Ireland. The toy earned the title because it includes four types of uranium ore, three sources of radiation, and a Geiger counter that enables parents to measure just how contaminated their child have become. The Gilbert Atomic Energy Lab was only available between 1951 and 1952 and was the most elaborate atomic energy educational kit ever produced. The toy was one of the most costly toys of the time, retailing at $50 — equivalent to around $400 today.
The Almighty Buck

Apple's Luxembourg Tax Deals 158

Presto Vivace sends a report from the Australian Financial Review on how Apple uses a holding company based in Luxembourg to avoid taxes on its iTunes revenue. Quoting: The 2011 accounts for iTunes Sàrl [the holding company] give the first inside view of how Apple accounts for its growing earnings from digital content. They are part of a massive leak of Luxembourg tax documents uncovered in an investigation led by the International Consortium of Investigative Journalists. Remarkably, the accounts show Luxembourg has been more effective in extracting tax from iTunes than Ireland has with much larger Apple sales. Turnover for iTunes Sàrl exploded from €353 million ($508 million) in 2009 to €2.05 billion in 2013. Secret appendices to the 2011 accounts break down some of Apple’s costs. It shows that Apple takes a third of iTunes’ revenues as its gross profit margin. The 2011 figures showed that a flat 50 per cent of this gross profit was paid in intercompany charges. (Followup on a similar strategy from Amazon we discussed last week.)

Comment Re:re Loran (Score 3, Interesting) 139

Funny you say they are not being utilized. Last weekend the bands were jammed end to end for the world wide DX contest. On the major bands the waterfall was full end to end. I made hundreds of contacts. Earlier I did a summits on the air activation and made over 30 contacts in an hour. Never mind the digital modes. The ham bands are alive and well, Jim Olsen K7JEO

Comment Re:Fundamentals (Score 2) 213

Another funny story along that line. I bought my cabin from a former school principal and administrator. When I moved into it, I found a note on the sink reading: "Leek in Fawsett". I at first looked for a vegetable in there, but did not find one. It was deplorable to me that someone in the school system long enough to retire could not even spell these very common words correctly. Then I saw all of his 'fixes' around (split a pipe in two since it didn't fit easily, and tried hose clamping it), and felt very sad for the generation he mentored.....

Comment Fundamentals (Score 5, Insightful) 213

Whatever happened to teaching the kids the fundamentals of math and logic, never mind reading comprehension? Guess what? All of that is far more important to learning to code than the actual code itself. I find it ironic to imply that the kids are lost if they don't start to learn actual code that young. When I started programming, computers weren't even really available to anyone. I had good knowledge of math and logic, and was able to figure it out on my own over 35 years ago, and keep up with 'all of the latest trends' and have quite a successful career.
What I learned that help me do this, was how to learn. Start teaching that, and you will find they are prepared for whatever comes down the line in the future. Stop making automatons.....
Jim

Comment Re:Age discrimination sucks eh.. (Score 2) 120

Yes, age discrimination is horrible and very real. I just hit 45 and am seeing it first hand. I work for a 'hot' type company and they actually said in a company wide meeting 'look around you. Notice that you don't see much grey hair. That is on purpose as we want people on their way up, not out'. I was shocked. Meanwhile their people 'on the way up' hack out some of the worst code I have ever seen. We could use a few more people on their way out to actually make some scalable and well architected products so our servers don't fail under the weight of this pile of crap they created. Thing that sucks is I am right now the best I have ever been with all of this experience and I am afraid it is going to get harder and harder to get a decent job.
Earth

Toxic Algae Threatens Florida's Gulf Coast 99

As reported by Discovery News, After Toledo had to temporarily ban residents from using tap water last weekend because of a toxic algae bloom on Lake Erie, you probably figured that we’d filled the quota of bad algae-related news for the summer. No such luck, unfortunately. Off the Gulf Coast of Florida, the biggest red tide bloom seen in Florida in nearly a decade already has killed thousands of fish. The bloom, which contains the microorganism Karenia brevis, may pose a public health threat to Floridians if it washes ashore, which is expected to happen in the next two weeks, according to Reuters. NBC News says this is the largest such bloom seen since 2006 — approximately 50 x 80 miles.

Comment Re:Fundamentals of Comp Sci (Score 1) 315

Agreed to some extent, but how they are actually implemented in languages and what they mean kind of are... You just don't know how tired I am of working with people who can not understand the difference of pass by pointer, value, and reference though. Never mind a slew of other basics that really are important to understanding what you are writing is actually doing. The state of code is rapidly going down hill....

Comment Fundamentals of Comp Sci (Score 4, Insightful) 315

Or how about learn about the fundamentals of computer science. Actually learn what pointers are, pass by reference, multi-threading, type safety, and all of the things that implies. Then express those in whatever language you want. If you truly understand how computers and languages work, and what an enterprise system is composed of, you will likely have future proofed your career. If your language doesn't support many of those ( I am looking at you, JavaScript), then perhaps consider how much those jobs are likely to pay in the long run....

Comment Use an Algorithm (Score 1) 445

I gave up on password managers a long time ago. They are prone to compromise at some point. Instead, I use an algorithm that uses some element of the target as a seed to a simple formula. This gives me one thing to remember only ( or a few ), yet gives me a different password for every single site. A simple to understand, yet bad forumula to use, would be something like this: password = siteurl[2] + mySecret + siteurl[4]; So password for google would be 'omySecretl' Use a better formula for increased protection. Again, easy to remember,no password manager to get to/install, and a different password for every site, Likes it simple, Jim

Comment This is all just an excuse (Score 4, Insightful) 165

I don't understand why these top business people keep trying to say that we need to push more CS type stuff into grades k-12. Why would we tailor such early education specifically to one career choice? What happens if we now have too many programmers, and that is all these young people have been trained for? Other countries do not do this. K-12 should be about fundamentals, and broad education. If you are exposed to a variety of topics, and simple things like the scientific method, math, and problem solving, you can do almost anything in STEM. The problem is our education system is about memorization and regurgitation. Switch to an interactive model where kids actually build stuff ( code, chemistry, woodworking, anything ) and tie lessons into that. Then they will be prepared for whatever comes down the road. Myself, there was zero computer education at my school, as it was in its infancy. Yet somehow I managed to teach myself to do it on the one or two apple IIs we had, and made quite a go of it. What I had learned all my life was first how to learn, and second, how to problem solve. Given those tools in your tool belt I believe anything is attainable. I can't help but feel like this is all a smokescreen to keep tech workers wages capped. I topped out quite a few years ago, and only move up slightly. Don't get me wrong, I am paid well in the grand scheme of things, but if the industry is so strapped for great programmers, like they say they are, why aren't wages through the roof? Every interview I have done ( recently switched jobs ) they have immediately offered me a job. All of them want to only pay either slightly less, or slightly more than I am making currently. The wage gap between a kid just out of college, and a top senior engineer is pitifully small now. That's not right.... They want H1Bs since they are trapped. I am all for allowing work visas, but how about we revamp the program and make it a 2 year work visa where they can switch companies at will. Let's see how many of these tech companies will be scrambling to acquire them then, as then they will have to pay them the same as everyone else, or lose them.....

Comment Arduino Controlled Smoker w/ Software (Score 1) 447

How about with an arduino controlled smoker made by myself. Also using an XBee network and home made software running on JBoss/JSF/Primefaces and running on CentOS? So almost a complete open source turkey. I have a version of the software for my phone as well Here's a post I wrote on it last year: http://pelletheads.com/index.php?topic=12125.0 Jim

Slashdot Top Deals

Living on Earth may be expensive, but it includes an annual free trip around the Sun.

Working...