Voici la liste des liens que j'ai présentés hier soir.
CSS Variables
https://www.chromestatus.com/features#css%20variables https://googlechrome.github.io/samples/css-custom-properties/index.html
| var argv = require('optimist') | |
| .usage('Arduino deploy button') | |
| .demand('d') | |
| .describe('d', 'project directory') | |
| .argv | |
| var five = require("johnny-five") | |
| var spawn = require('child_process').spawn | |
| var board = new five.Board() | |
| var dir = argv.d |
Voici la liste des liens que j'ai présentés hier soir.
CSS Variables
https://www.chromestatus.com/features#css%20variables https://googlechrome.github.io/samples/css-custom-properties/index.html
| security find-generic-password -ga "yourwifiSSID" | grep "password:" |
I hereby claim:
To claim this, I am signing this object:
| $social: (twitter, $Twitter), | |
| (facebook, $FB), | |
| (googleplus, $GPlus), | |
| (linkedin, $LinkedIn); | |
| @each $socialnetwork, $color in $social { | |
| .social-link--#{$socialnetwork} { | |
| background-color: $color; | |
| &:focus, |
| <!doctype html> | |
| <html> | |
| <head><meta charset="UTF-8"><title>gist jsbin test</title></head> | |
| <body> | |
| <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" id="Layer_1" x="0px" y="0px" width="100px" height="100px" viewBox="0 0 100 100" style="enable-background:new 0 0 100 100;" xml:space="preserve" xmlns:xml="http://www.w3.org/XML/1998/namespace"> | |
| <g> | |
| <path d="M17.916,11.605h27.348V2.697h10.475v8.908h32.035v22.621H17.916L6.172,22.912L17.916,11.605z M55.08,97.303H44.596V73.057 H55.08V97.303z M82.094,68.117H12.227V45.496H44.93v-6.908h10.484v6.908h26.68l11.734,11.306L82.094,68.117z"/> | |
| </g> | |
| </svg> |
| <!doctype html><html> | |
| <head><meta charset="UTF-8"><title>Tetris</title></head> | |
| <body> | |
| <pre id='game'></pre> | |
| <script> | |
| var tetris = { | |
| empty:0,board:0,block:0,position:0,offset:0, | |
| init: function(){ | |
| this.empty = 1<<30; | |
| this.board = this.empty; |
| <!doctype html><html><head><meta charset=UTF-8><title>pcmn</title> | |
| <script src="http://code.jquery.com/qunit/git/qunit.js"></script></head><body> | |
| <pre id='game'></pre> | |
| <script> | |
| String.prototype.replaceAt=function(index, char) { |
| <!doctype html><html><head><meta charset="UTF-8"><title>Tetris</title></head> | |
| <body> | |
| <pre id='game'></pre> | |
| <script> | |
| var tetris = { | |
| empty:0,board:0,block:0,position:0,offset:0, | |
| binary: function(i){ | |
| return (i).toString(2); | |
| }, | |
| init: function(){ |