Skip to main content

Posts

The Hitchhiker's Guide to the Galaxy - The Adventure Game

When we was young... The first ever game I played was the Hitchiker's guide, I googled it the other day and found there have been a couple remakes. BBC - Radio 4 - The Hitchhiker's Guide to the Galaxy - The Adventure Game From their website: Based on the popular radio and book series, "The Hitchhiker's Guide to the Galaxy" is a text-based adventure game, considered by many to be a classic. The plot of the game roughly follows the first book, starting with the destruction of the planet earth and ending with the gang landing on the "lost" planet of Magrethea. This has to be done in a very roundabout way, by collecting various tools and several different kinds of pocket fluff(lint). The game also has you assume the roles of other characters in the story line, leading players to use the "Who am i" command to find out who they are playing as. It also has an in-game version of The Hitchhikers Guide To The Galaxy, which you can consult for ...

Free Images to put on buttons or make buttons?

A few cool site for icons that you can use on buttons or as icons, and the are free Find ICONS: Icon Search Engine/a> Icon Finder Icon Archive more here ... Some sites let you donate ;)

Serious do we always have to go back wards? PHP is rubbish

I have been programming on and off since I fell out of my teens. In those days languages where showing some sign of maturity. Pascal had shown the way of what a types language could achieve, to the point that a scratchy language called "B" had borrowed from this language to become "C". With in a decade another language called basic had borrowed from Pascal to become Visual Basic. SmallTalk was showing the way, showing how objects to help with re-usability and ease of use and understanding. And it had resulted in object pascal and C++ in the early 90's. And I thought that languages where showing that they could leave behind their ugly past based in COBOL and Fortran and its even uglier sisters like RPG. Unfortunately the quest to win the rat race took me away from programming as the GUI and web started to take hold. But in the last 5 years I have got back into programming par time. Initially just in VBA and access, but then C# for...

The world as you have never seen it...

Worldmapper: The world as you've never seen it before This is a great site for people that love statistics, you can spend hours there, looking at how man has consumed and spread around the world ;) Example: Internet Users 2002 Map No. 336 Open PDF poster Next Map > Read more here: http://www.worldmapper.org/textindex/text_index.html

Dad's Day Outh May 2012; Greenpoint Park

There are a number of things in life we take for granted. At the same time if you do not sit up and notice you can miss the best parts of your life. With this in mind I decided to approach some other Dads I knew to do what I wanted to call Dad's Day out ( I have since found others calling it this, like Cape Town's child) The rules where simple, no Mom's only Dad's. After about a month of emails back an forth we set a date and a venue The Venue was Green Point Park in Cape Town, which was only opened properly just over a year ago. The kids ranged from almost 3 to almost 8, and we meet with picnic baskets and blankets and the obligatories when having kids. Most of the Dad's remembered to bring the kids bikes, so they kids had fun cycling or using their scooters then we went to the junior kids park to meet, and once we had assembled we then moved to big children's park, which is rated 6 -16 but kids under 12 are allowed if supervised (I know it is a little...

Programmatically send email in Access using VBA and Outlook

When I first wrote my early Access system I used a function I setup in Outlook and then I called that. On upgrading I had a few problems with the older method then I found some help on the MSDN website here... and the related video. The first thing to do before starting the code is go into access, access the VBA (press Ctl+G) then click on "Tools" The "References" and then make sure you scroll down to "Microsoft Outlook ..." the version there will be determined by what version you have installed. This the code that I ended up with after looking at the site above Private olApp As Outlook.Application Private olNameSpace As Outlook.NameSpace ' The basics of this from MSDN site ' http://msdn.microsoft.com/en-us/library/ee208547(v=office.12).aspx Private Sub InitOutlook()  ' Initialize a session in Outlook   Set olApp = New Outlook.Application   'Return a reference to the MAPI layer   Set olNameSpace = olApp.GetNamespace("MA...