Get password from user in Mix Task
A short blog on how to get a password in Mix Task without echoing what the user it typing. https://dev.to/tizpuppi/password-input-in-elixir-31oo
5 Aha Tricks to Make Elixir‘s Interactive Shell more Pleasant
For the freshman of Elixir, there are some small tricks to make your programming way more pleasant and unhindered.
Filtering Ecto Queries with Pattern Matching and Recursion
Wrote a short blog post on using pattern matching and recursive function calls to apply filters to Ecto queries
Concurrent ant farm with Elixir and Phoenix LiveView
I just published a post about how I built a concurrent ant farm with Elixir and Phoenix LiveView.
http://codeloveandboards.com/blog/2019/03/28/concurrent-ant-farm-with-elixir-and-phoenix-liveview/
Dealing with long-running HTTP Requests and Timeouts in Phoenix
Dealing with long-running HTTP Requests and Timeouts in Phoenix
When processing an HTTP request takes too long, it times out and Phoenix closes the connection. In this article we see how to simulate a long-running request and ways on how to fix the problem.
ElixirMix Podcast 050 - Elixir Origin Story with José Valim
In this episode of ElixirMix, We talk with José Valim about how Elixir came into existence. We also discuss some of the newer work like Broadway, the upcoming 1.9 release, the new Erlang Ecosystem Foundation and much more!
My Take on Property-Based Testing for #erlang and #elixir
I just published a story on Erlang-Battleground about @mononcqc’s book and my own take on Property-Based Testing for #erlang and #elixir:
https://medium.com/erlang-battleground/property-based-testing-erlang-elixir-de72ad24966b?source=friends_link&sk=6443f60d501b537dd18099b76b6ad7d0
Phoenix LiveView Collection
Amazing demos and experiments that people are building with Phoenix LiveView.
https://medium.com/@leandrocesquini/phoenix-liveview-collection-8259f35ff2b0
What's new in Horde 0.5.0?
Horde 0.5.0 just got released and it’s a big one! I wrote about some of the highlights here: https://medium.com/@derek.kraan2/whats-new-in-horde-0-5-0-f5a282bc8814
Making the Elixir Parser atom-safe
A blogpost about my first significant contribution to Elixir https://www.botsquad.com/2019/05/06/atom-safe-elixir-parser/
Phoenix LiveView Round-Up: The Story So Far
Blog post showing off some of the fantastic work that folks are doing with Phoenix LiveView.
https://shift.infinite.red/phoenix-liveview-round-up-the-story-so-far-3cbb1648e940
How to write bits as read such as 0001 1101 on Elixir
I just published a new post “How to write bits as read such as 0001 1101 on Elixir”. I believe that It is a good sample to use sigil.
https://dev.to/niku/how-to-write-bits-as-read-on-elixir-2abf
Telemetry for Elixir applications
Learn how to produce and report on telemetry metrics for your Elixir application.
This article demonstrates how to produce and report on useful metrics from an Elixir application built with the CQRS/ES pattern by using commands and domain events.
Gun. The Powerful Erlang HTTP Client
Another blog post on my favorite topic — HTTP clients & Elixir.
The problem with Umbrella Apps
Umbrella Projects/Apps are hard to maintain and shouldn’t be used unless you’re deploying the child apps individually: https://jackmarchant.com/the-problem-with-elixir-umbrella-apps/
Interceptor now lets you access intercepted function arguments
With the latest version of the Interceptor library, you will now have access to the actual arguments values passed to the functions that you want to intercept. Previously, you would only get the arity of the intercepted function.
Get it here https://hex.pm/packages/interceptor and simplify your Elixir applications!
Raxx ecosystem 1.0 roadmaps
https://github.com/CrowdHailer/raxx/issues?q=is:open+is:issue+label:”help+wanted”
The Raxx ecosystem is pushing towards greater stability. See the roadmaps for getting each of Raxx.Session, Raxx.View and Raxx.Logger to their 1.0
Tracking changes with context
Why adding context to you data changes gives you insight about your application.