Skip to content

Instantly share code, notes, and snippets.

View christianbriggs's full-sized avatar

Christian Briggs christianbriggs

View GitHub Profile
@christianbriggs
christianbriggs / .block
Created June 11, 2018 18:29 — forked from tomshanley/.block
Sankey with circular links
license: mit
@christianbriggs
christianbriggs / stack.yml
Created November 29, 2017 03:07 — forked from initcron/stack.yml
Docker Stack Deploy Configs
version: "3"
networks:
nw01:
driver: overlay
volumes:
db-data:
services:
version: "3"
networks:
nw01:
driver: bridge
volumes:
db-data:
services:
@christianbriggs
christianbriggs / swarm_tutorial_v3.md
Created November 28, 2017 21:12 — forked from initcron/swarm_tutorial_v3.md
Docker Swarm with V3 stack specifications and stack deploy

Lab : Orchestrating and deploying app in Production with SWARM

Deploying Application Stack with Swarm Mode and Stack version "3" specification

Launch a Visualizer on Master (SWARM Manager)

docker run -itd -p 8080:8080 -v /var/run/docker.sock:/var/run/docker.sock schoolofdevops/visualizer
@christianbriggs
christianbriggs / README.md
Created June 1, 2017 03:02 — forked from cjrd/README.md
Interactive tool for creating directed graphs using d3.js.

directed-graph-creator

Interactive tool for creating directed graphs, created using d3.js.

Demo: http://bl.ocks.org/cjrd/6863459

Operation:

  • drag/scroll to translate/zoom the graph
@christianbriggs
christianbriggs / template.html
Created September 8, 2016 15:12 — forked from ttscoff/template.html
Add this before the </body> tag in an nvALT template.html file for working [[note links]] in the preview.
<script>
window.onload = function(e){
var container = document.getElementById("wrapper");
container.innerHTML = container.innerHTML.replace(/\[\[(.*?)\]\]/g,"<a href='nvalt://find/$1'>$1</a>");
}
</script>