Slashdot Mirror


User: A+non-mouse+Cow+Herd

A+non-mouse+Cow+Herd's activity in the archive.

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

Comments · 53

  1. this will be funny on Linux to be Official OS of People's Republic of China · · Score: 1

    When they realize that the same people who brought them linux want to bring strong crypto to all their dissidents.

    Or when they understand that the free in free software is speach.

    It's sad that linux will be used as a tool of oppression (I'd much rather that my dossier of anti government activities was stored on a windows box) but once you GPL your code you don't get to say who can use it.

    It is a very logical move for the for the PRC government, not because it is produced communally (which is just good PR fluff), but:
    1) It is not a US product, unlike most other mainstream OS's
    2) they have been repeatedly accused of pirating vast numbers of US software products. Being able to reasonably deny this might give them a better position in trade negotiations
    3) they can customize it to their needs.

    Now the question is, will we see patches for MySQL to allow it to maintian personal files (in unicode), photos and fingerprints for about a billion people. Maybe modified slash code ?

  2. LIMP! on Linux on a Magazine Cover? · · Score: 1

    The Linux image montage project
    http://linux.remotepoint.com/

    I'm not sure how the limp people feel about
    it getting used directly on a cover, but I
    imagine a nice E theme with one of the LIMP
    pre-release images open in a Mozilla window, a
    Gimp, and a few other things up.

    The great thing about LIMP is that it conveys
    how all the various independant (Linus's kernel,
    BSD and GNU utilities, the contribution of the
    verious hardware and commercial distro vendors)
    contribute to the whole, which is bigger than
    the sum of it's parts.

  3. expire your own cookies, whenever you want on Cookies, Ad Banners, and Privacy · · Score: 1

    #Created10/26/99bythenon-mousecowherd.Norightsrese rved.
    #well/.mademejumpthroughhoopstogetittoindentinpr eview
    #(:,$s/\t//gand:,$s/ /\/g)eeep!Ihopeitworksforyou.
    #Nowarrantyexpressorimplied.Useatyourownrisk,ony ourownRISC.
    #WorksformewithNetscrape4.6/perl5.00503.Yourmile agewillvery.
    #Internetexploderusersneednotapply.
    #Seewww.they.comforfurtherdisclaimers.
    #
    #purpose:
    #useittoperiodicallycleanoutcookiesfromunwanteds ources,tostifle
    #trackingefforts.Malliciouslychangingcookievalue sisleftasan
    #exercise.BUG: Youshouldreallybeabletosetallow&denyinyour
    #browser.Mozillafeature,anyone?
    #
    #usage:
    #cookiecutter.pl[-comment][-deny]{cookiefile}>{n ewcookiefile}
    #-comment
    #commentsoutdeniedlines,insteadofdeletingthem
    #yourcookiefilewillgrowwithoutboundifyouusethisr egularly.
    #(yourcookiefilealreadygrowswithoutbound,butthis
    #willmakeitgrowfaster)
    #-deny
    #denybydefault,allowonlyentriesspecificallyallow ed
    #cookiefile
    #somethingliked:\netscape\users\{username}\cooki es.txt
    #newcookiefile
    #wherethecleanedupcookiefileshouldgo.Copythisto
    #cookiefiletouse.Backingupcookiefilebeforecopyin g
    #newcookiefileoveritmightbeagoodidea.
    #Makingitthesameascookiefileonthecommandline
    #isabadideaonsomesystems.Shutdownthenetscrapebef ore
    #youcopyit.
    #Tabstopsare4
    useGetopt::Long;

    $lineno=0;
    #Theminimalistapproach(usedonlywith-deny)
    @allow=(
    '(.*)(\.?)slashdot\.org'
    );

    #theotherway
    @deny=(
    '(.*)(\.?)flycast\.com',
    '(.*)(\.?)doubleclick\.net',
    '(.*)(\.?)usa\.hyperbanner\.net',
    '(.*)(\.?)go\.com',
    '(.*)(\.?)snap\.com',
    );


    GetOptions("comment","deny");

    MAIN_LOOP:
    while(){
    $line=$_;
    split;
    if($_[0]=~/^#/){
    print;
    nextMAIN_LOOP;
    }
    if($opt_deny){
    foreach(@allow){
    if($_[0]=~/$_/){
    $allow_cnt++;
    print$line;
    nextMAIN_LOOP;
    }
    $opt_commentandprint"#$line";
    $deny_cnt++;
    }
    }
    else{
    foreach(@deny){
    if($_[0]=~/$_/){
    $deny_cnt++;
    $opt_commentandprint"#$line";
    nextMAIN_LOOP;
    }
    }
    $allow_cnt++;
    print$line;
    }
    $lineno++;
    }
    printSTDERR"$linenocookies\n$deny_cntdenied\n$al low_cntallowed\n";