Programming

Programming

1462 bookmarks
Custom sorting
Use an OS process like a bash pipe: Send it STDIN and get its STDOUT
Use an OS process like a bash pipe: Send it STDIN and get its STDOUT
I'm trying to use an external process which reads the STDIN, and writes to STDOUT. I want to write the equivalent of this in Elixir, without using an external library or wrapper script: $ echo foo ...
·stackoverflow.com·
Use an OS process like a bash pipe: Send it STDIN and get its STDOUT
Use Rexx for scripting in 2023
Use Rexx for scripting in 2023
Here are two simple programs to show how easy Rexx is to read, write, and maintain.
·opensource.com·
Use Rexx for scripting in 2023
A Brief Introduction to Phoenix and LiveView (Part 1)
A Brief Introduction to Phoenix and LiveView (Part 1)
Hello, once again! Today, I am going to introduce you to the basics of the web framework, Phoenix. Phoenix is a web framework that reached 1.0 in 2015 written in the Elixir programming language. It…
·danieljaouendevelopment.com·
A Brief Introduction to Phoenix and LiveView (Part 1)
Keeping it simple
Keeping it simple
A reminder that code is a step in a process, not an end in itself.
·thoughtbot.com·
Keeping it simple
Agent
Agent
Website for Elixir
·elixir-lang.org·
Agent
State Machine in Elixir with Machinery
State Machine in Elixir with Machinery
State machines are a well defined concept that developers all around have been using, some without even knowing it.
·medium.com·
State Machine in Elixir with Machinery
BUGFIX-66
BUGFIX-66
·bugfix-66.com·
BUGFIX-66
The only kind of test I write
The only kind of test I write
There is a near constant background-level conversation in the engineering world about which kinds of tests are better; unit tests…
·bluepnume.medium.com·
The only kind of test I write
Deploying Phoenix apps on bare metal - 0x7f Inc.
Deploying Phoenix apps on bare metal - 0x7f Inc.
I run a couple of internal and public applications written in Phoenix on our infrastructure. While services like fly.io exist and are amazing, sometimes it’s both cheaper (and more secure) to run small internal applications on your own hardware. It’s certainly more fun. Thru the years I’ve developed my own process of deploying the application and this post will document the current procedure.
·0x7f.dev·
Deploying Phoenix apps on bare metal - 0x7f Inc.
Elixir Atoms
Elixir Atoms
The last post took a peek at how functions can be defined and passed around in Elixir. This post centres around atoms and some of their not…
·medium.com·
Elixir Atoms
Making all your integers positive with zigzag encoding
Making all your integers positive with zigzag encoding
You sometimes feel the need to make all of your integers positive, without losing any information. That is, you want to map all of your integers from ‘signed’ integers (e.g., -1, 1, 3, -3) to ‘unsigned integers’ (e.g., 3,2,6,7). This could be useful if you have a fast function to compress integers that fails to … Continue reading Making all your integers positive with zigzag encoding
·lemire.me·
Making all your integers positive with zigzag encoding