Communism is like one big phone company
Lenny Bruce

Twitter Tweets about Delusions of Grandeur as of December 4, 2008



cosmicthoughts: @Mr_Marty I always do it because I like being helpful, rather than any delusions of grandeur - if that’s a wannabe, so be it!
2008-12-04 12:53:31 · Reply · View
lcreale: delusions of grandeur? r people reading this? The cat is reading my mind right now. i feel like the guy in the movie Omen. no black dog tho
2008-12-04 05:13:01 · Reply · View
razorwitted: I have no delusions of grandeur. I know the limits of my influence. Still, I’m saying to my 23 followers: Check out Sugar Mama’s on 1st.
2008-12-04 02:55:43 · Reply · View
Danisidhe: Publishing bods - why is the NYT listening to a 26yr old failed editorial assistant with delusions of grandeur? http://tinyurl.com/6jttzz
2008-12-04 01:31:44 · Reply · View
llorracanit: @CoreyDTT You boys and your delusions of grandeur….
2008-12-04 01:14:03 · Reply · View
gusgreeper: @victoria_potter yes i have no delusions of grandeur! :P
2008-12-04 00:42:14 · Reply · View
Rate this:
3.2


Your Ad Here


Auto Posting to Twitter



twitterberry1 Twitter is everywhere. Its on my phone, its on my laptop. It helped decide the election (don’t believe me, go search twitter for election, obama, biden, mccain, palin, vote or anything else to do with the election this year). It helped people find gas in Atlanta when we had a shortage. Now, its helping get the word out about the latest uploads to Linuxtracker.org.

Yesterday, I managed to cobble together some code (from some that I found online) that automatically posts to the linuxtracker twitter account *EVERY* time a new torrent is uploaded. It posts the name of the file as well as a link to the torrent details page. Its a pretty simple piece of code that actually uses the php_curl library to do the heavy lifting. The part I stumbled with was getting it to post the whole damned URL. Luckily I stumbled upon it.

I’ve posted the code below for anyone to use, mind you, I changed the names to protect the innocent, and I won’t answer any questions about it. I just wanted to share!

//Twitter Update!

$email = "USERNAME";
$password = "PASSWORD";
$status = "This is the status message here. Duh.
";

$url = "http://twitter.com/statuses/update.xml";

$session = curl_init();
curl_setopt ( $session, CURLOPT_URL, $url );
curl_setopt ( $session, CURLOPT_HTTPAUTH, CURLAUTH_BASIC );
curl_setopt ( $session, CURLOPT_HEADER, false );
curl_setopt ( $session, CURLOPT_USERPWD, $email . ":" . $password );
curl_setopt ( $session, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt ( $session, CURLOPT_POST, 1);
curl_setopt ( $session, CURLOPT_POSTFIELDS,"status=" . urlencode($status));
$result = curl_exec ( $session );
curl_close( $session );

?>

Rate this:
3.2


Leave of Absence



prosperty-thumb Sometimes you just want to get away from it all. In case you hadn’t noticed (and based on my recent traffic graphs, you haven’t) I haven’t been posting much here lately. Blame it on the work I’ve been doing at linuxtracker. Blame it on the funk that has seemed to come over the blogging community since the middle of January. Blame it on the 60 degrees one day 29 the next weather we’re having here in Georgia, or just blame it on my need to get away from everything.

I admit, I could use a vacation. Right now, a 24 hour flight to Australia doesn’t sound too bad compared to the cold, then warm, then wet then dry then snowy weather we’ve had lately. No matter the amount of sea foam (which, contrary to the color wheel at Home Depot, is not really green so much as shaving cream white). I could use a vacation. So could Amy. It wouldn’t take much at this point for either of us to dial up a flight to Oz, England, or even Colorado and head away for a week or two.

Nothing spells relief like a well tailored holiday where you can just veg. Does it? I do promise to work at getting back in to the swing of things as march comes in like a lion at the end of the week….

Rate this:
2.5


Your Ad Here