Slashdot Mirror


User: hucke

hucke's activity in the archive.

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

Comments · 37

  1. Re:Might this not be a ploy on Star Wars II: Return of the Name · · Score: 3, Interesting
    "Revenge of the Jedi" wasn't a ploy; the name was changed at the last minute.

    True; it was changed to prevent confusion with Star Trek II: The Revenge of Khan, which was in production at the same time. Upon discovering the similarity, both movie studios agreed to change their titles.

  2. Re:Not an HTTP header on Earthlink's Extra HTTP Header · · Score: 1

    > Umm... isn't Content-type: text/html an HTML header, not an HTTP header?

    Uh, no. HTML is a language that uses tags enclosed in angle brackets ("<" and ">") to define the structure of the document. HTTP headers precede a document of any type and are of the form "keyword: value". "Content-type: text/html" is not HTML, it's HTTP.

  3. Next... on Slime Mold Demonstrates Primitive Intelligence · · Score: 1

    ...slime molds will be getting AOL accounts.

  4. Re:No end to spam on E-Mail Patent Roundup From The NYT · · Score: 1

    How can you think that Spammers should all be attacked, and made illegal, when you think
    that DeCSS should be free, because it is speech?


    The difference is obvious; the DeCSS authors aren't trying to insert something into someone else's private mailbox against the wishes of the mailbox owner.

    Spammers are trespassers, plain and simple. Fighting spam has nothing to do with free speech, this is about the right to control one's own property.

  5. noise pollution on Interesting Way To Protest Napster · · Score: 1

    It looks like Napster will soon be afflicted with the same problem that Slashdot has been suffering from: a falling signal-to-noise ratio, caused by malicious attempts to drown out the real conversation with huge amounts of garbage. This "cuckoo" guy is no different than the idiot who posts here about beer everyday.

    If this catches on, Napster will need to implement some sort of moderation scheme. Perhaps, after a download is complete (or after it's been manually aborted), the user should be prompted to give a positive or negative point to the person he downloaded from. Those with sufficient negative points (from unique userids) could be automatically disconnected and banned from the server (by IP, not by nickname) for a few hours.

    New userids are easy to create, and the Cuckoo guy could get back on without too much difficulty, but having the connection dropped will be an inconvenience.

  6. Re:solution on Network Solutions Changes WHOIS · · Score: 1

    Sorry -- some of that was lost because it contained angle brackets (< >).

    The correct version is at http://www.cynico.com/whois2.txt

  7. Re:solution on Network Solutions Changes WHOIS · · Score: 1

    #!/usr/bin/perl

    # whois2 -- do a whois on the default server
    # then parse output to find the server of the
    # registrar that manages that name.

    die ("Usage: $0 domainname\n") if ($#ARGV)
    {
    chop($line);
    $line =~ s/^\s//g;
    if ($line =~ /^[[]/)
    {
    print "$line\n";
    } elsif ($line =~ m/(Domain Name|Registrar|Name Server): (.*)/) {
    print "$line\n";
    } elsif ($line =~ m/Whois Server: (.*)/) {
    $server=$1;
    print "$line\n";
    }
    }
    close(W);

    if ($server)
    {
    system("whois $dom\@$server"); ## LINUX
    # system("whois -h $server $dom"); ## BSD, Solaris
    }

    # Sorry for the formatting... slashdot editors, please add support for HTML <PRE>!

  8. NSI no longer a monopoly. on Network Solutions Changes WHOIS · · Score: 1

    The change was made as part of the agreement with the US govt. and other registrars.

    Previously, a whois query on the default server would return information about a domain only if Network Solutions was the registrar for that domain, and a negative result if the domain was registered elsewhere.

    Now, all registrars are at an equal distance from the default whois server. To look up a domain, first do a 'whois' with the default server, and see what whois server serves that domain; then do a second query against that server, and you'll get all information you expect.

    A script to parse the output of the first "whois" and issue a second query is trivial and is left as an exercise for the reader.

    This is a good thing. The default "whois" is no longer NSI-only, and we no longer have to guess where the other whois servers are to track down a domain contact.

  9. Re:hourly keeps employers honest... on High Tech Wages - Salary or Hourly? · · Score: 2

    Four years ago, I started working in tech support for a small local ISP*. I was paid $8.50/hour, which seemed like a good deal at first. I was usually working 60 hour weeks or more. Then, I was "promoted" and given a "raise" -- I now had a salary of $23,000 yearly.

    Strangely, after this "raise", my paycheck was smaller than the week before. Based on a 60 hour week, that's about $7.66 per hour. But the president of the company claimed that I had been given a "75% raise" and expected me to be grateful for that. I was still expected to work 60-hour weeks.

    Within a few months, I had a much better job.

    *(Chicago-area readers may know of an ISP formerly owned by a man named Karl.)

  10. celebration on USvMS Ruling Expected Today · · Score: 1

    When the inevitable verdict is announced, I'll be opening the two bottles of four-year-old Chimay Blue Label "Grande Riserve" Trappist Ale that I've been saving for this happy occasion.

  11. Re:NSI/Slashdot Conspiracy Theory on Network Solutions E-Mail Security Alert · · Score: 1
    Most folks use the same password everywhere. Just think... if you were, you'd have passwords to hundreds of thousands of root accounts, etc.

    I would hope no slashdotters would be foolish enough to do that.

    I've changed the password for "my" account and for those of the Fortune 100 company I work for to such things as "idiots.nsi", "nsi-criminals", etc.

    (I also got into "amazon", "bn", and "msn", but don't want to be seen as trying to "take" those accounts... they're available right now if anyone wants them!)

  12. Stevens' books are the best on W. Richard Stevens Passes On · · Score: 1

    My copies of "Advanced Programming in the Unix Environment" and "UNIX Network Programming" are well worn from years of use. I have only the highest esteem for Mr. Stevens, truly a giant
    among technical authors.