This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from apscheduler.scheduler import Scheduler | |
import datetime as dt | |
sched = Scheduler() | |
sched.start() | |
def timeout(job_fn, *fn_args, **delta_args): | |
"""Like setTimeout in javascript; returns a job object | |
First argument is the function to be called. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>{Title}</title> | |
<link | |
href="//netdna.bootstrapcdn.com/twitter-bootstrap/2.3.1/css/bootstrap-combined.min.css" | |
rel="stylesheet"> | |
<meta name="text:LiveFyreSiteID" content=""/> | |
<link rel="shortcut icon" href="{Favicon}"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from peewee import * | |
# assume environment variable CLEARDB_DATABASE_URL is set (true on Heroku if you have the cleardb addon) | |
url = urlparse.urlparse(os.getenv('CLEARDB_DATABASE_URL')) | |
dbname = url.path[1:url.path.index('?')] | |
db = MySQLDatabase(dbname, host=url.hostname, user=url.username, passwd=url.password) | |
# Now use db to connect to the database .. | |
class BaseModel(Model): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
alpha = "qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM1234567890" | |
alpha[Math.round(Math.random() * 62)] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import random | |
def haiku(): | |
# originally from: https://gist.github.com/1266756 | |
# with some changes | |
# example output: | |
# "falling-late-violet-forest-d27b3" | |
adjs = [ "autumn", "hidden", "bitter", "misty", "silent", "empty", "dry", "dark", | |
"summer", "icy", "delicate", "quiet", "white", "cool", "spring", "winter", | |
"patient", "twilight", "dawn", "crimson", "wispy", "weathered", "blue", | |
"billowing", "broken", "cold", "damp", "falling", "frosty", "green", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<p>تخطيط العود</p> | |
<style type="text/css"> | |
p { direction: rtl; text-align: center; font: 24pt normal serif; width: 400px; } | |
div { float: left; height: 100px; border: solid 1px gray; border-right: none; } | |
</style> | |
<script type="text/javascript"> | |
// <div style="width: 3.3cm;"> </div> | |
var m = 1.059463094; //magic number | |
var a = 60; | |
var b = a; |
NewerOlder