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
#!/bin/sh | |
# modified from: http://community.webfaction.com/questions/7193/install-web2py-with-nginx-and-uwsgi | |
# * bumped the versions of nginx, uwsgi and web2py | |
echo 'Install script for nginx-1.1.18 , uwsgi-1.1.2 and web2py-1.99.7 (latest stable)' | |
echo 'If you wish to create cronjobs comment out the last lines of this script' | |
# port betweet nginx and uwsgi, find a free port to use | |
nginx_uwsgi_port=9111 |
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
''' | |
Run this script either by doing: | |
python gmaildomain.py | |
And you will be prompted for details, or you can save time by doing: | |
python gmaildomain.py WEBFACTION_USERNAME_HERE DOMAIN_TO_USE_GMAIL_FOR_HERE_WITHOUT_WWW | |
And you will only be prompted for your password. |
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
#! /usr/bin/env python | |
## -*- coding: utf-8 -*- | |
################################################################ | |
## Name: pytimer v0.0.1 Dec 12, 2011 | |
## Notes: A sematic time string parser with handy timer functions | |
## Author: Howard Mei | |
## Email: [email protected] | |
## License: MIT, http://www.opensource.org/licenses/mit-license.php | |
################################################################ |
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
# -*- coding: utf-8 -*- | |
from gevent import monkey; monkey.patch_all() | |
import gevent | |
from gevent_zeromq import zmq | |
class WebSocketHandler(object): | |
def __init__(self, _id, in_queue, socket): |
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
# example location parts of nginx.conf | |
# add your own AWS keys, server lines etc, and set your aws domains, paths | |
http { | |
# you will need the luacrypto in the cpath, download from http://luacrypto.luaforge.net/ | |
lua_package_cpath "/home/justin/lua/luacrypto-0.2.0/src/l?.so.0.2.0;;"; | |
server { | |
listen 80; |
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
<?php | |
//$base_dir = '/home/username/www/wordpress'; | |
//chdir($base_dir); | |
define( 'WP_SITEURL', 'http://localhost/wordpress' ); | |
define( 'WP_INSTALLING', true ); | |
require_once 'wp-load.php'; | |
require_once 'wp-admin/includes/upgrade.php'; |
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
<?php | |
/** | |
* The base configurations of the WordPress. | |
* | |
* This file is a custom version of the wp-config file to help | |
* with setting it up for multiple environments. Inspired by | |
* Leevi Grahams ExpressionEngine Config Bootstrap | |
* (http://ee-garage.com/nsm-config-bootstrap) | |
* | |
* @package WordPress |
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
In https://github.com/joshmarshall/norm, Josh tries to separate business model from persistent db backend. | |
In https://github.com/j2labs/dictshield and https://github.com/j2labs/schematics, j2labs try to unify the way to represent business data model. | |
Possible solution for RDS that http://code.google.com/p/appengine-ndb-experiment/ does for GAE ? |
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
Simplest: | |
https://github.com/oblique63/ChainableLogic Chain logic | |
https://github.com/hynek/first Get the first meaningful value | |
https://github.com/xerox91/LogicE A pure fact truth logic | |
Advanced: | |
https://github.com/nemonik/Intellect DSL rules/policies engine | |
https://github.com/knipknap/SpiffWorkflow Workflow patterns | |
Filesystem: |
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
Grep like file search: https://bitbucket.org/eliben/pss/ | |
Google diff match patch: https://bitbucket.org/spookylukey/diff-match-patch/overview | |
Mercurial mdiff match mpatch merge: http://selenic.com/hg |
OlderNewer