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
#elixir
🔒 serve phoenix app locally with https 🔒
https://til.hashrocket.com/posts/b8p5oalouz--serve-phoenix-app-locally-with-https-
🔒 serve phoenix app locally with https 🔒
https://til.hashrocket.com/posts/b8p5oalouz--serve-phoenix-app-locally-with-https-
Hashrocket
Today I Learned: 🔒 Serve Phoenix App Locally with HTTPS 🔒
The Phoenix Framework provides an easy mix task to automatically generate a self-signed SSL cert. This is useful if you want to test the app locally with HTTPS.
My take on property-based testing in elixir
https://medium.com/@grufino1/my-take-on-property-based-testing-in-elixir-1a3b1c18212b
https://medium.com/@grufino1/my-take-on-property-based-testing-in-elixir-1a3b1c18212b
Medium
My take on Property-based testing in Elixir
So it's been a while since I've been reading about Property based testing, but had been skeptical about it so far, because it is clearly…
#elixir
Get a writable temporary directory in elixir
https://til.hashrocket.com/posts/8rkl48vqmc-get-a-writable-temporary-directory-in-elixir
Get a writable temporary directory in elixir
https://til.hashrocket.com/posts/8rkl48vqmc-get-a-writable-temporary-directory-in-elixir
Hashrocket
Today I Learned: Get a writable temporary directory in Elixir
When you need to write a temporary file to disk it is common to assume a particular path exists based on the operating system the app is running on: