Follow Slashdot stories on Twitter

 



Forgot your password?
typodupeerror
×

Comment Re:Interesting. (Score 1) 155

See what 'cursory' reading gets you? I thought the array was integral to the chip. Makes me wonder if one were to modify a Sony NEX(since the sensor is totally exposed with the lens off) with a similar array that you might get the same thing. For that matter any Canon that can employ CHDK might be able to do the same thing using a script or a special build of the firmware.

Thanks for taking the time to read it right.

Comment Re:Not as surprising as it should be (Score 1) 103

My point is that if you walked in to Mr Pointyheads office and started rattling things off like MD5, plain text or ROT-13- eyes would just roll back and he would grumble how much he hates IT and that it should just be stuffed in to the Cloud because the Cloud just works and is safe and makes toast and answers help desk support calls and installs the latest patches and and and... All while saving "8 billion dollars" of salary of those horrible IT people who just sit there an complain all the time and put up resistance to his brillian company saving 1 week implementation schedule listed on the micro-transaction slide in his power point presentation.

Or to say it another way, the patch for the web server and code that we read about here only appears to him as down time and dollars spent on surly cave dwellers- an expensive line item for the unwashed that he will be forced to comprehend.

And this is the same guy who will have moved on to some other department when the DB containing all the credit cards and passwords ends up on a tweet and the fingers get pointed at the surly cave dwllers who have been telling Pointyhead to prioritize the patch over his ill thought through bullet points.

Sorry. These stories really touch a nerve with me.

Comment Re:Best book on the subject (Score 1) 109

This is probably the clearest explanation I have seen of this problem in ever. Yes, in ever. It makes it look just as nice as it can which is ugly as hell. If I may hang on to it to share?

Also, I was looking around the other day for 'promise' type stuff in JS and found this:
http://blog.jcoglan.com/2011/03/05/translation-from-haskell-to-javascript-of-selected-portions-of-the-best-introduction-to-monads-ive-ever-read/

Comment Re:Best book on the subject (Score 1) 109

Crazy rules for var? Like every child object of the object in which var is declared has access to that variable? Doesn't sound like too much mayhem if you use closure. And for scoped code like interfaces I quite like the 'require' pattern. var Foo = require(foo.js); Where foo.js: require.exports = {random assortment of scoped objects}

I don't see these as cleanup problems, just ability to write clean code to begin with.

Although I am not sure I am getting to the root of your issue. The problem isn't really clear.

Comment Re:Thank God we have Coffeescript (Score 1) 109

Dunno if I would have worded it quite that way. Probably would have left out the fucks. I probably would have gone on to say that both Ruby and Python syntax are absurd to look at and decipher if you are blessed with the gift of understanding C-like syntax. The notion that white space is syntactically crucial is ridiculous.

Nah, the Ruby/Python quirks are as numerous and odd as JS so it appears that the thesis of the parent's statement is mostly invalid.

Comment Re:You are a renegade. (Score 1) 132

Yes- I agree with you on this. JS is simple but you should always be concerned with handling data asynchro- especially with JS where one frozen or busy thread will bring the whole thing to a halt. <Ballmer>Callbacks, callbacks, callbacks</Ballmer>

And if anyone is up for some reading this series is pretty nice:
http://howtonode.org/object-graphs

As well as 'JavaScript: The Good Parts'- Douglass Crockford

Comment Re:You are a renegade. (Score 1) 132

Uhh, I quite like how the module and 'require' patterns work in JS. <-- read: I am extolling their virtues. I am a big fan of quick and dirty object decoration as well (as long as you keep it in the closure). Webworkers do processing in other threads. And V8 has a whole debugging API.

Never have been entirely sure why people are so quick to pee all over JS. After having done Perl, Python, C# and Actionscript for corporate production as well as private there are benefits to all of them (less so Actionscript after learning how to deal with the wild nature of JS). I guess it'a all about knowing when to hold them, when to fold them and when to walk away.

Comment Re:Hydrogen is not a fuel (Score 1) 247

Well, as there is no retooling to do on motor production (hydrogen can be used in existing conventional internal combustion engines with some slight modifications) and you have stuff like this:

http://www.physorg.com/news183914624.html

And there are no tons of terrifically toxic battery waste to deal with, I'd say it's cleaner than burning existing fuel (even biodiesel), generating new electric motor models and batteries and knocks off a whole set delivery and production supply chains.

Slashdot Top Deals

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

Working...