Archive for the ‘Programming’ Category
When people talk about open source they often talk about the products, not the process. That’s not really a bad thing (it is after all about the product), but it overlooks some really interesting things sometimes. For example open source tools used in open development.
A few months ago Jesse Ruderman introduced [...]
Tuesday, December 18th, 2007 Posted in Mozilla, Open Source, Programming | 1 Comment »
Here’s a great read on Wikipedia’s Infrastructure. Two excellent sets of slides. A lot can be done with a LAMP stack. The common theme: caching and careful optimization. There are some really impressive stats in there.
Sunday, April 29th, 2007 Posted in Internet, Open Source, Programming, Web Development | No Comments »
So I downloaded and tested out Coda a little bit today. My initial impression is that I’m very impressed. It could be the new standard. A few like Alex King point out that it uses Safari as the default engine. I don’t think that’s so bad. Nothing stops you from [...]
Wednesday, April 25th, 2007 Posted in Programming, Software, Web Development | No Comments »
One of the hardest things to program is the Date and Time. This is especially true when your doing it on the web. Why is that? Using a unix timestamp is immensely helpful and resolves many of the complexities, but it does have some issues (besides the Y2K38 bug). Well lets [...]
Sunday, March 11th, 2007 Posted in Politics, Programming, Tech (General) | 3 Comments »
This is a great page on RAND() in MySQL. Very nice breakdown of how to gain performance with one of the biggest “it should be simple but it isn’t” problems in DBMS’s.
Sunday, February 25th, 2007 Posted in Programming | No Comments »
After reading about Myk’s use of Komodo, I decided to give it a try. I’ve yet to find the truly perfect IDE, so I’m always open to good alternatives.
For years I used BBEdit Lite, which was good enough for my somewhat basic needs, TextWrangler came and I moved over. On the Windows side [...]
Thursday, February 15th, 2007 Posted in Mozilla, Programming, Web Development | 3 Comments »
This is just a little note for anyone doing xmlHttp work. I just encountered this situation this morning. As most web developers know IE7 introduces support for the native scriptable XMLHttpRequest object. The big advantage here is that ActiveX is no longer necessary to use ajax applications on IE. One thing [...]
Saturday, December 2nd, 2006 Posted in Programming, Software, Web Development | 5 Comments »
Several weeks ago I was looking on line for a way to have PHP execute a background process, so that the page didn’t hang while some functionality happened. One way to do that is to use fsockopen() to open a URL to exec what you want. But I wanted to see if there [...]
Thursday, September 14th, 2006 Posted in Programming, Web Development | 9 Comments »
The BBC has a little article on the Twenty Fifth Anniversary of the PC. What’s so scary is that despite being 22, I learned to program using BASIC on one of those monsters since my father had one during the earlier part of 90’s. Which means I’ve already been programming for more than [...]
Friday, August 11th, 2006 Posted in Hardware, Programming | 1 Comment »
A little while back I read about how WordPress was implementing Nonce to help enhance security. What I like about this technique is that it doesn’t rely on referrer checking (which is faulty at best).
Today I implemented that on a project I’m working on, rather similar in style to WordPress. I [...]
Sunday, July 16th, 2006 Posted in Open Source, Programming, Security, Web Development | No Comments »