Skip to content

Instantly share code, notes, and snippets.

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()
==> 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
settings = {'debug': True}
handlers = [(r"/", MainHandler)]
tornado.web.Application.__init__(self, handlers, **settings)
@didip
didip / delicious-scraper.py
Created December 17, 2010 23:53
Scrape delicious links using Python
# 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 = []
@didip
didip / information-schema-analytics.sql
Created December 30, 2010 21:59
Find out size of tables and other meta information from MySQL
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;
@didip
didip / supervisord-example.conf
Created December 31, 2010 01:44
Example for supervisord conf file
; 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
@didip
didip / supervisord-example.conf
Created January 30, 2011 05:10
Example configuration file for supervisord.conf
[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
@didip
didip / tornado-nginx-example.conf
Created January 30, 2011 05:19
Nginx config example for Tornado
worker_processes 2;
error_log /var/log/nginx/error.log;
pid /var/run/nginx.pid;
events {
worker_connections 1024;
use epoll;
}
@didip
didip / tornado_cookie_secret_generator.py
Created February 12, 2011 17:20
Generates secure cookie secret for Tornado Web Framework
@didip
didip / tornado-install-failure.txt
Created February 21, 2011 01:28
Tornado install failure from master branch
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