Skip to content

Instantly share code, notes, and snippets.

View jeff-mccarthy's full-sized avatar

Jeff McCarthy jeff-mccarthy

View GitHub Profile
@jeff-mccarthy
jeff-mccarthy / tabs.njx
Created May 7, 2018 20:54
Bootstrap Tabs Macro
{#
* Import
* {% import 'components.njx' as component %}
#}
{#
* Tabs (using bootstrap)
* Build out a bootstrap navigation and a tab content area
* @param {array} tabs = ['tab1', 'tab2', etc] | builds out nav using array values as ids and the text for that nav item
* @param {int} active = 1 | index of tab nav item that will be active
@jeff-mccarthy
jeff-mccarthy / stockimages.py
Created April 26, 2018 14:06
A simple Python script to download a requested number of random stock images at a specific dimension
# Imports
import os
import urllib
# Welcome message
print('Download random stock images from picsum.photos\n(* images download to the current directory)')
# Paths
# get current working directory
cwd = os.getcwd()
@jeff-mccarthy
jeff-mccarthy / _spacers.scss
Last active May 7, 2018 20:57
Generated by SassMeister.com.
// ----
// Sass Spacer Generator
//
// Output a list of spacers with a consistent multiplier
// to standardize spacing of margins, padding, etc.
// ----
$spacer-size: 8px;
@function spacer($multiplier) {
@jeff-mccarthy
jeff-mccarthy / settings.json
Created May 11, 2017 13:56
Material Skin for VS Code
"workbench.colorCustomizations": {
"activityBar.foreground": "#B0BEC5",
"activityBar.background": "#263238",
"activityBarBadge.foreground": "#F5F5F5",
"activityBarBadge.background": "#26A69A",
"sideBar.background": "#263238",
"sideBarTitle.foreground": "#B0BEC5",
"sideBarSectionHeader.background": "#263238",