Skip to content

Instantly share code, notes, and snippets.

@craigp
craigp / iccat.sh
Created March 8, 2017 16:06 — forked from heapwolf/iccat.sh
Download and show image in terminal (iterm2 only)
#!/bin/bash
function print_image() {
printf "\033]"
printf "1337;File="
echo -n "$1" | base64 -D | wc -c | awk '{printf "size=%d",$1}'
printf ";inline=1:"
echo -n "$1"
printf "\a\n"
}
@craigp
craigp / new_phoenix_dot_iex.exs
Created October 26, 2016 19:08 — forked from bchase/new_phoenix_dot_iex.exs
Officially tired of aliasing `Repo` and importing `Ecto.Query` by hand every IEx session
#!/usr/bin/env elixir
ecto_import = "import Ecto.Query, only: [from: 2]"
mixexs =
Path.join(["mix.exs"])
|> File.read!
namespace =
Regex.run(~r{defmodule\s+(\w+)\.}, mixexs)
@craigp
craigp / README.md
Created September 21, 2016 06:32 — forked from joakimk/README.md
CircleCI elixir build example

This runs a build for a small elixir (phoenix) project in about 40 seconds by caching as much of the compiled files as possible.

We've been using this for months in multiple projects without any issues. Please ping be if there is any issues with this script and I'll update it.

It should be generic enough to work on any elixir app using mix.

If you have a elixir_buildpack.config, then enable that section in the build script to keep versions in sync!

2016-08-09: Updated to newer Erlang and Elixir and fixed curl command.

@craigp
craigp / watcher.sh
Created July 8, 2016 21:01 — forked from josevalim/watcher.sh
A 1LOC bash script for re-running tests whenever a lib/ or test/ file changes keeping the same VM instance
# You will need fswatch installed (available in homebrew and friends)
# The command below will run tests and wait until fswatch writes something.
# The --stale flag will only run stale entries, it requires Elixir v1.3.
fswatch lib/ test/ | MIX_ENV=test mix do test --stale, run --no-halt -e "IO.gets(:stdio, ''); IO.puts 'Restarting...'; :init.restart()"
@craigp
craigp / my_app.ex
Created June 9, 2016 09:43 — forked from alanpeabody/my_app.ex
Websockets in Elixir with Cowboy and Plug
defmodule MyApp do
use Application
def start(_type, _args) do
import Supervisor.Spec, warn: false
children = [
Plug.Adapters.Cowboy.child_spec(:http, MyApp.Router, [], [
dispatch: dispatch
])
@craigp
craigp / my_app.ex
Created June 9, 2016 09:43 — forked from alanpeabody/my_app.ex
Websockets in Elixir with Cowboy and Plug
defmodule MyApp do
use Application
def start(_type, _args) do
import Supervisor.Spec, warn: false
children = [
Plug.Adapters.Cowboy.child_spec(:http, MyApp.Router, [], [
dispatch: dispatch
])
@craigp
craigp / tmux_ubuntu14.04.sh
Created June 3, 2016 14:01 — forked from VladSem/tmux_ubuntu14.04.sh
install tmux 2.0 on Ubuntu 14.04
sudo apt-get update
sudo apt-get install -y python-software-properties software-properties-common
sudo add-apt-repository -y ppa:pi-rho/dev
sudo apt-get update
sudo apt-get install -y tmux=2.0-1~ppa1~t
@craigp
craigp / gist:9276fb009d45670013a6
Last active February 29, 2016 13:54
Configuring tsc for typescript in vim (from https://github.com/benekastah/neomake/issues/244)

@HerringtonDarkholme I had forgotten about this issue. I had resolved it by doing exactly as you suggested, reading the docs ;)

For anyone else with this question, here is an example of a custom setup:

let g:neomake_typescript_tsc_maker = {
      \ 'args': [
      \ '-m', 'commonjs', '--noEmit', '--target', 'ES5', '--experimentalDecorators'
      \ ],
 \ 'errorformat':
test "updates a label", %{
label: label,
label_name: label_name,
access_token_rec: access_token_rec,
expected_result: expected_result,
bypass: bypass,
label_id: label_id
} do
Bypass.expect bypass, fn conn ->
{:ok, body, _} = Plug.Conn.read_body(conn)
@craigp
craigp / elixir_projects.md
Last active February 12, 2016 06:13
Elixir projects