February 2012 M T W T F S S « Apr 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 Tags
Twitter: ctulek
- Teleoperation of the Robot NAO with a Kinect Camera: http://t.co/1FZk3cwQ via @youtube 07:12:42 PM February 18, 2012 from Tweet Button ReplyRetweetFavorite
- Linux on MacBook is much faster than Mac OS X 08:12:28 AM February 18, 2012 from web ReplyRetweetFavorite
- http://t.co/szFj5Zh2 takiminda ben varim 09:59:39 PM February 15, 2012 from web ReplyRetweetFavorite
- Sample App with Backbone.js and Twitter Bootstrap http://t.co/e84K3Z3i 09:18:44 PM February 13, 2012 from Tweet Button ReplyRetweetFavorite
- Top 6 Sites that Inspire and Educate & Life Scoop http://t.co/wXu1q0cN 01:40:32 AM February 13, 2012 from StumbleUpon iPhone ReplyRetweetFavorite
- Show HN: Very low footprint JSON parser in portable ANSI C http://t.co/y10aoFb7 09:17:46 PM February 12, 2012 from Reeder ReplyRetweetFavorite
- Two US startups break solar efficiency records, aim to light up your life http://t.co/wiGM0F6s 01:48:39 AM February 12, 2012 from Reeder ReplyRetweetFavorite
- DFRobot-An Online Opensource Robot and Hardware Shop http://t.co/d52LNS5H 05:50:16 PM February 11, 2012 from Reeder ReplyRetweetFavorite
- Backbone patterns http://t.co/DpDZywdG 05:47:47 PM February 11, 2012 from Reeder ReplyRetweetFavorite
- WebM and WebP Hand Ported to JavaScript for All Browsers http://t.co/gamCo6cN 09:33:07 PM February 07, 2012 from Reeder ReplyRetweetFavorite
Tag Archives: nodejs
Installing Node on AWS Linux AMI
Here are the steps to install node, npm and express on Amazon 32 bit Linux AMI: sudo yum install gcc-c++ make sudo yum install openssl-devel wget http://nodejs.org/dist/node-v0.4.7.tar.gz (Pick the latest stable version available) tar -zxvf node-v0.4.7.tar.gz cd node-v0.4.7 export JOBS=2 … Continue reading
Node.js + MongoDB = Mongoose
Mongoose is a ORM like library that helps a lot when you want to access your collections defined on MongoDB from Node.js. You can use it without schemas but by defining ORM objects the code becomes much easier to read. … Continue reading
node.js and Session Handling
node.js provides you a very fast HTTP server, however you have to implement many features by yourself, or you can try to find modules/projects developed for node.js. I prefer the first way and actually this the most fun part of … Continue reading
Installing node.js
Download from http://nodejs.org/#download tar -zxvf node-vx.x.xx.tar.gz cd node-vx.x.xx ./configure make sudo make install (To install system wide)