Skip to content

Instantly share code, notes, and snippets.

View masterjeef's full-sized avatar

J3Ff L1n70n masterjeef

  • Salt Lake City, Utah
View GitHub Profile
@masterjeef
masterjeef / remove-windows10-crap.ps1
Last active June 26, 2023 08:10
Remove Windows 10 Crap
<#
This is a helpful script that will remove the default Windows 10 garbage from your computer
* Comment out any apps that you might want to keep
* Don't forget to run as admin
#>
# 3d Builder
@masterjeef
masterjeef / .bashrc
Last active January 7, 2018 22:34
SSH .bashrc for Git Bash
SSH_ENV=$HOME/.ssh/environment
# start the ssh-agent
function start_agent {
echo "Initializing new SSH agent..."
# spawn ssh-agent
/usr/bin/ssh-agent | sed 's/^echo/#echo/' > "${SSH_ENV}"
echo succeeded
chmod 600 "${SSH_ENV}"
. "${SSH_ENV}" > /dev/null