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

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 / 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:

@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 / 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 / .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