Slashdot Mirror


User: maxwell+demon

maxwell+demon's activity in the archive.

Stories
0
Comments
12,279
First seen
Last seen
Profile
(view on slashdot.org)

Comments · 12,279

  1. Re:Black hat? on Microsoft Says Vista Most Secure OS Ever · · Score: 4, Insightful

    Imagine you are a black hat hacker, and are asked to evaluate the security. Wouldn't you be very tempted to keep silent about a few security problems you found, in order to exploit them later?
    What would you think if an airport employed terrorists as security personnel because they know better what to look for?

  2. Re:Most government employees... on Trojan Compromises Oregon Taxpayers · · Score: 1

    Of course they could go without internet access. But just think about the cost if all the porn would have to be stored on government computers in the intranet!

  3. Re:Indicitive of a larger problem on Trojan Compromises Oregon Taxpayers · · Score: 2, Informative
    I work with Data in the private sector

    You work with Data? I always thought he were just a fictionary Star Trek character ...
    SCNR :-)
  4. Re:Same drivers MoDZ ON CRaCK on Microsoft to Turn to Driver Quality Ratings System · · Score: 1
    It cant be overrated if it hasnt been rated yet

    As soon as it's posted, it's also rated (the rating depends on if you're posting anonymous, on your karma, and on if you disabled the karma bonus). Moderation changes this rating.
  5. Re:I wonder... on Microsoft to Turn to Driver Quality Ratings System · · Score: 1
    Not being a driver itself, your attemp at a joke falls altogether.

    An attempt at a joke can be a driver itself?
  6. Re:Prove It on Microsoft to Turn to Driver Quality Ratings System · · Score: 1
    Why use C? Just use the following shell script, which is much simpler anyway:
    $0&
    $0&
    Note that it's even harder to kill because each individual process terminates quickly, so as soon as you figured out the PID, it's not valid any more. Moreover, even killall will likely not help much, since the running process is just a shell, and you probably don't really want to kill all running shells.
  7. Re:It's a name, not an adjective. on The End of Native Code? · · Score: 1
    German (Vereinigten Staatler)

    I'm German, and I've never heared that word. I know people from the USA as "US-Amerikaner", which can be literally translated to "US-Americans". The USA themselves are indeed often called "Vereinigte Staaten" in Germany (but "USA" is just as common, of course with all letters pronounced the German way), but I've never heared the adjective form (and indeed it sounds very wrong, because in that case the "Vereinigte" (united) wouldn't grammatically refer to the states, but to the people from the states ("Staatler" - a word which by itself sounds very strange to me, although it's not exactly wrong)).
  8. Re:It's a name, not an adjective. on The End of Native Code? · · Score: 1

    What about Antarctica?

  9. Re:do not expect an intuitive definition on Definition of Planet to be Announced in September · · Score: 1
    I, for one, do not expect a very intuitive definition. Just remember that a second is the duration of 9 192 631 770 periods of the radiation corresponding to the transition between the two hyperfine levels of the ground state of the caesium-133 atom.

    The reason for this is that the best clocks we have are based on exactly that transition. There's nothing comparable for the definition of a planet. And the exact number of periods was chosen to best fit the previous definition of the second.
  10. Re:Cheeky... on Why Web 2.0 Will End Your Privacy · · Score: 1
    Haha! They can't touch me - I have no friends!

    You're lying! :-)
  11. Re:red rain in russia on Alien Bacteria May Have Landed in India · · Score: 1

    In Soviet Russia, alien bacteria find you.

  12. Re:From The Guardian's article: on Alien Bacteria May Have Landed in India · · Score: 1

    So how did the bullshit get into indian rain? Did they send bulls into the sky?

  13. Re:WTH Is Going On Here? on Alien Bacteria May Have Landed in India · · Score: 2, Interesting

    You know, we are approaching the date (200)6-6-6, the day of the beast. Probably those are the bacteria of the Apocalypse! :-)

  14. Re:This makes me wonder... on Virtualized Linux Faster Than Native? · · Score: 1

    Well, make that recursion infinite, and you'll get an infinitely fast Linux, and as a bonus you don't need hardware ay more, because beyond every layer of virtualized Linux there's yet another layer of virtualized Linux, ad infinitum. :-)

  15. Re:Only? on Virtualized Linux Faster Than Native? · · Score: 2, Insightful

    However that quote tells the reason for the performance boost: fast address-space switch (FASS) is supported in L4-embedded, but not in Linux native. IOW, it's not really "virtualized faster than native", but "using FASS faster than not using it". I guess you'd get even better performance if you'd make Linux native support FASS.

  16. Re:This, from Oracle? on Oracle Exec Strikes Out At 'Patch' Mentality · · Score: 1
    Whose patches are infamously known to break stuff, released in 6 month batches (maybe just a mite too spaced out?), and so infamously poor at actually patching their bugs that they currently have an open, publically known 0day with no patch, because they screwed up patching it last time and it's still open?

    If they don't want people to demand patches, the best way is to make the patches so bad that people don't want them. That is, make them worse than the problems they cure, and demand for them will reduce dramatically.
  17. Re:Well, obviously.... on Oracle Exec Strikes Out At 'Patch' Mentality · · Score: 1

    What if a book tells you how to build your own house, but it turns out that houses built following those instructions tend to collapse? Say I build such a house by exactly following the instructions, and it collapses and I get hurt, would the book author be liable?

  18. Re:Are We Teaching Dogs Or People? on Starting an Education in IT? · · Score: 1
    I have heard the "justification" for not teaching students procedural code before, and it doesn't make any sense to assume that another person is so stupid from the outset. It's like insisting that once a kid learns how to use a hammer and nails, that they can never possibly learn to use a screwdriver properly. It's condescending and somewhat insulting.

    It's not about procedural vs. OO, but it's specifically C vs. C++. If you learn procedural with Pascal, and then OO with C++, everything is OK. The point is that good procedural C generally is even bad procedural C++.
  19. Re: not only NOT a lost sale, but on BSA Claims 35% of Software is Pirated · · Score: 1
    Without copyright, there wouldn't be any incentive to make the software.

    Sure. That must be the reason why there's no software licensed under the BSD license (which is mostly equivalent to giving up copyright on the code). Oh, wait ...
  20. Re:Where to start on Starting an Education in IT? · · Score: 4, Insightful

    It is IMHO a bad idea to learn C directly before C++. Good style C programs are usually bad style C++ programs, so you'll have to "unlearn" a lot of habits from C. OTOH, when learning C++ first, then it will be easier to go to C, because the compiler will usually complain if you use C++-typical idioms.

    If you insist on learning C first, it's probably a good idea to learn Java before C++, because that way I think it's easier to get into OO habits.

    It may even be a good idea to have some LISP experience before going to C++, because some advanced template techniques are basically functional style (I guess that's why many people shy away from those).

    BTW, I guess you meant Perl, not Pearl.

  21. Re:It's a fucking WORD PROCESSOR on Microsoft Claims OpenDocument is Too Slow · · Score: 2, Insightful
    unless it's a bloated format--which it doesn't appear to be from what I've seen of it

    It's XML. So how can it be a non-bloated format? <gd&r>
  22. Re:but.. on Is Evolution Predictable? · · Score: 1

    Well, given that Linux is usually compiled to a form consisting of only two digits (0 and 1), it shouldn't be too hard to translate it into four letters instead.

  23. Re:Pedophiles and Terrorists on UK Government Wants Private Encryption Keys · · Score: 1

    You forgot the children. Will anyone please think of the children!

  24. Re:In other news... on UK Government Wants Private Encryption Keys · · Score: 1

    Brains are used by criminals, paedophiles, and terrorists - I guess that's why they don't let anyone using his brain into government positions :-)

  25. Re:Simple solution. on UK Government Wants Private Encryption Keys · · Score: 1

    Even better: Every random number series can be used as key for one-time pad encoding. So just have a process which constantly reads /dev/random and sends the results to the government!