Let's talk about CI /CD
pipeline
Search for a command to run...
pipeline
Have you ever gotten tired of creating the same alias over and over again? (I got tired the second time 😒) So let’s automate it 🤖(I love this word). Let’s make bash load all aliases and scripts at once! (Well, you still need to give permissions or ...
I’m learning Linux and wanted a small challenge to practice. Then I thought: what’s a boring, repetitive task I could automate? That’s when the README.md popped into my mind. (I don’t know about you, but writing it’s pretty boring to me.) The Goal Th...
Sometimes, working with Visual Studio 2022 and Git I end up getting the horrible "Fatal Error" all the time I tried to commit my project. To solve that I had to create a new git ignore file containing dotnet related files. Here is the steps about how...

Finally understanding Application Programming Interface

About Powershell PowerShell is a command-line tool by Microsoft for managing and automating tasks in Windows. It lets users control and configure their computers through commands and scripts, making tasks like file management and system administratio...

What is? In C#, inheritance is the ability that allows a class (called the child or derived class) to use all methods and properties from another class (called the base class or parent). Why is it useful? Being able to inherit properties and methods ...

What is a class? Classes in programming are like templates for creating objects. They bundle together data and functions that work with that data. Each object generated by the class will have its own data information but will share the same propertie...

Object Oriented Programming
