Monthly Archives: June 2007

Asynchrony is Everything

You may know “Position is Everything” already. And I believe you should also know “Asynchony is Everything” or “Everything is Asynchronous” in RIA development. Asynchrony is not only very important in web application development but also vital in normal desktop … Continue reading

Posted in Architecture, Hacks | Leave a comment

Browser Statistics Among Web Developers

Here are some numbers about browsers used among web developers: 1. Firefox 54.63% 2. Internet Explorer 38.10% 3. Opera 3.84% 4. Safari 1.56% 5. Mozilla 1.34% Firefox versions: 1. 2.0.0.3 50.74% 2. 2.0.0.4 30.25% 3. 1.5.0.11 6.05% 4. 1.5.0.12 3.65% … Continue reading

Posted in Architecture, Browser | Leave a comment

QoS of JavaScript

You must be aware of QoS when you are writing Rich Internet Application (RIA), especially when you are using AJAX. Why? And what aspects should be considered in QoS of RIA? Here are some points: 1. Loading JavaScript file *.js … Continue reading

Posted in Architecture, Hacks, JavaScript | Leave a comment

Compressing and Deploying JavaScript

For AJAX, deploying JavaScript files may be important for you or not. If you are professional in AJAX, you must know the details of JavaScript deployment. First, you can compress your JavaScript files before deploying them. Common compressors may cut … Continue reading

Posted in Architecture, Hacks, JavaScript | 1 Comment

Packing in Java2Script

Usually, when you develop new features, you split functions into pieces and implement them one by one. And in Java development, there will be implemented by one *.java file and another. If you want to deploy the finished feature, you … Continue reading

Posted in Architecture, Hacks | 2 Comments

Asynchronous Programming

In my early Java2Script development days, I think a lot about asynchronous programming. AJAX was hot and is still hot. What is most important factor in AJAX technologies? I think it is “Asynchronous”. Without asynchronous programming, visitors still need to … Continue reading

Posted in Architecture, Hacks | Leave a comment

Tutorial of Java2Script SWT and Simple RPC Application

In this article, I will show you a simple example using Java2Script Simple RPC (For “what is Java2Script Simple RPC? “, please read this post). Step 1. Create a Java2Script Servlet Project Here are instructions: File -> New -> Project … Continue reading

Posted in Tutorials | 2 Comments