Customizing Powershell Profile. 3 minute read

In this post, I will show you how to create a PowerShell profile and configure how PowerShell start. What is PowerShell? Read that from the MSDN. I’m not gonna post about what is PowerShell? or something like the history of powershell to make this post looks like a wall of text, while you can read that on official microsoft documentation or just google it.

With the PowerShell profile you can create:

  • Style your PowerShell.
  • Create aliases.
  • Set default variables.
  • Import Modules.
  • Most important thing is, make your life easy with PowerShell.

Assuming you already have powershell 7 installed on your machine... read more

What is git? and how to use it. Not really a complete guide. 4 minute read

What is Git?

Back around 2009 when i was graduated from high school and i have nothing to do, I was tinkering with linux and some other stuff thats called open source. And that time I was discovered git and github.

So, what it is? What is git?, Taken from the website git is a free and open source distributed version control system designed to handle everything from small to very large projects with speed and efficiency. It outclasses every other SCM tools.

Wait, what is SCM? SCM stand for Source Code Management. Well for some of you who are developer... read more