Skip to content

Instantly share code, notes, and snippets.

View adrazich's full-sized avatar

Anna Lewis adrazich

View GitHub Profile
@adrazich
adrazich / install-oracle-oci8-php.md
Last active February 11, 2020 18:11
Oracle OCI8 for PHP on OSX Installation Guide
@adrazich
adrazich / jquery-extensions.js
Created April 11, 2014 14:30
jQuery Extensions
jQuery.extend(jQuery.fn, {
hasParent: function(p){
"use strict";
return this.filter(function(){
return $(p).find(this).length;
}).length;
}
});