- Billy Vopinek: Billy introduced me to Guidebook and I'd like to repay the favor... by forcing him to particpate in a game against his will, solely for my benefit.
- Leland Takamine: Its the season of giving, and I honored that tradition last night by letting Leland beat me at foosball. The time has come for him to repay the favor.
- Anna Sawyer: Anna won a minature compost bin at the Recology meeting yesterday because she pulled the 'ol "1 dollar more" move -- she'll be perfect.
This file contains 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
Traceback (most recent call last): | |
File "/home/ubuntu/.virtualenvs/gb/local/lib/python2.7/site-packages/django/core/handlers/base.py", line 111, in get_response | |
response = callback(request, *callback_args, **callback_kwargs) | |
File "/home/ubuntu/.virtualenvs/gb/local/lib/python2.7/site-packages/newrelic-1.4.0.137/newrelic/api/object_wrapper.py", line 166, in __call__ | |
self._nr_instance, args, kwargs) | |
File "/home/ubuntu/.virtualenvs/gb/local/lib/python2.7/site-packages/newrelic-1.4.0.137/newrelic/hooks/framework_django.py", line 447, in wrapper | |
return wrapped(*args, **kwargs) |
This file contains 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
# SOME DESCRIPTIVE TITLE. | |
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER | |
# This file is distributed under the same license as the PACKAGE package. | |
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. | |
# | |
#, fuzzy | |
msgid "" | |
msgstr "" | |
"Project-Id-Version: PACKAGE VERSION\n" | |
"Report-Msgid-Bugs-To: \n" |
This file contains 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
# gears/urls.py => | |
from corpsite.kr.urls import urlpatterns as corp_kr_urlpatterns | |
# corpsite/base_urls.py | |
BASE_PATTERNS = [ | |
{ | |
'regex': r'^guide/(?P<guide_id>[0-9]+)/delete/$', | |
'view': 'path.to.some.view', # missing | |
'name': 'delete-guide' # semi-known | |
}, |
This file contains 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
TOTAL PATTERNS: 483 | |
================================= | |
RESPONSE CODES: | |
Response 200 [211] | |
Response 404 [3] | |
Response 301 [1] | |
Response 302 [68] | |
================================= | |
EXCEPTIONS: | |
Exception <class 'appsubmit.models.DoesNotExist'> [['^g/(?P<guideShortName>[\\w-]+)/$']] |
This file contains 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
{ | |
"pep8_max_line_length": 150, | |
"pep8_ignore": | |
[ | |
"E302", "W191" | |
] | |
} |
This file contains 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
# Each key maps to a branch in `gears` that depends on branched code in other repos. | |
# | |
# When developing a new `gears` feature (typically done in a feature branch) that depends on | |
# branched code outside of gears, this file would modified to specify the configuration for | |
# that branch. | |
# | |
# Our tool referenced this file when staging code or when configuring a developer's environment. | |
# Staging Code: | |
# > fab stage gears:master # would stage master and the appropriate branches of its dependent repos | |
# > fab stage gears:feature_branch_1 # would stage gears `feature_branch_1` and the appropriate branches of its dependent repos |
This file contains 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
""" | |
This script assumes an s3 hierarchy like: | |
* bucket | |
/uploads | |
/pending # all unprocessed ('raw') files live here. these files are moved to `processed` after they have been transcoded | |
/processed # the raw file is moved here after it has been sent to the transcoder | |
/web # each transcoded 'web' file is sent here | |
/mobile # each transcoded 'mobile' file is sent here | |
""" |
This file contains 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
<!-- STARTS THE `capture_videos` SCRIPT ON STARTUP --> | |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>start-foo</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/bin/bash</string> |
This file contains 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
class Serial(object): | |
.... | |
def write(self, data): | |
"""Output the given string over the serial port.""" | |
if not self._isOpen: raise portNotOpenError | |
t = len(data) | |
d = data | |
if self._writeTimeout is not None and self._writeTimeout > 0: | |
timeout = time.time() + self._writeTimeout | |
else: |