Recent Posts

Throw Hardware At The Problem, Not Developers

less than 1 minute read

As developers, we often want to fix problems with code, but don’t be afraid to ‘put the compiler down’ and throw some hardware at the problem. Performance pr...

Static Collections

less than 1 minute read

If a collection is static, make sure it only contains the objects you need. If the collection is iterated over often, then the performance can be slow if you...

Use A Content Delivery Network

less than 1 minute read

Use a content delivery network (CDN) for hosting images and scripts. They may be cached and it will reduce load on your server.

Pre Fetch Components With Ajax

less than 1 minute read

Use AJAX to retrieve components asynchronously that may not be needed immediately, such as the content of a collapsed panel, content behind a tab, and so on.