Mount JFFS2 Image
Saturday, October 25, 2008
Example of how to mount a JFFS2 image using mtdblock.
Clay Shirky: Institutions vs. collaboration
Monday, July 14, 2008
This is a rather interesting talk that takes some very foundational ideas from open source software development, P2P networks, and social networking and implies that these paradigms can apply to a lot more.
Some people will die for love,
Others will die because they lost it.
Emacs Tips and Tricks
Monday, July 17, 2006 by digitalpeer
Doxygen + Emacs
;; load man pages when on a word and F1 is pressed
(global-set-key [(f1)] (lambda () (interactive) (manual-entry (current-word)))
;; disable backup
(setq backup-inhibited t)
;; disable auto save
(setq auto-save-default nil)
;; map go to line
(global-set-key "C-l" 'goto-line)
You'll find a .emacs file attached below similar to what I use.