#elixir
A collection of tips for elixir’s interactive shell (iex)
https://medium.com/@merajulislam/a-collection-of-tips-for-elixirs-interactive-shell-iex-bff5e177405b
A collection of tips for elixir’s interactive shell (iex)
https://medium.com/@merajulislam/a-collection-of-tips-for-elixirs-interactive-shell-iex-bff5e177405b
Medium
A Collection of Tips for Elixir’s Interactive Shell (IEx)
It’s been a while since I last wrote about Elixir or Phoenix. So, when I thought about resuming my writing on Elixir, I thought I should…
#elixir
Russian peasant multiplication — with elixir — part 2
https://medium.com/@houmanka/russian-peasant-multiplication-with-elixir-part-2-a611f87bf690
Russian peasant multiplication — with elixir — part 2
https://medium.com/@houmanka/russian-peasant-multiplication-with-elixir-part-2-a611f87bf690
Medium
Russian Peasant Multiplication — with Elixir — Part 2
Recursion with Boundaries…
#elixir
Russian peasant multiplication — with elixir — part 3
https://medium.com/@houmanka/russian-peasant-multiplication-with-elixir-part-3-777e97e788b5
Russian peasant multiplication — with elixir — part 3
https://medium.com/@houmanka/russian-peasant-multiplication-with-elixir-part-3-777e97e788b5
Medium
Russian Peasant Multiplication — with Elixir — Part 3
If you have followed Part 1 and Part 2 you would know that we have decrement and increment are ready to go.
#elixir
Running the scenic elixir gui framework on windows 10 (using wsl)
https://medium.com/@jeffborch/running-the-scenic-elixir-gui-framework-on-windows-10-using-wsl-f9c01fd276f6
Running the scenic elixir gui framework on windows 10 (using wsl)
https://medium.com/@jeffborch/running-the-scenic-elixir-gui-framework-on-windows-10-using-wsl-f9c01fd276f6
Medium
Running the Scenic Elixir GUI Framework on Windows 10 (using WSL)
A native GUI framework for Elixir!? Boyd Multerer created this framework in 2018, but somehow I’ve missed it up until very recently…
#elixir
Russian peasant multiplication — with elixir — part 4
https://medium.com/@houmanka/russian-peasant-multiplication-with-elixir-part-4-2ace5e2e106b
Russian peasant multiplication — with elixir — part 4
https://medium.com/@houmanka/russian-peasant-multiplication-with-elixir-part-4-2ace5e2e106b
Medium
Russian Peasant Multiplication — with Elixir — Part 4
In this article we will be working on Higher order function with statements. We want to explore how to encapsulate all the mess that a…
#elixir
Russian peasant multiplication — with elixir — part 5
https://medium.com/@houmanka/russian-peasant-multiplication-with-elixir-part-5-c1887c2b4259
Russian peasant multiplication — with elixir — part 5
https://medium.com/@houmanka/russian-peasant-multiplication-with-elixir-part-5-c1887c2b4259
Medium
Russian Peasant Multiplication — with Elixir — Part 5
This is the last piece of the puzzle. We will create Sum functionality for out application with recursion.
#elixir
Russian peasant multiplication — with elixir — last round
https://medium.com/@houmanka/russian-peasant-multiplication-with-elixir-last-round-62df3129e7b9
Russian peasant multiplication — with elixir — last round
https://medium.com/@houmanka/russian-peasant-multiplication-with-elixir-last-round-62df3129e7b9
Medium
Russian Peasant Multiplication — with Elixir — Last Round
In this last article we are going to stitch all the pieces together and make the use of Monad (a bit), and some Monad operator.
#elixir #javascript #functional
Recursive approach to map and reduce: a thought experiment
https://dev.to/savagepixie/recursive-approach-to-map-and-reduce-a-thought-experiment-4dnh
Recursive approach to map and reduce: a thought experiment
https://dev.to/savagepixie/recursive-approach-to-map-and-reduce-a-thought-experiment-4dnh
DEV Community
Recursive approach to map and reduce: A thought experiment
In my early stages of learning Elixir, I had to write a recursive implementation of the functions map...