Skip to content

Instantly share code, notes, and snippets.

View codemonkeh's full-sized avatar

Christian Froehlich codemonkeh

  • Melbourne, Australia
View GitHub Profile
@codemonkeh
codemonkeh / choco.md
Created October 5, 2020 11:35
Chocolately commands

Find package

choco search <name>

Find exact package

choco search <name> -e choco search <name> -e --detail

List local/installed packages

choco list -l

@codemonkeh
codemonkeh / Chocolatey install.ps1
Last active July 2, 2021 06:08
Chocolatey install
Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
# General
choco install ConEmu notepadplusplus 7zip MardownMonster filezilla foxitreader -y
# Hardware (beast)
choco install icue -y
# Dev tools
choco install git poshgit dotnetcore-sdk awscli nodejs vscode linqpad pgadmin4 -y
@codemonkeh
codemonkeh / ConEmu - Git Bash.md
Last active August 27, 2018 00:08
ConEmu - Git Bash

Git Bash config for ConEmu

Based off https://gist.github.com/n3dst4/cc875d83401c06bd6faa, credit to n3dst4

  1. Go to Settings > Tasks > Setup tasks (or press Win + ALT + T)
  2. Click "+"
  3. Enter name
  4. Enter task parameters: /icon "C:\Program Files\Git\etc\git.ico" /dir "D:\Dev\Repos"
  5. Enter command (note the double quotes):
# This was copied from https://gist.githubusercontent.com/kmorcinek/2710267, with minor modification
# Download this file using PowerShell v3 under Windows with the following comand:
# Invoke-WebRequest https://gist.githubusercontent.com/codemonkeh/18cb2dd02462a976f6720c62b650e438/raw -OutFile .gitignore
# or wget:
# wget --no-check-certificate https://gist.githubusercontent.com/codemonkeh/18cb2dd02462a976f6720c62b650e438/raw/.gitignore
# User-specific files
*.suo
*.user
*.sln.docstates