DeepThoughts

28 May

GoodLove - SouthPark.

I’ve been listening to the South Park Movie soundtrack recently, so far my favorite song is Good Love

Lyrics:

Artist: Southpark
Song: Chef - good love
Album: South Park: Bigger, Longer And Uncut

I’m bona fide, solidified, and qualified to do
Anything your heart can stand, it all depends on you
I’ll turn your world upside-down, I’ll blow your mind to pieces,
You’ll recommend me to your mother, your sister, your aunts and your neices!

Listed in the Yellow Pages all around the world,
30 years experience in loving sweet young girls, just call
Good love 69-9-69
Good love 69-9-69
Good love 69-9-69

It ain’t how good I make it, baby, it’s how I make it good!
I’m the king of the woman’s world, they tell it from town to town,
And when I find a deserving queen, I’m gonna share my crown
But if the line is busy, don’t freak out or get nervous,
You just keep on dialing again and again until you get some service, call

Good love 69-9-69
Good love 69-9-69
Good love 69-9-69

I’ll send your temperature higher, just like a ball of fire!

Now listen to me, baby,
Just let your finger do the walking,
Let ol’ Chef do the talkin’ and the lovin’.
You see, I’m a backdoor man,
And I do the things your man fail to do.

Now, I dunno, but I’ve been told,
By a playa-hater
That my bedroom is a disguise
For a freak incubator

So if you see a fine young woman that can’t be satisfied,
Send her over to my stable, I’m a horny junkie that loves to ride! call

Good love 69-9-69
Good love 69-9-69
Good love 69-9-69

It ain’t how good I make it, baby, it’s how I make it good!

Call me anytime..
Right now would be fine..
Call my number!
Call on me..
Love gravy train..
I’ll ride ya on in to glory..
Let’s get it on..
Let’s get it on..
Good Love

17 Apr

How to find if a GroupWise user is logged in.

How to find out if a GroupWise user is logged in, without having to browse to the agents web portal.

This is a quick and easy bash script, so you’ll need either cygwin or a linux box to run to run it.

but you will be able to find if someone is logged into GroupWise from the command line. Its output is not very pretty yet, but its still a very early version. It would need to be customized for your site.

usage would be “gwloggedin.sh username”

it uses a for loop to loop through the ip address of your GroupWise po agents web portals, then uses wget to download a local copy of the page that lists the logged in users. it then grep’s through those pages for the name you are looking for. if they are logged on you will get a result also if they are being proxied. if their account is not currently being accessed you will get no result at all.  very beta version.

I’m hoping to add this to an auto post office migration script that will get a list of users from jrb utils. check to see if a user is logged in, if not then move them to a different post office.

#!/bin/sh
# Eugene Liedel liedele@gmail.com

# script gwloggedin.sh , usage gwloggedin.sh username
# 4/13/2009 11:46 AM — this script grabs the lists of logged in users
# from all the GroupWise web portal pages. saves them locally then
# greps them for the specified user name

# get pages from 10.10.10.108, 10.10.10.109 …etc.
for i in 08 09 10 11 12 13 14 15;
do wget -q –http-user=user –http-password=password -O /cygdrive/h/poliveusers-$i http://10.10.10.1$i:7181/conn;
done

echo “checking for user ” $1
grep -i –color=always $1 /cygdrive/h/poliveusers-*

04 Nov

little bash script

Here is a quickie I wrote to help someone with their class homework.

it takes a file with names and days and another with names and phone numbers and combines them

to give out put of name day phone, sorted by day.

#!/bin/bash
for day in Monday Tuesday Wednesday
do
lines=$(grep $day proj2-f2)
firstname=$(echo $lines | cut -d ” ” -f 1)
line2=$(grep $firstname proj2-f1)
phone=$(echo $line2 | cut -d ” ” -f 2)
echo Phone $phone
echo Day $day
echo Firstname $firstname
done

30 Oct

How to find expired Groupwise Users.

How to find expired groupwise users at the command line, using cygwin, and jrb utlities.

this quick one liner uses a for loop to go through each postoffice listing all the users with the jrbutilites command gwusers, its option displays the expiration date, we then grep for 200 to grab anything expiring in this decade.

$ for po in 1 2 3 4 6; do gwusers postoffice0$.domain01 /g /vam | grep "200"; done
16 Jul

upgrade time.

I’m testing the wordpress autoupgrade plugin. seems to be working good so far.

13 Mar

Test

Test

21 Feb

Bob and Doug McKenzie - Cool Dudes.

I never even knew it existed until today, The animated adventures of Bob and Doug Mckenzie.

21 Feb

I finally found it. - Shoop Shoop Diddy wop cumma cumma wang dang.

Back in 1982 I was 14 and was watching HBO one nite and I saw this video. I only saw it the one time. I have looked for it several times in the past, finding the writer, preformer and lyrics. but never an audio or video copy.

Thanks to the magic that is you tube. I have now found it and post it here for your enjoyment.

19 Dec

Cool Link of the Day - The Galactically Hot Women of Star Trek - TOS

Found on flickr, user poletti has done an immense amount of work watching episdodes of Star Trek the original Series, and getting images of the “Hot Women” They have shown.

poletti flickr photo set

Hot Star Trek Women

23 Nov

File Not Found ? 404 what the heck ?

If you try to access an older link and it comes back not found, it could be because today I switched to a prettier permalink structure. I’ve switched to one using the date and the post name, as opposed to the old one which just used the post number.

if you are having trouble finding something. please let me know.

© 2009 DeepThoughts | Entries (RSS) and Comments (RSS)

Design by Your Index - Powered By Wordpress