Slashdot Mirror


User: woah

woah's activity in the archive.

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

Comments · 183

  1. Re:What? on Physicists Work on Physics' Uncool Image · · Score: 1

    Only the stupid ones do :)

  2. Re:Hmmm... on Robot Makers Say World Cup Will Be Theirs By 2050 · · Score: 2, Informative
    I'm reminded of the Japanese 5th generation AI / language project of the 90s... that was going to somehow revolutionize everything. Anyone hear about that in the last few years?

    You mean this?

  3. Re:Sweet! on IBM Opens Their Patent Portfolio to Open Source · · Score: 1

    Classic Adequacy-like troll/satire. Brilliant!!!

  4. Re:Not always the best tool for the job on True Stories of Knoppix Rescues · · Score: 1

    * I then had to copy the essential ...

  5. Re:Not always the best tool for the job on True Stories of Knoppix Rescues · · Score: 1
    Yeah, but this requires over a gig of ram or a free partition.

    I did manage to remove the CD after an hour of fiddling. I remember a bit more clearly now what I did:
    I killed almost all the processes. I then had copy the essential commands to the ramdisk, remove the symlinks to the mounted CD filesystem and only then try and remove the modules.

  6. Not always the best tool for the job on True Stories of Knoppix Rescues · · Score: 1
    Knoppix isn't always the best tool for the job, due to the fact that you can't use the cd drive when running it.

    I once accidently deleted the /boot directory and obiously couldn't boot the machine. I did have everything backed up on CD-Rs. So I'm thinking, great I'll just boot with Knoppix and restore everything back. Little did I know.

    Anyway, I had to kill all the processes and rmmod all the modules, in order to unmount the Knoppix CD. Which wasn't easy at all, because as soon as you try to run some program the Knoppix distro tries to access the CD. And so you get some of the modules flagged as busy and you have to wait to remove them. Arrhh!!!!

  7. Re:Only in North America on SMS Text Messaging & Youth Debt One · · Score: 1
    Imagine someone with too much money hates your guts, they can let you pay a couple of thousands bucks just by sending you a insane amount messages?

    Especially when when loads of websites allow you to send text messages for free. (In exchange for flooding you with text spam. Though I think the bloke doing it wouldn't care about such things.)

  8. Re:Legos: possibly missing the point on Build Your Own Lego Computer Case · · Score: 1
    Not to be too blatently obvious here, or piss of the lego fans, but could it be that the original post wasn't really about legos?

    All I can say is:

    Well, DUH!

  9. Re:what's that sound I hear? on Local Root Exploit in Linux 2.4 and 2.6 · · Score: 1
    Actually, my university and at least two others use linux on their servers.

    And get this, my university has got around 100 x-terminals conected to a server running 2.6.9. :)

  10. Re:anti-social on Interview With Richard Stallman · · Score: 1
    RMS calling something anti-social, now there's an interesting tidbit...

    It's more accurate to view RMS as asocial, rather than anti-social. Anti-social is more about breaking kneecaps and giving people bloody noses.

  11. Re:Why no mention of key-locked dials and bolt lev on Safecracking for the Computer Scientist · · Score: 1
    ... I still don't get it.

    Care to explain?

  12. Re:Age old struggle... on Inside the Shadow Internet · · Score: 2, Insightful
    Just like almost all those hippies are now lawyers.

    What I'm about to say is not about piracy, which I do not condone. (I doubt the kids doing it, have some noble ideal in mind, anyway.)

    There's nothing worse than having a certain set of beliefs and then throwing it all away over the prospect of big bucks, or some other mundane reason. To me it's of much greater value that a person retains his/her integrity, rather than tries to conform to whatever everyone's doing. Especially with all the corporate and political bullshit that we seem to be spoon-fed all the time.

    It's surprising to see so many ./ers think of "growing up" as selling out to become a corporate drone, or a fat cat lawyer.

    God, I hope I'll never "grow up".

  13. Re:God of the Gaps: Glass half-full or half-empty? on Subatomic Darwinism · · Score: 1
    I don't really agree with this.

    It would take much more intelligence to create the universe as we see it now, than as you put it, set a bunch of universal constants and "watch the resulting fireworks". What this really means is watch the universe massively increase in complexity, no thanks to the "creator" you've just described.

    The underlying laws of the universe are actually much more simple than the complexity that has arisen from them. And with the multiverse theory, (which is consceptually similar to the theory of evolution) it's even possible to explain how these laws could have emerged.

  14. I can't believe this on Alek's Christmas Lights: Humbug · · Score: 1
    I feel cheated and used.

    For the love of god, how could he do this to us?!!

  15. Re:Reminds me of Gomez Addams... on Closer to Human Flight · · Score: 1
    Not necessarily.

    It all depends on the assumptions and definitions.

  16. Re:Maple & Matlab - not free but work well on on Open Source Math Software For Education? · · Score: 1

    Mathematica is actually available for Linux, as well.

  17. Mupad on Open Source Math Software For Education? · · Score: 1
    Mupad is another one.

    Not strictly Open Source, but free as in beer for Linux at least. It's now coupled with Scilab, so it's possible to do both symbolic and numeric maths with it. Just like in Mathematica.

  18. Re:I will help YOU get a JOB! (Programming puzzles on Programming Puzzles · · Score: 1
    Most of them are quite easy, except for number 11. I knew instantly how to do each of them, but number 11 kind of jumped at me and I thought, this is interesting...

    I managed to come up with this after an hour or two:

    int main() { char* a = "int main() { char* a = "; char b[128] = " printf( %s%c%s%c; char b[128] = %c%s%c; , a, 34, a, 34, 34, b, 34); b[8] = b[40] = 34; puts(b); }"; printf("%s%c%s%c; char b[128] = %c%s%c;", a, 34, a, 34, 34, b, 34); b[8] = b[40] = 34; puts(b); }
    There's probably loads of more elegant ways of doing it, though.
  19. Re:I will help YOU get a JOB! (Programming puzzles on Programming Puzzles · · Score: 1
    Well...

    No 11 is wrong. You wrote printf("an exact copy of the source". Given that you only wrote three lines of code, that should be pretty easy do, right?

    The question is recursive. If you include the source in the printf statement, than you'd have to include the printf statement itself as well, together with the source...

    I kind of had a look at it and managed to come up with this:

    int main() { char* a = "int main() { char* a = "; char b[128] = " printf( %s%c%s%c; char b[128] = %c%s%c; , a, 34, a, 34, 34, b, 34); b[8] = b[40] = 34; puts(b); }"; printf("%s%c%s%c; char b[128] = %c%s%c;", a, 34, a, 34, 34, b, 34); b[8] = b[40] = 34; puts(b); }

    It should work OK in unix. Not sure about Windows. Not terribly elegant, I know. There's probably loads of better ways of doing it.

    Other than that everything looks pretty good!!

  20. Nothing new.. on Fedora Project Considering "Stateless Linux" · · Score: 1, Informative
    This sounds a lot like VAXCluster technology, which was first introduced by DEC in 1983.

    There's plenty of Linux clustering technologies available. I wonder how does the Red Hat stuff compare.

  21. Re:some important Unix commands... on Two Years Before the Prompt: A Linux Odyssey · · Score: 0

    Why use lynx to look for exploits?

  22. Re:Perpetual motion ... on Cold Fusion Back From The Dead · · Score: 0
    Perpetual motion is possible..
    Perpetual motion machines are not.

    You could have a system moving forever as long as it does not lose any energy.

  23. Re:Why do cpu's have to keep getting smaller? on Intel Shrinks Transistor Size By 30% · · Score: 0
    Indeed, the main obsticles in increasing the wafer size is heat dispersion.

    Having said that, wafer sizes have been increasing steadilly, and will definetely do so in the future, accoring to Intel.

  24. Re:In other news... on Internet Meltdown Predicted for Tomorrow · · Score: 0

    Don't you mean just.. this

  25. August 5th on Doom 3 Web Site Now Operational · · Score: 2, Funny
    It confirms the August 3rd ship date

    Shouldn't that be August 5th?

    I mean I'm not that good with dates usually, but it is my birthday date.