Articles Comments

WaFiTz! » Entries tagged with "Twitter"

Solve my Mystery Geocache

I’m headed to Cork, Ireland for a week and a half, so there’ll be little or no posts, check twitter @wafitz for updates. Currently I’m sitting on a car ferry from Fishguard using wifi@sea – via satellite, pretty cool. In the meantime, we just published a new mystery/puzzle geocache. To be solved at home then searched for at night following a trail of firetacks. See if you can solve it here: geocacing.com listing Mystery journal … Read entire article »

Filed under: Geocaching, WaFiTz!

Why I Still Use Facebook Despite The Issues

Over the past year I’ve agonised over keeping my Facebook account, but everytime I’ve considered deleting it I’ve come to the same conclusion – the benefits of having one far outweigh the benefits of not having a Facebook account. Big Brother is Poking You Let’s start with the negative shall we? First is privacy – Facebook is infamous for dicking around with users profiles and privacy settings. It should be on the tip of every Facebook users mind that what they post in private today could be on the front page of The Sun tomorrow. It’s something I’m concerned about and it’s likely if Facebook did not give me some measure of control over my privacy settings then I’d definitely look for an alternative. Farmbook Second, Farmville (and it’s ilk). Seriously I don’t mind … Read entire article »

Filed under: Social Media

Street Angels and Pastors on Twitter

Some of you may be aware I volunteer as a Street Angel in Watford, so lately I’ve been taking an interest in similar initiatives happening throughout the UK. I have now compiled a list of those that are active on twitter: street-pastors-angels. As far as I’m aware, there are two names for the same thing: Street Angels, or Street Pastors. We ‘patrol’ the streets on Thursday, Friday and Saturday nights usually between 10pm-3am, looking to assist those who are unable to assist themselves – people who are lost, have had too much alcohol, stranded or calming potentially violent situations. We don’t police, we leave that to the real police who we are in contact with, it’s more about non-judgementally serving the community. I am unaware as to how many towns and cities … Read entire article »

Filed under: Projects

Twitpic from the Command Line in Linux

I’ve just put together a short script for automatically taking a webcam pic then uploading it to Twitter. Yes, I know what you’re thinking, no I don’t know why either. I had help from other places that I found through googling. Here it is in case you want to try it out: #!/bin/bash # Script to automate posting of webcam images to twitpic IMGDIR=”/location_to_save_webcam_pics”STAMP=`date +%m%d%Y_%s`IMG=”$IMGDIR/”webcam_”"$STAMP”.jpeg”USERNAME=”twitter_username”PASSWORD=”twitter_password” # Don’t forget to escape special chars with “\”MESSAGE=”Webcam snapshot, `date`” # Take picture from webcamTAKE=`streamer -o $IMG`echo “$TAKE” # Upload to twitpic using curlcurl -F “username=$USERNAME” -F “password=$PASSWORD” -F “message=$MESSAGE” -F media=@”$IMG” http://twitpic.com/api/uploadAndPost I really need to find a way to post code on blogger. The next step is that this script can be added to a cron job and made to feed random pics at intervals. I’m now trying to think … Read entire article »

Filed under: Linux, Projects