By Adrian Mummey in featured articles, programming, webFeb 5th, 2009 | No Comments
Obviously web reporting is nothing really new; one basic approach is this:
Aggregate your data and output it in some kind of structured format, usually XML
Request this information and generate some visualizations of it
Serve these visualizations through a web server
Pretty basic stuff. All of the tools that I have seen essentially make one or all of these processes easier. Unfortunately no matter what tools you choose, the rule of engineering stands: Fast, cheap, good – choose two
In this context it is more like: Less proprietary code, free software, easy to use/maintain – choose...
By Adrian Mummey in featured articles, php, programmingNov 5th, 2008 | 6 Comments
During development of my cSprites application I ran across an interesting problem when generating my sprites with GD. When dealling with transparent GIFs, GD does not take care of processing by default you must enable some specific settings to get it done correctly. The default behavior is that imagecreatefromgif adds a black background to the transparent gif. The way I solved this was a lot of trial, error and research.
Here is the original Image I used. Initially I thought I could just use the basic image copy functions in GD and it would take care of the rest. Well this isn’t the case....
By Adrian Mummey in featured articles, osx, programmingMay 29th, 2008 | 12 Comments
For the past few days I have been setting up my mac environment and trying to get symfony up and running under the MAMP environment. I thought I would try my hand at a step by step tutorial. Many of the tutorials I found were geared toward people who were familiar with the Mac and/or MAMP. However I wasn’t one of these people.
In this post I will cover how to set up your MAMP and virtual hosts. I am using Mac OSX Leopard so some of this may be different for other versions.
First after installing MAMP, Open MAMP and click on Preferences and then click on the Ports tab. Here click the “Set...