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
2019/08/02 23:37:23 [INFO] Terraform version: 0.12.6 | |
2019/08/02 23:37:23 [INFO] Go runtime version: go1.12.4 | |
2019/08/02 23:37:23 [INFO] CLI args: []string{"/home/jmt/bin/terraform_0.12.6", "refresh"} | |
2019/08/02 23:37:23 [DEBUG] Attempting to open CLI config file: /home/jmt/.terraformrc | |
2019/08/02 23:37:23 Loading CLI configuration from /home/jmt/.terraformrc | |
2019/08/02 23:37:23 [INFO] CLI command args: []string{"refresh"} | |
2019/08/02 23:37:23 [TRACE] Meta.Backend: built configuration for "remote" backend with hash value 1386313484 | |
2019/08/02 23:37:23 [TRACE] Preserving existing state lineage "0b2be0e8-11c0-dcfc-8e35-d6991d6f7302" | |
2019/08/02 23:37:23 [TRACE] Preserving existing state lineage "0b2be0e8-11c0-dcfc-8e35-d6991d6f7302" | |
2019/08/02 23:37:23 [TRACE] Meta.Backend: working directory was previously initialized for "remote" backend |
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
2019/08/01 18:56:34 [WARN] Invalid log level: "1". Defaulting to level: TRACE. Valid levels are: [TRACE DEBUG INFO WARN ERROR] | |
2019/08/01 18:56:34 [INFO] Terraform version: 0.12.6 | |
2019/08/01 18:56:34 [INFO] Go runtime version: go1.12.4 | |
2019/08/01 18:56:34 [INFO] CLI args: []string{"/home/jmt/bin/terraform_0.12.6", "apply", "-auto-approve", "-no-color"} | |
2019/08/01 18:56:34 [DEBUG] Attempting to open CLI config file: /home/jmt/.terraformrc | |
2019/08/01 18:56:34 Loading CLI configuration from /home/jmt/.terraformrc | |
2019/08/01 18:56:34 [INFO] CLI command args: []string{"apply", "-auto-approve", "-no-color"} | |
2019/08/01 18:56:34 [TRACE] Meta.Backend: no config given or present on disk, so returning nil config | |
2019/08/01 18:56:34 [TRACE] Meta.Backend: backend has not previously been initialized in this working directory | |
2019/08/01 18:56:34 [DEBUG] New state was assigned lineage "986ad60b-5a48-7ce2-3989-b0dda8a061c1" |
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
\documentclass{minimal} | |
\usepackage{filecontents} | |
\begin{filecontents}{thesis.tex} | |
\documentclass{book} | |
\input{preamble} | |
\begin{document} | |
\chapter{Lit Review} | |
\input{litreview}% |
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
@0 | |
## GOOD SOLUTION | |
MOV UP, DOWN | |
@1 | |
MOV RIGHT, DOWN | |
@2 | |
MOV UP, LEFT |
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
'name': 'TIS-100 Assembly' | |
'scopeName': 'source.TIS' | |
'patterns': [ | |
{ | |
'match': '[#].*$' | |
'name': 'comment.line' | |
} | |
{ | |
'match': '\\b(?i:nop|mov|swp|sav|add|sub|neg|jmp|jez|jnz|jgz|jlz|jro)\\b' | |
'name': 'keyword.mnemonic' |
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
#!/usr/bin/env sh | |
docker-machine rm -f rancher host1 | |
docker-machine create rancher --driver virtualbox --virtualbox-cpu-count "-1" --virtualbox-disk-size "8000" --virtualbox-memory "512" --virtualbox-boot2docker-url=https://github.com/boot2docker/boot2docker/releases/download/v1.11.2/boot2docker.iso | |
docker-machine scp scripts/rancher-net.sh rancher:. | |
docker-machine ssh rancher sh rancher-net.sh | |
docker-machine regenerate-certs rancher -f | |
eval $(docker-machine env rancher) | |
docker-compose up -d | |
eval $(docker-machine env -u) | |
docker-machine create host1 --driver virtualbox --virtualbox-cpu-count "-1" --virtualbox-disk-size "54000" --virtualbox-memory "2048" --virtualbox-boot2docker-url=https://github.com/boot2docker/boot2docker/releases/download/v1.11.2/boot2docker.iso |
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
GAME | |
{ | |
version = 1.0.4 | |
Title = Mathuin (CAREER) | |
Description = No description available. | |
linkURL = | |
linkCaption = | |
Mode = CAREER | |
Status = 1 | |
scene = 5 |
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
starClick = setInterval(function() { $("#gameLog").find("input").click(); }, 2 * 1000); | |
autoCatnip = setInterval(function() { | |
var catnip = gamePage.resPool.get('catnip'); | |
var calendar = gamePage.calendar; | |
// Only run if positive catnip and not in last half of Autumn | |
if (catnip.perTickUI < 0) { return; } | |
if (catnip.value / catnip.maxValue < 0.95) { return; } | |
if (calendar.season == 2 && calendar.day > 50) { return; } |
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
package main | |
import ( | |
"fmt" | |
"log" | |
"github.com/lukeroth/gdal" | |
) | |
func main() { |
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
from twisted.internet.protocol import Factory, Protocol | |
class SmallFactory(Factory): | |
def buildProtocol(self, addr): | |
return Small(self) | |
class Small(Protocol): | |
def __init__(self, factory): |
NewerOlder