Better tooling for development with elixir
https://medium.com/@wiserfirst/better-tooling-for-development-with-elixir-6b85d358cbc8
https://medium.com/@wiserfirst/better-tooling-for-development-with-elixir-6b85d358cbc8
Medium
Better tooling for development with Elixir
We ❤️ Elixir, so we want to the development process as smooth as possible. Fortunately there are various tools that can help with the…
#elixir
List all telemetry event handlers
https://til.hashrocket.com/posts/o17nfvwzbo--list-all-telemetry-event-handlers
List all telemetry event handlers
https://til.hashrocket.com/posts/o17nfvwzbo--list-all-telemetry-event-handlers
Hashrocket
Today I Learned: List all telemetry event handlers
Telemetry is a new library for application metrics and logging in beam applications. It was added to Phoenix in version 1.4.7 released in June 2019.
#elixir
Telemetry handler detaches automatically on error
https://til.hashrocket.com/posts/lah5xiavsa-telemetry-handler-detaches-automatically-on-error
Telemetry handler detaches automatically on error
https://til.hashrocket.com/posts/lah5xiavsa-telemetry-handler-detaches-automatically-on-error
Hashrocket
Today I Learned: telemetry handler detaches automatically on error
Telemetry handlers should be designed to run efficiently over and over again without making a noticeable performance impact on your production system. But what happens if an occurs? Your monitoring should have no bearing on the success of your business…
Lessons on building a backend api in phoenix — oauth
https://medium.com/@travis_13686/lessons-on-building-a-backend-api-in-phoenix-oauth-e6042234b418
https://medium.com/@travis_13686/lessons-on-building-a-backend-api-in-phoenix-oauth-e6042234b418
Medium
Lessons on Building a Backend API in Phoenix — OAuth
I recently implemented OAuth in Phoenix for the first time almost entirely guided by this tutorial. I tried a couple of other tutorials…
Lessons on building a backend api in phoenix — plugs and authorization, part i
https://medium.com/@travis_13686/lessons-on-building-a-backend-api-in-phoenix-plugs-and-authorization-part-i-a1d128d4e933
https://medium.com/@travis_13686/lessons-on-building-a-backend-api-in-phoenix-plugs-and-authorization-part-i-a1d128d4e933
Medium
Lessons on Building a Backend API in Phoenix — Plugs and Authorization, Part I
This post is a loose continuation of my previous post on implementing OAuth in a Phoenix backend API. Read it if you want to. I’m not your…
Reductions and cpu usage with elixir (erlang vm)
https://medium.com/@gabkolawole/reductions-and-cpu-usage-with-elixir-erlang-vm-5e47eaae6448
https://medium.com/@gabkolawole/reductions-and-cpu-usage-with-elixir-erlang-vm-5e47eaae6448
Medium
Reductions and CPU usage with Elixir (Erlang VM)
Right in the middle of the week, the Ops sniper of my team called devs attention to the uprise in CPU usage on the production instance…
Lessons on building a backend api in phoenix — plugs and authorization, part ii
https://medium.com/@travis_13686/lessons-on-building-a-backend-api-in-phoenix-plugs-and-authorization-part-ii-b8229ff9349e
https://medium.com/@travis_13686/lessons-on-building-a-backend-api-in-phoenix-plugs-and-authorization-part-ii-b8229ff9349e
Medium
Lessons on Building a Backend API in Phoenix — Authorizations
This is the third in a collection of posts on various challenges I encountered while building a backend API in the Elixir Phoenix…
Turboplay releases stellar elixir blockchain sdk
https://medium.com/turboplay/turboplay-releases-stellar-elixir-blockchain-sdk-c3ff6a874b21
https://medium.com/turboplay/turboplay-releases-stellar-elixir-blockchain-sdk-c3ff6a874b21
Medium
TurboPlay Releases Stellar Elixir Blockchain SDK
In a milestone achievement, TurboPlay solves a longstanding problem and is the first to provide a viable solution for signing transactions…
Lessons on building a backend api in phoenix — validations
https://medium.com/@travis_13686/lessons-on-building-a-backend-api-in-phoenix-validations-3409554bd327
https://medium.com/@travis_13686/lessons-on-building-a-backend-api-in-phoenix-validations-3409554bd327
Medium
Lessons on Building a Backend API in Phoenix — Validations
This is the fifth in a collection of posts I’ve been writing on my first experience building a backend API in the Elixir Phoenix framework…
#elixir
Precise timings with `monotonic_time`
https://til.hashrocket.com/posts/k6kydebcau-precise-timings-with-monotonictime
Precise timings with `monotonic_time`
https://til.hashrocket.com/posts/k6kydebcau-precise-timings-with-monotonictime
Hashrocket
Today I Learned: Precise timings with `monotonic_time`
Monotonic time is time from a clock that only moves forward. The system clock on your CPU can be set and reset. Even when tied to the LAN ntp protocol the system clock can be out-of-sync by a couple of milliseconds. When measuring in microseconds, that's…
#testing #clojure #elixir
Property-based testing: from erlang/elixir to clojure
https://dev.to/shaolang/property-based-testing-from-erlang-elixir-to-clojure-57nm
Property-based testing: from erlang/elixir to clojure
https://dev.to/shaolang/property-based-testing-from-erlang-elixir-to-clojure-57nm
DEV Community
Property-Based Testing: From Erlang/Elixir to Clojure
Reading Property-Based Testing with PropEr, Erlang, and Elixir and following along the examples helpe...
#elixir #phoenix #beginners
Multiplayer go with elixir's registry, pubsub and dynamic supervisors
https://dev.to/appsignal/multiplayer-go-with-elixir-s-registry-pubsub-and-dynamic-supervisors-1hgf
Multiplayer go with elixir's registry, pubsub and dynamic supervisors
https://dev.to/appsignal/multiplayer-go-with-elixir-s-registry-pubsub-and-dynamic-supervisors-1hgf
DEV Community
Multiplayer Go with Elixir's Registry, PubSub and dynamic supervisors
In part 3 of building the Go Game in Elixir, we'll allow the creation of new games as well as inviting others to join in. Along the way, we touch on Elixir's Registry, PubSub and dynamic supervisors.
How to find the geolocation of an ip address in elixir
https://blog.agentrisk.com/how-to-find-the-geolocation-of-an-ip-address-in-elixir-8e963462a966
https://blog.agentrisk.com/how-to-find-the-geolocation-of-an-ip-address-in-elixir-8e963462a966
Medium
How to find the geolocation of an IP address in Elixir
Setup IP geolocation in Elixir in under 60 seconds