Skip to content

Instantly share code, notes, and snippets.

@claritee
claritee / sonic-pi-workshop-demo.md
Last active June 11, 2018 08:36
Accompanying examples for sonic pi workshop demo

Accompanying live walkthrough for workshops

1. Play a note

play 50
play 50
@claritee
claritee / kong-api.md
Last active January 30, 2019 07:12
Kong API Notes
@claritee
claritee / prometheus
Created March 28, 2018 00:21
Prometheus
# Notes on prometheus with elixir and grafana
## Integrations
https://elixirforum.com/t/prometheus-io-elixir-integrations/1796/11
## Examples
https://hexdocs.pm/prometheus_ex/time.html#content
## Grafana
https://prometheus.io/docs/visualization/grafana/
@claritee
claritee / absinthe.md
Last active February 28, 2018 22:27
Absinthe Notes
@claritee
claritee / phoenix.md
Last active April 22, 2018 06:08
Phoenix Notes

Notes on Phoenix

Install

mix local.hex
mix archive.install https://github.com/phoenixframework/archives/raw/master/phx_new.ez

Hello World

@claritee
claritee / reactjs.md
Last active February 26, 2018 10:29
Learn ReactJS

React

Notes in WIP

Components

Components are created by calling createClass on the React object

render() method includes the markup to draw the component on the page

@claritee
claritee / graphql.md
Last active February 2, 2021 05:29
Learn GraphQL (Notes)

GraphQL Notes

Notes in WIP

What Is It?

  • GraphQL is a query language for your API
  • Uses Type system to define data (and thus a server-side runtime for executing queries)
  • Backed by your existing code and data (i.e. not DB dependent)