Berkeley CSUA MOTD:Entry 37325
Berkeley CSUA MOTD
 
WIKI | FAQ | Tech FAQ
http://csua.com/feed/
2025/07/08 [General] UID:1000 Activity:popular
7/8     

2005/4/22-25 [Computer/SW/Languages/Misc, Academia/Berkeley/CSUA/Motd] UID:37325 Activity:high
4/22    Per ilyas and dbushong's suggestion I modified motd diff:
        http://csua.berkeley.edu/~kchang/24/?incr=1
        Constructive comment/suggestions welcomed here
        \_ what do the different colors/styles of the listed names mean?
           \_ color key is here: http://csua.berkeley.edu/~kchang/24 go down
        \_ Knowing what I have added to the motd today (very little), I can
           confidently pronounce this as a piece of crap.  Or at least that
           a simple way to defeat it is to edit the motd without a lock and
           background the editor (reloading inside the editor when I want to
           add a change). -emarkp
           \_ I never made the claim it's 100% accurate or undefeatable.
              In fact it's impossible to track everything unless you make
              mods to the OS to track writes, or build something on top of
              root writable motd.public that requires authentication. It's
              a difficult problem, and that's what makes it interesting.
              \_ But claiming to indicate users while being inaccurate is
                 disinformation, especially in some of the charged threads that
                 show up here. -emarkp
                 \_ what, science can't be probabilistic? The indicators are
                    merely what the script THINKS has happened, that
                    it has some confidence that underlined/bold/etc users
                    did something, and low confidence that grayed out users
                    did something. That's it. You're right, it's not black
                    or white. If you don't trust the script, that's fine too.
                    But calling it a piece of crap, that is a bit extreme.
                    \_ It's a piece of crap.  -tom
                    \_ I count 25 entries today with my name in it.
                       Considering that before this thread I made a whopping 2
                       edits, yes I think it's a piece of crap.  Oh, and sign
                       your name. -emarkp
                        \_ I'll gladly sign my name when you start using
                           motdedit or a shared lock system :)
                           \_ Give me a break.  Motdedit is problematic, and
                              faulty.  My editor lets me know if the buffer I'm
                              editing has changed on disk so I don't overwrite.
                              That works for me.  Sign your name. -emarkp
                              \_ Well. You don't use motdedit because you have
                                 your reasons, and I will not sign because I
                                 have my reasons. Let's just leave it at that.
                                 \_ Then do you have a problem with someone
                                    writing a script to divine your identity?
                                    -emarkp
                                    \_ Not really, why should I care? It
                                       interfere with me anyways.
                                    \_ No. I guess we're all different
        \_ The page could use some UI improvements. How about format
           it like those web forums? What I meant is something like
           http://forums.slickdeals.net/t94394.html So that each
           topic is broken into its own colored sections. Also, fonts
           such as Arial would probably be easier to read. How about
           move the "clock" to the front in its separate column? At
           the end of the page, explain the color coding. Remove the
           extra line above and below the highlighted section. And if
           you are really bored, reformat each reply so that it is
           perfectly indented. -chiry
        \_ And if you yearn for anonymous motd again, http://csua.org/motd
           \_ I wouldn't mind if I get a shell account.
2025/07/08 [General] UID:1000 Activity:popular
7/8     

You may also be interested in these entries...
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
	...
2012/5/8-6/4 [Computer/SW/Unix] UID:54383 Activity:nil
5/8     Hello everyone!  This is Josh Hawn, CSUA Tech VP for Spring 2012.
        About 2 weeks ago, someone brought to my attention that our script
        to periodically merge /etc/motd.public into /etc/motd wasn't
        running.  When I looked into it, the cron daemon was running, but
        there hadn't been any root activity in the log since April 7th.  I
        looked into it for a while, but got lost in other things I was
	...
2011/10/26-12/6 [Computer/SW/Unix] UID:54202 Activity:nil
10/24  What's an easy way to see if say column 3 of a file matches a list of
       expressions in a file? Basically I want to combine "grep -f <file>"
       to store the patterns and awk's $3 ~ /(AAA|BBB|CCC)/ ... I realize
       I can do this with "egrep -f " and use regexp instead of strings, but
       was wondering if there was some magic way to do this.
       \_ UNIX has no magic. Make a shell script to produce the ask or egrep
	...
2011/7/30-8/10 [Computer/SW/Languages/Misc] UID:54148 Activity:nil 66%like:54150
7/29    Happy Sysadmin Day
        \_ our "sysadmin" today deleted /home. When we asked her why
           she said she didn't do it. When I checked the sudo logs,
           I found these two commands in order:
               COMMAND=/bin/rm -r /home testuser
               COMMAND=/bin/rm -r /home/testuser
	...
2011/5/19-7/13 [Computer/SW/Languages/Misc] UID:54115 Activity:nil
5/19    If script A runs, and calls script B ..... is it possible for me to exit\
        script A based on results of script B and not continue?
        \_ assume any shell
        \_ Yes.
           \_ without passing the result to some stupid temp file?
              \_ It sounds like you want "scriptb || exit", which will run
	...
