Berkeley CSUA MOTD:Entry 30442
Berkeley CSUA MOTD
 
WIKI | FAQ | Tech FAQ
http://csua.com/feed/
2025/05/26 [General] UID:1000 Activity:popular
5/26    

2004/5/27 [Politics/Domestic/President/Bush, Computer/SW/Unix] UID:30442 Activity:very high
5/26    Best side scroller game... EVER. http://www.emogame.com/bushgame.html
        - pst
        \_ w00t!
        \_ WHY DO YOU HATE AMERICA?
           \_ WHY DO YOU HATE WHITE PEOPLE?
        \_ Did you miss the link yesterday about hate and politics?
        \_ not work-safe.
        \_ Wow.  A Bush bashing link on the motd.  What a shock.
           \_ Here's a nickle kid. Buy yourself a sense of humor.
        \_ Quite similar to the movie comming out today in this respect:
           goes to extremes making stuff up in order to bash right wing
           politics.
           \_ Was the game ALSO written by Art Bell?
           \_ See now, why don't you put up a website listing all of the
              made-up stuff instead of just whining about it?
              \_ obGoogle.  It's all over and you wouldn't care anyway.
                 \_ Funny, this is what I found:
                    link:csua.org/u/7hi
                    \_ Ok, and?
2025/05/26 [General] UID:1000 Activity:popular
5/26    

You may also be interested in these entries...
2012/12/18-2013/1/24 [Politics/Domestic/President/Bush] UID:54559 Activity:nil
12/18   Bush kills. Bushmaster kills.
        \_ Sandy Huricane kills. Sandy Hook kills.
           \_ bitch
	...
2011/5/1-7/30 [Politics/Domestic/911] UID:54102 Activity:nil
5/1     Osama bin Ladin is dead.
        \_ So is the CSUA.
           \_ Nope, it's actually really active.
              \_ Are there finally girls in the csua?
              \_ Is there a projects page?
              \_ Funneling slaves -> stanford based corps != "active"
	...
2010/11/8-2011/1/13 [Politics/Domestic/Abortion] UID:53998 Activity:nil
11/8    Have you read how Bush says his pro-life stance was influenced
        by his mother keeping one of her miscarriages in a jar, and showing
        it to him?  These are headlines The Onion never dreamed of
	...
2010/11/2-2011/1/13 [Politics/Domestic/California, Politics/Domestic/President/Reagan] UID:54001 Activity:nil
11/2    California Uber Alles is such a great song
        \_ Yes, and it was written about Jerry Brown. I was thinking this
           as I cast my vote for Meg Whitman. I am independent, but I
           typically vote Democrat (e.g., I voted for Boxer). However, I
           can't believe we elected this retread.
           \_ You voted for the billionaire that ran HP into the ground
	...
2010/5/26-6/30 [Politics/Foreign/Asia/China] UID:53845 Activity:nil
5/26    "China could join moves to sanction North Korea"
        http://news.yahoo.com/s/ap/20100526/ap_on_re_as/as_clinton_south_korea
        How did Hillary manage to do that when we're also asking China to
        concede on the economic front at the same time?
         \_ China doesn't want NK to implode. NK is a buffer between SK and
            China, or in other words a large buffer between a strong US ally and
	...
2010/4/28-5/10 [Politics/Domestic/President/Bush] UID:53808 Activity:nil
4/28    Laura Bush ran a stop sign and killed someone in 1963:
        http://www.nytimes.com/2010/04/28/books/28laura.html?no_interstitial
        How come she didn't go to jail?
        \_ Car drivers rarely go to jail for killing people.  -tom
        \_ Ted Kennedy killed a girl. Dick Cheney shot a man.
        \_ Ted Kennedy killed a girl. Hillary and Dick Cheney both shot a man.
	...
2010/2/21-3/9 [Politics/Domestic/President/Bush] UID:53717 Activity:nil
2/18    If not 0 then 1 - wasn't that the basis of the logic of the bush
        administration on torture?  If we do it, it's legal, and since
        torture is illegal, therefore we don't torture?
        \_ Bush is a great computer scientist.
           \_ He must be, given that he defeated the inventor of the Internet
              and AlGorithm.
	...
