resources

TwitterFacebook
Get flash to fully experience Pearltrees
http://code.google.com/edu/

Code University - Google Code

This site provides sample course content and tutorials for Computer Science (CS) students and educators on current computing technologies and paradigms. All the courses on Google Code University are under the Creative Commons license, which makes it easy for educators to use for their own classes. Feel free to download documents, slides, and videos to use in your classes.
http://www.smashingmagazine.com/ This is a different take on Responsive Web design. This article discusses how we can better embrace what the Web is about by ignoring the big elephant in the room; that is, how we can rely on media queries and breakpoints without any concern for devices. 2

Smashing Magazine

http://www.alistapart.com/

A List Apart

March 27, 2012
http://24ways.org/ Ben Bodien fosters seasonal goodwill with his sparkling vision of web workers as dedicated craftspeople: understanding and sharpening the tools of our trade; appreciating the challenges, nuances and responsibilities of our craft; and instinctively knowing when something just works. Hope and joy for the new year!

24 ways - web design and development articles and tutorials for advent

http://ogp.me/

The Open Graph Protocol

The Open Graph protocol enables any web page to become a rich object in a social graph.
http://nodejs.org/

node.js

var net = require ( 'net' ); var server = net . createServer ( function ( socket ) { socket . write ( 'Echo server \r\n ' ); socket . pipe ( socket ); } ); server . listen ( 1337 , '127.0.0.1' );