So it been awhile since I sort of promised some tips on developing web applications fast. This post contains my five generic tips, which may apply to you (but then again – your mileage may vary). I’ve tried to abstract the advice and not stick to PHP development here, though it’s by far the world [...]
Posts Tagged Programming
Your mileage may vary
Nov 9
It’s always fun to read articles with tips and tricks by other developers and see how they figure “best practices” are handled. Most developers do seem to thing they observations and practices are easily adopted by anyone, and should be accepted without any argumentation or reasoning behind the advice.
One of the nice examples of this, [...]
I recently had a little fun playing with the dynamic cache available in the Zend Platform. The Zend Platform is a commercial product, which provides a number of cool professional features to a PHP setup – one of these is the option to do dynamic caching.
With dynamic caching you can cache the output of a [...]
In programming languages common tasks should be easy, and surprisingly often I find my self loading data from some source file into a database. With PHP loading a CSV file into the database – or posting the data to an API – is quite easy.
The only trick is to know the functions file_get_contents, split (and [...]
If you have a php array, but need to nuke an item from it, the unset function is just the tool to do that. When iterating through the array after removing the item, you should be slightly careful.
The unset function does remove the item, but it doesn’t “reindex” the array, so you should traverse the [...]
PHP4 – Game over
Aug 8
Yesterday PHP 4.4.9 was released, and today PHP 4 is officially dead. There wil be no more updates.
Don’t worry too much tough. PHP 5 is far superior and there’s absolutely no go reason not to have moved on to PHP 5 long ago.
PHP 4 – It was a nice ride and I’m sure you deserve [...]
ZendStudio for Eclipse
May 28
For professional PHP development, nothing beats ZendStudio in my book. Currently ZendStudio is in the process of moving from a standalone application to something build on
top of Eclipse. I’m sure it might be a wise move on the long term, but there are a few things bugging me with th current version. The number one [...]
PHP4 RIP
May 9
In less than 3 months – on August 8th, 2008 – PHP4 reaches end of life. If you still haven’t updated, it’s damn well time to get migration started. PHP5 far better than the previous versions, and if it’s good enough for Yahoo, Facebook and many other huge sites, it’ll probably be a joyride for [...]
Google App Engine
Apr 14
I’ve been playing a bit with the Google App Engine the past few nights. It’s one of the newest toys out of Google, and it could very well be a very important piece of infrastructure to many web developers trying to create a dotcom adventure.
Google App Engine (once they let you in) allows you to [...]
PHP Coding Standards
Feb 8
If you’re part of a larger team developing (and sharing) code, it is a pretty good idea to have some common standards. In the PHP work, such a set of common standards include the PEAR Coding Standards. While it may be a challenge to agree on standards, it can be done – the hard part [...]