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…
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…
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/
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…
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…
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…
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…
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…