Random bash scripting

Had to do this for work, couldn’t easily find a snippet on the web so here is one in case for some odd reason anyone needs it, this will create a file (t.t) that will have a list of numbers from 1000 -> 2000 adjust numbers as needed 🙂

#!/bin/sh
i=1000
while [ $i -lt 2001 ]
do
echo $i >> t.t
i=$[$i+1]
done

Holy two-faced congress batman

Democrats touted their distain for the warrantless wire tapping that the president and FBI were taking part in over the past few years.  However today, this afternoon, the democratically lead Senate passed the Telecom immunity bill.  They quote “Gave into pressure from the white house”.  Isn’t the reason they were elected because they said they would not give into the pressure?  I just don’t know what to think of our government anymore.  We’ve got one party who does whatever they want, and another party who does whatever the first one demands of them…. kinda sad.

-S

For The List

I’m working on a new website called For The List.  It’s a very cool idea proposed to me by a co-worker / friend.  The site will be essentially a digital collection of records.  The records on the site will all be user created (of course with some moderation).  Users will be able to post videos of records they break, and other users can try and break those records with their own video proof.  Anyone anywhere will be able to submit any record (no adult content please 😉 ).

If you’re interested, please check out http://www.forthelist.com , we’re looking for initial records to start the site off, so if you’re reading this, and you’re bored.  Please do *anything* that could be remotely considered a records and email it to [email protected] with either the video attached, or a youtube link or some such proof.

-Scott

*Sigh* why must the ignorant also be morons

Ladies and Gentlemen, if you don’t know something or how to do something it’s okay to say “I don’t know” or “can you please help me”.  Please don’t attempt to *fix* something in the network on your own, because nine times out of ten you’re only going to make the problem worse and make a much longer harder job for someone (me).

So here’s to the people who actually ask for help *raises glass*

-S