locport v1.2.0 released with listening port indicators

I’m proud to release v1.2.0 of locport, my open-source tool to standardize localhost project port management.

This version introduces:

  • Neater listing of projects and their hostnames.
  • Next to each hostname there is an indicator as to whether that port is listening, so you know which of your projects/apps are running.
  • Port or host conflict messages point you to the file where the conflict originates.
  • Automatic port assignment now checks for whether the selected port is not already listening, no matter whether indexed by locport.
  • Test suite and CI coverage of the existing functionality.

Read more →

tmux: reload bash config across all panes and sessions

Yesterday I got myself into tmux and I love it!

tmux is a terminal multiplexer. It lets you switch easily between several programs in one terminal, detach them (they keep running in the background) and reattach them to a different terminal.

I’ve been using Zellij for several months prior to this. Which I must thank for getting me introduced to the world of terminal multiplexers. However I’ve been running into several issues with it, that got me looking for an alternative:

Read more →

locport – Manage localhost ports

There are many solutions to the problem of running multiple (web) applications on the same machine, during development. You can use various proxies (puma-dev, localcan, traefik, nginx…) and DNS to set up custom hostnames. Which is something I’ve been doing in the past. But there is a more direct and simpler approach.

Read more →

tinyups3 – streaming S3 uploader

Working with the official AWS S3 CLI, as well as tools like s5cmd I quickly realized they aren’t optimized for resource constrained systems, rather more towards uploading as fast as possible and in parallel. This is great for most use cases, but not when you want to minimize the impact on the system, like during frequent backup operations and on a system with half a gig of memory for example.

Read more →

testerobly – lightweight automatic test runner

I’ve been running into issues, like intermittent crashes, with guard, which is a favorite amongst Rubyists, when it comes to automatically running unit tests on a file change. I’ve decided it would be a fun exercise to create my own tool, addressing my needs specifically:

Read more →

Scaffolding in Rails 7 is amazing

I’m continuously being impressed by the productivity and ease of use enhancements Rails keeps making after all these years it has been around.

Read more →