#tdd #elixir #programming #software_development #encryption
Solving the caesar cipher kata in elixir with tdd
https://medium.com/@lucaspenzeymoog/solving-the-caesar-cipher-kata-in-elixir-with-tdd-38c055ad1b17
Solving the caesar cipher kata in elixir with tdd
https://medium.com/@lucaspenzeymoog/solving-the-caesar-cipher-kata-in-elixir-with-tdd-38c055ad1b17
Medium
Solving the Caesar Cipher Kata in Elixir with TDD
TDD, aka Test Driven Development, is simple enough on the surface, but in practice it can be anything but intuitive. Many programmers view…
#programming #elixir
Accessing named genservers from anywhere in a beam cluster
https://medium.com/@pdgonzalez872/accessing-named-genservers-from-anywhere-in-a-beam-cluster-ffc062df526c
Accessing named genservers from anywhere in a beam cluster
https://medium.com/@pdgonzalez872/accessing-named-genservers-from-anywhere-in-a-beam-cluster-ffc062df526c
Medium
Accessing named GenServers from anywhere in a BEAM cluster
You can create named Agents that can be called from any connected node in a cluster. This technique can be helpful when you have a cluster, don’t necessarily know which node will handle the work…
#elixir #immutability #programming #while_loop #functional_programming
Using while loops in elixir
https://medium.com/@kohlerjp/using-while-loops-in-elixir-efc368149aa1
Using while loops in elixir
https://medium.com/@kohlerjp/using-while-loops-in-elixir-efc368149aa1
Medium
Using While Loops in Elixir
Most people would tell you not to use a while loop in Elixir. And most people are right. Since data is immutable, they generally won’t do…
#functional_programming #programming #software_development #elixir #software_engineering
Functional core imperative shell in elixir
https://medium.com/@lucaspenzeymoog/functional-core-imperative-shell-in-elixir-48ec0ad3d9c0
Functional core imperative shell in elixir
https://medium.com/@lucaspenzeymoog/functional-core-imperative-shell-in-elixir-48ec0ad3d9c0
Medium
Functional Core Imperative Shell in Elixir
Functional programming languages such as Elixir are great until they’re not. That is, they’re great for writing pure functions, but a…
#elixir #programming_languages #programming #computer_science #computers
5 aha tricks to make elixir‘s interactive shell more pleasant
https://medium.com/@leeduckgo/5-aha-tricks-to-make-elixir-s-interactive-shell-more-pleasant-c726e08477c8
5 aha tricks to make elixir‘s interactive shell more pleasant
https://medium.com/@leeduckgo/5-aha-tricks-to-make-elixir-s-interactive-shell-more-pleasant-c726e08477c8
Medium
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.
#programming #elixir #software_development #game_theory #software_engineering
Build an unbeatable tic tac toe minimax player in elixir in 5 simple steps
https://medium.com/@lucaspenzeymoog/build-an-unbeatable-tic-tac-toe-minimax-player-in-elixir-in-5-simple-steps-d9814dea8802
Build an unbeatable tic tac toe minimax player in elixir in 5 simple steps
https://medium.com/@lucaspenzeymoog/build-an-unbeatable-tic-tac-toe-minimax-player-in-elixir-in-5-simple-steps-d9814dea8802
Medium
Build an Unbeatable Tic Tac Toe Minimax Player in Elixir
Tic Tac Toe is a simple enough game for us humans to play, what with our powerful pattern-finding brains, but getting a computer to play…
#programming #elixir #merkle_tree #distributed_systems
Introducing merklemap: the new library powering horde’s improved performance.
https://medium.com/@derek.kraan2/introducing-merklemap-the-new-library-powering-hordes-improved-performance-9cd0b74a481
Introducing merklemap: the new library powering horde’s improved performance.
https://medium.com/@derek.kraan2/introducing-merklemap-the-new-library-powering-hordes-improved-performance-9cd0b74a481
Medium
Introducing MerkleMap: the new library powering Horde’s improved performance.
I’ve been to a couple of conferences already this year, including Lambda Days 2019, where I saw a whole bunch of good talks. Two talks in…
#elixir #code_quality #coding #programming
Enforcing code quality in elixir
https://itnext.io/enforcing-code-quality-in-elixir-20f87efc7e66
Enforcing code quality in elixir
https://itnext.io/enforcing-code-quality-in-elixir-20f87efc7e66
Medium
Enforcing code quality in Elixir
Enforcing your Elixir code to be well formatted, with no warnings and hopefully free of bugs. A mix task to automate code quality.