Tag: programming

  • The Greatly Exaggerated Death of Perl

    The Greatly Exaggerated Death of Perl

    Perl is great. I would not say I am an expert at it, but I have been working with this fascinating programming language for a number of years that it’s become something close to a reflex.So it’s not exactly neutral territory when someone tells me Perl is dying; it gets under my skin every time…

  • One Narrow Patch: Staying Ready in the Comfort of Your Niche?

    One Narrow Patch: Staying Ready in the Comfort of Your Niche?

    Specializing in a niche software field offers job security and develops strong interpersonal skills through direct user interaction. However, deep expertise in a narrow area can lead to career vulnerability if market demands shift. Specialized professionals risk finding their experience disconnected from broader technological trends and current hiring needs.

  • Reclaim Your Terminal: How Lazygit Supercharges Your Git Workflow

    Reclaim Your Terminal: How Lazygit Supercharges Your Git Workflow

    Finding the right tools for your development workflow is a constant struggle, and Git tooling is no exception. Despite the plethora of Git clients available, none of them ever felt quite right. For a while, I settled on GitFiend. It worked well enough, but my workflow was still not quite right: I’d use the GUI…

  • AWK CSV Column Sum: Quick Command Line Tutorial

    AWK CSV Column Sum: Quick Command Line Tutorial

    Imagine you have a file with multiple columns and you need to quickly get the total of a column in command line in UNIX. The easiest way is to use AWK in the command line. Let’s take the following file: 1 2 3 4 5 6 7 8 9 2 3 4 5 6 7…