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 lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | |
<meta name="description" content="Meta description example" /> | |
<meta name="author" content="Coca" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> | |
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
{ | |
"Records": [ | |
{ | |
"eventVersion": "2.0", | |
"eventSource": "aws:s3", | |
"awsRegion": "us-east-1", | |
"eventTime": "1970-01-01T00:00:00.000Z", | |
"eventName": "ObjectCreated:Put", | |
"userIdentity": { | |
"principalId": "EXAMPLE" |
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
<link href='http://fonts.googleapis.com/css?family=Lora' rel='stylesheet' type='text/css'> | |
<style> | |
body{ | |
/* defaults, use for testing the template without PhantomJS */ | |
width: 400px; | |
height: 400px; | |
background-color: #2e3192; | |
font-size: 400px; |
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
<link href='http://fonts.googleapis.com/css?family=Coming+Soon' rel='stylesheet' type='text/css'> | |
<style> | |
* { | |
box-sizing: border-box; | |
} | |
body{ | |
/* defaults, use for testing the template without PhantomJS */ | |
width: 400px; | |
height: 400px; | |
font-size: 400px; |
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
*:focus:before { | |
content: "⇥"; | |
position: absolute; | |
font-size: 0.8em; | |
left: 5px; | |
top: -30%; | |
} |
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 isHeroku() | |
{ | |
return process.env.NODE && ~process.env.NODE.indexOf("heroku") ? true : false; | |
} |
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 app = express(); | |
... | |
app.use(function(req, res, next) { | |
if (req.headers['x-forwarded-proto'] === 'https') { | |
next(); // already on https so just continue | |
else | |
res.redirect('https://' + req.headers.host + req.url); // redirect to https | |
}); |
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
<script> | |
(function(i,s,o,g,r,a,m){i[r]=i[r]||function(){(i[r].q=i[r].q||[]).push(arguments)}; | |
a=s.createElement(o),m=s.getElementsByTagName(o)[0];a.async=a.defer=1;a.src=g; | |
m.parentNode.insertBefore(a,m)})(window,document,'script','//api.bubobox.com/tracker.js','_bbq'); | |
_bbq('init', { user_id: 1, segment: 'website' }); | |
</script> |
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 bbbx_stack_presets = { | |
'overlay' : { | |
modules: [ | |
'pre', | |
'terms.pre', | |
'terms', | |
'terms.post', | |
'overlay.pre', | |
'overlay', | |
'overlay.post', |
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
# replace "release-" on the following line with the string you want to search for | |
# or remove the "| grep release-" part to remove all local and remote tags | |
for t in `git tag | grep release-` | |
do | |
echo "delete $t" | |
git push origin :$t # Delete remote | |
git tag -d $t # Delete local | |
done |