Skip to content

Instantly share code, notes, and snippets.

@kenvac
kenvac / python guide.md
Created October 4, 2021 15:38 — forked from asaah18/python guide.md
a python guide/cheat-sheet for mind refreshing and looking for specific info

Python Guide

This python guide is intended to those who already know python and want a mind refresh or looking for a specific syntax
-as this guide doesn't elaborate in explaining thing that a programmer would already know -like: variable, function, csv, json-.

additionally, this guide is not intended to be a replacement for reading official Python documentation.

@kenvac
kenvac / .zshrc
Created May 9, 2023 08:59
macOS virtualenv and git branch
# Scripts
parse_git_branch() {
git branch 2> /dev/null | sed -n -e 's/^\* \(.*\)/[\1]/p'
}
COLOR_DEF='%f'
COLOR_USR='%F{243}'
COLOR_DIR='%F{197}'
COLOR_GIT='%F{39}'
NEWLINE=$'\n'
setopt PROMPT_SUBST