- AWS ElasticBeanstalk for node.js deployments
- source code in GitHub
- CI/CD with Codeship.com, which deploys to AWS ElasticBeanstalk and sends notifications to Slack
- Slack.com for team communication
- CommonKey.com for team password management
- Librato.com for AWS monitoring and custom metrics (via Librato node lib), alerts in Librato wil post to Slack
- Papertrail.com for aggregating node.js logs from AWS EB instances, custom searches and triggers will post to Slack
- Filepicker.io for user uploads directly to S3
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> | |
<meta charset="utf-8"> | |
<body> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script> | |
var nodes = [{"label":"Christopher J Dennis"},{"label":"Bob Gonsalves"},{"label":"Bob Martinengo"},{"label":"Jeff Gomez"},{"label":"Frank Da Silva"},{"label":"Linda Nelson"},{"label":"Michael Bekemeyer"},{"label":"Christie Strong"},{"label":"Michele Simmons"},{"label":"Tom Marcinko"},{"label":"Jeff Norman"},{"label":"Jon Reiss"},{"label":"Elisabeth Holm"},{"label":"Travis Megill"},{"label":"John Paul Rice"},{"label":"Adisakdi Tantimedh"},{"label":"Tieg Zaharia"},{"label":"Nathan Loofbourrow"},{"label":"Erin Hoffman"},{"label":"Howard A. Rodman"},{"label":"Zetetics"},{"label":"Jeanne Veillette Bowerman"},{"label":"Brendon Fogle"},{"label":"Niki Anis Ab Karim"},{"label":"Tom Morton"},{"label":"Angela Shelton"},{"label":"Douglas Lain"},{"label":"Marcella Selbach"},{"label":"Flyway Film Festival"},{"label":"Mark Stolaroff"},{"label":"Joe Gold"},{"label":"Laurian Gridinoc"},{"label":"Bruce Murphy"},{"label" |
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($) { | |
$.fn.oembed = function(url, options, callback) { | |
options = $.extend(true, $.fn.oembed.defaults, options); | |
return this.each(function() { | |
var container = $(this), | |
resourceURL = (url != null) ? url : container.attr("href"), | |
provider; |
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
gistup |
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
// Use Gists to store code you would like to remember later on | |
console.log(window); // log the "window" object to the console |
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> | |
<base href="http://www.jasondavies.com/maps/raster/satellite/"> | |
<meta charset="utf-8"> | |
<title>Drones</title> | |
<style> | |
@import url(../../maps.css); | |
#map { |
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
<div role=main class=single> | |
<article id="post-374" class="post-374 post type-post status-publish format-standard hentry category-mojo category-mozilla tag-hyperlink tag-hypertext tag-metadata tag-pingback tag-ted-nelson"> | |
<header class=entry-header> | |
<h1 class=entry-title>The Perplex <span class="amp">&</span> Other Stories</h1> | |
<div class=entry-meta> | |
<a href="/archive/2011/06/the-perplex-and-other-stories/index.html" title="22:09" rel="bookmark"><time class="entry-date" datetime="2011-06-05T22:09:26+00:00" pubdate>June 5, 2011</time></a><span class="by-author"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="/archive/profile/index.html" title="View all posts by Laurian Gridinoc" rel="author">Laurian Gridinoc</a></span></span> </div> | |
</header> |
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
#!/bin/sh | |
set -e | |
# Based on nealmcb's + ErebusBat's script from http://serverfault.com/questions/211425/ | |
# If you want other configuration data or files on the system also | |
# opportunistically tracked via etckeeper, use this script to copy them in. | |
# If there is a hook of some sort available related to the files | |
# you're mirroring, you can call etckeeper directly and track them |
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 Ctx = Morearty.createContext(React, Immutable, | |
{ // initial state | |
page: 'HOME', | |
zoom: 5, | |
cursor: 0, | |
videos: {}, | |
segments: [], | |
speakers: {} | |
}, | |
{ // configuration |
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
export CI_BRANCH2=`echo $CI_BRANCH | sed "s/\//-/"` | |
sed -i "s/trint-v1-dev/trint-v1-$CI_BRANCH2/" .ebextensions/01papertrail.config |