Slashdot Mirror


User: Phantom042

Phantom042's activity in the archive.

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

Comments · 4

  1. Whitelisting on Ask Slashdot: Living Without Internet At-Home Access? · · Score: 1

    Start with whitelisting before you go through with canceling your service. Whitelist Wikipedia and whatever other resources you've got on your list. If this seems to work for you, then dump those resources and unplug your router from the cable / DSL modem for a month. Don't ask other people what resources you should have -- you know what you already use regularly and want to retain access to, or will after a month of whitelisting, and your coffee shop / office internet excursions will allow you to discover other resources which become important for home access in the future. Also, I doubt this life change will do you any good unless you cancel your cable / satellite TV service as well. Without the internet, the multitude of channels will allow you to browse and waste time the same way you did on the internet. Get Netflix or similar to mail you DVDs -- this will make you consider what you really want to see, and you can queue things up from the coffee shop.

  2. Re:Java plugin on Firefox 1.5 RC1 Released · · Score: 2, Informative
    If you just follow the instructions under:
    http://plugindoc.mozdev.org/linux.html#Java
    You won't have any trouble.
    The command I ran was:
    ln -s /usr/java/jre1.5.0_05/plugin/i386/ns7/libjavaplugi n_oji.so \ <br/>
    /usr/lib/firefox-1.0.7/plugins/libjavaplugi n_oji.so

    Just correct the version numbers and that should work.
  3. NewsForge and Slashdot are both part of... on This Year's Ottawa Linux Symposium Covered · · Score: 2, Interesting

    What, no notice that there are incestual links in the post?

  4. Here it is in PHP on Can You Raed Tihs? · · Score: 1

    For anyone who has access to PHP but not perl on their web site:

    <?php

    $string = "Welcome to the Wonderful World of Shuffled Letters!!!";
    $break = preg_split("/(\W+)/", $string, -1, PREG_SPLIT_NO_EMPTY | PREG_SPLIT_DELIM_CAPTURE);

    for($i=0; $i < count($break); $i++) {
    if(preg_match("/\w/", $break[$i]) && strlen($break[$i]) > 3) {
    $mixer = substr($break[$i], 1, -1);
    for($a=0; $a < 3; $a++) {
    $mixer = str_shuffle($mixer);
    }
    $break[$i] = substr($break[$i], 0, 1).$mixer.substr($break[$i], -1);
    }
    echo $break[$i];
    }
    ?>