Posted on 06-08-2008
Filed Under () by whitey

Yo,

I forgot I even had a blog looks like, I keep starting these little projects and forgetting about them or getting bored, this is something that I’ve really been wanting to do now.  I just upgraded the wordpress software, I’ll see where it takes me.

~whitey

(0) Comments    Read More   
Posted on 09-09-2007
Filed Under () by whitey

Hello All,

I started another wiki, never really fell into the wiki scene. For the most part I was too lazy to ready any directions on how to add new pages. Well, I’ve read through a little bit, I’m using the mediawiki software that wikipedia is based on. I’ll open it up to whoever wants to contribute, just drop me an email or try to sign up, I haven’t really gotten that far.

I’ll be posting general tech knowledge up there, for the most part it will be helpful information for me to use, but it will be general UNIX admin info.

If you choose to post on my wiki, please for all that is holy, don’t post anything sensitive. THIS WIKI IS FOR PUBLICLY AVAILABLE INFORMATION ONLY.

http://wiki.angryfattechnologistbeinsane.info

Later

~whitey

(0) Comments    Read More   
Posted on 20-08-2007
Filed Under () by whitey

Hello All,

I know you are as excited as I am to find out when pregnantninja.com is going to go live. I don’t know about you, but I am an avid supporter of both ninjas and pregnant chics (as long as it isn’t mine). Help me in a grassroots campaign to speed along their development, by visiting their site and using their contact us link to send them words of inspiration.

You may say, are pregnant ninjas even real? All I have to say in response is, “Have you ever seen a pregnant ninjs? …… Exactly”. If you can’t see the pregnant ninja, then they are hiding safely in the shadows using their ninja skills.

Keep on fighting the good fight, Pregnant Ninjas

~whitey

(0) Comments    Read More   
Posted on 01-08-2007
Filed Under () by whitey

Hello Guys,

I said that I would post the examples from today’s studies on basic shell scripting. Here you go:

For Loop

If Statement

Until Loop aka the Do-While Loop

Let me know if you need any explanations on this subject, also google is a great source for finding templates and examples.

Laters

~whitey

 

#!/bin/bash
for monkey in `ls *.txt`;do
cp $monkey $monkey.copy;
done
#for i in `ls <to create list>`; do <action> $i ; done

*************************************

#!/bin/bash
variable=100
touch my_weiner.txt
if [ $variable > 50 ]; then
echo “Thats what she said.” > my_weiner.txt
else
echo “Thats not what she said.” > my_weiner.txt
fi
**************************************
#!/bin/bash
COUNTER=0
until [ $COUNTER == 15 ];do
mkdir sample$COUNTER
#COUNTER = $COUNTER +1
let COUNTER+=5
done

(0) Comments    Read More