Category Archives: Hobby

Five Letter Word Six Guesses

Been enjoying this little game over the past week or so and thought I would try my hand at it.

Short little exercise that took 3 days

Check it out here

Been a little busy…

With my new job, I haven’t had much time to add much to this website.

So here’s this small perl script I wrote that sends a summary of the weather in SMS format from my iPhone daily.
There was a need, so I figured why not help out those who need the weather forecast =].

use LWP::Simple;
use JSON qw( decode_json );

my $lastRun = 0;
open (MYFILE, 'weatherSMS_LastRun');
while () {
        chomp;
        $lastRun = $_;
}
close (MYFILE);

my ($S,$M,$H,$d,$m,$Y) = localtime($lastRun);
my ($S2,$M2,$H2,$d2,$m2,$Y2) = localtime(time);
if ( $Y2 == $Y && $m2 == $m  && $d2 == $d ){
	exit 0;
}

$json = get("https://api.forecast.io/forecast/APIKEY/LATITUDE,LONGITUDE?units=ca&exclude=currently,minutely,hourly,flags");
my $decoded = decode_json($json);

#ensure we can write the file
open(F,'>weatherSMS_LastRun') || die "Could not open file to mark execution";
print F time;
close(F);

my @timeslot = @{ $decoded->{'daily'}{'data'} };
my $forcast = "";
foreach my $f ( @timeslot ) {
	my ($S,$M,$H,$d,$m,$Y) = localtime($f->{"time"});
	$m = $m + 1;
	$forcast .= "$m/$d: ".sprintf("%.3f",$f->{"temperatureMin"})."-".sprintf("%.3f",$f->{"temperatureMax"})."C ".$f->{"summary"}."\n";
}
#printf($forcast);

`/Applications/biteSMS.app/biteSMS -send -carrier PHONENUMBER "$forcast"`;

In order to execute this daily, the following plist was used:





	Label
	com.joshho.weatherSMS
	LowPriorityIO
	
	Nice
	1
	AbandonProcessGroup
	
	OnDemand
	
	ProgramArguments
	
		/usr/local/bin/perl
		/location to perlscript/weatherSMS.pl
	
	StartCalendarInterval
	
		Minute
		0
	


Submit it to be executed hourly by running `launchctl load [path to plist]`

Edit
Edits were made to cover the fact that your phone may not always have internet.
(It may be locked/sleeping – which may turn off the wifi?)

HTML5 – Bejeweled

Hi all.. haven’t been doing much as I’ve been spending my time looking for jobs.

Anyways, here’s yet another completed game – Bejeweled.. this one took almost 4 days and isn’t as awesome as the Popcap one.

The main point of this exercise was the add the ability to click a location on the canvas and have the corresponding (top) object fire an onclick method. The previous version of the engine it’s running on did not support this. As a by-product in doing adding this, this exercise was to dabble my hands in creating a robust solution to onclick() and object mapping. I do not think this was achieved as there is no propagation to parent classes.


You can play it here.

I tried to polish it up with the menu and the layout, but graphics unfortunately aren’t my strength.

HTML5 – Tetris

Not much to say about this one… after completing Pacman, I had an itch to do tetris.. an old favourite of mine.

Completed it in 2.5 days…
At this rate, I’m definitely going to need to step up my productivity for this if I want to make something comparable to Ludum Dare quality.
(2.5.. as a consolation it only included about 14 hours of coding.)

You can play it here.

HTML5 – Pacman

I was talking to a colleague the other day about HTML5-Snake, and somehow the conversation drifted to Pacman…

After a weekend of investigating the Pacman (enemy) strategies, I took a break from doing EulerProject questions and began work on it.
It seemed simple enough: the background was pre-made, (sprites were handmade),  and it seemed very do-able.

It took me 2 days for the base code, +1 for memory/cpu profiling.
It is without sound, but I think it’s quite playable.

You can try it out here.

Reddit key-code distribution tool

I recently received an email from cadenzainteractive.com inquiring about a distribution method for steam keys for their then-upcoming giveaway. At the time, all I had was a key-captcha webpage here that utilized captchas to prevent key farming by bots.

After investigating what existed, I found python script – code here  – that had successfully distributed 50,000 keys. This script required you had python and additional imports installed.

I was then interested to see if I could write something that others could get started in 1-2 minutes. I ended up whipping up a prototype tool written in javascript/php here within a day of that email.

Getting back to cadenzainteractive, using my tool, they successfully delivered 4,000 steam keys on reddit: http://redd.it/ve7dj.

Try it here

Notes:  The program uses the reddit API to reply back to unread messages from reddit users requesting a key.

HTML5 Canvas – Pong

Hi again,

It’s been said that the classic game of Pong is the ‘hello world’ of game creation, and thus I wanted to try my hand at it. In line with my previous attempt at HTML5, this is also built on the canvas element in HTML5.

The AI is a bit shoddy, but hey, it’s a functional game. Interestingly enough, while I was on my lunch break at work, I couldn’t help but test out this game on my phone, which brought me to adding some touch-screen mobile support to it. I have tested it on a touchscreen IPhone and I’m delighted to say it works as expected.

 

 

You can click here to try the game out.

HTML5 Canvas

Hi all, been busy with work!

but I found some spare time to try out HTML5 for the first time and I ended up making the game Snake – the classic game from the nokia phones.

Play the game here.

Front page is finally completed

So.. I’ve finally got around to creating front page for this site, it looks pretty good, (well, at least I like it), the concept was to allow the showcasing of the latest project I’ve worked on. I know the usage of iframes is definitely frowned upon, however, with the number of tools such as the Webpage Archiver requiring relative links, it seemed the best way of approaching this without causing major issues with auxiliary webpages.

It’s my first time playing with Jquery, and I find it pretty fun and interesting. I definitely see myself toying with it more in the upcoming months.

On another note, the Webpage Archiver tool is now available for use for the public. I don’t have a description page for it yet, but it soon will.
Go try it out 🙂

Essentially it downloads and saves texts/images for archiving purposes.

Currently I am looking for methods to improve the content delivery time of files saved by the archiver.

Reddit RSS Tool

No longer maintained and disabled

 

Just wrote a RSS Tool for Reddit.

Currently, if you request an RSS from reddit, all the RSS links will point to the reddit comments. This is not ideal if the topic of the post is (for example) an image. There is no need in going through to the reddit comments first, and then clicking again to reach the image.

This tool will allow you to directly link to the aforementioned image directly from RSS.

To try it out, click here (hosted on this website).

 

I had a few considerations in mind, and as this idea spawned from mobile device usage, two things came to mind

  • Ease of Use
  • Bandwidth conservation

By eliminating the 2-step process