This file contains 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
// A demonstration of how to write SASS styling for multi-level lists | |
// List types vary per level, and list counters are styleable | |
// Owes greatly to this: http://stackoverflow.com/a/15253672/316733 | |
ol { | |
counter-reset: li; | |
margin-left: .5em; | |
li { | |
counter-increment: li; |
This file contains 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
[CmdletBinding (SupportsShouldProcess = $false)] | |
param ( | |
$Mailboxes = @(), | |
[switch]$FormatTable = $true | |
) | |
begin { | |
$MailboxesLocationsPermissions = @() | |
$LocationsPermissions = @() | |
} |
This file contains 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
// Material Design Colour Palette | |
// by Brandon Himpfen http://www.himpfen.com/ | |
// Red | |
$md-red-50: #ffebee; | |
$md-red-100: #ffcdd2; | |
$md-red-200: #ef9a9a; | |
$md-red-300: #e57373; | |
$md-red-400: #ef5350; | |
$md-red-500: #f44336; |
This file contains 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
"*": | |
"exception-reporting": | |
userId: "fcfca3bd-4ecf-a3fe-00d2-f35a2ce52b59" | |
welcome: | |
showOnStartup: false | |
core: | |
audioBeep: false | |
projectHome: "/Users/tohuw/Projects" | |
themes: [ | |
"unity-ui" |
This file contains 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
# jekyll-readtime | |
# 2015 Ron Scott-Adams, Licensed under MIT: | |
# https://tldrlegal.com/license/mit-license | |
# Original work: https://gist.github.com/zachleat/5792681 | |
# Outputs the estimated time the average person might take to read the content. | |
# 200 is a round figure based on estimates gathered from various studies. | |
# http://www.ncbi.nlm.nih.gov/pubmed/18802819 | |
# Usage: {{ page.content | readtime }} |
This file contains 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 | |
## Fun with 'Find': | |
## A small collection of one-liners demonstrating the power of find. | |
# Find all files larger than a given size | |
find /foo/bar -type f -size +1024k | |
# Recursively rename files matching a pattern | |
find -name '*.JPG' -exec rename .JPG .jpg {} \; |
This file contains 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
{ | |
"auto_complete_commit_on_tab": true, | |
"auto_complete_delay": 500, | |
"auto_indent": true, | |
"auto_match_enabled": true, | |
"binary_file_patterns": | |
[ | |
"*.woff", | |
"*.eot", | |
"*.ttf", |