Thursday 26 August 2010

Final Fantasy XIV

The long wait is almost over, we can expect Final Fantasy XIV Online to be released somewhere between the 22nd till the 30th of September 2010.  For mor information please go to http://www.finalfantasyxiv.com.  Will be seeing you in the world of Eorzea!



CONFIDENTIALITY NOTICE: This e-mail may contain confidential information and is intended only for the use of the recipient named above. Should you receive this e-mail in error, please forward it to the intended recipient and delete it from your mail system. Any disclosure, copying, distribution or action on the contents of this e-mail is strictly prohibited.

Wednesday 30 December 2009

Heli @ N1 City

Interesting event happening at the office today... just thought i’d share a picture...

Friday 16 October 2009

Astronomy Picture of the Day (python)

Some code to set the astronomy picture of the day as your desktop background... have phun :-)



#!/usr/bin/env python
# Nasa's Astronomy Picture of the Day
# Desktop Background Changer (requires python 2.5)
# Written by: Jaco Wiese

# You are free to do whatever you wish with this code. Have phun!

# Save old picture to this location
# Make sure you created the directory with correct permissions

# For Windows you can add a scheduled task for each day
# and for Linux you can just dump the script in /etc/cron.daily

# Windows Location
# For Some odd reason windows requires the desktop size
SaveLocation = "apod"
width = 1024
height = 768

# Linux Location - Uncomment next line to use on linux
#SaveLocation = "/home/snowy/Apod/astropix"

# There seems to be no easy way to set the desktop background in windows
# You have to set desktop.html as your background
# If you know of a better solution, let me know!

# ---------------------------------------------------------

import urllib
import re
import os

ServerLink = "http://antwrp.gsfc.nasa.gov/apod/"

try:
htmldata = urllib.urlopen(ServerLink + "astropix.html").read()
except:
print "Cannot access internet."
exit(0)

b = re.search("", htmldata)
a = re.search("\".*\"", htmldata[b.start():b.end()])

if (a == None or b == None):
print "No picture available today."
exit(0)

FileLink = a.group().strip("\"");
FileName = SaveLocation + "/" + FileLink.split("/")[2];

if (not os.path.exists(SaveLocation)):
print "Please create directory: " + SaveLocation
exit(0)

try:
fileurl = urllib.urlopen(ServerLink + FileLink)
f = open(FileName, "wb")
f.write(fileurl.read())
f.close()
except:
print "Cannot Download or create File. Please check folder permissions."
exit(0)

# There seems to be no easy way to set the desktop background in windows
# You have to set desktop.html as your background
# If you know of a better solution, let me know!
if (os.name == "nt"):
hf = open("desktop.html", "wt")
hf.write("")
hf.write("")
hf.write(" ")
hf.write("")
hf.write("")
hf.write("")
hf.write("")
hf.write("")
hf.write("")
hf.close()
exit(0)

# Linux - Gnome (Currently not running kde)
if (os.name == "posix"):
os.system("gconftool-2 --type string --set /desktop/gnome/background/picture_filename " + FileName)
exit(0)


Wednesday 14 October 2009

CTWUG - Mars on laptop!

Tonight I picked up CTWUG's Mars highsite from my house - 2km's away!
Brilliant laptop...

Baa

Doing some sheepish stuph at work.

Tuesday 06 October 2009

Debian on my Laptop

Screenshot of my Laptop's Debian Desktop.

Saturday 03 October 2009

Fresh Theatre Production

Watching another fresh theatre production : Love in cyberspace. Directed by Gavin Wright. Brilliant!!!

Hot Weather

Cape Town is so hot today, even the dogs are looking for shade.

Friday 02 October 2009

Ubuntu

Finally installed Ubuntu today after a long decide with which distro I should go. Already running Debian. So far so good.

Thursday 01 October 2009

Google Wave

Google has done it again, they've created the next best communication and collaboration web service. Share anything anytime with friends and colleagues. Check it out at wave d0t google d0t com