A spoonful of Git helps the Subversion go down
Here’s how I use Git to work on projects that use Subversion for version control. The basic idea is to use the Git master branch to track the Subversion trunk. All my coding happens on Git branches. That way I can use Git to easily work on multiple different features or bugfixes at once, with all the usual git benefits of disconnected operation, speed and flexibility. Then I commit to SVN when my work is ready. Continue reading “A spoonful of Git helps the Subversion go down” →
- Coolpix digital cameras
- Canadian Pharmacies Online
- Cheap, Affordable SEO MicroJobs
- Print Lion Printing Services
- Photo Canvas Gift
- make 360 panorama
- Timeshares Royal Holiday
- CEO Ehsan Bayat, Afghan Wireless
Search Fixer: a WordPress plugin
I have created a plugin to solve a subtle but annoying WordPress bug. With the Search Fixer plugin installed, search links like those in Search Meter‘s “Recent Searches” widget should work correctly. Continue reading “Search Fixer: a WordPress plugin” →
Simple Combo jQuery plugin 1.1
I have just updated my Simple Combo jQuery plugin to work with recent versions of jQuery. When jQuery 1.5 came out, there was a change to its selector engine that stopped Simple Combo from modifying select lists. Then jQuery 1.5.2 introduced a subtle change to the events code that interfered with typing into combos.
Both these issues have now been fixed. Continue reading “Simple Combo jQuery plugin 1.1” →
A simple Twitter widget
This blog’s sidebar displays my latest Twitter update. I did this manually instead of using a plugin because I couldn’t find a lightweight plugin that did what I want, and I thought it would be a quick and simple project. So here’s how I did it. Continue reading “A simple Twitter widget” →
jQuery 1.5: Better, Faster… Bigger
Back when jQuery was heading towards its 1.0 release, one of the things that really impressed me was its small size. Only about 15KB of uncompressed code was enough to turn JavaScript (and particularly DOM manipulation) from a chore into a pleasure. But with each new release, new features and speed optimisations have inevitably bloated the library. Every time a new release came out, it seemed to me that the svelte jQuery I knew and loved was receding further into the past. Now that jQuery 1.5 is out, I thought I would see how jQuery has grown in size as well as stature with each release.
The 