Notes from Qubit Inc. (Page 13)

Quick Sort

Based on the idea that we can partition an array around a pivot (chosen element of the array), we can put the smaller (than pivot) elements on the left side and place greater elements on the right side of the pivot, then, we keep doing the same thing for the left side and the right side. More details of how this algorithm works is on "How it works" section.

Read more...

Insight into V8 Build System

Please be aware of notation below in command outlines. $ represents a command and rests of the lines following that line are output.

Read more...

Subversion Basics

Checking out a fresh copy from the remote repo,

Read more...