Archive for August, 2010

Cholesterol numbers

I received an email from Aetna (my insurance company) regarding cholesterol numbers and thought it would be useful to remember what numbers are desirable and record it as a reference.

Total cholesterol
Desirable – below 200
Borderline high – 200-239
High – 240 or above

Read more

pulling query string in node.js

in web development, pulling data from query string is the basic and fundamental task. In node.js, the syntax is like this:

http://{host}:{port}/?name=shinstudio.com
1
2
3
4
5
6
7
var http = require('http'), url = require('url');
http.createServer(function(request, response) {
    response.writeHead(200, {"Content-Type":"text/plain"});
    var urlObj = url.parse(request.url, true);
    response.write("Hello " + urlObj.query["name"] + "!\n");
    response.close();
}).listen(8000);

you can actually test my test app here:

http://www.groupstick.com:8001/?name=shinstudio.com

Yahoo Performance Team is hiring a hybrid engineer

I was told by my friend who works for Yahoo Performance Team in Sunnyvale that they are looking for a hybrid engineer(FE/BE) and its role is :

  • primary developer for the next generation of Y!Slow
  • Roundtrip FE and performance related research
  • evangelism (teaching classes, speaking in conference, and so on)

It sounds very interesting to me. Also it is highly visible role in the company as well as industry. Let me know if any of you are interested in the job. :)