This file contains hidden or 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? |
This file contains hidden or 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() |
This file contains hidden or 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/ |
This file contains hidden or 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> |
This file contains hidden or 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> |