study log

  博客园 :: 首页 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
  8 随笔 :: 6 文章 :: 134 评论 :: 2 引用

公告

2012年1月1日 #

入门篇 
    《LINUX权威指南》书不错,写的很全面也比较广,涉及的不深,做为入门书籍不错,可以比较全面的了解linux 。另外比较热门的也可以看看《鸟哥的私房菜》等书,偏管理类的书。如果想做server方向的可以找来看看。 
Running Linux, 5th Edition
驱动篇 
    《LINUX设备驱动程序 》就是网上说的“LDD”,经典之作,必备书籍。国产经典《Linux驱动详细解》也是一本非常不错的书,很实用,书中源代码 分析比较多,基于2440的,对linux外围驱动有很全面的讲解 
Linux Device Drivers, 3rd Edition - O'Reilly
内核篇 
    浙江大学的《LINUX内核源代码情景分析》,外国鬼子的《莱昂氏UNIX源代码分析》还有《深入理解linux内核》都是出名的经典巨作。另外赵炯的《LINUX内核完全剖析--基于0.12内核》也非常不错,对内核代码进行了详细的注释,非常有助于对内核的理解和代码的分析。 
Understanding the Linux Kernel, 3rd Edition
shell篇 
    《LINUX与UNIX Shell编程指南》 
Linux.and.Unix.Shell.Programming
应用 编程 
    不用说了肯定是《unix环境高级编程》被称为unix编程的圣经。 
Advanced programming in the unix(r) environment (2nd edition)
TCP/IP篇 
    《TCP/IP详解》作者W.Richard Stevens也是《unix环境高级编程》的作者,牛人出的书没有一本不是经典的。但是英年早逝,默哀一下
TCP.IP Illustrated
c语言 
    《The C Programming Language》正是作者造出来的c语言,书能垃圾就怪了 
    《c和指针》和《c缺陷和陷阱》两本必备。包含了c语言最容易出错的地方,加深c语言功力的好材料。 
The C programming Language
关于算法 
    《算法导论》
麻省算法导论全集(教材+讲义+答桉)

http://kinglaw05.blog.163.com/blog/static/5968331420103301931422/ 

http://mikewootc.blog.163.com/blog/static/8311285820091171513864/

posted @ 2012-01-01 14:00 lin-zhang 阅读(77) 评论(0) 编辑

Table of Contents

HTML5 Overview.. 2

Canvas 2D drawing, interactive. 3

Js animation & async. 4

Js class, ‘delegate’ & Inheritance. 5

 


 

HTML5 Overview

HTML5 ~= HTML + CSS + Javascript

 

New features: Offline storage database, Realtime Communication, Drag-and-drop, Graphics, Multimedia, WebGL

Organization & Standards: WHATWG(HTML5), W3C(CSS, HTML, XML, SOAP, ...), ECMA(ECMAScript, CLI, ...)

 

http://slides.html5rocks.com/

 

Browser Supports:

http://findmebyip.com/litmus/

http://html5test.com/

 

Video/Audio Supports:

http://diveintohtml5.info/video.html

http://en.wikipedia.org/wiki/HTML5_video

 

Media Capture:

http://www.w3.org/TR/html-media-capture/

http://www.whatwg.org/specs/web-apps/current-work/multipage/video-conferencing-and-peer-to-peer-communication.html

http://www.taboca.com/p/camcanvas/

 

vs Flash/Silverlight/.. :

Thoughts on Flash (Steve Jobs, 2010.4)

http://en.wikipedia.org/wiki/Comparison_of_HTML5_and_Flash

Will there be a Silverlight 6 (and does it matter)?

Microsoft’s strategy with Silverlight shifted

 

Mobile Browser Supports:

http://en.wikipedia.org/wiki/HTML5_in_mobile_devices

http://jquerymobile.com/

http://phonegap.com/

 

Graphic Designer:

http://en.wikipedia.org/wiki/Adobe_Edge

http://www.adobe.com/devnet/edge/articles/guide-to-edge.html

 

Showcase

http://www.chromeexperiments.com/

http://mugtug.com/sketchpad/

http://fir.sh/projects/jsnes/


 

Canvas 2D drawing, interactive

API:  http://www.whatwg.org/specs/web-apps/current-work/multipage/the-canvas-element.html

 

Tutorials:

http://home.cogeco.ca/~ve3ll/jstutorg.htm

http://simonsarris.com/blog/225-canvas-selecting-resizing-shape

http://www.html5canvastutorials.com/

 

Codes:Run


 

Js animation & async

setInterval / clearInterval, setTimeout / clearTimeout

Codes:Run

Some Librarys:

http://jqapi.com/#p=animate    jquery animate

https://github.com/JeffreyZhao/jscex     http://www.sndacode.com/projects/jscex/wiki     move.html     sorting-animations.html

 

http://www.infoq.com/articles/surviving-asynchronous-programming-in-javascript

http://www.neilmix.com/narrativejs/doc/

http://www.infoq.com/articles/stratifiedjs


 

Js class, ‘delegate’ & Inheritance

Codes:Run

http://www.joelonsoftware.com/items/2006/08/01.html

http://mckoss.com/jscript/object.htm

http://ejohn.org/blog/simple-javascript-inheritance/

http://odetocode.com/blogs/scott/archive/2007/07/05/function-apply-and-function-call-in-javascript.aspx

 

posted @ 2012-01-01 13:49 lin-zhang 阅读(24) 评论(0) 编辑