July 24th, 2007
Last weekend, I went to WordCamp 2007 in San Fransisco. In case you didn’t get the news, WordCamp is the annual gathering of WordPress bloggers and developers. This year’s event was packed with 2 days of great talks, but I only got the chance to attend the second day, which focused on developers and the future of WordPress. George, however, attended the first day and mentioned that the talk on SEO tips given by Matt Cutts from Google was pretty good. Wish his slides were published somewhere.
As a WordPress plugin developer and also a wp-hacker, I was quite excited about the technical stuff the core WP developer team talked about during the second day.
The first talk(view the slide here) was from Barry and Matt. Barry, the sysadmin, mentioned some amazing stats from WordPress.com and talked about the performance tuning, like APC and WP-CACHE. Matt then introduced HyperDB, the failsafe/redundant/cluster MySQL database class used in the WordPress.com backend. Although I am on the HyperDB maillist since day one, I was having doubts about HyperDB. However, from what Matt talked about, HyperDB does actually many things that I have in mind. Coupled with the new MySQL Proxy, High Availability WordPress clusters would be much easier to build now.
[to be continued...]
Posted in SiteNews, WebDesign | 1,559 Comments »
May 30th, 2007

The graphical programming tool, Labview, is great for scientific instrumentation, because it is easy to use and yet very powerful and feature rich. However, the graphical interface sometimes can be a hassle, especially when you want to do complicated mathematical operations. Like a look at the example here for adding up two 1′s. Drawing the wires can be a headache if you are doing many many more operations.
This is when you will need the MathScript in Labview. It is similar to MATLAB syntax and does a good job complimenting the all-graphical programming of Labview.
Today, I received an email saying that NI just released an online beta demo (link). With the demo, you can actually run MathScript programs without installing Labview! It can even output 2D or 3D plots. This is great for plotting function for any school project
Try some simple codes:
a= 0 : 0.1 : 2*pi
plot(a, sin(a))
???????????????????????????

Posted in MATLAB, LABVIEW | 359 Comments »
May 22nd, 2007
National Instrument High Speed DIO drivers can read and write a specialized file format HWS (Hierarchical Waveform Storage). It is actually a subset implementation of the famous HDF5, which is best data format for large scientific data (we are talking about terabytes here).
Anyway, as I started playing with .hws file a bit more, I found it quite easy to use, and because it is based on HDF5, I can use any software that supports HDF5 to open the HWS file! And, no surprise here, MATLAB, from ver 6.5, has functions to read and write HDF files.
However, MATLAB’s hdf5read() function requires an unique dataset attribute for the data that you want to load from the HDF5 file. So, to read the NI-HWS file, we need to figure out the dataset attribute. Using HDF Explorer and HDF Viewer application, I was able to find the correct attribute to read the HWS file in MATLAB. Here it is
hdf5read('test.hws','/wfm_group0/axes/axis1/data_vector/data');
The second paramter is the HDF5 attribute for the actual dataset in the HWS file.
Posted in SiteNews | 106 Comments »
May 4th, 2007
The other day, one of our lab engineers brought an old book over. It is the 1968 Trident! In case you are too young to know the name (just like me), Trident is the Year Book for graduates of UCSD at that time.
1968 is actually a very important year in the history of UCSD. The first undergraduate class of UCSD was admitted in 1964, so 1968 was the first class of UCSD graduates! Anyway, the photo below is the campus photo. At that time, only Revelle College was there. In the 40 years after this photo was taken, UCSD has grown to 6 colleges and more than 20000 students. What an accomplishment!
More history of UCSD on TritonLink?

For comparison, you can take a look at the recent satellite and aerial images. Google Maps, and Microsoft Live Local, or the official UCSD Maps.
Posted in SiteNews | 106 Comments »