Category: development
-

Visualize a Typescript Codebase with Dependency Cruiser
Dependency-cruiser is a useful tool for visualizing dependencies and enforcing architectural guidelines.
-

Using Structurizr to Create C4 Model Diagrams
Using Structurizr makes it easy to describe the software architecture of a system and generate C4 Model diagrams.
-

Javascript Dev Environment under Ubuntu in 2021
Let’s go over installing and configuring a Javascript development environment under Ubuntu 21.04 to compliment our recent Python configuration!
-

Python Dev Environment under Ubuntu in 2021
Walk through of getting a Python development environment configured on Ubuntu 21.04.
-
Replacing Newlines in Vim Searches
While trying to get a clearer view of a line of text with 5 million characters in it, I ran into some nuances in Vim’s search and replace. The main issue was that replaceing the search string with a newline character – \n wasn’t visually creating a new line in the Vim buffer. I found…