- Creating Elixir libraries as OTP applications
- hub: elixirphoenix
- hub: elixir
- Elixir Killer Tips
- Elixir recipes
- http://elixirschool.com/
- Elixir quick_reference
- Elixir: начинаем работу с Plug
- Минимальный HTTP API Endpoint используя Elixir
- Создание движка для блога с помощью Phoenix и Elixir / Часть 1. Вступление
#!/usr/bin/env bash | |
set -e | |
# https://docs.docker.com/engine/install/ubuntu/ | |
sudo apt-get -y install apt-transport-https ca-certificates curl software-properties-common | |
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - 2>/dev/null | |
sudo echo "deb [arch=amd64] https://download.docker.com/linux/$(lsb_release -is | tr '[:upper:]' '[:lower:]') bionic stable" > /etc/apt/sources.list.d/docker.list | |
sudo apt-get -y update |
- Website: https://stimulusjs.org/
- GitHub repo: https://github.com/stimulusjs/stimulus
- Handbook: https://stimulusjs.org/handbook/introduction
- Discourse: https://discourse.stimulusjs.org/
initialize
: once, when the controller is first instantiatedconnect
: anytime the controller is connected to the DOM
My Elasticsearch cheatsheet with example usage via rest api (still a work-in-progress)
This reference is aimed at allowing you to comfortably read erlang documentation and consume terms printed in Erlang format. It does not aim at allowing you to write Erlang code.
This is a modified version of http://elixir-lang.org/crash-course.html
Erlang and Elixir have the same data types for the most part, but there are a number of differences.
FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.
- By Edmond Lau
- Highly Recommended 👍
- http://www.theeffectiveengineer.com/
#!/usr/bin/env elixir | |
defmodule Committer do | |
defstruct [:name, :email] | |
def list(repo) do | |
repo | |
|> from_repo | |
|> Stream.unfold(fn str -> | |
case String.split(str, "\n", parts: 2, trim: true) do |
# Rake Commands | |
'rake db:create' -- inits database based on ./config/database.yml | |
'rake db:migrate' -- Actually creates the database itself | |
'rake db:seed' -- Seeds the database based on ./db/seed.rb | |
'rake db:reset' -- clear data and start again | |
'rake notes' -- Shows comments with tags left in code | |
OPTIMIZE; TODO; FIXME | |
'rake routes' -- Shows routing from URI pattern/action to Controller |
############################################################################### | |
# Helpful Docker commands and code snippets | |
############################################################################### | |
### CONTAINERS ### | |
docker stop $(docker ps -a -q) #stop ALL containers | |
docker rm -f $(docker ps -a -q) # remove ALL containers | |
docker rm -f $(sudo docker ps --before="container_id_here" -q) # can also filter | |
# exec into container |