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
Author Archives: cagdas
Dojo Memory and Observable Classes
I’m new in Dojo. However, I’m very lucky that the new 1.6 version introduces Memory and Observable classes. Memory is part of the dojo.store namespace and it provides a data store that is implemented to store data in runtime. Together … Continue reading
Posted in javascript, sips
Leave a comment
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
Layout of my Node.js + Express Project
One thing I like about Express is that it provides the most important features for web development with a very smooth learning curve. (Of course a lot of credit should also go to Connect middleware on top of which Express … Continue reading
Doing partial updates with Mongoose
I use Mongoose on top of mongodb native driver for Node.js. With Mongoose you can create ORM like objects in Javascript. However, Mongoose is in development stage, that is, not all functions documented are available, yet. One of these functions … Continue reading
Posted in sips
Leave a comment
Javascript Everywhere
Decided to use/learn nodejs + express and mongodb in my toy project, I enjoy using Javascript in every level of my code. I program with Javascript in frontend, webserver and database logics. All my data is either a JS object … Continue reading
Use nave to install/update node
Maybe I’m getting lazier or there is something good about projects that are easy to deploy. One of the things I like about nodejs is that it’s really easy to download and install. (Similar things could be said for MongoDB … 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
Vim, Textmate, Emacs and Butterflies
Real Programmers: http://xkcd.com/378/ This comic becomes really true when you try to learn different editors. I have some experience on Emacs and was using TextMate for a while. However, after making an evaluation between them recently TextMate became my favorite. … Continue reading
Mockups…
In my spare time, I’m working for the mockups of my toy project, goaljuice.com. I try to make it as if it’s functional. Mockups help you to understand the requirements you need on both the frontend and backend. In that … Continue reading
Posted in nodejs, sips
Leave a comment
Tools for my toy project
I have finalized my toolset to play with. I will use nodejs, express, redis, mongodb and riak for my toy project. My purpose is to see how these five technologies work together. This way, instead of barely talking about new … Continue reading
Posted in nodejs, sips
Leave a comment