Skip to content

Instantly share code, notes, and snippets.

View quicksketch's full-sized avatar

Nate Lampton quicksketch

View GitHub Profile
@msonnabaum
msonnabaum / gist:1306569
Created October 22, 2011 22:28
install xhprof on mamp for php 5.3
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
@eojthebrave
eojthebrave / fluid-yammer-dock-badge.js
Created October 20, 2011 13:57
Userscript: provide a Fluid.app dock badge for yammer.com unread messages.
// ==UserScript==
// @name fluid-dock-badge
// @namespace http://fluidapp.com
// @description Dock badge for unread messages on Yammer.com
// @include *
// @author Joe Shindelar (eojthebrave)
// ==/UserScript==
(function ($) {
if (window.fluid) {
setInterval(dockBadge, 5000);