Archive for the 'delphi' Category

Git on Windows, it actually works now

Saturday, March 22nd, 2008

I’ve been trying out various distributed source control tools, and used several of them for various very small projects. I’ve most mostly settled on git as the one I prefer, but I haven’t yet published any code with it. Also, I’ve been frustrated that git support for Windows has been very weak.
Msysgit appears to have […]

Is Delphi Dead? No.

Monday, January 14th, 2008

A few months ago Alex Miller pointed me to this Delphi doom article (the site appears to be down at the moment), which reminded me to post about the same topic. Here goes.
Delphi shipped in 1995, and its demise has been declared frequently since 1997 or so. In a sense this demise is true, yet […]

Python or Python+Delphi Developer Wanted

Tuesday, August 21st, 2007

Speaking of Python, over at oasis Digital we’re looking for a Python (subcontract) or Python+Delphi (full time) developer. For the right person this could be a great opportunity to use your preferred tools.
Plus, a tip to anyone applying for this work or any other work: when you email a resume, don’t name it “my resume.doc” […]

Yet Another Python Success Story

Monday, August 20th, 2007

Is it OK to use programming language X in a production enterprise application? Or are fear, uncertainly, and doubt holding you back? Public “success stories” might make it more acceptable for you to do so in your environment. In that spirit I offer our story of a production Python deployment at an Oasis Digital customer […]

Help! My Hierarchy is Slow - Faster Hierarchies with Nested Sets

Friday, August 3rd, 2007

A great many applications, including many that I’ve worked on, have a hierarchy of things: of parts, of people, of organizations, etc. The way most of us represent such hierarchy is with the first thing that generally comes to mind: make each Widget have a parent Widget, with a table like so:
create table widget (widget_id […]

High Level Assembly Code?

Friday, March 2nd, 2007

A while back I needed to reverse the order of the 4 8-bit bytes in a 32-bit word, in some Delphi code. I worked out a way to do it with bit shifting, read the docs for a few minutes, and got something to work with AND, SHL, SHR, and some $FF constants. Later I […]