Skip to content

Instantly share code, notes, and snippets.

View agonen's full-sized avatar
🏠
Working from home

agonen

🏠
Working from home
View GitHub Profile
@agonen
agonen / bobp-python.md
Created January 19, 2017 14:10 — 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
@agonen
agonen / googledrive
Last active August 29, 2015 14:05 — forked from mhawksey/gist:1658408
/*
Copyright 2011 Martin Hawksey
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
#!/bin/bash
set -e
. CONFIG
#create swap file
sudo dd if=/dev/zero of=/swapfile bs=1024 count=256k
sudo mkswap /swapfile
sudo swapon /swapfile
# Satisfy the prerequisites for Oracle 11g and install the binaries