View Slect Slots
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<select-field name="my-select-field"> | |
<select-option value="my-option value 1">My Option 1</select-option> | |
<select-option value="my-option value 2">My Option 2</select-option> | |
</select-field> | |
<!-- Output: --> | |
<select name="my-select-field"> | |
<option value="my-option value 1">My Option 1</option> | |
<option value="my-option value 2">My Option 2</option> |
View Piwik AMP Tracking
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// change your piwik server host | |
// change YOUR_SITE_ID with your site id | |
<amp-pixel src="https://piwik.example.org/piwik.php?idsite=YOUR_SITE_ID&rec=1&action_name=TITLE&urlref=DOCUMENT_REFERRER&url=CANONICAL_URL&rand=RANDOM"></amp-pixel> |
View gist:6668039
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> flying robots: http://nodecopter.com/ | |
> diving robots: http://openrov.com/ | |
> nodejs+arduino: http://semu.github.io/noduino/ and https://github.com/rwaldron/johnny-five | |
> home automation: http://ni-c.github.io/heimcontrol.js/ | |
> motion dedection with leapmotion: https://github.com/leapmotion/leapjs | |
> and iwth kinect: https://github.com/pgte/node-kinect | |
> node robots: http://nodebots.io/ | |
> tessel, a nodejs microcontroller: http://technical.io/ | |
> robot web tools library: http://robotwebtools.org/ |
View blippex-spam.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var request = require('request'); | |
var async = require('async'); | |
var worker = async.queue(function(url, cb) { | |
var data = { | |
"url": url, | |
"time_spent": 199999, | |
"created_at": new Date().toGMTString() |
View gist:4027480
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var nyan = new Object(); | |
typeof nyan // object, logisch | |
var nyan = new Date(); | |
typeof nyan // object, wtf? |