From the category archives:

Programming

Visualizing Your Project History with Gource

by Takashi Yoshida on May 24, 2010

in Programming

I recently came across an open source project called Gource through Gizmodo. Gource allows you to visualize commit history of software projects hosted by Git and Mercurial. It is maintained by Andrew Caudwell. When I found out about Gource, I only knew it supported Git and Mercurial repositories. I later found out about support for [...]

{ Comments on this entry are closed }

Playing Quake 2 on Web Browser

by Takashi Yoshida on April 3, 2010

in Programming,Tips and Tricks

Google Web Toolkit team used Jake2, Google Web Toolkit, WebGL and WebSocket to run Quake 2 on web browsers. The project has comprehensive instructions on how you can get started, but I found out that some instructions are missing so it was not possible to build and play Quake 2 immediately. I hope this post [...]

{ Comments on this entry are closed }

Working Around HTTP Test Issue in Go Programming Language

by Takashi Yoshida on November 30, 2009

in Programming

This is just a note on installing/testing the Go Programming Language from Google. I followed the instructions from IT戦記 (in Japanese). According to the article, 早速 Go 言語を試してみる!, amachang reported that HTTP test failed. I also had the same test failure, but after I disabled the firewall temporarily and ran the test again, HTTP test [...]

{ Comments on this entry are closed }

Create a New To Do Item in Things with AppleScript

by Takashi Yoshida on August 18, 2009

in Programming

I receive my mobile phone bill through email every month. Despite several reminders through email and SMS, I still miss my due dates. Rather than relying on my own memory, I decided to create a To Do item in Things. Things is a task management application on Mac and iPhone. On Mac, Things is scriptable [...]

{ Comments on this entry are closed }

Xcode and .gitignore file

by Takashi Yoshida on July 19, 2009

in Programming

This is my .gitignore file. I am making a switch from Subversion to Git (and Github) and I needed to find out specific information on using Git with Xcode. # Xcode generated files build *.pbxuser *.mode1v3 *.mode2v3 *.perspectivev3 !default.pbxuser !default.mode1v3 !default.mode2v3 !default.perspectivev3 # Interface Builder generated files *~.nib *~.xib # Mac OS X generated files [...]

{ Comments on this entry are closed }

Tweeting Your Subversion Commits

by Takashi Yoshida on March 19, 2009

in Programming

UPDATE Added the title and author of the article Fixed an error in look(command) method I was learning how to change a comment associated with the commit in Subversion last week. My Subversion repositories are hosted at a remote Linux machine (at Slicehost) and I could not find an easy way to do this from [...]

{ Comments on this entry are closed }