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
c = pycurl.Curl() | |
c.setopt(pycurl.URL, "http://example.com/post") | |
c.setopt(pycurl.POST, 1) | |
c.setopt(pycurl.POSTFIELDS, | |
urllib.urlencode({ | |
'some_data': 'the data', | |
'some_more_data': 'more data', | |
}) | |
) | |
c.perform() |
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
==> Build Environment | |
CC: /usr/bin/cc => /usr/bin/gcc-4.2 | |
CXX: /usr/bin/c++ => /usr/bin/c++-4.2 | |
LD: /usr/bin/cc => /usr/bin/gcc-4.2 | |
CFLAGS: -O3 -w -pipe | |
CXXFLAGS: -O3 -w -pipe | |
CPPFLAGS: -I/usr/local/Cellar/readline/6.1/include | |
LDFLAGS: -L/usr/local/Cellar/readline/6.1/lib | |
MAKEFLAGS: -j4 | |
PKG_CONFIG_PATH: /usr/local/Cellar/readline/6.1/lib/pkgconfig |
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
settings = {'debug': True} | |
handlers = [(r"/", MainHandler)] | |
tornado.web.Application.__init__(self, handlers, **settings) |
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
# Requirements: | |
# - python-lxml | |
# - pyquery | |
# | |
# As implemented in http://mybucket.co | |
# html_util.py | |
from pyquery import PyQuery as pq | |
def extract_delicious_data_from_html(html): | |
results = [] |
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
SELECT concat( table_schema, '.', table_name ) table_name, | |
concat( round( data_length / ( 1024 *1024 ) , 2 ) , 'M' ) data_length, | |
concat( round( index_length / ( 1024 *1024 ) , 2 ) , 'M' ) index_length, | |
concat( round( round( data_length + index_length ) / ( 1024 *1024 ) , 2 ) , 'M' ) total_size, | |
table_rows, | |
engine | |
FROM information_schema.TABLES | |
WHERE TABLE_SCHEMA = 'coolshit_dev' | |
ORDER BY data_length DESC; |
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
; Sample supervisor config file. | |
[unix_http_server] | |
file=/tmp/supervisor.sock ; (the path to the socket file) | |
;chmod=0700 ; sockef file mode (default 0700) | |
;chown=nobody:nogroup ; socket file uid:gid owner | |
;username=user ; (default is no username (open server)) | |
;password=123 ; (default is no password (open server)) | |
;[inet_http_server] ; inet (TCP) server disabled by default |
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
[unix_http_server] | |
file=/tmp/supervisor.sock ; path to your socket file | |
[supervisord] | |
logfile=/var/log/supervisord/supervisord.log ; supervisord log file | |
logfile_maxbytes=50MB ; maximum size of logfile before rotation | |
logfile_backups=10 ; number of backed up logfiles | |
loglevel=error ; info, debug, warn, trace | |
pidfile=/var/run/supervisord.pid ; pidfile location | |
nodaemon=false ; run supervisord as a daemon |
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
worker_processes 2; | |
error_log /var/log/nginx/error.log; | |
pid /var/run/nginx.pid; | |
events { | |
worker_connections 1024; | |
use epoll; | |
} |
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
Downloading http://pycurl.sourceforge.net/download/pycurl-7.19.0.tar.gz | |
Processing pycurl-7.19.0.tar.gz | |
Running pycurl-7.19.0/setup.py -q bdist_egg --dist-dir /tmp/easy_install-tCrOeg/pycurl-7.19.0/egg-dist-tmp-99Bjyg | |
sh: curl-config: not found | |
Traceback (most recent call last): | |
File "setup.py", line 57, in <module> | |
description="Tornado is an open source version of the scalable, non-blocking web server and and tools that power FriendFeed", | |
File "/usr/lib/python2.6/distutils/core.py", line 152, in setup | |
dist.run_commands() | |
File "/usr/lib/python2.6/distutils/dist.py", line 975, in run_commands |