I secretly automated my whole job with PowerShell

How to fix “yo : The term ‘yo’ is not recognized as the name of a cmdlet, function, script file, or operable program.” error?

This article explains what to do to get rid of an error that SEEMS simple to fix but might turn out to be elusive, namely, “The term ‘yo’ is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or…Continue reading How to fix “yo : The term ‘yo’ is not recognized as the name of a cmdlet, function, script file, or operable program.” error?

bash - it's even more of a mystery than PowerShell

Azure DevOps fails with “The path [path-to-your-repo] does not exist” even though the repository is there for sure?

Eh, this was a weird one. This article explains how to get around an issue where your build tools fail due to weird “path does not exist” errors when you’re using bash to execute a restore to your project. The build would probably succeed nicely, but it fails due to…Continue reading Azure DevOps fails with “The path [path-to-your-repo] does not exist” even though the repository is there for sure?

Powershell is hell

Why do you get a “Missing closing ‘)’ in expression.” error when piping a collection to a for loop in PowerShell?

Today, I’m writing about a stupid error. Yeah, I do make those every now and then. After adding a for loop to my PowerShell script, I started to get annoying ParserErrors about my for loop missing a closing bracket. But it was NOT missing one – what gives? Problem So,…Continue reading Why do you get a “Missing closing ‘)’ in expression.” error when piping a collection to a for loop in PowerShell?