02
Feb 11

Essential Node.js patterns and snippets

In this post, I take a look at the different patterns that you need to know when using Node.js. These came from my own coding and from a look at the code behind Tim Caswell’s flow control libraries. I think it is necessary to know how these basic patterns are implemented even if you use a library..


01
Feb 11

Understanding the node.js event loop

The first basic thesis of node.js is that I/O is expensive:


17
Jan 11

Performance benchmarking the node.js backend of our 48h product, WeHearVoices.net

I decided to spend some time looking into improving the performance of the node.js backend of our 48h hackathon product We Hear Voices – a dead-simple but slick feedback tool for websites and web apps (go get it for your site ;) .


17
Jan 11

Attending Garage48 Helsinki 2011, my experience

I just came back from Garage48, a 48 hour hackathon organized by Aalto Entrepreneurship Society and Garage48 in Helsinki. I had a ton of fun, met some interesting new people and built something awesome!


13
Jan 11

Getting started with Useradmin, my Kohana 3 auth admin module

In this post, I discuss the details of how to use my admin module. Hopefully this covers all the stuff you need to know; if not, let me know in the comments. I’m just one guy, so it may be quicker to ask on the Kohana forums for troubleshooting. Previous writing:


09
Jan 11

Implementing Facebook login (part 3)

Damn Facebook documentation! I finally managed to piece together a better picture – after first getting all that info in the previous posts (part 1, part 2) – about how registration and login can be handled.


04
Jan 11

Nginx, php-fpm and node.js install on Centos 5.5

After some time with node.js I recently decided to move to nginx + php-fpm + node.js for my future servers. Here we will be installing:


03
Jan 11

Implementing Facebook login (part 2)

In part 2 of my Facebook login tutorial, I will discuss implementing Facebook registration (see also: part 1 and part 3).


30
Dec 10

Learning node.js: my experiences and helpful resources

Here are my notes from learning node.js over the winter vacation. You can think of this post as asking me what resources did you find helpful in learning node.js? There is a lot of node.js stuff out there, but few posts on what is noteworthy, popular or tricky - I am sick of seeing posts explaining what node.js is and showing me the same five lines of code.


27
Dec 10

Implementing Facebook login / single sign-on (part 1)

I am implementing Facebook single sign on for my applications. In this first part of my Facebook authentication tutorial, I discuss the basics of the Facebook authentication process (see also: part 2, part 3).