Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| <?xml version="1.0" encoding="ISO-8859-1"?> | |
| <vxml version="2.0" lang="en"> | |
| <form> | |
| <block> | |
| <prompt bargein="false">Hello world! | |
| </prompt> | |
| </block> | |
| </form> | |
| </vxml> |
| sudo /Applications/Install\ OS\ X\ Mavericks.app/Contents/Resources/createinstallmedia --volume /Volumes/Untitled --applicationpath /Applications/Install\ OS\ X\ Mavericks.app --nointeraction |
| import os, sys, codecs | |
| BUFSIZE = 4096 | |
| BOMLEN = len(codecs.BOM_UTF8) | |
| path = sys.argv[1] | |
| with open(path, "r+b") as fp: | |
| chunk = fp.read(BUFSIZE) | |
| if chunk.startswith(codecs.BOM_UTF8): | |
| i = 0 |
Each of these commands will run an ad hoc http static server in your current (or specified) directory, available at http://localhost:8000. Use this power wisely.
$ python -m SimpleHTTPServer 8000| from django.contrib.sessions.backends.base import SessionBase, CreateError | |
| from django.conf import settings | |
| from django.utils.encoding import force_unicode | |
| import redis | |
| class SessionStore(SessionBase): | |
| """ Redis store for sessions""" | |
| def __init__(self, session_key=None): | |
| self.redis = redis.Redis( |
| #! /usr/bin/env python | |
| import redis | |
| import random | |
| import pylibmc | |
| import sys | |
| r = redis.Redis(host = 'localhost', port = 6389) | |
| mc = pylibmc.Client(['localhost:11222']) |
| [29 Mar 2010: An expanded and annotated version of this is available on my website at http://www.thebraidytester.com/downloads/YouAreNotDoneYet.pdf.] | |
| Accessibility | |
| Check the following MSAA property settings for every control on every dialog, command bar, and other UI feature: NAME, ROLE, STATE, VALUE, KBSHORTCUT, and DEFACTION | |
| Change values in edit boxes and verify those values are reflected in the MSAA property set | |
| Run in high contrast mode | |
| Run in large font mode | |
| Run with Sound Sentry | |
| Run with sticky keys and other mouse key settings |
| from celery.schedules import crontab | |
| from flask.ext.celery import Celery | |
| CELERYBEAT_SCHEDULE = { | |
| # executes every night at 4:15 | |
| 'every-night': { | |
| 'task': 'user.checkaccounts', | |
| 'schedule': crontab(hour=4, minute=20) | |
| } | |
| } |
There is a street with five houses all in a row. Each house has a person with a different name and each house is painted a different colour. Each homeowner drinks a different type of beverage, owns a different type of pet and reads a different type of newspaper.
| FALLOUT | |
| VAULT-13 PERSONNEL RECORD | |
| 25 July 2241 0824 hours | |
| Name: O Age: 33 Gender: Male | |
| Level: 01 Exp: 0 Next Level: 1,000 | |
| ::: Statistics ::: | |
| Strength: 04 Hit Points: 028/027 Sequence: 04 | |
| Perception: 09 Armor Class: 009 Healing Rate: 01 |