Skip to content

Instantly share code, notes, and snippets.

View nathanlem1's full-sized avatar

Nathanael L. Baisa nathanlem1

View GitHub Profile
@nathanlem1
nathanlem1 / bobp-python.md
Created September 16, 2020 08:57 — forked from sloria/bobp-python.md
A "Best of the Best Practices" (BOBP) guide to developing in Python.

The Best of the Best Practices (BOBP) Guide for Python

A "Best of the Best Practices" (BOBP) guide to developing in Python.

In General

Values

  • "Build tools for others that you want to be built for you." - Kenneth Reitz
  • "Simplicity is alway better than functionality." - Pieter Hintjens
@nathanlem1
nathanlem1 / pep8_cheatsheet.py
Created September 3, 2020 12:41 — forked from RichardBronosky/pep8_cheatsheet.py
PEP-8 cheatsheet
#! /usr/bin/env python
# -*- coding: utf-8 -*-
"""This module's docstring summary line.
This is a multi-line docstring. Paragraphs are separated with blank lines.
Lines conform to 79-column limit.
Module and packages names should be short, lower_case_with_underscores.
Notice that this in not PEP8-cheatsheet.py
@nathanlem1
nathanlem1 / README.md
Created March 21, 2019 16:13 — forked from hofmannsven/README.md
Git Cheatsheet