Skip to content

Instantly share code, notes, and snippets.

@dvl
dvl / bobp-python.md
Created November 13, 2015 20:03 — 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
@dvl
dvl / README.md
Last active November 5, 2015 06:13 — forked from magnetikonline/README.md
IE 7/8/9/10/11/Edge Virtual machines from Microsoft - Linux w/VirtualBox installation notes.
#!/bin/bash
#
# Install Postgres 9.3, PostGIS and create PostGIS template on an Ubuntu 12.04 Server
cd /tmp
# add official postgresql.org ubuntu repos (http://wiki.postgresql.org/wiki/Apt)
# Create /etc/apt/sources.list.d/pgdg.list. The distributions are called codename-pgdg.
echo "deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main" | sudo tee /etc/apt/sources.list.d/pgdg.list
@dvl
dvl / FIle.sublime-settings.json
Last active December 21, 2015 18:09 — forked from etrepat/FIle.sublime-settings.json
My sublime text options
{
"auto_complete": true,
"auto_complete_delay": 50,
"auto_complete_selector": "source - comment",
"auto_complete_size_limit": 4194304,
"auto_complete_triggers":
[
{
"characters": "<",
"selector": "text.html"