Programming

Programming

1461 bookmarks
Custom sorting
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
Kolmogorov Complexity to Compress DNA Sequences Using Python ?
Kolmogorov Complexity to Compress DNA Sequences Using Python ?
Pls I want to use kolmogrov complexity to compress DNA sequences using python can I have someone that can guild me with the codeIt's not the first time that someone asked me to help out when complexity measures are applied to some sort of biological analysis. Applying the complexity metrics
·yacinemahdid.com·
Kolmogorov Complexity to Compress DNA Sequences Using Python ?
Shuffling
Shuffling
How Spotify's Shuffle Algorithm Works. Short version: for each artist: take every song by them; randomize their order and assign them a value spread evenly between 0% and 100%; finally, order all songs by that coordinate. It seems like a reasonable approach. Here's an older, slightly more complex version: Balanced shuffle. The downside of both of these is that it's a bit memory heavy, and ...
·jwz.org·
Shuffling
Programming in 1987 Versus Today
Programming in 1987 Versus Today
Many developers today have no idea what programming was like in the 80s.
·ovid.github.io·
Programming in 1987 Versus Today
Five steps to perfect software
Five steps to perfect software
This article will go through the five steps to perfect software that you should never skip.
·itnext.io·
Five steps to perfect software
Interconnecting Elixir nodes | Railsware Blog
Interconnecting Elixir nodes | Railsware Blog
Elixir is a functional language built on top of Erlang VM. Therefore it uses Erlang mechanism for communication with nodes. Erlang has one simple rule: everyone connects to everyone. It provides a simple authentication mechanism by tokens called cookie. In this article I want to show how to use remote ...
·railsware.com·
Interconnecting Elixir nodes | Railsware Blog
When to Use Elixir’s IO.Puts and When IO.Inspect
When to Use Elixir’s IO.Puts and When IO.Inspect
Practically every application we ever write outputs something to the console. It might be for logging purposes, it might be for debugging…
·medium.com·
When to Use Elixir’s IO.Puts and When IO.Inspect
Elixir Tricks: Building a Recursive Function to List All Files in a Directory
Elixir Tricks: Building a Recursive Function to List All Files in a Directory
Let's use Elixir to build a simple function to list out all of the files in a directory with subdirectories. We'll need to list out all of the files and folders in the top-level directory and iterate over them. If the item we are iterating over is a file, we'll
·thegreatcodeadventure.com·
Elixir Tricks: Building a Recursive Function to List All Files in a Directory