Az

Dev

Watched Webhooks

Fri, Apr 3, 2015 | 300 Words

For a recent project I realised I would love to be able to set up webhooks for repositories I watch (and don’t administer). So to overcome that I’ve created a Node.js script, WatchedWebhook. You pass it a GitHub username as a command line argument and it polls the “public received events” feed (including your watched repositories). Any new events that match the event type and repository of rules you specify (in rules.

ChernoBravoBB

Fri, Mar 13, 2015 | 200 Words

Woo, finally a new post and a pretty decent occasion to make one, I’ve released a new project! ChernoBravoBB is minimalist forum software designed for ease of access, navigation and utilisation by it’s denizens and carrying an ethos of openness, transparency and pseudonymity. You can check it out on my GitLab where I’m currently hosting the project (might duplicate it to GitHub soon). It’s based on Node.js with MongoDB backing, utilising the ExpressJS framework (with LocomotiveJS providing better MVC capability) with Jade templating for the views.

Advanced Personal Site

Wed, Feb 25, 2015 | 400 Words

I’ve been wanting to redo my personal site for some time and desired something a bit more involved then a one-pager with my contact details. I was also starting to suspect that my Google search results may be taking a hit since I hosted two of my blogs on subdomains of http://adamogrady.id.au and the similarities in topic, authors, etc might appear spammy to the Google algorithm. Rather than look towards the high-tech side, I was eventually swayed into trying out a static site generator given their current popularity.

re:mind Journal Project

Thu, Oct 16, 2014 | 500 Words

On the weekend past I decided to see if I could build a small project I had in mind and get it into production on the World Wide Web before I started at my new job. I decided to try building a journal system that reminds you to update on a daily basis by sending you a nightly email with a link to the latest entry for that day. I ended up getting it working in a very basic format (with user accounts/authentication) which I uploaded to some hosting I have through Digital Ocean.

Multiplayer FPS In Unity

Mon, Sep 8, 2014 | 600 Words

I’ve done a fair bit of Unity3D work before, but it’s mostly been “fun” projects or random stuff to test out hardware like the Leap Motion. But recently a friend has invited me to join his small collective that are working towards building a video game. It’s mostly a hobby-with-direction and since we all have our own lives as well it may not go far or reach it’s goal quickly; but that doesn’t stop us having fun and trying new things.

Music Library System

Sat, Sep 6, 2014 | 500 Words

This entry feels like a bit of a copout, however I feel pretty good with what I’ve done so far. For years I’ve used iTunes to manage my library and it would always be on my main PC, meaning anyone who wanted to play music from our massive library of tracks would have to play it on my PC and hope I’m not doing anything that also has sound. We considered putting the music on the file server (rather than just the backup) and allowing multiple computers to connect to it, however any added music would not automatically appear on other clients, breaking the integrity of the library.

Functional Programming

Sun, Jul 27, 2014 | 200 Words

Oooh man, it’s been an exciting weekend. Alongside the effort and work in packing up the house to move shortly I’ve been spending a heap of downtime reading, practicing and learning about functional programming. I’d like to give a massive thanks to Becoming Functional by Joshua Backfield, it’s an easy to digest, fun to read text which follows the evolution of a fictional use-case/company as you rewrite it’s imperative code as functional.

Rails Shopping Cart Site

Sat, Jul 12, 2014 | 200 Words

My apologies for the absence and lack of updates although this may be closer to regular schedule in the future, depending on how circumstances turn out (vague-/personal-posting, sorry), but I have been working on some projects. In particular, my main focus has been on a commercial shopping cart website for a friend that I’m developing. I can’t give too much information about it since the project is still underway but it involves building my own shopping cart, creating a content management system for my friend to simply log in and update content, etc.

Rails Chat Site

Mon, Jun 23, 2014 | 200 Words

Alright, so with the blog and forum components slowly shaping up I thought I’d try my hand at putting together a chat client for the SiteHub project. I don’t know if I’ll be building tutorials for this one, most of the groundwork is covered pretty well by the RailsCast crew here and if you’ve followed my other tutorials you will probably be able to get most of the features done easily without my instruction.

Rails Blog: Part 3

Sun, Jun 22, 2014 | 1000 Words

Continuing on from Part 2 of our Rails Blog tutorial, now we’re going to be adding in a tag system so users can tag posts and check out what posts are available under a particular tag. To start with, run rails g model Tag name:string to generate a model for the tags then run rails g migration posts_tags and find the migration this generated (typically db/migrate/YYYYMMDDHHMMSS_create_tags.rb with a different time stamp) and add the following inside the change method:
First - 2 - 3 - 4 - 5 - 6 - Last