I figured out a fix, a workaround or even an actual solution
I posted it on the internet
This way, the next time I encounter the same issue, I’ll be able to find the solution easier by googling.
This category contains assorted tips, tricks and solutions regarding all the different workarounds and solutions related to technology pretty much in general.
This article explains our solution to a very particular use case. We needed to go through .csproj files, find certain dependencies from them, and then figure out their versions. And all of this needed to happen in an Azure DevOps pipeline. But when would this be helpful? Well, hear me…Continue reading How to find out dependency versions in your .csproj files using PowerShell?
In this particular article, I’ll explain how to fix an issue where Microsoft Word (part of what used to be called “Microsoft Office”, but that’s now called “Microsoft 365”) decides to remove your name and everyone you tagged from any comments or conversations you might’ve had on the article. That’s…Continue reading How to “fix” Word removing tagged users from comments?
Since I ran into this annoying little issue again, I thought it might be a good time to document it for the next person who needs to google it on their phone, after frantically clicking every single button they have on their mouse, only to realize their computer really doesn’t…Continue reading How to fix Windows not recognizing your mouse clicks?
Well, this was kind of a dumb one. Search in Outlook suddenly stopped working completely. And I don’t mean the normal “Outlook Search can’t find anything” -kind of issues, I mean it literally found zero results with any search terms. Well, everything is buggy and nothing works. Not that unusual…Continue reading Outlook Search broken due to Windows Search acting up? Here’s 3 ways to fix it!
Every now and then there comes a time when you need to fiddle with DNS. It’s not that you want to do it, but sometimes you just can’t avoid it. This article explains a convenient way of using PowerShell to apply a change for all A records (these are essentially…Continue reading How to update the TTL for all A records in a zone at once in Azure?
Haha, another one of those “should’ve known it was this easy” in the books! This article explains how to include the whole certificate chain (so your “user certificate” with all the “intermediary certificates” and optionally, but not as recommended, the root certificate) in your PEM-formatted certificate. Because sometimes you just…Continue reading How to include the whole certificate chain in your .cer, .crt or .pem certificate file?
This article explains how to replace double quotes in string literal when replacing stuff in GitHub Actions using sed. Or rather, how to replace stuff with double quotes in it in GitHub Actions overall. Because it’s not as straightforward as one would think. Or maybe I’m missing something obvious here?…Continue reading How to avoid sed in GitHub Actions removing spaces from your script steps?
This article expands on my earlier article on automatically figuring out versioning in an Azure DevOps Pipeline. In the other article, you’d add Major and Minor versions as variables, and Patch (the last part of an x.y.z version scheme) would be incremented automatically. In this one, I’m describing how to…Continue reading Automatically get version number from project dependencies in Azure DevOps