Slashdot Mirror


User: PissingInTheWind

PissingInTheWind's activity in the archive.

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

Comments · 167

  1. Re:How... timely on WebTV/MSNTV Virus Dials 911 · · Score: 1

    >> The free world is at stake! Join up at your NET Guard recruiting office now!

    Wouldn't that be your .NET Guard recruiting office? (notice the clever dot)

  2. Re:tax $$ on Linux Games WIth Guns · · Score: 0, Flamebait
    Oh yeah, it's sooo much better when your tax dollars are used to try to take control of a south american country or to bomb remote location around the globe.

    Were the US refunded when the coup against Chavez failed?

    And where they when the bomb falled on helpless villagers?

    Get informed, your taxes dollars are much more mispent elsewhere than on a simple videogame that you can't get to work.

  3. Re:If I donate... on The Perl Foundation Grants Are Running Out · · Score: 1
    will Larry personally convert all my existing code so it will work under Perl 6?

    Yes!
    Well, almost: a p5 to p6 converter will be available. It's really at the base of perl6 of having an automatic converter for perl5 scripts.

    Also, with the perl6 interpreter you will be able to add a "use perl5;" pragma, so you'll only have to add a line to your scripts if you don't want them automatically converted.

  4. Re:Hell, yes it's useful on Is Profiling Useless in Today's World? · · Score: 1
    I agree with you 100%

    I haven't been clear on that, my point was somewhat related to the class of language I use/like more (Lisp languages): it's hard sometimes to tell what's expensive in a Lisp program, and the compiler can only do as much with such a language. In those case a profiler is invaluable.

  5. Hell, yes it's useful on Is Profiling Useless in Today's World? · · Score: 3, Insightful
    Maybe the problems with today's profiler is that the compiler implementors spend too much time making a compiler that is going to try to optimize everything by itself, which then might not even get the best code in that case.

    What could be more useful is if the compiler implementor would spend as much time on the profiler than on the compiler: you would then be able to easily see faulty parts in your software and be able to determine what needs to be optimized.

    Good profilers would means efficient code. Don't think profilers are useless because most implementations of them sucks.

  6. And why would this be a good thing? on Doom3 and OpenGL2.0 · · Score: 4, Funny
    DirectX has already won. OpenGL is dead.

    Why people can't just agree that it's a nice, easy standard, very powerful, flexible and open?

    oops, excuse me for a while, I think I forgot to take my medication today.

  7. Re:These aren't bugs! on Pet Bugs? · · Score: 1
    Ok, it's just that for me 'NOT' has the meaning of boolean negation, so I was expecting some sort of explicit conversion from '0' to 'false' and then the negation of 'false' to be 'true'.

    And about the 'timer()' thingy to seed the rand, my problem was that time returns the number of milliseconds since midnight, so it means that at the same time each day you always have the same seed (admitedly, there is little chance trouble could be caused by that in a simple application).

  8. Some weird VBScript bugs on Pet Bugs? · · Score: 1
    this is fucked up:
    if 0 then ... --> false
    if not 0 then ... --> true
    if 1 then ... --> true
    if not 1 then ... --> still true...

    wtf?

    Also, this kinda puzzled me:

    randomize(now())
    gives a constant 'random' seed. Don't do crypto in VB.
  9. Re:Personal Favorite on Pet Bugs? · · Score: 1
    That's "pass by value", while you were expecting "pass by reference".

    It's pretty common in programming languages, and not a crack-headed design as you might think.

    Examples in C:

    • int foo (int bar) {...} ---> pass by value
    • int foo (int &bar) {...} ---> pass by reference
    • int foo (int *bar) {...} ---> passing directly a reference
  10. Re:A new slogan for Linux on Is Linux Dead? · · Score: 1
    And in the same category:

    "Lisp doesn't look any deader than usual to me."
    -- David Thornley

  11. About that 'mozilla' browser on Slackware 8.1 is Released · · Score: 0, Offtopic
    I think I've seen something about it elsewhere.

    Is it Slackware's browser, like Konqueror for KDE? And is there any other way I could use it, even if I use only RedHat (it's Linux too)?

  12. Re:rofl on IBM Kernel Hackers Respond · · Score: 1
    When you get linux, you get a car in a box you have to assemble yourself. Some parts aren't right, don't function, or are currently unsupported.

    Yeah, maybe somewhat, but a least the hood isn't welded shut.

  13. Re:How to make a dirty bomb in 12 easy steps. on The Boy and his Breeder Reactor · · Score: 1
    However I'm surprised that the "Powers That Be" haven't killed this story since it has step by step directions on how to make uranium-233.

    It isn't a problem, anyone idiot enough to try it will probably keep himself from breeding, thereby respecting Darwin principles.

  14. Re:Change languages. on Bounds Checking for Open Source Code? · · Score: 1
    "But for non-C kernels, try BeOS (C++)"

    Sorry, but there's not a single line of C++ in the BeOS kernel. Their motto was always: "No C++ in kernel code".

    Well, that's too bad. Did you notice they went bankrupt too?

    Maybe they should have. Or maybe not, since C++ isn't such a radical change from C, you still get the sticky stuff while only adding hairy stuff...

  15. Re:Is this happenning because of Xbox on Nvidia? on NVIDIA's Pixel & Vertex Shading Language · · Score: 1
    Probably somewhat, to help developers make better looking graphics (or at least make them more easily) on the XBox.

    The article claim "cross platform compatibility" on Windows, Linux, Mac and the XBox.

  16. Re:24 Hours on Writing CGI Applications with Perl · · Score: 1
    got all the basics and enough to start on cgi...

    Ok, while I agree that Perl is easy to learn, one should be carefull to call himself a programmer afther reading one of these book.

    Obviously, if you get down to programming CGI in one day, how can you know all the pitfalls you will have to avoid in order to make your CGI secure?

    So many scripts are flawed or even dangerous. Just look at the (popular) pile of crap that is Matt's Script Archive. Those CGI aren't even programmed with CGI.pm, they are badly designed, and aimed at non-programmers that will install them on their servers, not knowing much more than they have to make the script executable so it will run.

    Programming CGIs should always be done with great care, and is a task best left in the hands of professionals.

  17. Re:Stupid question on PalmOS 5 Turns Gold · · Score: 2, Informative
    No, it doesn't require an ARM processor, I'm pretty sure about that.

    Too bad some moderators are stupid and mod up false post as 'informative'.

  18. Stupid question on PalmOS 5 Turns Gold · · Score: 1

    I have a Palm 3XE, can I upgrade my OS? And if so, is there any benefits in doing it, or would it only slow down my pda?

  19. Re:All I've got to say about this: on Security Through Obsolescence · · Score: 1
    The only time the 'brand new thing' should be adopted is if you just finished compiling it.

    Yeah, that's is so nice. As soon as you compile something, it becomes safe.

    Damn, I wish all OS would be compiled from a source, then we would all be safe.

  20. Manipulating bits would be tiresome... on Is the Universe its own Largest Computer? · · Score: 3, Funny
    If I was God, I think I would have only written a few Lisp macros to build it all.

    That would explain too why evolution takes millions of year... though it would explain too why it simply works.

  21. Why does this reminds me something? on Germany, IBM Sign Major Linux Deal · · Score: -1, Troll
    Ah, yes, the old ties between the German Nazis and IBM...

    IBM and the Holocaust: The Strategic Alliance Between Nazi Germany and America's Most Powerful Corporation

    Communist software with fascist hardware?

  22. What's next? on Your Online Marketplace for Classified Jet Parts · · Score: 3, Funny
    Drugs, kidneys, virginity... Now classified plane parts.

    How long before they get to sell an alzheimer-suffering ex-president on EBay?

  23. Not everyone hate spam... on Australian Spammer Sues Back · · Score: 2, Funny
    Look at this:

    Why I love spam

    Damn, I think I'd punch that guy in the face.

  24. Re:Actually Netcraft says he uses FreeBSD!! on New GNU Hurd Kernel Released · · Score: 1

    # lynx --dump http://gcc.gnu.org/onlinedocs/gcc-2.95.3/gcc_21.ht ml#SEC256 | sed -e 's/Linux/FreeBSD/'

    There you have your link...

  25. Re:try this: TUNES on New GNU Hurd Kernel Released · · Score: 1

    A Lisp OS?

    Don't we have Emacs already? ;-)