2009/12/25-2010/1/19 [Politics/Domestic/California, Politics/Domestic/President/Bush] UID:53603 Activity:nil
12/24   Why San Francisco and union and government suck:
        http://globaleconomicanalysis.blogspot.com/2009/12/unions-graft-stunning-incompetence-make.html
        \_ http://www.burbed.com/2010/01/03/san-francisco-richer-and-richer-and-richer
           San Francisco to become richer and richer and richer. It's
           Disneyland for adults! YAY!!!
        \_ No doubt that there is plenty of corruption in San Francisco that
	...
2012/4/27-6/4 [Computer/SW/Languages/Misc, Computer/SW/Unix] UID:54372 Activity:nil
4/27    I wrote a little shell script to collect iostat data:
        #!/bin/bash
        DATE=`date +%m%d`
        DATADIR=/var/tmp/user
        OUTPUTFILE=$DATADIR/$DATE.out
        while true
	...
2009/12/9-2010/1/13 [Computer/SW/Unix] UID:53586 Activity:nil
12/8    Is there a bash equivalent to tcsh's history-search-backward ?
        \_ There's something similar called... history-search-backward. It
           is a bit more limited, in that it only searches for strings and
           not glob patterns. You may find reverse-i-search to be useful also.
	...
2009/10/27-11/3 [Computer/SW/Unix] UID:53475 Activity:nil
10/27   http://www.maxgames.com/play/flash-mind-reader.html
        how does this work?
        \_ sh -c 'for ((i=0;i<10;i++)); do for ((j=0;j<10;j++)); do echo "$i$j-(\
$i+$j)" | bc; done ; done' | uniq
        \_ bash -c 'for ((i=0;i<10;i++)); do for ((j=0;j<10;j++)); do echo "$i$j\
-($i+$j)" | bc; done ; done' | uniq
	...
2009/8/18-9/1 [Computer/SW/Unix] UID:53284 Activity:nil
8/18    Is it possible to truncate your path name in your prompt in tcsh?
        Tsch veterans REPRESENT!  I know this is how to do it in bash:
        # truncate path: returns $1 truncated to $2 chars, prefixed with ...
        truncate_path () {
                if [ -z "$1" -o -z "$2" ]
                then
	...
2009/8/19-9/1 [Computer/SW/Unix] UID:53285 Activity:nil
8/18    Hi again, new freebsd guy here again, in bash I was able to go
        LD_LIBRARY_PATH=/opt/foo/lib ./runmyapp
        I managed to do this in tcsh by using setenv in a shell script
        that setenv's the lib path and then executes $1, just wondering
        if there was a way to do it in 1 line from the cmd line as in bash?
        Thanks, btw %2c or %3c worked.  Freebsd, tcsh and vi forever!
	...
2009/1/5-8 [Computer/SW/Unix] UID:52313 Activity:kinda low
1/3     no hurry but do you know of:
        $ chsh
        Password:
        Enter the new value, or press return for the default
         Login Shell [/usr/local/bin/bash]: /bin/zsh
        failed: Insufficient access
	...
2008/11/24-28 [Computer/SW/Unix] UID:52090 Activity:nil
11/23   How do you find the max # of forkable threads in a unix
        environment? Is it system or user based?
        \_ getrlimit, or ulimit -a (in bash)
	...
2008/8/18-21 [Computer/SW/Unix] UID:50894 Activity:kinda low
8/18    How long has the command "seq" been around? I just saw it in
        one of my coworkers shell scripts and wish I had known about it
        years ago...
        \_ what does it do?  - bash fan #1
           \_ It prints out a sequence of numbers from FIRST to LAST in
              a specified increment.
	...
2008/7/14-16 [Computer/SW/Languages/Perl, Computer/SW/Unix] UID:50557 Activity:moderate
7/14    Shell Programming question: I want to call a script with 1 arg
        and have it figure out whether $1 is a MAC address or an IP address
        and then do call the appropriate function.  What is the best way
        to do this, given that sh/bash/ksh do not have something like
        the =~ in perl.  Check for exit status of grep, or is there a
        a better way?  For the moment, let's just say the two tests are:
	...