This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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, { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Simple Alert Function | |
alert () { | |
tput bold; tput setaf 11; echo "$1"; tput sgr0; | |
} | |
# ============================================================================== | |
# START SETUP |
NewerOlder