Skip to content

Instantly share code, notes, and snippets.

@8dspaces
8dspaces / bobp-python.md
Created November 22, 2015 13:34 — 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
@8dspaces
8dspaces / client.js
Last active August 30, 2015 04:20 — forked from steinwaywhw/client.js
A minimal term.js server/client demo. To be used with node.js
var client = {};
client.run = function (options) {
options = options || {};
var socket = io.connect(options.remote || "http://localhost:8080");
socket.on('connect', function() {
var term = new Terminal({
@8dspaces
8dspaces / 0_reuse_code.js
Last active May 19, 2018 13:39
算法练习(一)
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console