Jason's Google Code-in Blog

GCI Organization: FOSSASIA

Using NodeJS for the First Time

other gci projects

NodeJS is an asyncronous event driven Javascript framework. The main feature that separates NodeJS from other systems is is its non reliance on threads and blocking code. NodeJS does not require that a certain process finishes before starting another one. This allows the application to move on instead of being stuck on long processes. My Opinions on NodeJS NodeJS was a load of fun to work with, and I really did enjoy using it.

12 Jan 2016 #NodeJS #javascript #server side #first #framework

Developing a Register and Login System with Codeigniter

other gci projects

Codeigniter is a MVC PHP application framework designed to make developing a web application easier and faster. It has a large and active community base with a pretty good amount of documentation. For me, this was my first PHP framework I used. I have always thought using frameworks like Codeigniter or Laravel is bad, but I may have to change my mindset after actually using one. The time it took me from start to end in developing this application is shorter than the time it would take to develop a ‘vanilla’ PHP application even though this is my first time using Codeigniter.

19 Dec 2015 #Codeigniter #PHP #MVC #framework #MySQL #Apache