Please create an account to participate in the Slashdot moderation system

 



Forgot your password?
typodupeerror
×

Comment Re:So....far more than guns (Score 4, Insightful) 454

For example: for the first year after purchasing your first handgun, that's the single most likely cause of death in your life, approaching almost 50% of deaths.

...which indicates that the gun was bought specifically for that purpose in those 50% of handgun suicide deaths. It wasn't the other way around - people didn't die because they happened to have bought a handgun, which is the way you phrased it. They wanted to die, so they bought a handgun. I've owned my handgun for over 20 years, and I've not wanted to die, hence I'm not dead by it.

Comment Appalachians (Score 4, Insightful) 501

I live in the Appalachian mountains. As I watch weather radar, observing weather systems come at us from the west, I've seen dozens if not hundreds of times over the years where very powerful, well-defined weather systems (individual cells as well as frontal systems) totally disintegrate as they cross over from flat regions of North Carolina and Tennessee into Virginia, because they hit a literal 1,000 foot wall of mountains. Tornadoes are extremely rare here. A few years ago we had small one that messed up a couple sheds and the canopy over a gas station, and that was the first in decades. So I do believe this physicist is onto something that would be effective. Whether or not it's practical or acceptable to construct such a thing is another question.

Comment C#? (Score 5, Interesting) 254

Why C#? Develop your game in C++ using OpenGL ES for rendering. Your code will compile as-is for iOS, Android, Windows, OSX, and others. You will only need a couple hundred lines of native code (java for Android, Objective C for iOS, etc) to handle events and pass execution into your C++ code. My game engine runs on all the above platforms and 99.9% of my code is shared across all of them.

Also, these days many, many developers simply use an existing game engine and only bother with the high level code specific to their game. Mundane stuff like the low level rendering, Audio APIs (which unlike OpenGL ES, differ quite a bit from one platform to another), physics, etc, is ground that's been treaded several thousand times nowadays, and most game developers leave that stuff to the experts in the various fields to handle the nitty gritty. Optimization of those routines is usually where the "expert" part comes into play.

I work with a game designer / artist who implements all the high level game stuff in Lua, and my engine takes care of all the aforementioned "boring" stuff, freeing him up to actually develop games, and not worry about crap like polygon tessellation algorithms and tons of other very boring stuff that would just be a waste of his time.

Comment Nothing to do with languages (Score 1) 309

This has nothing to do with programming languages. It's the entire server / HTTP / HTML / web browser infrastructure he's complaining about. You've got a document format (html), originating from servers (PHP / Java / whatever) with embedded scripts (javascript), which can dynamically modify the HTML document (DOM / DHTML), as well as making additional requests to and from the server ("AJAX"), most recently extended via rich multimedia standards (WebGL, Web Audio API). The whole thing is a kludge that has expanded from HTML into.... whatever this huge mess has become after layer after layer of more stuff thrown on top (HTML5?).

Replacing the one little part of all that, javascript, with some other language, would only make things even more convoluted and complex. What he really wants is Flash and Java Apps. And how well did those technologies pan out as universal cross platform environments in the long run (and no, Java as used in Android does not count, as it only runs inside a single platform called Android). IMO, Apple has done us a favor in rejecting both Flash and Java on iOS. They've given two developers choices. One, feel free to use HTML as far as you're willing to try and push it. Good luck with that beyond anything reasonable as far as interactivity and responsiveness with HTML on a mobile device. Two, create dedicated applications for the target platforms (iOS, Android, whatever).

What this Google engineer is wanting is to be able to create dedicated applications without having to create dedicated applications. He wants to implement something that runs optimally on iOS without having to do any iOS software development. I have news for him... Apple has 100% control over that universe right now, and he will not be getting his way any time in the near future.

Comment Fingerprints (Score 4, Informative) 143

This is nothing more than the type of fingerprint matching that's been going on for many decades. It just puts a name to a person after the fact. Now on the other hand, if he was actively recognized via facial recognition as he was out and about in public and then apprehended, well that would be a different story.

Comment Re:Reflected EM Waves? (Score 2) 66

One word: polarization. Man made radio waves for communication are almost always polarized. Further, reflected radio waves are often very polarized even if the source was not (which is why polarized sunglasses reduce glare). They did not see the polarization expected from reflected radio signals. It appears they are actually emitted.

Comment Skeptics (Score 4, Interesting) 105

And the rest of the article discusses the skepticism of this "evidence". To sum it all up, the evidence is the different ratios of oxygen isotopes found between 3 moon rocks and Earth. Most experts are saying the difference in the ratios should be much, much larger, because of how different the ratios of isotopes are in meteorites and other outer solar system bodies. The difference between the earth and moon is so small that other theories are just as likely for explaining it. The counter argument is that maybe all of the inner planets have the same ratios of oxygen isotopes as one another, and it was an inner planet that struck Earth and basically everything involved was made of the same stuff so the differences are small.

I think that until we have actually measured the ratios from Mecury or Venus, we can't assume that every inner planet is exactly the same in that regard, and thus the "evidence" this study has found is actual evidence one way or another. The only thing we know for certain is all the extraterrestrial material we have analyzed so far from the rest of the solar system has had very different ratios of the isotopes, and so this evidence requires a whole new theory about the homogeneousness of the solar system to be true.

Comment Re:Somewhat off-topic: why not uncut LED panels? (Score 2) 93

All the value and cost of the LEDs is in the silicon dies they get from Taiwan. That's why they cram 4,000 dies onto a silicon sheet the size of a postage stamp. The labor required to manually pull them off is cheaper than the material and manufacturing process of the die.
The surface area of a stoplight led panel would be at least 40 dies worth. That's 160,000 LEDs worth of silicon and production time in the fab plant. Just to get 200 LEDs worth of illumination using your technique. Plus, setting up the fab to produce the silicon would be a large initial investment. There's no way it makes sense to make that manufacturing proprietary to something as specific as the stoplight application. It makes about as much sense as building a plant to make custom nails to build one house.

Comment Re:But... (Score 2, Informative) 490

The GP did not say murder rates. He said violent crime rates. Even the most conservative comparisons I can find, which attempt to compare like types of crimes in UK and USA (because they are classified differently), shows at least 200% more violent crime in the UK compared to the USA.

http://www.politifact.com/trut...
http://blog.skepticallibertari...
etc, etc.

Comment Java (Score 1) 76

A decade ago, this was predicted to be the realm of Java. An internet of things incorporating chips that natively execute Java bytecode, I'm thankful that hasn't come to pass. Even more so now that Oracle is in the picture.

Slashdot Top Deals

Kleeneness is next to Godelness.

Working...