Twitter Not Keeping Up

What’s up with twitter.com? One day it’s “having difficulties”, another day it’s “down for maintenance”, today it’s “over capacity.” I guess they’re just waiting for someone to buy them out, meanwhile making only the minimum amount of upgrades to keep up with interweb traffic. Kinda crummy – then again, they are apparently fixing it as it breaks, and that’s better than nothing. Anyway, keep up twitter. Keep up.
Combining Two or More Geeky Things
This was from a blog post that went up on my birthday, and it caught my eye because, well, it’s geeky-cool. It takes Twitter, a somewhat geeky online micro-blogging platform, and combines it with the command line (need I say more). This apparently works for Windows, Mac, and Linux. I got it working on my Xubuntu in literally less than a minute. By the way, it’s just for updating your status, not for seeing other’s posts. Here’s the link: Digital Streets
I implemented this bash script to make it easier (taken from the comments on the Digital Streets blog – thanks chukaman, whoever you are) -
#!/bin/bash
#
USERNAME="type_your_username_here"
PASSWORD="type_your_password_here"
if [ $# != 1 ]
then
echo “Usage: ${0##*/} your tweet as you would like it to read”
exit 1
fi
tweet=$1
curl -u $USERNAME:$PASSWORD -d status=”$1? http://twitter.com/statuses/update.xml
Follow the Digital Streets link above to understand how it works, if you’re interested, [you geek, you]
leave a comment