#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.
#elixir
Web scraping with elixir and crawly. browser rendering.
https://medium.com/@oltarasenko/web-scraping-with-elixir-and-crawly-browser-rendering-afcaacf954e8
Web scraping with elixir and crawly. browser rendering.
https://medium.com/@oltarasenko/web-scraping-with-elixir-and-crawly-browser-rendering-afcaacf954e8
Medium
Web scraping with Elixir and Crawly. Browser rendering.
Learn how to crawl and extract data from dynamic (JavaScript based) websites with the help of Elixir and Crawly
#elixir #ecto #phoenix
Dissecting "data" and "changes" fields in ecto.changeset
https://dev.to/lessless/dissecting-data-and-changes-fields-in-ecto-changeset-n4n
Dissecting "data" and "changes" fields in ecto.changeset
https://dev.to/lessless/dissecting-data-and-changes-fields-in-ecto-changeset-n4n
DEV Community
Difference between "data" and "changes" fields in Ecto.Changeset
Have you ever been confused about all the different fields in the Ecto Changeset structure? Today we...
#guardian #ueberauth #authentication #phoenix #elixir #web
Authentication in elixir web applications with ueberauth and guardian: part 3
https://thoughtbot.com/blog/authentication-in-elixir-web-applications-with-guardian-part-3
Authentication in elixir web applications with ueberauth and guardian: part 3
https://thoughtbot.com/blog/authentication-in-elixir-web-applications-with-guardian-part-3
thoughtbot
Authentication in Elixir Web Applications with Ueberauth and Guardian: Part 3
Part 3 in a series on Ueberauth and Guardian authentication. Let you users log in and log out of their existing accounts.
#elixir
How to protect amazon s3 media links with elixir and arc
https://medium.com/coletiv-stories/how-to-protect-amazon-s3-media-links-with-elixir-and-arc-f040c9d3da80
How to protect amazon s3 media links with elixir and arc
https://medium.com/coletiv-stories/how-to-protect-amazon-s3-media-links-with-elixir-and-arc-f040c9d3da80
Medium
How to Protect Amazon S3 Media Links with Elixir and Arc
A good way to secure your files stored in the cloud is by using a signed URL.
#elixir
Deploy on ubuntu with mix release and github actions (without docker)
https://medium.com/elixir-bytes/deploy-on-ubuntu-with-mix-release-and-github-actions-c0fc31a7ef02
Deploy on ubuntu with mix release and github actions (without docker)
https://medium.com/elixir-bytes/deploy-on-ubuntu-with-mix-release-and-github-actions-c0fc31a7ef02
Medium
Deploy on Ubuntu with mix release and Github Actions (without Docker)
Right now we are all aware of the great job done with mix release to assemble self-contained releases for your current Elixir project.