Here's my current Elixir VSCode snippets elixir.json
file.
You can add it to VSCode by Ctrl/Cmd+Shift+P
and choosing Preferences : Configure User Snippets
, then opening elixir.json
. If you don't have one yet, you can create a new snippet file in the...
One annoying detail about web forms is that on submission (unless you are using changesets) all the values come back as strings. This forces you to have to handle the correct formats before, say, passing those params into a service module to execute...
I recently picked up Elixir and Phoenix as development tools and i'm loving them. The Erlang virtual machine (BEAM) where code runs is an amazingly simple, yet powerful, system that allows for some really hard things like inter-process communication to...
One of the most annoying parts of setting up Elastic Search on AWS is the way access is configured for that service. From what i've gathered you have one of two options to protect it:
- Make sure it's running internally only (i.e. not internet facing...