Archive for the ‘Programming’ Category

Book: Getting Good With JavaScript

Monday, August 29th, 2011

In Getting Good With JavaScript, I’ll quickly take you from novice to advanced novice! “Wait, what?” you respond. Yes, advanced novice. Let me explain:

There’s more to learn about JavaScript than anyone could put into a single book. This book doesn’t get anywhere close to attempting that. It doesn’t even try to cover everything the normal JavaScript-for-beginners book covers. Instead, I’ll give you a solid foundation by clearly explaining all the basic syntax. Once that settles, we’ll go on to covering several important concepts, features, and best practices.

Link: TutsPlus

Top 10 Free Source Code Editors

Tuesday, July 19th, 2011

With professional code editor like Dreamweaver, Coda, Textmate and others, its no surprise that more and more people have partially forgotten about simpler code editor such as Window’s Notepad. We do understand that simpler does not mean the best option however, there are simpler yet professional code editors that might just suits what you need!

Link: HongKiat

Getting Started With Python And Google App Engine

Thursday, July 14th, 2011

This tutorial describes how to develop and deploy a simple Python project with Google App Engine. The example project, a guest book, demonstrates how to use the Python runtime environment, and how to use several App Engine services, including the datastore and the Google user service.

Link: code.google.com

Make Your Own Programming Language

Thursday, April 28th, 2011

This tutorial will teach you how to write your own programming language. I will be using C++ examples for the tutorial but the concepts should be easy to implement in any language you like, thought I assume the reader knows how read and understand C++ code.

Link: GitHub