Programming

Programming

1461 bookmarks
Custom sorting
Top 10 Elixir Frameworks
Top 10 Elixir Frameworks
This article will explain the best ten frameworks for the Elixir programming language. The list includes Phoenix, Nerves, Sugar, etc.
·blog.back4app.com·
Top 10 Elixir Frameworks
Michał Muskała on Ecto and jason – Elixir Internals
Michał Muskała on Ecto and jason – Elixir Internals
Today on the show we are joined by Michal Muskala, who is currently a freelance software engineer and he is here to talk to us about his work on the Ecto and jason libraries. With Ecto we continue our journey into Elixir and Michal explain how he became involved in the project and the work he did on it. He explains a little of its inner workings, issues and what excited him about it initially. We then turn to jason, a widely popular library that Michal created for parsing JSON. Michal unpacks its particulars, differentiating for us between the driver and adapter and the lessons he learned working on them. The last bit of our conversation is spent talking about open source and Michal's commitment to its philosophy. We discuss making time to work on projects, buy in from employers and and why getting involved can be scary yet is so important! For all this and more, join us for this great episode!
·smartlogic.io·
Michał Muskała on Ecto and jason – Elixir Internals
Classical Propositional Logic in Elixir
Classical Propositional Logic in Elixir
I am a professor and I teach Introduction to Logic for Computing. One of the subjects I teach is Classical Propositional Logic. I use a…
·adolfont.medium.com·
Classical Propositional Logic in Elixir
Elixir: A Big-Picture Programming Language
Elixir: A Big-Picture Programming Language
by CityBase Elixir: A Big-Picture Programming Language Elixir makes programmers better at their work, and it makes their work better About a year ago, I decided to pursue the chance to work with Elixir full time as lead engineer at CityBase. Since I began using the programming language in 2014,
·freecodecamp.org·
Elixir: A Big-Picture Programming Language
Where is the “application layer”?
Where is the “application layer”?
When I started promoting my new project ALF (Application Layer Framework), I realized that many people are a bit confused with what the…
·itnext.io·
Where is the “application layer”?
Introduction to D3.js
Introduction to D3.js
An introduction and overview of the JavaScript D3.js library for data visualisation.
·d3indepth.com·
Introduction to D3.js
Parsing XML using Elixir (Mostly)
Parsing XML using Elixir (Mostly)
For the last couple of weeks I’ve been diving into Elixir. So far it’s been a lot of fun learning. However, yesterday I got bogged down…
·medium.com·
Parsing XML using Elixir (Mostly)
Processing Large CSV files with Elixir Streams
Processing Large CSV files with Elixir Streams
Elixir Streams are extremely powerful when we need to process large CSV files. Let's see the difference between a greedy and lazy approach.
·poeticoding.com·
Processing Large CSV files with Elixir Streams
Faster XML Parsing with Elixir
Faster XML Parsing with Elixir
The XML data format has been around since 1996. It was first envisioned as a lingua franca (bridging...
·dev.to·
Faster XML Parsing with Elixir
Github Actions for Elixir CI
Github Actions for Elixir CI
Setup Github Actions to run Continuous Integration (CI) tests for your Elixir project.
·fly.io·
Github Actions for Elixir CI
Be A More Productive Coder
Be A More Productive Coder
Learn how to edit multiple lines at once in VS Code.
·davidamos.dev·
Be A More Productive Coder
Modern vector programming with masked loads and stores
Modern vector programming with masked loads and stores
When you start a program, it creates a ‘process’ which own its memory. Memory is allocated to a software process in blocks called ‘pages’. These pages might span 4kB, 16kB or more. For a given process, it is safe to read and write within these pages. In your code, you might allocate a 32-byte array. … Continue reading Modern vector programming with masked loads and stores
·lemire.me·
Modern vector programming with masked loads and stores
Erlang: remote call vs sending messages
Erlang: remote call vs sending messages
I'd like to execute some procedure on a remote node. And I'm not sure which is the best way to do this. I can write a rpc:call to do this. Or send a message by Remote ! {call, some_procedure} to th...
·stackoverflow.com·
Erlang: remote call vs sending messages