When displaying decimal numbers, it will show both the Integer and Fractional part even if the fractional part is 00. Like below: 2.35 3.50 2.00 If we need to hide…
Categories
TLS 1.0 support is being dropped by more and more platforms. If you are using your Railo / Lucee server to communicate with the service that have dropped the support…
Categories
The rounding problem can be avoided by using numbers represented in exponential notation: Number(Math.round(1.005+'e2')+'e-2'); // 1.01 Source: http://www.jacklmoore.com/notes/rounding-in-javascript/
To create a Node.js app that acts as a back end for an Angular JS app, these are the minimum required modules. (more…)
Categories
ColdFusion 9 & 10 by default have a setting to allow maximum 100 fields to be submitted. If the number exceeds you will simply get a blank page with no…
Categories
Integration with QuickBooks is easy if you know the OAuth flow. QuickBooks uses the OAuth 1.0 specification. They provide libraries for PHP, Java and other popular languages. For ColdFusion/Railo, you…
Categories
Source: http://arduino.stackexchange.com/a/14146 A picture is worth 1000 words, so they say, (1024 words if you work with computers) so I'll post some pictures ... I set up my Uno to…
Categories
If we need to store all the URL variables to the DB, say, for tracking the user, it is easy. We can use a varchar field to store this information…
Categories
The new version of Android, 7.0 - Nougat is released and will be available first to the Nexus devices and Android One devices. Features: Expanded emoji: 72 new emojis are…
Categories
The browsers cache a webpage on your machine when it is loaded, and on subsequent request show the data from the cache instead of requesting the server. You can instruct…