2010/4/22-5/10 [Computer/SW/Languages/Misc] UID:53797 Activity:nil
4/22    In Linux is there an easy way to rename the scripts in /etc/rc?.d ?
        For example I want to set all the /etc/rc?.d/S91apache to S100apache
        so that it'll run the ramdisk BEFORE going to apache.
        \_ Sure, just move them.
           \_ I mean is there a script that will rename all of them
              for me? Like: setrc apache2 0 0 1 1 1 1
	...
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/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/5/5-6 [Computer/HW/Laptop] UID:52950 Activity:moderate
5/5     Is there a good (or standard) way to make an offline copy of a w
        ordpress blog (mine, not someone else's)? tia.
        \_ oh man.
           \_ I could cobble something together with curl / wget, but I'd
              rather not if there is a standard way of doing this.  I'm
              pretty new to wordpress / blogging and I just want to keep
	...
2009/2/10-13 [Computer/SW/Security, Computer/SW/Unix] UID:52552 Activity:nil
2/10    I have an sh file that does a mount.. the mount does an
        authentication. I previosly stored the username and password
        from zenity prompts. However, I can't get a return on the password
        field. The following only works on the username:
        mount -t davfs "http://blahblah.com/BLahUser11" /mountdir << EOF
        ${username}
	...
2009/1/14-22 [Computer/SW/Languages/Perl, Computer/SW/Languages/Misc] UID:52378 Activity:nil
1/13    I want to extract a couple integer from an xml file, mainly,
        xml file from http://weather.com so I can put it on my xplanet marker
        file. has anyone done similar things (parse and extract data
        from xml) using shell script instead of python/perl?
        in the world of perl, it make sense to dump things into a hash
        which i can easily extract key/value pair.  can i achieve similar
	...
2008/12/18-2009/1/7 [Computer/SW/Mail] UID:52279 Activity:nil
12/18   Campus USENET service will be terminated on 12/31.
        http://ls.berkeley.edu/mail/micronet/2008/1608.html
        \_ I emailed RobR to tell him. -ausman
        \_ The CSUA is considering asking campus to allow us to run NNTP for
           ucb.class.*, as bSpace sucks major major ass. Thoughts? --t
           \_ That's noble, but maybe the effort would be better spent
	...
2013/10/24-2014/2/5 [Academia/Berkeley/CSUA/Motd, Computer/SW] UID:54746 Activity:nil
9/26    I remember there was web version of the motd with search function
        (originally due to kchang ?).  The last time I used it it was hosted
        on the csua website but I can't remember its url (onset of dementia?)
        now. Can somebody plz post it, tnx.
        \_ http://csua.com
           \_ for some reason I couldn't log in since Sept and the archiver
	...
2012/9/5-11/7 [Academia/Berkeley/CSUA, Academia/Berkeley/CSUA/Motd] UID:54472 Activity:nil
9/4     It looks like there are some issues with wallall at the moment. Any
        plans for it getting fixed? I can run wall, but wallall just gives an
        error.
        \_ Asking questions on the motd will not get any attention from
           any undergrad. You should email politburo or perhaps csua. -ausman
        \_ Asking questions on the motd will not get attention from any
	...
2012/4/23-6/4 [Academia/Berkeley/CSUA/Motd] UID:54359 Activity:nil
4/19    Motd updater thingy seems to be broken, does anyone know why?
        If not, I will take a look later in the day. -ausman
        \_ /etc/motd.public is not getting copied into /etc/motd for a while.
           \_ Now it works and no one knows why. Strange. -ausman
	...
2012/2/6-3/26 [Academia/Berkeley/CSUA, Academia/Berkeley/CSUA/Motd] UID:54301 Activity:nil
2/6     Um, what happened to http://www.csua.berkeley.edu/~myname ?
        "The requested URL /~myname/ was not found on this server."
        \_ Try emailing root or politburo. I don't think that the
           undergrads use this machine anymore. -ausman
        \_ Ausman is mostly right. LDAP went down due to an expired cert and
           took down most of the rest of our stuff. It's probably a thing with
	...
2012/2/24-3/26 [Academia/Berkeley/CSUA/Motd] UID:54313 Activity:nil
2/24    What newsreader should I use on soda?
        \_ USENIX? You serious? Everyone switched to RSS.
           \_ I think you mean usenet not usenix.  usenet was generally much
              better than blogs / rss (cf. comp.lang.c, comp.lang.perl,
              the usenet oracle, alt.* with digg, slashdot, etc.)
           link:reader.google.com is the best
	...
Cache (5424 bytes)
csua.berkeley.edu/~kchang/24/?incr=1
I believe in an America that is officially neither Catholic, Protestant nor Jewish -- where no public official either requests or accepts instructions on public policy from the Pope, the National Council of Churches or any other ecclesiastical source -- where no religious body seeks to impose its will directly or indirectly upon the general populace or the public acts of its officials." He later collaborated with Madison to write the Religious Freedom act in Virginia, which was explicit about a separation. At the writing of the Bill of Rights almost every colony had a State church. Jefferson himself as President funded Christian missionaries. This type of Federal support for Christian institutions continued until the beginning of the 20th century. This results not only from the provision that no law shall be made respecting the establishment, or free exercise, of religion, but from that also which reserves to the states the powers not delegated to the US Certainly no power to prescribe any religious exercise, or to assume authority in religious discipline, has been delegated to the general government. It must then rest with the states, as far as it can be in any human authority." Kennedy uses invokes this decision since Justice Black was radically anti-Catholic and even a former member of the KKK. JFK's statement is an expression of what America OUGHT to be rather than what it is (or is required to be under the establishment clause). There is nothing wrong with his belief that America should have more religious separation than the constitution requires. Or at least that a simple way to defeat it is to edit the motd without a lock and background the editor (reloading inside the editor when I want to add a change). So that each topic is broken into its own colored sections. Also, fonts such as Arial would probably be easier to read. How about move the "clock" to the front in its separate column? Remove the extra line above and below the highlighted section. And if you are really bored, reformat each reply so that it is perfectly indented. You can break a filibuster with endurance if you're willing to stay up late. And if the other side is willing to stay and fight it, maybe the majority should reconsider. On the other hand, I think the Dems are going nuts blocking judges. Of course, the Republicans blocked 16 of 51 Clinton second term appellate nominees too. So the Democrats are slighly less accommodating, but both sides play this game. Considering you have 55 Republican senators, all you need are 50 rubber stamps to pack the courts. Filibustering is rarely used, because who wants to stay up all night when you could compromise? However, you can also get 50 votes to make a rule that says you can't filibuster anymore on judges. In which case, you can then employ 50 rubber stamps on any judge you want. The use of filibusters to prevent nominations is historically rare, until Bush's 1st and 2nd term. A Senate majority is allowed to change procedural rules, and so they should. Also, I think there's generally a lot more anger in China and Korea than over just the issue of sex slavery; there were a whole slew of war atrocities commited by imperialist Japan--sex slavery simply appears to be either the only one well vocalized or the only one covered by the media. I don't really think Japan has to continue to atone for it's past sins, but it shouldn't try to deny them either. However, by allowing it's citizens to riot and damage the Japanese embassy, China was in direct violation of it's signed treaties. I'm not saying the Chinese approach is anything less than reprehensibly opportunistic, but there's sure a lot of potential for Japan to take the moral high ground. org/u/btc (sfexainer) A great column exploring the roots of some of the fundamental problems we face in America (expensive housing, traffic congestion, obesity) and what we can do about it. But the railroads became oppressive monopolies, which along with the oil companies brought Teddy Roosevelt into power as a "trust-buster". Extremely harsh restrictions on rail monopolies, never revisted over time, squeezed the life out of the industry over the next 30 years, and rail in the US has never recovered. That's what pisses me off when Bush says shit about how Amtrak needs to support itself. Amtrak can't compete against a road network that gets insane amount of tax money for expansion/support. story_id=3886356 "n IMF study on asset bubbles estimates that 40% of housing booms are followed by housing busts, which last for an average of four years and see an average decline of roughly 30% in home values." As opposed to maybe prices increasing faster than any realistic notion of valuations? It's as if the problem lies with how poor the people are who are buying the houses rather than how expensive the houses have become relative to people's incomes. I'm pretty sure if the severed head of the last parasitic fuck who bought land in my neighborhood just for profit were on a spear at the major intersection it would deter further speculation pretty fast. Neglecting the damping effects of air and any echo effects, moving twice as far away from a point sound source gives 4x less power, or -6dB. If you're moving away from a line sound source, such as a long narrow air vent, then if you're 2x as far away you are also exposed to 2x as much sound producer, so it would be -6dB+3dB=-3dB quieter.
Cache (177 bytes)
csua.berkeley.edu/~kchang/24 -> csua.berkeley.edu/~kchang/24/
User Selected Diff Diff 2 versions now Below are motd history log in increments of 1 minute for the past 24 hours. Choose two versions want to diff then press 'Diff 2 versions'.
Cache (668 bytes)
forums.slickdeals.net/t94394.html
Drio's Avatar Join Date: Aug 2003 Location: New Hampsha Posts: 3,547 Quick question.. TIA -Drio "No trees were killed in the sending of this message. RunDownHouse L1: Learner Join Date: Apr 2005 Posts: 9 The upgrade options are now showing that the 2005fpw is "adjustable stand , VGA." slickdeals's Avatar Join Date: May 2003 Location: California Posts: 2,219 Quote: " Originally Posted by Drio Quick question.. chadley58 L1: Learner Join Date: May 2004 Posts: 24 Quote: " Originally Posted by Drio Quick question.. Austinj L1: Learner Join Date: Dec 2004 Posts: 4 Cant wait to see how quickly this one goes! Just got my laptop from last weeks coupon a few days ago...
Cache (139 bytes)
csua.org/motd -> csua.org/motd/
CSUA Web "motd" The uncensored messages below this line may not reflect opinions of the CSUA, this site, or even the people who write them.