-
How to change the UEFI System Partition size in Windows Setup
Windows Setup, the Windows installation tool, unfortunately doesn’t provide any graphical tools for shrinking or expanding an UEFI System Partition (ESP; sometimes EFISYS). You can still create a custom-sized ESP by side-stepping out of Windows Setup and into the Command Line for a minute to partition the disk to your liking. I’ll walk you through…
-
How to: Determine which .NET Framework versions are installed, the easy way
Although, having migrated to .net Core for the most part,we all have to support our older applications using .net Framework. As a part of routine, you may tend to update the .net framework in your application only to find out that your test or even prod (yikes!) do not have the latest framework installed. One…
-
Multiple TeamCity Build Agents on one Server
How to get multiple TeamCity build agents running on one server. Found this the hard way, that there is an key thing that needs to be changed before finishing the setup as per teamcity’s official instruction. First log in to the server where you want the agents to run then open TeamCity from a browser…
-
Pi-Holed…..
I have a love-hate relationship with ad blockers. On the one hand, I despise the obnoxious ads that are forced down our throats at what seems like every turn. On the other hand, I appreciate the need for publishers to earn a living so that I can consume their hard-earned work for free. Somewhere in…
-
Architecture Agnostic Function Detection In Binaries
Function start detection in stripped binaries is an undecidable problem. This should be no surprise. Many problems in the program analysis domain fall into this category. Add to that the numerous types of CPU architectures, compilers, programming languages, application binary interfaces (ABIs), etc. and you’re left with an interesting, multifaceted, hard problem. Accurate detection of both…