Skip to content

Instantly share code, notes, and snippets.

View stowball's full-sized avatar

Matt Stow stowball

View GitHub Profile

A Strategy Guide To CSS Custom Properties

Low-hanging fruit edit suggestions

Dynamic vs. Static

  • "Variables in preprocessors are static, whereas custom…" > "Variables in preprocessors are static, whereas custom…"
  • "Where CSS is concerned(,) static means…" > "Where CSS is concerned(,) static means…"
  • "and determine it’s output" > "and determine its output"

Note: Multiple classes can be applied at once.

@stowball
stowball / array-from.js
Last active April 23, 2018 09:06
Simple Array.from polyfill
Array.from = Array.from || function (object) {
return [].slice.call(object);
};
@stowball
stowball / _browser.scss
Created March 26, 2018 02:14
Detect IE 11 and Edge in (S)CSS
@mixin browser-ie11 {
@media (-ms-high-contrast: active), (-ms-high-contrast: none) {
@content;
}
}
@mixin browser-edge {
@supports (-ms-user-select: none) {
@content;
}
@stowball
stowball / _str-replace.scss
Created February 26, 2018 04:20
Converting an inline SVG to a background image with Sass
@function str-replace($string, $search, $replace: "") {
$index: str-index($string, $search);
@if ($index) {
@return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
}
@return $string;
}
@stowball
stowball / pre-push
Last active February 17, 2018 11:13
Git Hook to lint committed JS (with eslint) and SCSS (with sass-lint) *only* before pushing
#!/bin/sh
# Lint committed JS (with eslint) and SCSS (with sass-lint) *only* before pushing
# .git/hooks/pre-push
# Update clientPath as necessary to point to where your JS and SCSS files are located
clientPath="Source/NRL.Web/Client"
eslint=$PWD/$clientPath/node_modules/.bin/eslint
sasslint=$PWD/$clientPath/node_modules/.bin/sass-lint
@stowball
stowball / convert-svgs.js
Created October 24, 2017 09:40
A node script to convert a a folder of SVGs in to React Native SVGs for https://github.com/stowball/react-native-svg-icon
/*
Usage: npm run convert-svgs <type:icons|logos>
*/
/* eslint-disable no-console, no-shadow */
const exec = require('child_process').exec;
const fs = require('fs');
const type = process.argv[2] || 'icons';
const path = `./src/assets/svg/${type}`;
const requestInterval = (callback, delay = 150) => {
const dateNow = Date.now;
let start = dateNow();
let stop = false;
const intervalFunc = () => {
if (!(dateNow() - start < delay)) {
start += delay;
callback();
}
@stowball
stowball / style.less
Last active September 13, 2017 06:13
Display full path for index.js in Atom Nuclide's Open Files panel
.nuclide-file-tree-open-files-list {
.file.list-item[data-name="index.js"] {
&::after {
content: attr(data-path);
direction: rtl;
overflow: hidden;
position: absolute;
right: -4px;
width: ~"calc(100% - 56px)";
}

Single param arrow functions. Always use ()

const a = (a1) => {
  const a11 = a1;

  return a11;
};

const b = b1 =&gt; b1;