Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@Tiliavir
Tiliavir / notes-go.md
Last active June 2, 2021 06:38
First contact with Go

Go

History

  • since 2009
  • Open Source @Google
  • developed by Ken Thompson, Rob Pike, Robert Griesemer
  • mainly influenced by C, C++, C# and Java

Characteristics

  • compiled, statically typed
@Tiliavir
Tiliavir / ps-here.reg
Created May 10, 2021 06:50
Adds an "Open PowerShell" entry to the windows explorers context menu - required on pre-Win10
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\psHere]
@="Open PowerShell"
"icon"="C:\\windows\\system32\\WindowsPowerShell\\v1.0\\powershell.exe"
[HKEY_CLASSES_ROOT\Directory\Background\shell\psHere\command]
@="C:\\windows\\system32\\WindowsPowerShell\\v1.0\\powershell.exe -noexit -command Set-Location '%V'"