Skip to content

Instantly share code, notes, and snippets.

Host *.foo.com
User <name>
IdentityFile ~/.ssh/foo_rsa
Host *
IdentitiesOnly yes
@brweber2
brweber2 / gen_fsm_example.ex
Last active August 29, 2015 14:13
gen_fsm example
defmodule Exflow do
@behaviour :gen_fsm
def start_link(code) do
IO.puts "starting fsm"
:gen_fsm.start_link({:local, Exflow}, Exflow, :lists.reverse(code), [])
end
def button(digit) do
@brweber2
brweber2 / router.ex
Last active August 29, 2015 14:15
Phoenix lib/router.ex with 5 minute compilation time.
defmodule DemoBe.Router do
use Phoenix.Router
pipeline :browser do
plug :accepts, ~w(html)
plug :fetch_session
plug :fetch_flash
plug :protect_from_forgery
end
~/C/S/p/router_bug_faster > time mix compile
Compiled src/dict.erl
Compiled src/erl_lint.erl
Compiled lib/router_bug.ex
Compiled web/controllers/page_controller.ex
Compiled lib/router_bug/endpoint.ex
Compiled web/view.ex
Compiled web/views/error_view.ex
Compiled web/views/layout_view.ex
Compiled web/views/page_view.ex
# this creates an incorrect query b/c it joins account, account_user and user_api_key to client
# as it is piped through
query = DemoApp.Client
|> join(:inner, [c], b0 in assoc(c, :account))
|> join(:inner, [b0], b1 in assoc(b0, :account_user))
|> join(:inner, [b1], b2 in assoc(b1, :user_api_key))
|> where([b1, b0], b1.id == ^user_id and b0.id == ^account_id)
|> preload([b0, b1, b2], [account: {b0, account_user: {b1, user_api_key: b2}}])
|> select([c, b0, b1, b2], {c, b0, b1, b2})
# (arity 0)
root@deleteme:~/foo# bin/foo rpc Foo bar
RPC to 'foo@127.0.0.1' failed: {'EXIT',
{undef,
[{'Foo',bar,[],[]},
{rpc,'-handle_call_call/6-fun-0-',5,
[{file,"rpc.erl"},{line,205}]}]}}
root@deleteme:~/foo# bin/foo rpc Elixir.Foo bar
yeah!
defmodule Meh do
def main do
"foo"
|> (&foo(&2, &1)).("yoyo")
end
def hard_coded do
"foo"
|> (&foo("quux", &1)).()
end
vagrant@vagrant-ubuntu-trusty-64:~/irr/irr$ mix deps.compile
==> gen_smtp (compile)
Compiling src/smtp_rfc822_parse.yrl failed:
ERROR: compile failed while processing /home/vagrant/irr/irr/deps/gen_smtp: rebar_abort
** (Mix) Could not compile dependency gen_smtp, /home/vagrant/.mix/rebar command failed. If you want to recompile this dependency, please run: mix deps.compile gen_smtp
(ns capclug.demo.cljfromjava.seven
(:gen-class
:methods [[foo [#^"[Ljava.lang.String;" ] String]]))
(defn -foo [arr] "arrgghhh")
Index: src/leiningen/pom.clj
===================================================================
--- src/leiningen/pom.clj (revision 78f94180dc88c3f18bdc7d112900478af0eddfb5)
+++ src/leiningen/pom.clj (revision )
@@ -4,7 +4,7 @@
[clojure.contrib.properties :only [as-properties]])
(:import [java.io StringWriter ByteArrayOutputStream]
[org.apache.maven.model Build Model Parent Dependency
- Exclusion Repository Scm License MailingList]
+ Exclusion Repository Scm License MailingList Resource]