Archive for the ‘Programming’ Category

I think I Git it

Tuesday, October 28th, 2008

I just used Git for the first time and I think I finally understand what all the hullabaloo is about. Git is a distributed source control tool being used by the Linux and Ruby on Rails community.

The difference between Git and other source control systems like Subversion is that there is no need for a central repository for your source code. Your code remains completely distributed amongst the various machines and people that are working on it.
I currently use Subversion to maintain my source code, but I am thinking that I may like Git better.

UPDATE: To install Git on Mac OSX (10.5) I used the following, graciously taken from this forum post at Slicehost.

First, get the source code for the latest stable build here, then:

sudo apt-get build-dep git-core
tar xjf git-1.5.5.1.tar.bz2
cd git-1.5.5.1/
./configure
make
sudo make install

Posting from iPhone

Monday, August 4th, 2008

I just downloaded the WordPress application for the iPhone and iPod Touch. It was painless to setup and seems to work really well. One thing I would already like to see is automatic completion for tags. Other than that, A+!

IE8 - Full Standards Compliance

Monday, March 3rd, 2008

via: Simple Bits

Some exciting news from the developers of Microsoft’s Internet Explorer 8! Basically they have reversed course on their previous decision to hamstring standards based web design by forcing IE8 to render all web pages in an identical fashion as IE7, unless explicitly told to do otherwise. Microsoft was planning on forcing web developers tell IE8 to render a web page according to web standards or else IE8 would render the page identically to IE7 (which has some shortcomings when it comes to standards).

This is definitely good news and I for one am glad to see Microsoft making a decision that makes sense for the web community at large.