Skip to content

Instantly share code, notes, and snippets.

View Xtremefaith's full-sized avatar
:bowtie:
I may be slow to respond.

Nick Worth Xtremefaith

:bowtie:
I may be slow to respond.
View GitHub Profile
@Xtremefaith
Xtremefaith / git.css
Created March 14, 2017 21:04 — forked from neilgee/git.css
Git Command Line Reference - Notes and reminders on set up and commands
/*
* Set up your Git configuration
*/
git config --global user.email "you@yourdomain.com"
git config --global user.name "Your Name"
git config --global core.editor "nano"
@Xtremefaith
Xtremefaith / keybase.md
Created September 22, 2018 05:34
Public Keybase verification

Keybase proof

I hereby claim:

  • I am xtremefaith on github.
  • I am xtremefaith (https://keybase.io/xtremefaith) on keybase.
  • I have a public key ASBR_ZZqD-C3oOI0dUQ0qIgTdT27xp7JiMzAY6ez4ZPhmwo

To claim this, I am signing this object:

@Xtremefaith
Xtremefaith / setup.sh
Created January 17, 2023 22:54 — forked from bradp/setup.sh
New Mac Setup Script
echo "Creating an SSH key for you..."
ssh-keygen -t rsa
echo "Please add this public key to Github \n"
echo "https://github.com/account/ssh \n"
read -p "Press [Enter] key after this..."
echo "Installing xcode-stuff"
xcode-select --install