The following articles were authored by codingguy

HTML5在路上——HTML5开发者日暨W3C中国6周年庆典

大会官网传送门

Node.js代码阅读笔记之libeio

这个库全称貌似为enhanced IO或者evented IO,用多线程实现了异步IO操作,为什么不用libev实现?因为libev用epoll,不支持regular file。没错,eio就是给fs模块用的。

从demo.c看如何使用:

翻开代码,有个demo.c,操作很多,常用文件io都包括[......]

Read more

Reading node.js’source code (2): uv overview

After peered the entry of Node.js, I think I have to read source code deeply in order to understand how does it working.

Beside the v8 engine, the[......]

Read more

HTML5 Tetris

I wrote a classic tetris program just for touching the canvas component of HTML5.
Unfortunately, I have not run the javascript code by embedding into[......]

Read more

Reading node.js’source code (1)

Now we will read Init() which be called at first in Start()

Init(), as the name, is responsible for following work:

  • Parse command line argument[......]

Read more

Reading node.js’source code (0)

Node.js is not a single project as there are several components.
You can find them under NODEJS_SOURCE/deps:
http_parser, openssl, uv, v8, zlib

A[......]

Read more

Example of Binder Device Access

As well-known, binder driver is the core component of Android IPC mechanism. Either client side or service side use binder lib to complete the communi[......]

Read more

HOW-TO of Android NDK

How to force the display of build commands:
——————————————-

Do “ndk-build V=1″ and actual build commands will be displ[......]

Read more

09年初写的Android Recovery

找到了以前写的老文档,09年初写的,不管内容怎样,贴出来晒晒~

—————————————————————-

Android Recovery

Android Recovery: 功能简介

Andro[......]

Read more

[转] Execution in the Kingdom of Nouns

Forward from: http://steve-yegge.blogspot.com/2006/03/execution-in-kingdom-of-nouns.html

They’ve a temper, some of them—particularly verbs: they’re t[......]

Read more