This file contains 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
-- MySQL dump 10.13 Distrib 5.5.47, for debian-linux-gnu (x86_64) | |
-- | |
-- Host: localhost Database: | |
-- ------------------------------------------------------ | |
-- Server version 5.5.47-0ubuntu0.14.04.1 | |
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; | |
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; | |
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; | |
/*!40101 SET NAMES utf8 */; |
This file contains 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
% sudo corectl run --volume ~/var_lib_docker.img --cloud_config https://raw.githubusercontent.com/TheNewNormal/corectl/golang/cloud-init/docker-only-with-persistent-storage.txt --cpus 2 --memory 4096 --name containerland -d | |
[corectl] alpha/1066.2.0 already available on your system | |
[corectl] NFS started in order for '/Users/jacob' to be made available to the VMs | |
[corectl] started 'containerland' in background with IP 192.168.64.38 and PID 190 | |
% corectl ps | |
[corectl] found 0 running VMs, summing 0 vCPUs and 0MB in use. |
This file contains 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
class GreetingsController < ApplicationController | |
def index | |
render text: "Hello" | |
end | |
def update | |
session[:greeting] = params[:id] | |
redirect_to root_url | |
end | |
end |
This file contains 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
# Mailboxes, Messages, and Addresses | |
*Note: This essay assumes basic familiarity with Elm.* | |
In Elm, signals always have a data source associated with them. `Window.dimensions` is exactly what you think it is, and you can't send your own events on it. You can derive your own signals from these primitives using `map`, `filter`, and `merge`, but the timing of events is beyond your control. | |
This becomes a problem when you try to add UI elements. We want to be able to add checkboxes and dropdown menus, and to receive the current state of these elements as a signal. So how do we do that? | |
## The Bad Old Days |
This file contains 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
global | |
maxconn 4096 | |
log 127.0.0.1 local1 debug | |
debug | |
defaults | |
mode http | |
timeout connect 5000ms | |
timeout client 50000ms | |
timeout server 50000ms |
This file contains 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
vagrant@consul-slave-0:/vagrant/tmp$ cat Dockerfile | |
FROM ubuntu:14.04 | |
RUN mkdir /mount | |
RUN echo foo >> /mount/foobar | |
VOLUME /mount | |
vagrant@consul-slave-0:/vagrant/tmp$ docker build -t test . | |
Sending build context to Docker daemon 2.048 kB | |
Sending build context to Docker daemon |
This file contains 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
FILE=$1 | |
curl -XPUT -d @${FILE} http://192.168.50.120:8500/v1/agent/service/register?token=secret |
This file contains 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
{{ range services }}{{ with $serviceMap := .}}{{ range $serviceMap.Tags }}{{ if . | regexMatch "load_balance" }} | |
frontend {{ $serviceMap.Name }}-in | |
bind *:{{ range $serviceMap.Tags }}{{ if . | regexMatch "port:" }}{{ . | regexReplaceAll ".*:(.*)" "$1" }}{{end}}{{end}} | |
default_backend {{ $serviceMap.Name }}:{{ range $serviceMap.Tags }}{{ if . | regexMatch "role:" }}{{ . | regexReplaceAll ".*:(.*)" "$1" }}{{end}}{{end}} | |
backend {{ $serviceMap.Name }}:{{ range $serviceMap.Tags }}{{ if . | regexMatch "role:" }}{{ . | regexReplaceAll ".*:(.*)" "$1" }}{{end}}{{end}} | |
balance roundrobin | |
option httpchk | |
option httplog | |
{{range service $serviceMap.Name }} |
This file contains 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
FROM ubuntu | |
# This takes up 200 MB | |
RUN apt-get update && apt-get install *stuff* | |
MARK | |
COPY secret /secret | |
# This takes up 500 MB | |
RUN bundle install |
This file contains 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
Active Profiles: | |
Battery Power -1 | |
AC Power -1* | |
Currently in use: | |
standbydelay 5 | |
standby 1 | |
womp 1 | |
halfdim 1 | |
hibernatefile /var/vm/sleepimage | |
darkwakes 0 |