Moving from Windows 10 to Linux
Instead of purchasing a new computer just to run a new version of Windows, consider installing Linux.
Connect to a Windows drive from Linux
Here’s how I connected my Linux system to a Windows AD fileshare.
Reading a whole file at once
Two methods to load a data file into memory. Use mmap on Linux sysetms.
Old-school programming with Turbo C
Explore retroprogramming on FreeDOS with this popular freeware IDE.
Update Linux from the command line
Be a power user by updating your system from the command line.
Calculate pi by counting pixels
This is a very simple way to measure pi, but it was a fun exercise and I wanted to share it.
Don’t skip the learning process
Using AI as a tool to do a thing still relies on knowing how to do the thing yourself.
Using AI to translate code
I was impressed that AI did so well translating from an old language like FORTRAN 77 into a more modern language like C.
Cautions when using AI for coding
While AI agents can help streamline development, keep in mind these cautions when using AI for coding.
Selective updates using ‘dnf’
Here’s how I update my system except for one problem library
Learning to love ‘groff -ms’
My journey with markup systems began when I was an undergraduate physics student at university. Until then, I wrote class papers using a desktop word...
Draw a Cylon eye in DOS
Have fun by writing a program to simulate a Cylon’s sweeping red eye
Quoting text with ‘sed’
Another great use of sed to make quick edits to a text file.
How I automate file edits with ‘sed’
Here’s a neat command line trick to make changes to a text file.
Personal backups with ‘rsync’
Make backups of your personal data in case your laptop is lost, stolen, or damaged.
Using enumerations in C
Using enumerations with enum makes it easy to store values in a program, yet keep the code easy to read.