Skip to content

Instantly share code, notes, and snippets.

View Kangaroux's full-sized avatar
🌈
feeling colorful

Jessie Kangaroux

🌈
feeling colorful
View GitHub Profile
adclick.g.doublecklick.net
adeventtracker.spotify.com
ads-fa.spotify.com
analytics.spotify.com
audio2.spotify.com
@Kangaroux
Kangaroux / .profile
Created February 28, 2018 01:45
Some quality of life improvements for bash (fix git asking for SSH key password, shorten bash prompt, etc)
# Set the prompt text (<prompt>$ )
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
debian_chroot=$(cat /etc/debian_chroot)
fi
# <user>:<cwd>$
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u:\[\033[01;34m\]\w\[\033[00m\]\$ '
# Start the ssh-agent if it's not running so you don't need to keep
# typing your password for things like git
@Kangaroux
Kangaroux / .bash_aliases
Last active February 28, 2018 04:58
Tons of shortcuts for git commands, python
#!/bin/bash
# NOTE: If you use a git remote that's named something other than "origin",
# you will need to edit the $GIT_REMOTE var below:
GIT_REMOTE="origin"
git_add() {
if [ $# = 0 ]; then
git add -A
@Kangaroux
Kangaroux / idleFingers.tmTheme
Last active January 23, 2018 02:16
Sublime theme (modified idleFingers)
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>name</key>
<string>idleFingers</string>
<key>settings</key>
<array>
<dict>
<key>settings</key>