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
<!doctype html> | |
<html> | |
<head> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> | |
<script type="text/javascript"> | |
var spData = null; | |
function doData(json) { | |
spData = json.feed.entry; | |
} | |
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
<!doctype html> | |
<html> | |
<head> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> | |
<script type="text/javascript"> | |
var spData = null; | |
function doData(json) { | |
spData = json.feed.entry; | |
} | |
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
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQC90C1ZqXZOgHuekiPvAPsiUSNGSgOh38JY7eo7Trx6Ddg3lxzxyasTQl88A9DEzHQIhbuc/I/gTG9DZRzol8ShNCjut++nmvTHyfmgD6UYwohLnyBArgweJkQRiSZwkao5fenGus20et7FNJnYEfPsJJNKJEdyGMS18nnF1KUFXLdPyJeRRLS2O5hHKNzsZ/lYO1IlLmc44UkgPlSAEPpRqfqFzceOFSZwtTbIsquyRdjNC6v2AlYnvBwZmKcfSu4q+uSk9KQ23PvrWJS2A6B/owCis8U7Op/wBzy1mXgtVpxYxUtTC32h7pMuYI43QYSex7J4gKzgzCL8NRBQbiX3 [email protected] |
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
<Response> | |
<Say voice="alice">Test</Say> | |
</Response> |
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 express = require('express'); | |
var serveIndex = require('serve-index'); | |
var app = express(); | |
app.use('/public', serveIndex('files')); // shows you the file list | |
app.use('/public', express.static('files')); // serve the actual files | |
app.get("/clear", function(req, res) { |
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
Reveal.initialize({ | |
controls: false, | |
progress: true, | |
history: true, | |
center: true, | |
transition: 'convex', | |
touch: true, | |
hideAddressBar: true, | |
dependencies: [ { | |
src: '//cdnjs.cloudflare.com/ajax/libs/reveal.js/3.2.0/plugin/zoom-js/zoom.min.js', |
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
/*! | |
* ===================================================== | |
* Ratchet v2.0.2 (http://goratchet.com) | |
* Copyright 2014 Connor Sears | |
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE) | |
* | |
* v2.0.2 designed by @connors. | |
* ===================================================== | |
*/ |
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
/*! | |
* ===================================================== | |
* Ratchet v2.0.2 (http://goratchet.com) | |
* Copyright 2014 Connor Sears | |
* Licensed under MIT (https://github.com/twbs/ratchet/blob/master/LICENSE) | |
* | |
* v2.0.2 designed by @connors. | |
* ===================================================== | |
*/ |
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
function encodeHTML(s) { | |
return s.replace(/&/g, '&').replace(/</g, '<').replace(/"/g, '"'); | |
} |
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
/* | |
Created by Rui Santos | |
Visit: http://randomnerdtutorials.com for more arduino projects | |
Arduino with Ethernet Shield | |
*/ | |
#include <SPI.h> | |
#include <Ethernet.h> | |
#include <Servo.h> |