Slashdot Mirror


User: coolGuyZak

coolGuyZak's activity in the archive.

Stories
0
Comments
964
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 964

  1. Re:and then there are the exceptions. on Should We Clone a Neanderthal? · · Score: 1
    When food/energy isn't plentiful within the environment, for the length of time necessary for a smaller brain to evolve and dominate the population within that environment, and with no significant evolutonary pressures to maintain that brain size, sure.

    run-ons, ftw.

  2. Re:Nope, sorry on Ender in Exile · · Score: 1

    as an aside, Bean couldn't have sex with Petra... He never went through puberty.

  3. Re:Life is marketing on Obama Launches Change.gov · · Score: 1

    Or he may be trying to 'crowd-source' government. By folding others' ideas into his own, he not only pleases more people (the marketing aspect), but could end up with ideas that are superior to anything he could think of on his own. Call it open source law, with Obama as Linus Torvalds.

    we'll see how well it works...

  4. Re:You know..... on Programming .NET 3.5 · · Score: 1

    for quite some time, that did occur, at least for the linq-to-collection functionality. Other languages call that functionality 'list comprehension'.

  5. Re:Ok..how about taxes? on Discuss the US Presidential Election & the Economy · · Score: 1

    that depends highly upon the type of business you own. Class C corporations are double taxed, class S is taxed once (pass through taxation-- basically income tax) and LLC's are given a choice. Sole proprietorships and partnerships are also taxed once, but don't recieve limited liability. I don't know how LLP's work.

    Each of these businesses has different levels of liability, equity structure, etc... But that's a whole different can of worms.

  6. Re:Slower overall on Hands-On With Windows 7's New Features · · Score: 1

    Proper software design usually consumes more resources than improperly designed software. Take, for instance, polymorphism. It ncreases the maintainability of the software immensely, but at the cost of virtual table lookups--each time you call a method of a virtual method, the computer must execute a pointer lookup. Another example: exception handling. Not only are additional tests required to generate exceptions, but as that exception cascades down the call stack, each level of the stack must be checked for exception handlers and unwound. Programming for performance is generally less flexible and requires more asunptions-- this is simply not practical for an operating system as flexible as windows. One could bring up Linux as an alternative, but that has completely different operating constraints, not to mention design goals.

  7. Re:You just are unimaginative. on Bioshock 2 Trailer Released, Platform Information Revealed · · Score: 1
    my tactic was to reload the game each time I died, including all of the big daddy fights. Needless to say, I ended up reloading the game a great deal before that worked out. The 1.1 patch of the PC version allows you to disable the chambers, as well.

    If you play the game by your own rules, it can be a great deal of fun. :)

  8. Re:naked shorts on A Wikipedia Conspiracy and the Wall Street Meltdown · · Score: 1

    Condé Nast Portfolio mentions the SEC's contribution to the crisis as well, in October's issue. Unfortunately, I cannot recall the name of the article at this time.

  9. Re:Will they on Microsoft and Nokia Adopt OSS JQuery Framework · · Score: 1
    there was apparently a good stir about jQuery at VSLive this year. One of the presenters even mentioned it during his talks.

    I know this is a welcome addition for me, as my employer just decided to start investigating doing this on our own.

  10. Re:It's Simple on 4,000 Anti-Scientology Videos Yanked From YouTube · · Score: 1

    So those are the secret ingredients of Teflon... I should have guessed!

  11. Re:I just find it's terribly dumb on Miguel De Icaza On Mono, Moonlight, and Gnome · · Score: 1

    IBM uses the IBM JVM.

  12. Re:Built-in race condition on Miguel De Icaza On Mono, Moonlight, and Gnome · · Score: 1
    there's quite a bit that went into that design decision, I bet. Here's a few resins why it would be a bad idea to build locking into a delegate:
    • deadlocks. Thread A invokes a delegate, locking it. Thread b invokes a different delegate, locking it as well. Thread a attempts to invoke b, the thread encounters the implicit lock & sleeps. Thread b attempts to invoke a in the meantime. Oops.
    • overhead: locking is expensive. Do you want to deal with the overhead of a lock each time you invoke the delegate? Keep in mind that events, a central facet of .net development, are all implemented as delegates.
    • I don't even want to consider the ramifications of invoking an asynchronous function on an autolocking delegate...
  13. Re:Can it be time? on No Gap Found In Math Abilities of Girls, Boys · · Score: 1

    Really? What was the mistake?

  14. Re:Thanks, media, on 550 Metric Tons of Uranium Removed From Iraq · · Score: 1

    Typically reasonable doubt works in the other direction--if there is reasonable doubt that the accused is guilty, they are innocent. Using 'reasonable doubt of innocence' requires less proof than even 'a preponderance of evidence'.

    Try again, lawyer boy.

  15. Re:Agreed on SCOTUS Grants Guantanamo Prisoners Habeas Corpus · · Score: 1

    I hate to break it to you, but the Supreme Court hasn't been a judicial body since Marbury v. Madison, some 200 years ago.

  16. Re:ER, non-story on Apple Cracks Down On iPhone Unlockers · · Score: 1

    A UniK, perhaps? *ducks*

  17. Re:That's a short list... on WWDC '08 Sees Slimmer, Improved, 3G iPhone · · Score: 1

    As an owner of anforst yen iPhone, I obviously won't agree with the majority of your post. That said, the general dearth of Bluetooth support pisses me off. The phone itself supports a rather rich set of Bluetooth protocol options but Apple doesn't support them client-side. For some forms of syncing (firmware updates and the like) I can understand why they opted out, but allow me to sync my mail, damn it!

  18. Re:Criminal investigation? on MediaDefender's BitTorrent-Based DOS Takes Down Revision3 · · Score: 2, Informative
    It's called 'civil disobedience' when you break the law you disagree with.

    That said, be prepared to accept the consequences when participating in such an act.

  19. Re:I'd've said 98se, if I were going that route... on Bill Gates: Windows 95 Was 'A High Point' · · Score: 1

    I guess this isn't the best time to say I like XP then? (Not as much as OSX 5, but it's possible to like both...)

  20. Re:A crack-high moment. on Bill Gates: Windows 95 Was 'A High Point' · · Score: 1

    What about XmlHttpRequest?

  21. Re:Python? on F/OSS Flat-File Database? · · Score: 1
    Or if the user wants to mix and match source from projects with conflicting licenses. There was a big tiff in open-source circles a few years back because you couldn't mix BSD and GPL code--the 'advertising' clause was seen as an additional, and incompatible, restriction on the license. From an ethical standpoint, I prefer the 'more free' BSD license, because it places only trivial limits on the potential of the code--give credit, and authors can't be sued if the code breaks.

    I also prefer it from a practical perspective. Code that is folded into commercial/proprietary code bases can see more use, compared to GPL'd solutions. This means 'more eyes' on the problem, and, with adequate community support, often contributions as well.

    Of course, my generosity may be abused. I say, "Let that rest on the conscience of others, I've got code to write."

  22. Re:Come out again?! on Black Holes Don't Trap Information Forever · · Score: 4, Funny

    No, irony is ten thousand spoons when all you need is a knife.

  23. Re:The slashdot zeitgeist. on Swiss Man Flies With Jet Powered Wing · · Score: 1

    Man, you just don't get the slashdot zeitgeist. Beating the proverbial dead horse is an essential part of the whole experience!

  24. Re:hysterical on Taser International Wins Lawsuit to Change Cause of Death · · Score: 1

    Disposing of the body? (I'm going to hell for saying that)

  25. Re:Where does it stop? on Supreme Court to Hear FCC Indecency Case · · Score: 1

    Censorship is immeasurably more harmful. We cannot let the government get in the habit of prohibiting speech it doesn't like.

    While I agree with your statement at large, the case in particular (profanity) seems like a petty fight to pick. I'm more concerned with the ramifications of consolidated media & advertising. Together, they make expressing political positions an agonizing affair.

    American media culture possesses strong corporate and capitalization bias, which influences the selection of publications and broadcasts. Advertising competes with political advertisements, driving the costs of potential candidates up before they've entered the race. And, with the past primaries as an indicator, third parties (or non-favorite politicians) are not treated in an egalitarian nature.