Angular UI Google maps - https://angular-ui.github.io/angular-google-maps
A Pen by Paolo Rossi on CodePen.
Angular UI Google maps - https://angular-ui.github.io/angular-google-maps
A Pen by Paolo Rossi on CodePen.
// npm install ssh2 | |
var Client = require('ssh2').Client; | |
var cmd = 'tail -f /tmp/foo.log'; | |
var TIMEOUT = 5000; | |
var host = { | |
host: 'host.example.com', | |
port: 22, | |
username: 'username', | |
password: 'password' |
<link rel="import" href="../core-scaffold/core-scaffold.html"> | |
<link rel="import" href="../core-header-panel/core-header-panel.html"> | |
<link rel="import" href="../core-menu/core-menu.html"> | |
<link rel="import" href="../core-item/core-item.html"> | |
<link rel="import" href="../core-icon-button/core-icon-button.html"> | |
<link rel="import" href="../core-toolbar/core-toolbar.html"> | |
<link rel="import" href="../core-field/core-field.html"> | |
<link rel="import" href="../core-icon/core-icon.html"> | |
<link rel="import" href="../core-input/core-input.html"> | |
<link rel="import" href="../core-icons/core-icons.html"> |
// Queue class for serializing AJAX calls. | |
// | |
// Inspired by Raynos http://stackoverflow.com/a/4797596/1194060 | |
// | |
// Queue has a public append method that expects some kind of task. | |
// A task is a generic function passed as callback. | |
// Constructor expects a handler which is a method that takes a ajax task | |
// and a callback. Queue expects the handler to deal with the ajax and run | |
// the callback when it's finished |
/* | |
* Inspired by: http://stackoverflow.com/questions/4360060/video-streaming-with-html-5-via-node-js | |
*/ | |
var http = require('http'), | |
fs = require('fs'), | |
util = require('util'); | |
http.createServer(function (req, res) { | |
var path = 'video.mp4'; |