Skip to content

Instantly share code, notes, and snippets.

View daker's full-sized avatar
🏴‍☠️
Emitting X-rays ☢️

Adnane Belmadiaf daker

🏴‍☠️
Emitting X-rays ☢️
View GitHub Profile
@addyosmani
addyosmani / resources.md
Last active August 29, 2015 14:00
Polymer resources for FITC

Web Components Can Do That?! extras

Thanks a ton for coming down to my talk, folks <33z. Your energy was amazing. This page has a few extra resources for you.

Slides

http://addyosmani.github.io/fitc-wccdt/

@yinyunqiao
yinyunqiao / gist:3016424
Created June 29, 2012 07:12
http server in QML
import http 1.0
HttpServer {
id:server
port:8888
onRequest: { /*request, response*/
response.write('<h1>Hello QML!</h1>')
.end();
}