Skip to content

Instantly share code, notes, and snippets.

View Angelfirenze01's full-sized avatar
💭
I may be slow to respond.

Angelfirenze Angelfirenze01

💭
I may be slow to respond.
View GitHub Profile
@Angelfirenze01
Angelfirenze01 / .gitconfig
Last active November 22, 2022 16:23
Git configuration setup.
git config --global user.name "Angelfirenze"
git config --global user.email "intothecode01@tutanota.com"
git config --global core.autocrlf true
git config --global push.default simple
git config --global pull.rebase true
git config --global rerere.enabled true
git config --global color.ui true
git config --global alias.s "status -s"
git config --global alias.lg "log --oneline --decorate --all --graph"
git config --global credential.helper wincred
@Angelfirenze01
Angelfirenze01 / index.markdown
Last active January 9, 2020 19:52
Quiz Ninja - JavaScript: From Novice to Ninja by Darren Jones - Sitepoint
<title>Quiz Ninja</title>
@Angelfirenze01
Angelfirenze01 / git-loglive
Created October 16, 2018 19:10 — forked from tlberglund/git-loglive
Log Live Git Command
#!/bin/bash
while :
do
clear
git --no-pager log --graph --pretty=oneline --abbrev-commit --decorate --all $*
sleep 1
done
@Angelfirenze01
Angelfirenze01 / keybase.md
Created September 28, 2018 20:25
Keybase

Keybase proof

I hereby claim:

  • I am angelfirenze01 on github.
  • I am angelfirenze (https://keybase.io/angelfirenze) on keybase.
  • I have a public key ASAOiJ3HIu0JGnswaNaytyiWEG-LtWSXOZp58Vaxp3BPGgo

To claim this, I am signing this object:

Keybase proof

I hereby claim:

  • I am Angelfirenze01 on Github.
  • I am angelfirenze (https://keybase.io/angelfirenze) on keybase.
  • I have a public key ASDRaJaiMdMdxA1485woA9-GGpsUBURIFQWs7Wt_vpUR7wo

To claim this, I am signing this object:

@Angelfirenze01
Angelfirenze01 / _verify-repair-permissions-disk.md
Created May 23, 2017 20:48 — forked from bzerangue/_verify-repair-permissions-disk.md
Mac OS X Utilities via Terminal: (Verify and Repair: Disk Permissions AND Disk / Software Update / TimeMachine)

Verify and Repair Disk Permissions via Terminal (Mac OS X)

Verify Permissions

diskutil verifyPermissions /

Repair Permissions

diskutil repairPermissions /

@Angelfirenze01
Angelfirenze01 / .bash_profile
Created February 9, 2017 22:31
My personal .bash_profile after much tinkering...
TEXT EDITORS
EDITOR="Visual"
VISUAL="Vim"
[merge]
tool = sublimerge
[mergetool "sublimerge"]
cmd = subl -n --wait \"$REMOTE\" \"$BASE\" \"$LOCAL\" \"$MERGED\" --command \"sublimerge_diff_views\"
trustExitCode = false
@Angelfirenze01
Angelfirenze01 / .gitconfig
Created February 8, 2017 00:03 — forked from johnlauck/.gitconfig
gitconfig
[color]
diff = auto
status = auto
branch = auto
interactive = auto
ui = true
pager = true
[color "branch"]
current = yellow reverse
@Angelfirenze01
Angelfirenze01 / .bash_profile
Last active February 7, 2017 04:26 — forked from jjNford/.bash_profile
Default .bash_profile file.
# DIRECTORIES
alias dev="cd ~/Developer/dev"
alias sy="cd ~/Developer/dev/sincerely"
# APPLICATIONS
alias lime="/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin/subl"
alias markdown="/Applications/Markdown\ Pro.app/Contents/MacOS/Markdown\ Pro"
# ANDROID
export ANDROID_HOME=`brew --prefix android-sdk`