MARC Record to JSON Converter

May, 2017
Easily convert your MARC records into JSON format, which is compatible with most modern APIs and other thingamabobers.May, 2017
Easily convert your MARC records into JSON format, which is compatible with most modern APIs and other thingamabobers.Nov, 2016
Animations @mixin keyframes($name) { @-ms-keyframes #{$name} { @content } @-o-keyframes #{$name} { @content } @-moz-keyframes #{$name} { @content } @-webkit-keyframes #{$name} { @content } @keyframes #{$name} { @content } } @mixin animation($val) { msanimation…Jul, 2016
This is a basic plugin for jQuery which adds an effect for slowly fading in text. There may be other plugins out there that have similar functionality, but this was an attempt to try…Jul, 2016
Update April 2018 Sigh, the things we learn as we go… This is actually way easier than I made it before. In fact, it so easy it doesn’t really need these wrapper functions around…Jul, 2016
A small snippet creating a shortcode which will display any widget.Jun, 2016
var parseQueryParameters = function(){ var queryString = window.location.search; var queries = {}; if(queryString=='') return queries; var q = queryString.replace('?','').split('&'); q.forEach(function(pair){ var a = pair.split('='); if(typeof a[1]==='undefined') a.push(''); queries[a[0]] = a[1]; }); return queries;…Dec, 2014
Most of the work of setting up an ajax action in the WordPress environment happens in php-land. The PHP File Register & enqueue your script. In this example, I’ll assume the script has already…