October 2007
3 posts
Source control and branching
Today we changed our branching style of the Floorplanner code base. I had it in my head for a long time, but I actually changed it until I read this post. In the old setup we used the style that is called Branch per Release. Branch per Release Every release is a new branch; common changes are merged between the releases. Branches are killed off only when the releases are no longer supported. In...
Oct 24th
Raise by one SQL statement
Today I discovered that it’s very easy to raise a value by one (or any other number) when you’re using a MySQL database. This is all: UPDATE tablename SET value = value + 1 WHERE ...
Oct 17th
Flash player crashing in IE
For the project V-Factor we integrated a couple of Floorplanner widgets into their site. We used iframes to embed the widgets into the pages. You can click on the link next to the widget to get a better view of the floor plan. A new window with a full screen Floorplanner is opened. On Firefox and Safari everything runned like a charm, but when we tested it on Internet Explorer it sometimes...
Oct 12th