Skip to content

Instantly share code, notes, and snippets.

@thecodingmonkey-zz
thecodingmonkey-zz / README.md
Created June 4, 2016 21:52
Stacked Bars - Hawaii Expenditures
@thecodingmonkey-zz
thecodingmonkey-zz / README.md
Created June 4, 2016 21:44
Stacked Bars - Hawaii Expenditures
@thecodingmonkey-zz
thecodingmonkey-zz / README.md
Created June 4, 2016 21:41
Stacked Bars - Hawaii Expenditures
@thecodingmonkey-zz
thecodingmonkey-zz / docker-size.sh
Created December 11, 2015 11:52
List all docker containers + volume sizes
#!/bin/sh
for d in `docker ps -a | awk '{print $1}' | tail -n +2`; do
d_name=`docker inspect -f {{.Name}} $d`
echo "========================================================="
echo "$d_name ($d) container size:"
sudo du -d 2 -h /var/lib/docker/aufs | grep `docker inspect -f "{{.Id}}" $d`
echo "$d_name ($d) volumes:"
<!DOCTYPE html>
<html>
<head>
<script src="http://code.jquery.com/jquery-2.1.3.js"></script>
<style type="text/css">
.button {
border: 2px black solid;
}
</style>
<meta charset="utf-8">

Gulp + Sass + LiveReload + Foundation

Goals

To have a gulp workflow that with a single process,

  1. watches for any sass changes, then compiles sass source into css
  2. watches for any changes in the public directory, triggers live-reload
  3. serves your static content in public/