Skip to content

Instantly share code, notes, and snippets.

View EldonMcGuinness's full-sized avatar

Eldon McGuinness EldonMcGuinness

View GitHub Profile
@EldonMcGuinness
EldonMcGuinness / jquery.qsParameters.js
Last active February 21, 2016 17:24
JQuery Querystring Parser
(function ( $ ) {
$.qsParameters = function(str) {
var qso = {};
var qs = (str || document.location.search)
// Check for an empty querystring
if (qs == ""){
return qso;
}
@EldonMcGuinness
EldonMcGuinness / Jekyll.sublime-build
Last active August 29, 2015 14:21
Sublime Text 3 - Build Jekyll Site and Publish to Directory
{
"cmd": ["jekyll","b"],
"shell": true,
"working_dir": "${project_path:${folder}}",
"selector": "source.markdown",
"variants": [
{
"name": "Copy site to Live Directory",
"cmd": ["cp", "-fuR", "SOURCE_DIR", "DEST_DIR"],