Blog – Applications

PHP Pop Quiz

Try out these mathematical expressions in PHP that don’t do what you think they might. Join the conversation and see what you think they might output.

PHP’s max_execution_time Different on Windows and Linux

On Windows, the PHP INI variable, “max_execution_time,” is the maximum clock time between when the PHP process starts and when it finishes. On Linux and OS X, the same variable represents the maximum CPU time that the PHP process can take.  CPU time is less than clock time because processes on Linux (and OS X)…

No Brown M&Ms

Triggers are useful tools a team of software engineers can pull out of their project toolbox. Read more about identifying project risks here.

Who should do the estimating?

Check out best practices for estimating tasks and creating the work breakdown structure for a project from experienced developers.

Burndowns considered harmful?

If you’re a project manager, you constantly look for the perfect way to report on project progress. Consider this discussion when weighing the options.

How to Define Global Constants in Flex

Probably the best way to define a set of global constants is to create an object with all static constants as members. Check out our method here.
1 2 3 4 9 10 11 12 13 14 15
Scroll to Top