Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
Attention: the list was moved to
https://github.com/dypsilon/frontend-dev-bookmarks
This page is not maintained anymore, please update your bookmarks.
| This playbook has been removed as it is now very outdated. |
| wget http://pecl.php.net/get/xhprof-0.9.2.tgz | |
| tar -xzf xhprof-0.9.2.tgz | |
| cd xhprof-0.9.2/extension | |
| /Applications/MAMP/bin/php/php5.3.6/bin/phpize | |
| ./configure | |
| make | |
| cp modules/xhprof.so $(/Applications/MAMP/bin/php/php5.3.6/bin/php-config --extension-dir)/ | |
| echo "extension=xhprof.so" >> /Applications/MAMP/bin/php/php5.3.6/conf/php.ini |
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| """Simple async crawler/callback queue based on gevent.""" | |
| import traceback | |
| import logging | |
| import httplib2 | |
| import gevent |