Skip to content

Instantly share code, notes, and snippets.

@saka1
saka1 / setup.yaml
Last active August 29, 2015 14:04
ansibleでsbtを入れる所まで
---
- hosts: all
user: vagrant
sudo: True
tasks:
- name: install python-selinux
yum: pkg=libselinux-python state=latest
- name: install openjdk-1.7
@sloria
sloria / bobp-python.md
Last active September 9, 2025 10:52
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