Slashdot Mirror


User: staypuft

staypuft's activity in the archive.

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

Comments · 7

  1. Reduce the weight of the payload... on Make Your Own Sputnik · · Score: 1

    ...don't send the strap of the equivalent wristwatch

  2. Re:for those too cheap to buy a book on JavaScript and DHTML Cookbook · · Score: 5, Informative

    You are all welcome! Just don't /. it! Bandwidth does not come cheap!

  3. Re:for those too cheap to buy a book on JavaScript and DHTML Cookbook · · Score: 4, Insightful

    LOL - Where are the moderation points when you need them!

    And it is my site too!

  4. Re:I don't know... on Is the SCO Lawsuit a Good Thing for Linux? · · Score: 1

    Did IBM ever have a chance to settle before now without handing over cash to SCO? Now IBM is in a position to settle with SCO over their mutual differences without paying any money. "We'll offset your suit against our counter suit".

    The result maybe that:

    SCO is happy because IBM will effectively license SCO's "own" IP and thus validate SCO's new business model, and thus still be able to pursue other distributors for real cash. The SCO stock price stays high as they have been seen to be successful.

    IBM is happy because it successfully avoided a $3billion law suit without handing over any money, by just using its back catalogue of patents, it can continue to legally distribute Linix on its own hardware, potentially IBM becomes the only licensed distributor apart from SCO.

    Redhat may have spotted this possibility, which maybe why it has also filed suit and not just left it up to a fight between SCO and IBM.

    Then again I could be talking complete bollocks

  5. Re:Deutsche Bank on SCO Calls IBM Countersuit "Unsubstantiated Allegations" · · Score: 1
    "They said it was from another hardware vendor, but they didn't say who," Skiba told internetnews.com. "I think it's clear that they didn't mean HP or Sun."
    IBM is [another] hardware vendor.
  6. Re:The beat goes on. on Linus Torvalds about SCO, IP, MS and Transmeta · · Score: 1
    From the article:

    When I checked in mid-June, SCO's total capitalization was only $132 million. It had $5 million in cash. Red Hat's shares were up, too, from a low of $3.46 to a peak of $9.25. Its capitalization stood at $1.3 billion, and it had $300 million in cash.
    About sums it up for me.
  7. In perl on Honeypot For Identifying Email-Harvesters · · Score: 1

    use MIME::Base64;
    use CGI qw/:standard/;
    use Socket;

    my $email_trap = encode_base64(inet_ntoa(scalar gethostbyname(remote_host() || 'localhost')));

    $email_trap =~ s/=//g;
    $email_trap =~ s/\n//g;

    print "<a href=\"mailto:$email_trap\@xyz.com\">This is a spam trap</a>";

    # my $remote_addr = decode_base64( $email_trap );

    improvements welcomed