[Solved] ERROR 2003 (HY000): Can't connect to MySQL server on 'localhost:3306' (10061)

Updated: 23th March 2025
Tags: mysql windows

How to create aliases in windows 10

Updated: 12th December 2022
Tags: windows alias

Build golang app from windows to Linux 64 bit

Updated: 14th November 2020
Tags: go windows linux build

TL DR; To build app on windows to linux 64 type this in powershell

$Env:GOOS = "linux"; $Env:GOARCH = "amd64"; go build main.go

Windows powershell get first / last 100 lines of txt file

Updated: 1th July 2020
Tags: windows powershell