Slashdot Mirror


User: Nadaka

Nadaka's activity in the archive.

Stories
0
Comments
4,449
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 4,449

  1. Re:code in pen and paper on Sniffing the Wireless Traffic of MIT Students · · Score: 2, Interesting

    My most annoying test was writing a grammar and recursive descent parser for a set of complex regular expressions on paper.

    That professor was simultaneously the best and worst teacher I have ever had. He was a total hard ass, but if you managed to pass his classes, you really ended up learning.

  2. Re:So... on Australia Air Travelers' Laptops To Be Searched For Porn · · Score: 1

    I don't know, there are parts of Alaska, Canada and the Continental Northwest where having a rifle that can switch to full auto might be a better alternative to carrying a second higher caliber gun for bear defense.

  3. Re:So... on Australia Air Travelers' Laptops To Be Searched For Porn · · Score: 2, Interesting

    I know what you mean.
    My girlfriend has looked like a 14 year old for the last 12 years.
    We get odd looks all the time.
    I can't buy alcohol if they see her in line with me at the store.
    I'm not really complaining.

  4. Re:Metabolism number two on Scientists Implant Biofuel Cells Into Rats · · Score: 1

    Just put it in vibrate mode, you wouldn't want to get interrupted, or maybe you would?

  5. Re:Metabolism number two on Scientists Implant Biofuel Cells Into Rats · · Score: 1

    You are not thinking strait, those are practical medical applications.

    This things first real application in humans? A weight loss supplement for the fabulously wealthy.

  6. Re:HTML5 video on Theora Development Continues Apace, VP8 Now Open Source · · Score: 1

    Only if you want to save to the hard drive.

    For live video streaming, you only need to buffer enough to cover the latency between peers and the time needed to stitch the video stream back together. That is at most a couple minutes / several 10's of megs.

  7. Re:everyone draw a religious dude on Pakistan Court Orders Facebook Ban Over Mohammed Images · · Score: 4, Funny

    2prophets1cup?

  8. Re:HTML5 video on Theora Development Continues Apace, VP8 Now Open Source · · Score: 1

    That is why we were going the applet route, no install needed for most systems.

  9. Re:Welcome, our new open codec overlords! on Theora Development Continues Apace, VP8 Now Open Source · · Score: 2, Insightful

    "Is H264 incumbered by any patents not held by the MPEG-LA?" Probably.

    The protection that H264 has is that any outside entity filing an h264 patent lawsuit is going to have to defend themselves against MPEGLA's patent portfolio.

    VP8 has exactly the same protection from Googles patent portfolio.

    The difference between the two is that Google offers a free forever license, where MPEGLA can start charging any amount at any time and that there are no H264 cameras that are legally licensed for commercial or for profit work. Every professional videographer using H264 is in violation of the MPEGLA license.

  10. Re:HTML5 video on Theora Development Continues Apace, VP8 Now Open Source · · Score: 2, Interesting

    Well. Damn.

    This looks like almost exactly the same functionality that we were developing. Though we used a java applet for P2P that recombined the signals into a stream that would run on almost any player: flash, quicktime, silverlight media player, embedded windows media player, and many more. We even had a setup that would detect other clients on the local network and they would all source from the same feed, allowing any number of local clients at no additional external bandwidth usage.

    We were in the final stages of testing early in 2009, I jumped ship when paychecks started coming in late and a few months before the venture capitalists pulled the plug for good.

  11. Re:Cute application, but why? on Marine Mammals Used To Fight Terrorism · · Score: 1

    It is even funnier when you understand that like pigs, dogs are considered an unclean animal by most Muslims. Any Iraqi killed by "friendly fire" in such an attack would be damned.

  12. Re:Cute application, but why? on Marine Mammals Used To Fight Terrorism · · Score: 1

    Some are oppression fighters (fighting for oppression), the rest see the US as occupying their home and strike at US anywhere. Bin Laden is a little bit of both, he became offended when the Saudi leadership invited the US in during the first gulf war and he also wishes to impose a global Caliphate where a select group of islamic clerics impose anything they say as absolute law and all non-muslims are exterminated.

  13. Re:If you didn't want your browser history detecte on 76% of Web Users Affected By Browser History Stealing · · Score: 4, Insightful

    People generally use the same or similar usernames and passwords for most of their online identities. If you you know someone in particular uses facebook.com, hotmail.com, kittenwar.com and randombank.com you can use facebook and kittenwar as attack vectors against their email and banks. Alone, history sniffing does not present a huge threat. But it can dramatically increase someones vulnerability to identity theft.

  14. Re:Is this an EU rule or a German rule? on Germany Demands Google Forfeit Citizens' Wi-Fi Data · · Score: 1

    Because they are the only ones who have laws that allow them to prosecute people with open wifi as contributing to copyright infringment.

  15. Re:Asynchronous and self modifying code. on Programming Clojure · · Score: 4, Informative

    You are mistaking how you use certain functional programming languages for what functional programming is.

    There is no requirement that a functional language allow self modifying code, only that it is expressed as the composition of functions, is stateless and avoids mutable data.

  16. Re:Asynchronous and self modifying code. on Programming Clojure · · Score: 4, Informative

    2: functional programming and self modifying code have nothing to do with one another. functional programming transforms a set of inputs into a set of outputs without reference to any external state. It is a purely mathematical expression. Functional programming languages can be used to write self modifying code, but so can can most languages.

    1: if you understand what you are doing, asynchronous programming is easy. All you have to do is prevent screwing up the shared state between threads. Since functional languages have no state to share, you can avoid 99% of the pitfalls of dealing with threading.

    I deal with threading every single day. Problems occur when the problem is intractable (and then nothing can help it split), the solution is poorly designed (to much shared state), the language is poorly documented/designed (ambiguous thread safety, inability to be thread safe) or the developer just does not know what they are doing.

    Functional programming is good at threading because it eliminates shared state completely. The question is no longer "can I split this, what do I have to rewrite from scratch, and will it be worth it?", but rather "will splitting this be worth the overhead of creating, context switching and synchronizing the threads?"

    Abstracting multi-threading to make the syntax easier for inexperience developers is a mistake unless you can also fundamentally prevent most of the issues that make multi-threading a pain in the ass as well. Adding real closures to more traditional languages like c++, java, c# etc would go a long way towards making multi-threading easier to deal with because the vast majority of problematic code in relation to multi-threading will produce a compile error if used within a real closure.

  17. Re:You're not stealing the movies on Why I Steal Movies (Even Ones I'm In) · · Score: 1

    [Citation needed]

    There is case law upholding the right of the consumer to copy for personal use.

  18. Re:You're not stealing the movies on Why I Steal Movies (Even Ones I'm In) · · Score: 1

    copying isn't even actionable here.

    Nor is receiving a copy.

    Only when distributing a copy are you infringing.

  19. Re:Dangerous on Scientists Propose Guaranteed Hypervisor Security · · Score: 1

    I've seen a perfectly bug free computational device. It is called an abacus.

  20. Re:Yeah, sure on Too Many College Graduates? · · Score: 1

    The difference is that the first job is a lot easier to get with a BA than with an AT/AA. After that, the only thing that matters is your experience, skill and how you present yourself.

    The market for programmers is there, but it is extremely frugal. I've had two companies die under me in the 2 years and now I am waiting on confirmation that my project is going to be renewed to find out if I need to find a new job. But in each case, I was able to secure a new job in two weeks or less.

  21. Re:Don't know what he's talking about on HTML Web App Development Still Has a Ways To Go · · Score: 1

    You forgot that you also need to know xml and apache configuration settings, plus make if you want to make it into an easily deployable package, and etc...

  22. Re:"tightly controlled ecosystem"? Bullshit... on HTML Web App Development Still Has a Ways To Go · · Score: 1

    And that is exactly why I wanted xhtml2 instead of html5. It has a real framework for web applications between xforms and xml events. It is almost exactly what I would have done for my perfect web application format. The only thing I would add would be the ability to send a model from one page to the next without transmitting the data to the server.

  23. Re:Unclean hands on Rockstar Ships Max Payne 2 Cracked By Pirates · · Score: 1

    Everything is copyrighted as soon as it is distributed, automatically without any other action required.

  24. Re:HTML5 Canvas not supported on this browser. (IE on Beautifully Rendered Music Notation With HTML5 · · Score: 1

    That just means that at least 5% of IE users and 50% of ie6 users would rather use something else to browse the web, but are forced to use IE due to the policies of their workplace.

  25. Re:Hypocrisy on Rockstar Ships Max Payne 2 Cracked By Pirates · · Score: 1

    The circumvention clause of the DMCA is criminal as well.

    http://www.law.cornell.edu/uscode/html/uscode17/usc_sec_17_00001201----000-.html
    http://www.law.cornell.edu/uscode/uscode17/usc_sec_17_00001204----000-.html