VBScript: Be carefull using Doubles or Singles!
May 27, 2008
Posted by Roel in : Technical , add a comment
Most of us decided to use (ASP) VBScript to quickly write a script or build a simple website, writing code in a ‘higher-level’ has the advantage to keep our mind on the functionality of the script or website and forget about the low-level technical stuff.
Unfortunately, we have to worry about the following issue (example is using Classis ASP/VBScript)
Response.Write CDbl(112.51)<>CDbl(94.55+17.96)
‘Answer: TRUE -> WRONG!!
Response.Write CCur(112.51)<>CCur(94.55+17.96)
‘Answer: False
The correct answer is FALSE.
(more…)
Wii and WiFi errors (52035,..)
May 6, 2008
Posted by Roel in : Technical , add a comment
Recently I tried to update the software of my Wii game console which was no as user-friendly as i thought it would be.
(more…)