Tag Archives: programming

Javascript tip: hints for better minification

Delivery of Javascript assets can be pretty expensive across the wire. A common way to combat the delivery cost is to minify your script before delivery. This technique is about as close as the web has come to compiling. However, … Continue reading

Posted in javascript, programming, web | Tagged , , | Leave a comment

Java 5 Enums Are Cool!

Java 5 enums are powerful things. Anytime you need a limited list of values, you should consider an enum class (versus a String or int). Java 5 enums can have methods as well, which leads to some powerful combinations.

Posted in java, programming, work | Tagged , | Leave a comment