Skip to content

Instantly share code, notes, and snippets.

View clmcgrath's full-sized avatar

Chris McGrath clmcgrath

View GitHub Profile
#!/usr/bin/env bash
set -e
echo "[+] Updating system packages and adding 32-bit architecture..."
sudo dpkg --add-architecture i386
sudo apt update && sudo apt upgrade -y
echo "[+] Installing system utilities and dependencies..."
sudo apt install -y \
curl \
@clmcgrath
clmcgrath / ngrok
Created February 8, 2019 23:19
ngrok
2AwAVX6PwKK4yxU4doDFq_Db8UqkyybYiQUCDLDnEV
@clmcgrath
clmcgrath / gist:77e956e96d1e66b9f7140c0bf964cbc1
Created November 18, 2018 10:16 — forked from digitaljhelms/gist:4287848
Git/GitHub branching standards & conventions

Branching

Quick Legend

Description, Instructions, Notes
Instance Branch
<?xml version="1.0" encoding="utf-8"?>
<AdminDeploymentCustomizations xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="http://schemas.microsoft.com/wix/2011/AdminDeployment">
<BundleCustomizations TargetDir="C:\Program Files (x86)\Microsoft Visual Studio 14.0" NoCacheOnlyMode="default" NoWeb="default" NoRefresh="default" SuppressRefreshPrompt="default" Feed="default" />
<SelectableItemCustomizations>
<SelectableItemCustomization Id="VSUV3RTMV1" Hidden="no" Selected="yes" FriendlyName="Visual Studio 2015 Update 3" />
<SelectableItemCustomization Id="MicroUpdateV3.1" Selected="yes" FriendlyName="Update for Microsoft Visual Studio 2015 (KB3165756)" />
<SelectableItemCustomization Id="WebToolsV1" Hidden="no" Selected="yes" FriendlyName="Microsoft Web Developer Tools" />
<SelectableItemCustomization Id="GitForWindowsx64V4" Hidden="no" Selected="yes" FriendlyName="Git for Windows" />
<SelectableItemCustomization Id="GitForWindowsx86V4"
@clmcgrath
clmcgrath / WebServerSetup.ps1
Created February 28, 2017 15:35
Web Server Box Starter Script
iwr https://chocolatey.org/install.ps1 -UseBasicParsing | iex
cinst powershell -y
cinst SublimeText3 -y
cinst git -y
cinst TortoiseGit -y
cinst svn -y
cinst TortoiseSVN -y
cinst nodejs.install
npm install -g rimraf
@powershell -NoProfile -ExecutionPolicy Bypass -Command "iex ((new-object net.webclient).DownloadString('https://chocolatey.org/install.ps1'))" && SET PATH=%PATH%;%ALLUSERSPROFILE%\chocolatey\bin#boxstrter environment commands
choco feature enable -n allowGlobalConfirmation
Update-ExecutionPolicy
Set-ExplorerOptions -showHidenFilesFoldersDrives -showFileExtensions
Set-TaskbarOptions -Size Small -Lock -Dock Right
Enable-RemoteDesktop
#npt longer applicable in Win10
#Disable-MicrosoftUpdate
Update-ExecutionPolicy
Set-ExplorerOptions -showHidenFilesFoldersDrives -showProtectedOSFiles -showFileExtensions
Set-TaskbarOptions -Size Small -Lock -Dock Right
Enable-RemoteDesktop
Disable-MicrosoftUpdate
Set-StartScreenOptions -EnableBootToDesktop -EnableShowStartOnActiveScreen -EnableSearchEverywhereInAppsView -EnableListDesktopAppsFirst
Set-CornerNavigationOptions -EnableUsePowerShellOnWinX
:browsers