Skip to content

Instantly share code, notes, and snippets.

brew tap homebrew/cask-fonts
brew install awscli
brew install checkov
brew install git
brew install infracost
brew install node
brew install p7zip
brew install pulumi
brew install python
@richardballard
richardballard / settings.json
Last active July 13, 2020 15:21
Windows Terminal
// This file was initially generated by Windows Terminal 0.11.1121.0
// It should still be usable in newer versions, but newer versions might have additional
// settings, help text, or changes that you will not see unless you clear this file
// and let us generate a new one for you.
// To view the default settings, hold "alt" while clicking on the "Settings" button.
// For documentation on these settings, see: https://aka.ms/terminal-documentation
{
"$schema": "https://aka.ms/terminal-profiles-schema",
@richardballard
richardballard / Chocolatey-install-list.ps
Last active July 11, 2023 13:12
Chocolatey install list
choco install 7zip
choco install adobereader
choco install amazon-photos
choco install angryip
choco install anki
choco install autohotkey
choco install awscli
choco install brave
choco install choco-upgrade-all-at-startup
choco install circleci-cli
; This AutoHotkey script is to switch between open Windows of the same type and same App (.exe)
; The "type" checking is based on the App's Title convention that stipulates that the App name should be at the end of the Window title (Eg: New Document - Word )
; It works well with regular Window Apps, Chrome Shortcuts and Chrome Apps
/* ;
*****************************
***** UTILITY FUNCTIONS *****
*****************************
*/
# You can learn more about editorconfig here: https://docs.microsoft.com/en-us/visualstudio/ide/editorconfig-code-style-settings-reference
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
# Don't use tabs for indentation.
[*]
indent_style = space
# (Please don't specify an indent_size here; that has too many unintended consequences.)
@richardballard
richardballard / cloudSettings
Last active May 18, 2021 14:24
Visual Studio Code Settings Sync Gist
{"lastUpload":"2021-05-18T14:24:41.704Z","extensionVersion":"v3.4.3"}
@richardballard
richardballard / conEmu-settings.xml
Last active April 23, 2019 16:02
Settings for the ConEmu a windows terminal - https://conemu.github.io/
<?xml version="1.0" encoding="utf-8"?>
<key name="Software">
<key name="ConEmu">
<key name=".Vanilla" modified="2019-04-23 16:39:47" build="190310">
<value name="StartType" type="hex" data="02"/>
<value name="CmdLine" type="string" data=""/>
<value name="StartTasksFile" type="string" data=""/>
<value name="StartTasksName" type="string" data="{Powershell::Powershell}"/>
<value name="StartFarFolders" type="hex" data="00"/>
<value name="StartFarEditors" type="hex" data="00"/>
@richardballard
richardballard / jQueryValidate-ParseForm.js
Last active November 16, 2018 08:20
jQuery Validate - Parse form
function reinitialiseFormValidation(elementSelector) {
var validator = $(elementSelector).validate();
validator.destroy();
$.validator.unobtrusive.parse(elementSelector);
};