Data Structures - Linked Lists

What are linked lists, their variations and their uses.

March 21, 2024 · 3 min · lukefilewalker
programming

Data Structures - Arrays

What are arrays and what mysteries do they hold?

March 17, 2024 · 2 min · lukefilewalker
programming

Data Structures - a Series

What are data structures, what are their differences and what do we use them for.

March 15, 2024 · 1 min · lukefilewalker
programming

Understanding Big-O

What is Big-O even and why should we care?

November 9, 2023 · 10 min · lukefilewalker
programming

Fixing Permission denied or Could not read from remote repository issues

How fix the dreaded Permission denied/Could not read from remote repository issue i.e. how to set up an SSH agent system wide that manages SSH keys seamlessly (on Linux).

November 8, 2023 · 2 min · lukefilewalker
os

What are Bitmasks

What even are bitmasks, bitfields, binary, bits, bytes, nibbles, words?

August 18, 2023 · 8 min · lukefilewalker
programming

Keep a Docker Container Running for Debugging Purposes

Four methods to keep a docker container from terminating after a failure in order to debug the issue.

November 27, 2022 · 2 min · lukefilewalker
devops

Building Neovim from Source

How to build Neovim from source if, for example, there is no binary for your system.

October 23, 2022 · 2 min · lukefilewalker
editors

Running a Command on Each Item in a List

Easily run a command on each item in a list - think list of filenames for example.

October 9, 2022 · 1 min · lukefilewalker
cli

Rust - Second Steps (with Cargo)

Take your second steps with Rust by exploring the official and widely used package manager, Cargo.

October 8, 2022 · 3 min · lukefilewalker
programming rust