Python is a powerful and versatile programming language, widely used for web development, data analysis, artificial intelligence, and more. As a developer, you might find yourself working on multiple projects with different sets of dependencies and configurations. This is where Python virtual environments come to the rescue! In this blog...
[Read More]
Securely Storing and Using Credentials in PowerShell Scripts
Introduction
[Read More]
grep
The grep command in Linux is a powerful tool for searching and filtering text. It stands for “global regular expression print,” and it allows you to search for patterns within text files and output the matching lines.
[Read More]
Parse command line tool output with Powershell
The other day, I had to restart a Windows server using only Powershell. The catch was that I had to do it only if the output of a command line tool was a certain way. I also kept a log for documentation purposes.
[Read More]
Stack vs Heap in C#
In C#, there are two main ways to store data in memory: on the stack and on the heap.
[Read More]