Skip to content

Instantly share code, notes, and snippets.

@sloria
sloria / bobp-python.md
Last active July 24, 2024 02:53
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
@brandonaaskov
brandonaaskov / app.js
Created August 22, 2012 16:08
Override DFP Click Through in HTML5 Players in App Cloud Application
/*
* This would live somewhere within the App Cloud application, wherever needed.
*/
//listen for post message from click-through override function
window.addEventListener('message', function (event){
var message = event.data;
if(message.name == 'adClick')
{