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
#!/usr/bin/python | |
# Equivalent of "tail -f" as a webpage using websocket | |
# Usage: webtail.py PORT FILENAME | |
# Tested with tornado 2.1 | |
# Thanks to Thomas Pelletier for it's great introduction to tornado+websocket | |
# http://thomas.pelletier.im/2010/08/websocket-tornado-redis/ | |
import tornado.httpserver |
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
class DetroitHandler(BaseRequestHandler): | |
def get(self): | |
self.generate('base_page.html', {'content': """ | |
<p>We meet every Wednesday, from 8-10 EST, at:</p> | |
<pre>Caribou Coffee | |
1413 W 14 Mile Rd | |
Madison Heights, MI 48071</pre> | |
<p>The last Wed of the month is a special longer edition that starts at 7pm.</p> |
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
# Yummy constants to use in the Application | |
class System(MyEnum): | |
"""Enum type for the Users System level access""" | |
_enum = { | |
'hotalert': 'HotAlert', | |
'dashboard': 'Dashboard', | |
'defect': 'Defect', | |
} | |
class Role(meta.Base): |
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 Queue import Queue | |
class ShowQueue(object): | |
"""We need to implement the basics of Queue to use it""" | |
def __init__(self): | |
self.queue_store = Queue() | |
def qsize(self): | |
return self.queue_store.qsize() |
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
/** | |
* Pop the history stack and run the load function for the page | |
* requested | |
* | |
*/ | |
that.backward = function() { | |
var new_page; | |
console.log('BACKWARD'); | |
console.log(that.history); | |
console.log(that.history.length); |
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 fabric.api import env | |
# Globals | |
env.project_name = 'proj' | |
env.packagedir = 'http://packageserver.com/packages/' | |
env.new_version_files = ['setup.py', | |
'docs/source/conf.py', | |
] |
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 fabric.api import env | |
# Globals | |
env.project_name = 'proj' | |
env.packagedir = 'http://packageserver.com/packages/' | |
env.new_version_files = ['setup.py', | |
'docs/source/conf.py', | |
] |
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
We won't rock the boat. We'll go with Detroit Midtown. We're hoping to attr= | |
act Wayne State students and activate the TechTown area.=20 | |
Thanks guys.=20 | |
David I Tobar | |
313 549 3785 | |
Sent from my iPhone | |
On Jun 22, 2011, at 10:56 PM, Rick Harding <[email protected]> wrote: |
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
Content-Transfer-Encoding: 7bit | |
MIME-Version: 1.0 | |
Content-Type: text/plain; charset="UTF-8" | |
URL: http://bmark.us//admin/redirect/9eca26b9f078af | |
File '/home/bmark.us/rick/lib/python2.6/site-packages/weberror/errormiddleware.py', line 162 in __call__ | |
app_iter = self.application(environ, sr_checker) | |
File '/home/bmark.us/rick/lib/python2.6/site-packages/repoze/tm/__init__.py', line 23 in __call__ | |
result = self.application(environ, save_status_and_headers) | |
File '/home/bmark.us/rick/lib/python2.6/site-packages/pyramid/router.py', line 158 in __call__ |
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
silly testEngine { name: 'get', | |
silly testEngine description: 'A slightly higher-level HTTP client for node.', | |
silly testEngine version: '0.3.0', | |
silly testEngine main: './lib/node-get/index.js', | |
silly testEngine keywords: [ 'http', 'client', 'request', 'get' ], | |
silly testEngine url: 'http://github.com/tmcw/node-get', | |
silly testEngine repositories: | |
silly testEngine [ { type: 'git', | |
silly testEngine url: 'git://github.com/tmcw/node-get.git' } ], | |
silly testEngine author: |