A "Best of the Best Practices" (BOBP) guide to developing in Python.
- "Build tools for others that you want to be built for you." - Kenneth Reitz
- "Simplicity is alway better than functionality." - Pieter Hintjens
| var Headout = { | |
| apply: function() { | |
| return true; | |
| }, | |
| code: function() { | |
| console.log("I", this.a.join(' '), 'code at Headout'); | |
| this.a = []; | |
| return this; | |
| }, | |
| a: [] |
| import datetime | |
| import time | |
| from functools import wraps | |
| from wsgiref.handlers import format_date_time | |
| from flask import make_response | |
| def cache(expires=None, round_to_minute=False): | |
| """ | |
| Add Flask cache response headers based on expires in seconds. |
| // download soundManager2 and refer it in your scripts http://www.schillmania.com/projects/soundmanager2/doc/download/#latest | |
| // also add the swf directory to your project | |
| // your module declaration | |
| var app = angular.module('myApp', []); | |
| // attach the soundManager global for AngularJS dependency injection | |
| app.value('soundManager', soundManager); | |
| // usage |
| #!/bin/bash | |
| # GTK+ and Firefox for Amazon Linux | |
| # Written by Joseph Lawson 2012-06-03 | |
| # http://joekiller.com | |
| # http://joekiller.com/2012/06/03/install-firefox-on-amazon-linux-x86_64-compiling-gtk/ | |
| # chmod 755 ./gtk-firefox.sh | |
| # sudo ./gtk-firefox.sh | |