Category: Uncategorized

Gameboy and music

I recently got my music bug again, and with my recent trip to Australia was able to bring back my original Gameboy. Combining the two, I thought I’d check out what music-making capabilities the Gameboy had. The most popular software was “Little sound DJ” (https://www.littlesounddj.com/). I purchased the full version of that, and while I could run that on an emulator, I wanted to run it on the real deal. To do this, I purchased a Gameboy flashing cartridge, “Flash BOY” ( https://www.ebay.com.au/itm/223590080458). This came with few instructions however. I was able to plug it into my laptop’s USB and see that it displayed as a FTDI device, but would need drivers. I installed some from here: https://www.ftdichip.com/Drivers/VCP.htm but after more googling for flashing software, found that this also provided some drivers: https://sourceforge.net/projects/gbcf/

Starting up that tool, I put the flash boy cartridge into the flash boy itself and was greeted with this:

TMNT3? I put the cartridge in my gameboy just to check and – yep! There was TMNT3! I guess they used it as a test ROM.

Anyway, that was soon replaced with the LittleDJ software. I first hit “Erase FLASH” and then “Write FLASH” which gave me a file choice dialog box, where I chose the little sound DJ .gb file. It took a few minutes to flash. I put the cartridge in and was greeted by the text “”CARTRIDGE TEST SRAM FAIL TRY CLEANING PINS OR REPLACE BATTERY”.

I didn’t really know how to fix this, so I reset my FLASH size to be 2048 KB (16 Mb, which is what the Flash BOY supported), and upped the RAM to 32 KB. I did a full erase FLASH and RAM, then reflashed the DJ file, and read back the results:

Success! (Previously I was getting a bad game logo signature and a “Flash chip manufacturer name” of “Xilinx”).

…. or was it? Although this now wrote to the cartridge correctly, the ROM was not that of the DJ software. Looks like I will be needing a part 2 to this post!

Setting up a raspberry pi photo viewer (with music)

I set up a Raspberry Pi photo viewer at work to display photos from members of the photo club.  Members were instructed to put their photos on a Google Drive location (accessible only within the company VPN) and then the viewer would sync down the photos at a predetermined schedule.  To get access to Google Drive, I used rclone.  To display I used ‘feh’, which was also used to put text indicating the name of the photo.

curl https://rclone.org/install.sh | sudo bash

rclone config

// choose google, team drive.  Follow the prompts

// To sync:
rclone sync -v motofoto:SoftwareKitchenPhotos /home/pi/Pictures/SoftwareKitchenPhotos/

// remember: that’s rclone sync -v <source> <destination>!  I have wiped out my local directory by syncing with an empty google drive folder!

// Setting up cronjob:
crontab -e

30 2 * * * /usr/bin/rclone sync motofoto:SoftwareKitchenPhotos /home/pi/Pictures/SoftwareKitchenPhotos/

// this runs the job at 2:30 every morning

Two scripts are set to launch on boot.  One plays music, the other starts feh.

The directory structure was such that from the root folder to be synced, photographers created a folder with their name and put their photos within it.  I requested that the photos have creative names.  Given this format, I could put a watermark on each photo in the bottom left by doing the following:

feh –recursive –slideshow-delay 10 –info “echo %F | rev | cut -d’/’ -f1-2 | rev | sed -r ‘s/[.].*//’ | sed -r ‘s/\// – /'”

I want to get the author name (lowest-level directory) and photo name (name of jpg file), strip off the jpg extension, and replace the directory separate “/” with a spaced hyphen ” – “.  To do this, I:

  • Get the path of the currently displayed photo “echo %F”.
  • To get the lowest level directory, I want to grab the directory and filename at the end.  I don’t know how many directories deep this will be, but if reversed, I know it will be the first and second elements (if “/” is considered as a separator: rev | cut -d’/’ -f1-2
  • I then want to reverse the result back, and strip off the .jpg from the filename (really, anything starting with “.”): rev | sed -r ‘s/[.].*//’
  • Finally, I want to replace the “/” with a hyphen, so it will be “Firstname Lastname – Name of photo”: sed -r ‘s/\// – /’

TODO: Starting photo viewer and music player on boot.

Install nodejs

Here is how I install nodejs to get access to cool tools like “tldr” (a summarized version of the typical man pages) and “ungit” (an interface to Git to ease people into using it).

Run these two commands to get nodejs:

curl -sL https://deb.nodesource.com/setup_9.x | sudo -E bash -

sudo apt-get install -y nodejs

then you can install ungit, tldr, whatever you want.

sudo npm install -g tldr

These commands work with Linux Mint 17 (or Ubuntu 14.04).

Tracks from a honeymoon

While over in Italy for our Honeymoon back in 2010, I used my trusty G1 for all our navigation.  Two years later, I finally got around to uploading the GPS tracks into Google Maps.  I had to use a trick to get the map into one page (typically, Google Maps tends to split the tracks over several pages, so you don’t see the whole view), but phew, I finally did it.

(Hit the ‘view larger map’ link below).


View Larger Map

Things to note:

  1. There is a straight line going from Venice to Bologna.  At this point, I switched off guidance and ‘did it live’.
  2. There are a few times I was literally going around in circles.  You’d have to zoom in to see it, but for example the Cinqueterre area has a few loops where we couldn’t figure out where the exit was (on the map, this is just a little to the South-East of Genoa).  I swear it was just crazy confusing.  I also did a lap or two around the hill our accommodation was on in Florence.
  3. The top speed I reached in our rental, a Fiat Punto, was 119 km/h.  That’s pretty tame by my morning commute standards, and I’m actually a bit disappointed that’s the fastest I drove in Italy… given it’s Italy (drivers seemed to be in some sort of race I didn’t know about).  The coolest thing about the driving over there  – only people going fast were in the fast lanes.  Florida – you suck at driving.

Photos from this trip are all here: http://www.flickr.com/photos/daecks/collections/72157624337372920/