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
// Return Facebook channel.html with one-year expiration. | |
app.get('/channel.html', function(req, res) { | |
var channelDoc = '<script src="//connect.facebook.net/en_US/all.js"></script>'; | |
res.set({ | |
'Content-Type': 'text/html', | |
'Content-Length': channelDoc.length, | |
'Pragma': 'public', | |
'Cache-Control': 'max-age=31536000', | |
'Expires': new Date(Date.now() + 31536000000).toUTCString() | |
}); |
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
<html> | |
<head> | |
<!-- | |
In this example, I started with the 5-minute example provided by Google | |
on the following page: | |
https://developers.google.com/drive/ | |
I modified the example code, so that I could write the following |
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
/*********************************************************************** | |
* | |
* Music generation code created by David Turner | |
* [email protected] | |
* https://github.com/csusbdt/ambient-music/ | |
* | |
*********************************************************************** | |
#include <iostream> | |
#include <cmath> |
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
/* | |
How to use this script | |
Assuming this script is stored under filename md.js, | |
your html file will look some like the following. | |
------------------------------------------------------- | |
<script src="md.js"></script> | |
# Social media sites |