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
Continued…
Posted in News, Personal.
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
Posted in Programming, Tips.
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.
Posted in News.
I’ve launched a sorta social site “groupstick.com” few weeks ago. Since then I’ve got some users signed up, but they are all from my work place. I should add a section for instruction since people told me that they did not know what to do with basically. That was a good point indeed.
I know what it is for since I created it. If I summarize what the site is for, here it is:
main features
- Message board based on topic and topic becomes a group.
- Email notification when user posts a message (default), so works like email list as well
- Twitter like UI
- User can view their group posts at home page
- Private and Public group
security
- Entire site on secure channel (SSL)
- Strong salt technique for user’s password
- Daily Data backup
- Data Recovery
- Validation of users
public group feature
- Anyone can see the messages
- Anyone can create a group
- Anyone can join a group if signed up
- Messages and title are searchable
- Can share via facebook, digg, and so on
- unlimited number of groups per user
private group feature
- Invitation only and invitee has to accept the invitation to join the group
- Search does not index private groups
- No one can know existence of private groups except group members
- No one can view messages in private groups except group members
I have to admit that the site needs more features. However, I think groupstick.com is ready for more users and users can take full advantages of it.
Posted in News.
If you have seen one for Tiger Woods when his affair sage was exposed, this is same thing, but with Steve Jobs.
http://www.youtube.com/watch?v=Tn-YesqzvNk
Posted in News.
The first thing that came to me was how the hell new ISP’s price model gonna affect this? The trend is that ISPs are capping the monthly bandwidth. If consumers start viewing 4096p videos, how soon they reach the cap? Like this article http://goo.gl/WxMH. I wonder what’s the result off the test out though?
Maybe. it’s maybe. google has a plan to become major ISP throughout many cities and towns at affordable price with no limited bandwidth to support what they just announced?
Reference: http://goo.gl/ziQh
Posted in News, Personal.
www.groupstick.com
Please share with your friends.
It’s like yammer, but groupstick.com is much simpler and open to everyone.
Posted in News, Personal, technology news.
Tagged with groupstick, yammer.
http://www.engadget.com/2010/05/21/google-tv-everything-you-ever-wanted-to-know/
I wonder what Yahoo TV widget team will do next? Will they come up with something similar or let Yahoo TV widget fade out? I think it will be latter unfortunately and that’s my final answer since Yahoo is transitioning into Media company from Technology company. Period.
Posted in Personal, technology news.
Tagged with google, tv, yahoo.
This is old blog post by Peter Van Dijck, which he posted presentation materials regarding site performance and scalability, but it is still very good resource.
Check it out.
Posted in Backend Tech, Frontend Tech, Tips.