Skip to content

Instantly share code, notes, and snippets.

View nicholasjhenry's full-sized avatar

Nicholas Henry nicholasjhenry

View GitHub Profile
@nicholasjhenry
nicholasjhenry / _influences.md
Last active April 30, 2017 16:03
An example of an Elixir function processing a business use case
@nicholasjhenry
nicholasjhenry / create_projection_versions.ex
Created December 28, 2016 13:19 — forked from slashdotdash/create_projection_versions.ex
Building projections with Ecto using Commanded event handlers
defmodule Projections.Repo.Migrations.CreateProjectionVersions do
use Ecto.Migration
def change do
create table(:projection_versions, primary_key: false) do
add :projection_name, :text, primary_key: true
add :last_seen_event_id, :bigint
timestamps
end
@nicholasjhenry
nicholasjhenry / cheatsheet.md
Last active March 17, 2021 22:22
Absinthe GraphQL Schema Language Cheat Sheet

GraphQL Schema Language Cheat Sheet

The definitive guide to express your GraphQL schema succinctly

A port of a cheat sheet authored by Hafiz Ismail.

What does it look like?

defmodule MyApp.Schema do
 use Absinthe.Schema
@nicholasjhenry
nicholasjhenry / example_server.ex
Last active August 24, 2017 18:47 — forked from camshaft/start.sh
elixir startup script with graceful shutdown
defmodule Example.Server do
use GenServer
def start_link(opts \\ []) do
GenServer.start_link(__MODULE__, :ok, opts)
end
def init(state) do
Process.flag(:trap_exit, true) # must trap exit for terminate call back to work
IO.inspect "Starting server..."
@nicholasjhenry
nicholasjhenry / example.kt
Created November 5, 2016 15:13
Example from Nat Pryce
// https://groups.google.com/d/msg/growing-object-oriented-software/mCjbhcRAGDs/P7pkf62XBgAJ
interface UserLookup {
fun findByName(name: String): User
}
interface PermissionDecision {
fun rejected(user: User)
fun allowed(user: User)
}
@nicholasjhenry
nicholasjhenry / graphql_errors.ex
Created November 3, 2016 19:28
GraphQL formatted errors
# http://slack.elixirhq.com/absinthe-graphql/2016-08-16/
defp flatten_errors(changeset = %Ecto.Changeset{}) do
Ecto.Changeset.traverse_errors(changeset, fn {error, _interpolates} -> error end)
|> Enum.map(&flatten_errors/1)
|> List.flatten
end
defp flatten_errors(errors) when is_map(errors),
do: Enum.map(errors, &flatten_errors/1)
defp flatten_errors({key, errors}) when is_list(errors),
@nicholasjhenry
nicholasjhenry / event_notification.ex
Created June 4, 2016 22:33
Event Notification in Phoenix with PubSub
defmodule MyApp.Subscriber do
use GenServer
def start_link(channel) do
GenServer.start_link(__MODULE__, channel)
end
def init(channel) do
pid = self
ref = MyApp.Endpoint.subscribe(pid, channel)
@nicholasjhenry
nicholasjhenry / elixir_partial_applicaton.ex
Last active May 21, 2016 11:51
Partial application in Elixir
defmodule Foo do
def call(x) do
IO.puts x
end
def bar(x, y) do
IO.puts x
IO.puts y
end
end
@nicholasjhenry
nicholasjhenry / pipeline_example.rb
Created April 30, 2016 21:46
Another pipeline example
class DraftNewLetter
def self.build(current_user)
@create_letter = CreateLetter.new
@authorize = Authorize.new(current_user, @create_letter)
@error_handler = ActiveRecordErrorHandler.new(@authorize)
@assign_automatic_ccs = AssignAutomaticCCs.new(@create_letter)
@transaction = Transaction.new(@assign_automatic_ccs)
end
end
@nicholasjhenry
nicholasjhenry / changeset_example.ex
Created April 16, 2016 10:28
Ecto Changeset Example
params = %{
"title" => "Test List",
"todo_items" => %{
"0" => %{"body" => "change to-do A", "id" => "1"},
"1" => %{"body" => "change to-do B", "id" => "2"}
}
}
changeset = %Ecto.Changeset{
action: nil,