#elixir
Elixir inspecting big structs and lists
https://til.hashrocket.com/posts/lxa2lhhyia-elixir-inspecting-big-structs-and-lists
Elixir inspecting big structs and lists
https://til.hashrocket.com/posts/lxa2lhhyia-elixir-inspecting-big-structs-and-lists
Hashrocket
Today I Learned: Elixir Inspecting Big Structs and Lists
IO inspects limits your data by default in 50, so 50 Map keys and values, or 50 List items, etc. Sometimes you have a larger data, so you can play with this number by setting an option to the IO.inspect/2 function, or you can set it to :infinity. Use :infinity…
#development #elixir #ops
How to deploy elixir releases with ansible
https://blog.carbonfive.com/how-to-deploy-elixir-releases-with-ansible/
How to deploy elixir releases with ansible
https://blog.carbonfive.com/how-to-deploy-elixir-releases-with-ansible/
Field Notes from Carbon Five
How to Deploy Elixir Releases with Ansible
In my last post, I described how to generate a platform-specific Elixir release. Now, the only thing left to do is to put it on the world wide web. To follow along with this post, you’ll need…
#elixir
Build a simple api with elixir, plug mongodb and cowboy
https://medium.com/@hassanesow_57362/build-a-simple-api-with-elixir-plug-mongodb-and-cowboy-ac715dfee987
Build a simple api with elixir, plug mongodb and cowboy
https://medium.com/@hassanesow_57362/build-a-simple-api-with-elixir-plug-mongodb-and-cowboy-ac715dfee987
Medium
Build a simple api with Elixir, Plug MongoDB and Cowboy
The idea is to show how to integrate mongodb in an elixir application with plug and cowboy
#elixir
Understanding and fixing recompilation in elixir projects
https://dev.to/szajbus/understanding-and-fixing-recompilation-in-elixir-projects-2ib2
Understanding and fixing recompilation in elixir projects
https://dev.to/szajbus/understanding-and-fixing-recompilation-in-elixir-projects-2ib2
DEV Community
Understanding and fixing recompilation in Elixir projects
Our goal as programmers is to deliver value by writing code. It should be efficient, maintainable, bu...
#elixir #phoenix
Base64-encoded file uploads with phoenix and plug
https://dev.to/szajbus/base64-encoded-file-uploads-with-phoenix-and-plug-3011
Base64-encoded file uploads with phoenix and plug
https://dev.to/szajbus/base64-encoded-file-uploads-with-phoenix-and-plug-3011
DEV Community
Base64-encoded file uploads with Phoenix and Plug
Handling external files is one of the basic tasks for many web applications. Profile pictures, attach...
#elixir #testing #mock #compare
Mocking in elixir: comparison between mox, mockery, mimic, syringe, and lightweight di
https://dev.to/calvinsadewa/mocking-in-elixir-comparison-between-mox-mockery-mimic-syringe-and-lightweight-di-3d5h
Mocking in elixir: comparison between mox, mockery, mimic, syringe, and lightweight di
https://dev.to/calvinsadewa/mocking-in-elixir-comparison-between-mox-mockery-mimic-syringe-and-lightweight-di-3d5h
DEV Community
Mocking in Elixir: Comparison between Mox, Mockery, Mimic, Syringe, and Lightweight DI
Unit test in elixir is fantastic using ExUnit! It is simple and easy! However sometimes we need to te...
#elixir #joy #repl #ycombinator
A joy repl - live exploring replicating programs
https://dev.to/palm86/a-joy-repl-live-exploring-replicating-programs-5bn3
A joy repl - live exploring replicating programs
https://dev.to/palm86/a-joy-repl-live-exploring-replicating-programs-5bn3
DEV Community
A Joy REPL - live exploring replicating programs
In previous posts we've developed a Joy parser and interpreter in Elixir. While it was possbile to pl...
#guardian #ueberauth #authentication #phoenix #elixir #web
Authentication in elixir web applications with ueberauth and guardian: part 1
https://thoughtbot.com/blog/authentication-in-elixir-web-applications-with-guardian-part-1
Authentication in elixir web applications with ueberauth and guardian: part 1
https://thoughtbot.com/blog/authentication-in-elixir-web-applications-with-guardian-part-1
thoughtbot
Authentication in Elixir Web Applications with Ueberauth and Guardian: Part 1
Part 1 in a series on Ueberauth and Guardian authentication. Build a basic Phoenix application with authentication pages to prepare for Guardian-based authentication features.
#elixir
Building and testing a simple rest api with elixir & plug
https://medium.com/@hassanesow_57362/building-and-testing-a-simple-rest-api-with-elixir-plug-db063b3d443a
Building and testing a simple rest api with elixir & plug
https://medium.com/@hassanesow_57362/building-and-testing-a-simple-rest-api-with-elixir-plug-db063b3d443a
Medium
Building and testing a simple REST api with Elixir & Plug
So you’ve been wondering how to build rest APIs using Elixir and Plug whether it’s for a frontend application or a microservice ? We are…
#elixir #thisweekilearned #learning
Breaking down elixir's `with` expression
https://dev.to/noelworden/breaking-down-elixir-s-with-expression-14mp
Breaking down elixir's `with` expression
https://dev.to/noelworden/breaking-down-elixir-s-with-expression-14mp
DEV Community
Breaking Down Elixir's `with` Expression
This week I bit the bullet and conquered my fear of Elixir's with expression. I had managed to write...
#guardian #ueberauth #authentication #phoenix #elixir #web
Authentication in elixir web applications with ueberauth and guardian: part 2
https://thoughtbot.com/blog/authentication-in-elixir-web-applications-with-guardian-part-2
Authentication in elixir web applications with ueberauth and guardian: part 2
https://thoughtbot.com/blog/authentication-in-elixir-web-applications-with-guardian-part-2
thoughtbot
Authentication in Elixir Web Applications with Ueberauth and Guardian: Part 2
Part 2 in a series on Ueberauth and Guardian authentication. Let your users create accounts with an email address and password using Ueberauth and Guardian.