Programming

Programming

1474 bookmarks
Custom sorting
How do you do dependency injection for Elixir GenServer?
How do you do dependency injection for Elixir GenServer?
I am building a GenServer in Elixir, let's say it's a simple Queue like this defmodule Queue do use GenServer def start_link(name) do GenServer.start_link(__MODULE__, :ok, name: name) e...
·stackoverflow.com·
How do you do dependency injection for Elixir GenServer?
The Tao of Testing
The Tao of Testing
Even if you’re writing tests for your software (which many don’t), you’re probably doing it wrong.
·jasonpolites.github.io·
The Tao of Testing
Lightweight Dependency Injection In Elixir (Without the Tears)
Lightweight Dependency Injection In Elixir (Without the Tears)
In our last Elixir blog post, “Functional Mocks with Mox in Elixir”, we discussed how testing across module boundaries could be made easier by creating a Behaviour for a collaborating m…
·blog.carbonfive.com·
Lightweight Dependency Injection In Elixir (Without the Tears)
Espec | Elixir BDD
Espec | Elixir BDD
Ligtning talk by ESpec’s maintainer and Elixir Fan Anton Mishchuk.
·slideshare.net·
Espec | Elixir BDD
Elixir Cucumber Browser Automation Testing
Elixir Cucumber Browser Automation Testing
Hey Everyone, moving forward with my Elixir and Test Automation experience, I’ve been working on some kind of new POC. I’ve been following two Elixir project...
·nickstalter.com·
Elixir Cucumber Browser Automation Testing
100 Days of Code Challenge - Fitonation
100 Days of Code Challenge - Fitonation
The following challenge is the result of a social media post that went viral. Lots of people wanted to be a part of it. Therefore, I have thought of making it available to a larger audience, so that I can do my bit in helping the programming community. This challenge focuses on solving at least...
·fitonation.com·
100 Days of Code Challenge - Fitonation
Joy of Elixir
Joy of Elixir
Joy of Elixir is a gentle introduction to programming, aimed at people who already know some things about computers, but who have little-to-no programming experience.
·joyofelixir.com·
Joy of Elixir
Elixir on Exercism
Elixir on Exercism
Get fluent in Elixir by solving 157 exercises. And then level up with mentoring from our world-class team.
·exercism.org·
Elixir on Exercism
Generators over arrays
Generators over arrays
Yield better results by iterating over generators. Learn more about these supercharged arrays that can preserve memory.
·doeken.org·
Generators over arrays
PanDas in Depth— Building Flexible DataFrames
PanDas in Depth— Building Flexible DataFrames
Pandas is a Python package that helps you to easily work with large datasets while building a machine learning model.
·hardcoder.io·
PanDas in Depth— Building Flexible DataFrames
What Do I See in These Languages
What Do I See in These Languages
Though every Turing-complete language can eventually do the same thing, they all have different purposes, design, and philosophy. Learning…
·medium.com·
What Do I See in These Languages