-
Recent Posts
Recent Comments
- Zhou Renjian on Java to JavaScript Compiler Discussion (1)
- Zhou Renjian on Packing in Java2Script
- Sebastián Gurin on Packing in Java2Script
- Wilfredo Ming on Java to JavaScript Compiler Discussion (1)
- Hacking so Existing » Blog Archive » Implementing Gmail-alike Web Mail Client by Java2Script on Tutorial of Java2Script SWT and Simple RPC Application
Archives
Categories
Blogroll
Links
Meta
Monthly Archives: August 2007
JavaScript’s Defects on Numbers
Number larger than 0×20000000000000 (54bit) will not be reliable. Here is the test script: javascript:alert (0x1ffffffffffffe); javascript:alert (0x1fffffffffffff); javascript:alert (0×20000000000000); javascript:alert (0×20000000000001); You can see that the latter two numbers are same number in JavaScript! Conclusion The safe number range … Continue reading
Posted in JavaScript
Leave a comment
Introducing Java2Script’s Simple Pipe
Communications between server and browser are essential things in AJAX world. Basic Knowledge Each HTTP connection is forked by browser. And one HTTP connection may serve multiple sessions in HTTP 1.1 but server only one session in HTTP 1.0. There … Continue reading
Posted in Architecture, Browser, JavaScript
4 Comments