#elixir
Adding password security to hex.pm
https://medium.com/@toddresudek/adding-password-security-to-hex-pm-6fa3d0b2764c
Adding password security to hex.pm
https://medium.com/@toddresudek/adding-password-security-to-hex-pm-6fa3d0b2764c
Medium
Adding password security to Hex.pm
As maintainers of a package manager, we are constantly balancing our efforts across feature requests, bug tickets, technical support and…
#elixir
Elixir currency and localized number format
https://medium.com/@maciejcha/elixir-currency-and-localized-number-format-518cafb9cc01
Elixir currency and localized number format
https://medium.com/@maciejcha/elixir-currency-and-localized-number-format-518cafb9cc01
Medium
Elixir currency and localized number format
Today, I’ll show you how quickly and easily add support for ISO localization in Elixir. My app is named Bazaar, so you should rename all…
#elixir
Stripe webhooks in phoenix with elixir pattern matching
https://medium.com/@connerfritz/stripe-webhooks-in-phoenix-with-elixir-pattern-matching-dfa97be03b7f
Stripe webhooks in phoenix with elixir pattern matching
https://medium.com/@connerfritz/stripe-webhooks-in-phoenix-with-elixir-pattern-matching-dfa97be03b7f
Medium
Stripe Webhooks in Phoenix with Elixir Pattern Matching
Learn how to use Elixir pattern matching in the Phoenix framework to receive Stripe Webhooks.
#elixir
Implementing a jwt stateless authentication using elixir, phoenix , pow and joken
https://medium.com/@ygorcastor/implementing-a-jwt-stateless-authentication-using-elixir-phoenix-pow-and-joken-5c2e1f41ba38
Implementing a jwt stateless authentication using elixir, phoenix , pow and joken
https://medium.com/@ygorcastor/implementing-a-jwt-stateless-authentication-using-elixir-phoenix-pow-and-joken-5c2e1f41ba38
Medium
Implementing a JWT Stateless authentication using Elixir, Phoenix , POW and Joken
Ygor is a Software Engineer at BOL.COM, Functional Programming enthusiast and an addict coffee drinker.
#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…