Skip to content

Instantly share code, notes, and snippets.

View SteveShaffer's full-sized avatar
🥃
Being Steve.

Steve Shaffer SteveShaffer

🥃
Being Steve.
View GitHub Profile
{
"object": [{
"start": 0,
"stop": 1,
"structuredData": {
"39064126-096b-4049-b3c2-80c81224ddc0": {
"test": "test"
}
}
}]
@SteveShaffer
SteveShaffer / release-manager-config-concept.yml
Created June 5, 2017 18:43
A config file for a concept service that controls the entire release process.
release:
id: 2017.05
environment: aws-dev # maybe unnecessary but terraform and iron need to know somehow
tasks: # defaults to serial execution
- description: pre-release db migrations
# NOTE: Db migrations dont have to come first; they can occur anywhere, but this is an example of when they typically do batch up at the beginning
parallel: true
tasks:
@SteveShaffer
SteveShaffer / timelinePlayer.html
Created March 17, 2017 16:11
A super basic timeline player concept
<html ng-app="app">
<head>
<style>
* {
margin: 0;
box-sizing: border-box;
}
</style>
</head>
<body>