how to check for JIRA numbers in git commit messages.

This will deliberately cause commits to fail if commits don’t include a valid JIRA bug number. In your project repo, add the following to .git/hooks/prepare-commit-msg and make it executable. Simple but does the job. Change the JIRA_PROJECT_PREFIX to whatever works for you. #!/bin/sh export JIRA_PROJECT_PREFIX=RP JIRA_ISSUE=$(cat $1 |tr ‘\n’ ‘ …

Fun Times with Java compiler bugs

I’m encountering a bug in the Java compiler where the order of files submitted for compilation can cause code not to compile. …

Inline SVG experiment

I don’t do a lot of front end development these days, being mostly concerned with crunching big data on Hadoop, but I …

Apple JDK in peril

Apple is deprecating the JDK. This sucks. A petition to have OpenJDK take over the Apple JDK is in progress. Sign/View Petition. …