Rename the Way You Mean To

Posted on Mon 22 December 2025 in tech • Tagged with rustlang, cli, algorithms, dx

I rename a lot of files.

I respect the Unix way — mv file1 file2 — but in practice, file1 and file2 are usually the same name failing by one to three characters. Re-typing 97% of a filename feels ceremonial rather than intentional, especially when what I want is something like:

mv …

Continue reading

c-style for loop in bash

Posted on Fri 14 November 2025 in tech • Tagged with programming, rustlang, c

How did i not know that you can make a c-style for loop in bash

$ for (( i=0; i<5; i++ ))
  do
      echo $i
  done

Programing like NASA, the Power of Ten

Posted on Fri 21 February 2025 in tech • Tagged with programming, C++, rustlang

Should you program like NASA?

Programming is a discipline that requires both speed and integrity. The best developers balance rapid iteration with careful checking, ensuring that their code is robust, maintainable, and adaptable over time. That’s where structured coding principles—like those found in the Power of Ten—may …


Continue reading