Skip to content

Instantly share code, notes, and snippets.

View callaginn's full-sized avatar
😎
Coding

Stephen Ginn callaginn

😎
Coding
View GitHub Profile
@callaginn
callaginn / shopify-theme-exporter
Last active June 6, 2019 18:59
Download docs and code for all Shopify themes for further analysis. Use with caution; rate limits and latest version NOT tested.
# SHOPIFY THEME EXPORTER
# This script downloads docs / code for ALL Shopify themes for further analysis.
# For example, you can search the downloaded code for framework-specific classes
# like "col-md-", "btn-outline", etc.
# NOTE: Use with caution or you'll be rate limited! Latest version not tested.
baseUrl="https://themes.shopify.com"
destPath="$HOME/desktop/themes-shopify"
/* pickadate v5.0.0-alpha.2, @license MIT */
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, global.pickadate = factory());
}(this, function () { 'use strict';
function _defineProperty(obj, key, value) {
if (key in obj) {
Object.defineProperty(obj, key, {
/* pickadate v5.0.0-alpha.2, @license MIT */
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, global.pickadate = factory());
}(this, function () { 'use strict';
function styleInject(css, ref) {
if ( ref === void 0 ) ref = {};
var insertAt = ref.insertAt;
@callaginn
callaginn / setup.sh
Last active January 19, 2021 16:14
Capture Setup Info / Generate an SSH Key for Pulling Private Setup Repo
#!/bin/bash
# Simple Alert Function
alert () {
tput bold; tput setaf 11; echo "$1"; tput sgr0;
}
# ==============================================================================
# START SETUP