I hereby claim:
- I am erincall on github.
- I am erincalling (https://keybase.io/erincalling) on keybase.
- I have a public key whose fingerprint is 91DA B420 64EF 9CAC B870 B137 4071 FF6C 15B8 DAD1
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/usr/bin/env bash | |
set -e | |
candidates='' | |
stale='' | |
dry_run='' | |
review_issues='' | |
case $1 in |
0😧 ~/c/g/s/shopping (master ◯ ) | |
§ tree | |
. | |
├── db | |
│ └── db.go | |
├── main | |
│ └── main.go | |
└── models | |
└── item.go |
QMK Firmware v0.5.132 | |
Making [1mhandwired/dactyl[0m with keymap [1mdefault[0m | |
avr-gcc (GCC) 4.8.1 | |
Copyright (C) 2013 Free Software Foundation, Inc. | |
This is free software; see the source for copying conditions. There is NO | |
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | |
Size before: | |
text data bss dec hex filename |
Return-Path: <[email protected]> | |
Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) | |
by sloti36d2t33 (Cyrus 3.0.0-beta1-git-fastmail-11686) with LMTPA; | |
Wed, 02 Sep 2015 19:02:43 -0400 | |
X-Sieve: CMU Sieve 2.4 | |
X-Spam-score: 0.0 | |
X-Spam-hits: BAYES_20 -0.001, HTML_MESSAGE 0.001, RCVD_IN_DNSWL_NONE -0.0001, | |
SPF_PASS -0.001, T_RP_MATCHES_RCVD -0.01, LANGUAGES en, | |
BAYES_USED global, SA_VERSION 3.3.2 | |
X-Spam-source: IP='198.21.7.235', Host='o1.job.agentrainjobs.com', Country='US', |
$ cargo build | |
Compiling grim-edit v0.0.1 (file:///Users/erincalling/code/grim-edit) | |
error: linking with `cc` failed: exit code: 1 | |
note: "cc" "-m64" "-L" "/usr/local/Cellar/rust/1.0.0/lib/rustlib/x86_64-apple-darwin/lib" "-o" "/Users/erincalling/code/grim-edit/target/debug/grim_edit" "/Users/erincalling/code/grim-edit/target/debug/grim_edit.o" "-Wl,-force_load,/usr/local/Cellar/rust/1.0.0/lib/rustlib/x86_64-apple-darwin/lib/libmorestack.a" "-Wl,-dead_strip" "-nodefaultlibs" "/Users/erincalling/code/grim-edit/target/debug/deps/libkiss_ui-3b13f82488719214.rlib" "/Users/erincalling/code/grim-edit/target/debug/deps/libiup_sys-4a23062e27aae405.rlib" "/Users/erincalling/code/grim-edit/target/debug/deps/liblibc-ef5cbad4ef5c7a1e.rlib" "/usr/local/Cellar/rust/1.0.0/lib/rustlib/x86_64-apple-darwin/lib/libstd-4e7c5e5c.rlib" "/usr/local/Cellar/rust/1.0.0/lib/rustlib/x86_64-apple-darwin/lib/libcollections-4e7c5e5c.rlib" "/usr/local/Cellar/rust/1.0.0/lib/rustlib/x86_64-apple-darwin/lib/libunicode-4e7c5e5c.rlib" "/usr/local/ |
<!DOCTYPE html> | |
<html> | |
<head> | |
<title>Surprising JS error</title> | |
</head> | |
<body> | |
<script type ="text/javascript"> | |
var name = document.createElement("h1"); |
$ snap init | |
$ cabal sandbox init | |
Writing a default package environment file to | |
/Users/andrewlorente/code/escaping_bug_demo/cabal.sandbox.config | |
Creating a new sandbox at | |
/Users/andrewlorente/code/escaping_bug_demo/.cabal-sandbox | |
$ cabal install --only-dependencies | |
Resolving dependencies... | |
cabal: Could not resolve dependencies: | |
trying: escapingbugdemo-0.1 (user goal) |
{-# LANGUAGE OverloadedStrings #-} | |
------------------------------------------------------------------------------ | |
module Site | |
( app | |
) where | |
------------------------------------------------------------------------------ | |
import Data.Monoid | |
import Snap.Snaplet |
This is a subset of the output of cap production deploy
. I have a simple task that compiles my app with Cabal:
namespace :deploy do
task :compile do
on roles(:all) do
within release_path do
execute 'cabal', 'update'
execute 'cabal', 'sandbox', 'init'
execute 'cabal', 'install', '--only-dependencies', '--force-reinstall', '--verbose=0', '-O2'