Slashdot Mirror


User: syberdave

syberdave's activity in the archive.

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

Comments · 42

  1. Bongo drums? on Meteorite Strikes Indian Village · · Score: 0

    Is that the aliens using the Earth as a giant bongo drum?

  2. Annoying tool on MS Psychologist on How We Read · · Score: 0

    tihs is old... awyanys, jwz (the aothur of xscarevsneer) has witetrn a prel app for dinog tihs... fun to aonny plpoee wtih :)

    http://www.jwz.org/hacks/scrmable.pl

  3. Re:Wouldn't it be great... on P2P Spam? · · Score: 1

    and it also needs to DDoS microsoft
    and make sure they select the right target

  4. Re:The instant messanger that works! on Gaim Speaks Out on MSN Ban · · Score: 1

    echo "YOU should be running linux" |smbclient -M (codepunk's ip)

  5. How long will it be... on New Linux-based PDA due September · · Score: 1

    until they get linux on it?
    Oh, wait. Nevermind.

  6. eep on RPC DCOM Worm On The Loose · · Score: 1

    This thing is getting around quickly...

    Aug 11 21:43:29 syberpc kernel: fw: IN=ppp0 OUT= MAC= SRC=66.233.77.64 DST=66.236.160.x LEN=48 TOS=0x00 PREC=0x00 TTL=111 ID=26462 DF PROTO=TCP SPT=1951 DPT=135 WINDOW=16384 RES=0x00 SYN URGP=0
    Aug 11 21:43:30 syberpc kernel: fw: IN=ppp0 OUT= MAC= SRC=66.235.38.60 DST=66.236.160.x LEN=48 TOS=0x00 PREC=0x00 TTL=115 ID=59390 DF PROTO=TCP SPT=4309 DPT=135 WINDOW=64240 RES=0x00 SYN URGP=0

  7. Re:Applying the same logic on 9th Circuit Court Finds 'Thumbnailing' Fair Use · · Score: 1

    so they can have a lot of 30-second "samples" and put them togeather?

  8. god on Does Google = God? · · Score: 1

    I wanted to be god with google, so I gave it a setuid(0);, but it didn't let me :(

    setuid(0): Operation not permitted
    setuid(0): Operation not permitted. Stuart Parker stuart@selenium.com.au
    Tue, 13 Mar 2001 16:57:04 +1100: Previous message: Root expires; ...
    www.sudo.ws/pipermail/sudo-users/ 2001-March/001457.html - 3k - Cached - Similar pages

  9. Re:Why buy Microsoft ? on Any Reason To Buy Microsoft? · · Score: 1

    u use either

    umount /dev/hdd

    -OR-

    umount /cdrom

    you're wasting precious keystrokes!!

  10. Re:Finally! on GoboLinux Rethinks The Linux Filesystems · · Score: 1

    when you install slackware packages, a filelist will be written to /var/log/packages/

    slackware r0x!

  11. they can't get me!!! on New Ultra-Intrusive Pop-up Ads Introduced · · Score: 1

    i usually surf with links or lynx :)
    or... maybe... FULL-PAGE TEXT ADS :(

  12. damn aol on The Science of The Moist Towelette · · Score: 1

    It got slashdotted...

    Web Site Not Displayed

    Sorry, We Can't Display That Page
    This member has exceeded their bandwith for the day. Please check back after 4 am EST to access this page


    or at least for today.
    Damn AOL

  13. Re:Can We At Least Agree... on The Case for Rebuilding The Internet From Scratch · · Score: 1

    or how about telling just aol so it gets lost? :)

  14. Re:trillian + modified IRC= STANDARDIZED IM on Sun Launches Instant Messaging Server · · Score: 1

    That's not hard... just add a new feature that works like dcc chat.

    One client requests, gives a ip and a port, and the other client connects and can send data.

  15. Re:TOS on Have You Really Read Your ISP's TOS? · · Score: 1

    Then you must be using AOL, right?

  16. Re:Your most unusual Tcl application on Tcl Core Team Interview · · Score: 2, Interesting

    #!/usr/bin/tclsh

    while {1} {
    puts -nonewline "crap@syberpc:~$ "
    flush stdout;
    set instr [gets stdin]

    set mcmd [lindex "$instr" "0"]

    if {"$mcmd" == "exit"} { break
    } elseif {"$mcmd" == "cd"} {
    if {[string length [lindex "$instr" "1"]] != 0} {
    puts "bash: cd: [lindex "$instr" "1"]: No such file or directory"
    }
    } elseif {"$mcmd" == ""} {
    } else {
    puts "bash: $mcmd: command not found"
    }

    }

    #sry... im new to this

  17. Re:Your most unusual Tcl application on Tcl Core Team Interview · · Score: 1

    #!/usr/bin/tclsh while {1} { puts -nonewline "crap@syberpc:~$ " flush stdout; set instr [gets stdin] set mcmd [lindex "$instr" "0"] if {"$mcmd" == "exit"} { break } elseif {"$mcmd" == "cd"} { if {[string length [lindex "$instr" "1"]] != 0} { puts "bash: cd: [lindex "$instr" "1"]: No such file or directory" } } elseif {"$mcmd" == ""} { } else { puts "bash: $mcmd: command not found" } }