bear

Command Line Fu - MySQL - find last update per database

Want to find the last time a database was updated?

SELECT MAX(UPDATE_TIME), TABLE_SCHEMA as last_update from information_schema.tables GROUP BY TABLE_SCHEMA;

Livereload JS Snippet

Just a snippet to keep handy for livereload.

    <script>document.write('<script src="http://' + (location.host || 'localhost').split(':')[0] + ':35729/livereload.js?snipver=1"></' + 'script>')</script>

Savage Doctor - Drawing Timelapse

One of the things I’ve been doing recently is making comics. Every once in a while, I’ll make a recording and convert it into a timelapse, as I’ve done here, enjoy! You can view the full comic here, and you can get new comics on Instagram, if that’s your jam.

New Gamejam Game: SSSK

I participated in the 2018 MonoGameJam on Itch.

I created a small game called Super Sexy Space Knights using MonoGame over the course of a week.

I streamed most of the development on my Twitch Channel

YOU CAN PLAY THE GAME HERE!

Want to see a really sped up version of creating it? Well HERE YOU GO!

New Gamejam Game: Hey You! Let’s Sword Fight!

This past weekend, I participated in 1 Class Jam.

Rather than a themed jam, this jam was a coding challenge. The objective: To create a game in a single class / structure, no subobjects. You can see my code on github.

The game I created was a simple turn-based card fighting game. I like the idea, although the execution (with the time limits of the jam) could use a little more balance and polish. I may continue on with this idea in the future.