Blog

Minifying Your JavaScript Code

One of the things that many people try their best to do when deploying their JavaScript code to production, is use a minified version of the code. By that, I mean, remove the unnecessary white-space, extra symbols, and shorten the names of variables. If you don’t have much JavaScript, you Read more…

By Chris West, ago
Blog

PostgreSQL – Elapsed Years

One of the things that I had to do recently was develop an example iReport which would exemplify how to achieve optional variables solely through the Java code within the JRXML file. My example consisted of creating a query that could serve as an example table named people which contained Read more…

By Chris West, ago
Blog

JavaScript – Binding To A Function

ECMAScript 5 has introduced the new Function.prototype.bind() function which not only gives you the ability to natively bind a primitive or object to a function and also curry data for the function. Unfortunately, up to this point, nobody has written an implementation of this function to make it work on Read more…

By Chris West, ago
Blog

Camel Case In JavaScript

Almost a month ago, I posted about creating a camel case function in VBScript. Now I think it is time to see a simple way to implement this function in JavaScript: Believe it or not, that is all the code you will need for the following to work: You will Read more…

By Chris West, ago