- USA
- United Kingdom
- India
- Germany
- Brazil
- Colombia
- Latvia
- France
- Australia
- Ukraine
Friday, April 30, 2010
Interest in Google App Engine and Google Web Toolkit Around the World
My postings on the Google Web Toolkit and Google App Engine have generated traffic that would be considered very meager by many standards, but I thought it was enough to see some interesting trends in where these Google tools are being used around the world. This is from my Google Web Analytics account:
The top countries are:
Hey, my blog is useful!
My post on getting Apache HttpClient working with Google App Engine is referenced from one of Google's official FAQ pages (the "Will It Play with Google App Engine" page)! I feel special.
Passing JVM arguments for junit with maven
Every time I need to do this, google leads me to this help page, which leads me to the following command, which does NOT work (at least not on my version of Maven):
mvn -Dmaven.junit.jvmargs=-verbose testThe proper help page is for the surefire plugin. So the proper way to do it is:
mvn -DargLine=-verbose test
Parallel Computing benchmarks
I've been doing some benchmarking and hope to post some results soon. I have some simple, easily-parallelized code that I've been trying different computing architectures on. These include:
- Single threaded java
- Single threaded C
- Multithreaded java
- Multithreaded C
- Vectorized C using x64 SSE Instructions
- Multi-core computing on an NVIDIA GPU with CUDA