Skip to content

Instantly share code, notes, and snippets.

@bc-zz
bc-zz / php.rb
Created December 30, 2011 22:24 — forked from henrikbjorn/php.rb
Homebrew formula for PHP 5.4 RC5
require 'formula'
def mysql_installed?
`which mysql_config`.length > 0
end
def postgres_installed?
`which pg_config`.length > 0
end
@bc-zz
bc-zz / jquery.navi.js
Created July 22, 2010 21:13
A simple modal plugin for jQuery
// Modals - Navi 0.1
// Usage:
// $.navi()
// <a href="{fallback_url}" data-modal="{id_of_modal}">Hey! Listen!</a>
jQuery.navi = function(){
jQuery('[data-modal]').click(function(e){
e.preventDefault()
var modal = jQuery('#' + $(this).attr('data-modal'))