If you are a real geek like me, you are the type of person that likes to do manually through the terminal rather than a graphical interface. The same goes for Twitter. I've tried loads of different twitter apps, some of them great, but it's fun sometimes posting from the command line.
To set this up on Ubuntu, you will need to create a bash file with a twitter API command in:
sudo gedit /usr/bin/twitter Now enter this into the open 'twitter' file:
curl --basic --user "yourusername:yourpasswd" --data-ascii "status=`echo $@|tr ' ' '+'`" "http://twitter.com/statuses/update.json" -o /dev/null echo SENT!(make sure to replace your username and yourpassword with your account username and password!)
Save this file. Now we need to set permissions on the file we just created so we can run it:
chmod +x /usr/bin/twitterAnd that's it. Now all you need to do, is actually post to Twitter. This is how:
twitter "this is my new post message!" It will appear in Twitter as "from API", instead of "from Tweetdeck" or "from Echofon" or however else the tweets are posted.
IF you get a message saying that curl is not installed when you try and post a tweet, then run this to install curl:
sudo apt-get install curl