How to: use uuids as primary keys in elixir/phoenix
https://medium.com/flatiron-labs/how-to-use-uuids-as-primary-keys-in-elixir-phoenix-f0583ca10d29
https://medium.com/flatiron-labs/how-to-use-uuids-as-primary-keys-in-elixir-phoenix-f0583ca10d29
Medium
How to: use UUIDs as Primary Keys in Elixir/Phoenix
Because we needed some more resources for this.
Cowboy architecture and execution flow
https://medium.com/@scarfacedeb/cowboy-architecture-and-execution-flow-df7227a6573
https://medium.com/@scarfacedeb/cowboy-architecture-and-execution-flow-df7227a6573
Medium
Cowboy architecture and execution flow
Cowboy is the default HTTP server for Erlang/OTP. It’s built on top of Ranch which is a socket worker pool for TCP. Together they power…
#erlang #progamminglanguages #beamvm #elixir
Which companies are using erlang, and why? #mytopdogstatus
https://dev.to/erlangsolutions/which-companies-are-using-erlang-and-why-mytopdogstatus-361m
Which companies are using erlang, and why? #mytopdogstatus
https://dev.to/erlangsolutions/which-companies-are-using-erlang-and-why-mytopdogstatus-361m
The DEV Community
Which companies are using Erlang, and why? #MyTopdogStatus
. Tagged with erlang, progamminglanguages, beamvm, elixir.
How to build multiple web apps with elixir thanks to umbrella — bonus 2: having our tests working
https://medium.com/@cedric_30386/how-to-build-multiple-web-apps-with-elixir-thanks-to-umbrella-bonus-2-having-our-tests-working-7174875d7330
https://medium.com/@cedric_30386/how-to-build-multiple-web-apps-with-elixir-thanks-to-umbrella-bonus-2-having-our-tests-working-7174875d7330
Medium
How to build multiple web apps with Elixir thanks to umbrella — Bonus 2: Having our tests working
A (wannabe) guide to learn how to create web apps with Elixir 1.9, Phoenix 1.4, Docker (for development), Git (including submodules) to…
Elixir application deployment using a ci and private hex.pm dependencies
https://medium.com/@brunoripa/elixir-application-deployment-using-a-ci-and-private-hex-pm-dependencies-23f45fe04973
https://medium.com/@brunoripa/elixir-application-deployment-using-a-ci-and-private-hex-pm-dependencies-23f45fe04973
Medium
Elixir application deployment using a CI and private Hex.pm dependencies
A real example of how to fetch private Hex.pm packages during Elixir release creation
#elixir #phoenix #sass #webpack
Phoenix 1.4 with bootstrap, jquery, bootstrap notify, sass, and webpack
https://dev.to/sophiabrandt/phoenix-1-4-with-bootstrap-jquery-bootstrap-notify-sass-and-webpack-3fd2
Phoenix 1.4 with bootstrap, jquery, bootstrap notify, sass, and webpack
https://dev.to/sophiabrandt/phoenix-1-4-with-bootstrap-jquery-bootstrap-notify-sass-and-webpack-3fd2
DEV Community
Phoenix 1.4 with Bootstrap, jQuery, Bootstrap Notify, SASS, and Webpack
I'm currently working through Mastering Phoenix Framework by Shankar Dhanasekrann...
#testing #elixir
Mocking and faking external dependencies in elixir tests
https://robots.thoughtbot.com/blog/mocking-and-faking-external-dependencies-in-elixir-tests
Mocking and faking external dependencies in elixir tests
https://robots.thoughtbot.com/blog/mocking-and-faking-external-dependencies-in-elixir-tests
thoughtbot
Mocking and faking external dependencies in elixir tests
Explore a combination of mocking, faking, and dependency injection to focus on the code being tested.
Elixir map-to-structs mapping dsl — part 1
https://medium.com/@chrisowen_97625/elixir-map-to-structs-mapping-dsl-part-1-25997f7bcb80
https://medium.com/@chrisowen_97625/elixir-map-to-structs-mapping-dsl-part-1-25997f7bcb80
Medium
Elixir Map-to-Structs mapping DSL — Part 1
In my previous post https://medium.com/@cowen/annotations-in-elixir-450015ecdd97 I discussed how we can use Elixirs rich macro system to…
Tracking down an ets-related memory leak
https://medium.com/@tylerpachal/tracking-down-an-ets-related-memory-leak-a115a4499a2f
https://medium.com/@tylerpachal/tracking-down-an-ets-related-memory-leak-a115a4499a2f
Medium
Tracking Down an ETS-related Memory Leak
ETS will hold references to large binaries, even if just part of the original binary is stored in a table. Copy binaries if pieces of them…
#elixir #testing
Clean and reusable test helpers with elixir macros
https://dev.to/unnawut/clean-and-reusable-test-helpers-with-elixir-macros-26e5
Clean and reusable test helpers with elixir macros
https://dev.to/unnawut/clean-and-reusable-test-helpers-with-elixir-macros-26e5
DEV Community
Clean and reusable test helpers with Elixir macros
Sometimes, seemingly redundant tests could serve as an assurance that our code works. While it's poss...