Skip to content

Instantly share code, notes, and snippets.

View adamrushuk's full-sized avatar

Adam Rush adamrushuk

View GitHub Profile
@JamieMagee
JamieMagee / ct.yaml
Last active September 8, 2020 07:44
GitHub Pages Helm repository
helm-extra-args: --timeout 600
check-version-increment: true
debug: true
@adamrushuk
adamrushuk / 01-Boxstarter.ps1
Last active July 14, 2021 07:01
New Computer Configuration Scripts - run each script in order
# Install Boxstarter and Chocolatey
Set-ExecutionPolicy -ExecutionPolicy "RemoteSigned" -Verbose
. { iwr -useb https://boxstarter.org/bootstrapper.ps1 } | iex; get-boxstarter -Force
# Set Explorer options
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar -DisableOpenFileExplorerToQuickAccess -DisableShowRecentFilesInQuickAccess -DisableShowFrequentFoldersInQuickAccess -DisableExpandToOpenFolder -DisableShowRibbon
# Set Taskbar options
Set-TaskbarOptions -Size Large -Lock -Dock Bottom -Combine Always
@BretFisher
BretFisher / docker-for-windows.md
Last active February 1, 2024 21:57
Getting a Shell in the Docker for Windows Moby VM

2018 Update: Easiest option is Justin's repo and image

Just run this from your CLI and it'll drop you in a container with full permissions on the Moby VM. Only works for Moby Linux VM (doesn't work for Windows Containers). Note this also works on Docker for Mac.

docker run -it --rm --privileged --pid=host justincormack/nsenter1

more info: https://github.com/justincormack/nsenter1

@ekreutz
ekreutz / ansible_variable_precedence.md
Last active April 23, 2024 16:52
Ansible variable precedence (order, hierarchy)