Slashdot Mirror


User: spongman

spongman's activity in the archive.

Stories
0
Comments
2,450
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 2,450

  1. Re:Kill it with FIRE on Another Java Exploit For Sale · · Score: 1

    well we didn't cover java bytecode verification in my compiler classes because java didn't exist then, but I worked on the java team at one of my past jobs, i wrote a java debugger for them, and i worked closely with the team that wrote the VM.

    I assume you're referring to the bytecode verification as outlined here: http://www.w3.org/Conferences/WWW4/Papers/197/40.html#1

    I don't think that's simpler than compiling javascript from source.

  2. Re:Kill it with FIRE on Another Java Exploit For Sale · · Score: 1

    it's significantly easier to parse javascript source, determine its validity and generate machine code from it than it is just to verify java bytecode.

    for example: prove that the stack looks the same for every different way a basic block can be entered.

  3. CO2? on Scientists Create New Gasoline Substitute Out of Plants · · Score: 4, Insightful

    great, but when you burn it does it still spew CO2 into the atmosphere?

    when are we going wake up and start using cars powered by hydrogen separated from water in LFTRs?

  4. Re:"const nazi" on Doom 3 Source Code: Beautiful · · Score: 2

    he's probably referring more to reference and method 'constness' which have semantic rather than just simply syntactic implications.

  5. Re:August 2012 to January 2013 on Oracle Ships Java 7 Update 11 With Vulnerability Fixes · · Score: 1

    Actually property and trespass address that completely.

    Your repeated ad-hominem attacks circular arguments lead me to conclude you're a troll. Good bye.

  6. Re:August 2012 to January 2013 on Oracle Ships Java 7 Update 11 With Vulnerability Fixes · · Score: 1

    this isn't about what i think, so please restrain yourself.

    i'm just pointing out that your assertion that libertarianism is inconsistent because there's no way to resolve your hypothetical rights issue is invalid because that case is easily resolved by property ownership and trespass law both of which are consistent with libertarian philosophy. it sounds to me that you want to prove your paradox by re-labeling libertarainism 'extreme' enough that they don't claim these points. can you provider a reference to someone else using this label, because i haven't heard of this before.

    maybe if you could show how these so-called 'extreme' libertarians (that do not consider the validity of property and trespass) are different from anarchists in this respect?

  7. Re:August 2012 to January 2013 on Oracle Ships Java 7 Update 11 With Vulnerability Fixes · · Score: 1

    well, you can argue the morality of ownership, thst's fine. i'm just pointing out that there's no paradox as stated above.

  8. Re:August 2012 to January 2013 on Oracle Ships Java 7 Update 11 With Vulnerability Fixes · · Score: 1

    You're mid-labeling anarchy. Libertarianism supports rights monopoly through property.

  9. Re:August 2012 to January 2013 on Oracle Ships Java 7 Update 11 With Vulnerability Fixes · · Score: 1

    Ok, not as a question, then: trespass covers that.

  10. Re:Disaster on Oracle Ships Java 7 Update 11 With Vulnerability Fixes · · Score: 1

    seriously, you write applets for a living?

    otherwise you're barking up the wrong tree.

  11. Re:August 2012 to January 2013 on Oracle Ships Java 7 Update 11 With Vulnerability Fixes · · Score: 1

    how do you resolve the good old conflict of "I have a right to speak" with "I have a right not to hear you"

    wouldn't that be covered by trespass?

  12. Re:Wrong approach on Should Microsoft Switch To WebKit? · · Score: 1

    You realize, of course, that IE isn't the only application that uses trident? There are a zillion and one apps that embed the WebBrowser ActiveX control and still more that use mshtml.dll directly. None of which would be supported by WebKit. So they still need to ship and support trident regardless - it's part of the OS, like the kernel.

  13. Re:Excercise and diet on Ask Slashdot: How To Stay Fit In the Office? · · Score: 1

    So? Most geeks are weirdos anyway, so you might as well look like one while your're at it.

  14. Re:Any browser publisher is the same way on Nokia Admits Decrypting User Data Claiming It Isn't Looking · · Score: 1

    i am a programmer, web and otherwise. i have also worked in the advertising industry. i know what i'm talking about.

  15. Re:Any browser publisher is the same way on Nokia Admits Decrypting User Data Claiming It Isn't Looking · · Score: 1

    i'm not saying who does or does not do this. i'm just pointing out which company's whole business model is based around doing exactly that.

  16. Re:Any browser publisher is the same way on Nokia Admits Decrypting User Data Claiming It Isn't Looking · · Score: 3, Insightful

    you trust Google over Microsoft?

    one of those companies has a business model that relies on gathering as much information about you that it can and selling it to advertisers.

    the other one sells software.

  17. excellent on World's First Linux Powered Rifle Announced · · Score: -1, Troll

    maybe they can program it not to mow down classrooms full of kids?

  18. Re:...Bash? on C Beats Java As Number One Language According To TIOBE Index · · Score: 1

    Batch is isn't really a language. More like speaking in tongues...

  19. Re:Dying gasps on C Beats Java As Number One Language According To TIOBE Index · · Score: 1

    It turns into something small and brown all right. But a dwarf? I'm not so sure...

  20. Re:Dying gasps on C Beats Java As Number One Language According To TIOBE Index · · Score: 1

    In that case you really should check out F# !

  21. Re:How can ... on What Are the Unwritten Rules of Deleting Code? · · Score: 1

    Oh that's fine for me. I just hope at least some of those incompetent it departments are in campanies that I compete against. Every little bit helps.

  22. Re:How can ... on What Are the Unwritten Rules of Deleting Code? · · Score: 1

    if you want to argue GIT vs SVN I'd stick to SVN's inability to properly track change ancestry through branch merges. that's the reason I quit SVN, not the performance. a beefy server and a GigE switch are next to free.

  23. Re:How can ... on What Are the Unwritten Rules of Deleting Code? · · Score: 1

    the cost of switching is relative to the size of the diff, not the size of the repository. if you're branching 2/3 times a day, then the diffs are small, and therefore, quick.

  24. Re:How can ... on What Are the Unwritten Rules of Deleting Code? · · Score: 1

    not necessary if you're branching 2 or 3 times a day and you're connected to your repro by something faster than carrier pidgeons.

  25. Re:How can ... on What Are the Unwritten Rules of Deleting Code? · · Score: 2

    You can switch branches in SVN just fine. It'll even merge local changes between branches for you without having to stash/pop.