Skip to content

Instantly share code, notes, and snippets.

View julianpinedayyz's full-sized avatar

Julian Pineda julianpinedayyz

View GitHub Profile
@satomacoto
satomacoto / README.md
Last active June 27, 2024 02:14
Install pyenv and conda

Install pyenv

$ brew update
$ brew install pyenv

Check available versions and install

{
"directory": "components"
}
@aqualungdesign
aqualungdesign / gist:4612606
Created January 23, 2013 20:19
iterm / oh-my-zsh -> rm move to .trash
#add script to .oh-my-zsh/lib/functions.zsh
function rm () {
local path
for path in "$@"; do
# ignore any arguments
if [[ "$path" = -* ]]; then :
else
local dst=${path##*/}
# append the time if necessary
@smebberson
smebberson / .gitignore
Created January 9, 2012 06:46
Express simple authentication example
node_modules
*.swp
@pksunkara
pksunkara / config
Last active July 3, 2024 14:56
Sample of git config file (Example .gitconfig) (Place them in $XDG_CONFIG_HOME/git)
[user]
name = Pavan Kumar Sunkara
email = pavan.sss1991@gmail.com
username = pksunkara
[init]
defaultBranch = master
[core]
editor = nvim
whitespace = fix,-indent-with-non-tab,trailing-space,cr-at-eol
pager = delta