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
#!/usr/bin/env ruby -w | |
USER = `whoami`.chomp | |
SOURCE = "/Users/#{USER}/Library/Application Support/" | |
TARGET = "/Users/#{USER}/Google Drive/Backups/Steam/in Application Support/" | |
class String | |
def shell_safe | |
self.gsub(/(\s)/, '\\\\\1') |
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
@color: #f88; | |
/* LESS admits that their greyscale function doesn't respect relative lightness */ | |
.bad_grayscale { | |
original-color: @color; | |
desaturated: desaturate(@color, 100%); | |
greyscaled: greyscale(@color); // synonymous | |
} |
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
// ---- | |
// libsass (v3.2.4) | |
// ---- | |
// Palette | |
$dark-color: #000; | |
$light-color: #fff; | |
// Theme mixins |
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
// Palette | |
$dark-color: #000; | |
$light-color: #fff; | |
// Theme mixins | |
@mixin sg_themed { | |
$foreground-color: $dark-color; | |
$background-color: $light-color; |
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
.base_nav_item { | |
display: -webkit-box; | |
display: -moz-box; | |
-webkit-box-orient: vertical; | |
-moz-box-orient: vertical; | |
-webkit-box-align: center; |
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
$nav_light_color: white; | |
$nav_dark_color: black; | |
%base_nav_item { | |
color: darken($nav_light_color, 25); |
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
// ---- | |
// libsass (v3.2.5) | |
// ---- | |
$nav_light_color: white; | |
$nav_dark_color: black; | |
%base_nav_item { | |
color: darken($nav_light_color, 25); |
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
atom-text-editor::shadow { | |
.source { | |
font-family: FiraCode-Retina; | |
text-rendering: optimizeLegibility; | |
} | |
.string.quoted, | |
.string.regexp { | |
-webkit-font-feature-settings: "liga" off, "calt" off; | |
} |
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
atom-text-editor.editor { | |
.syntax--punctuation.syntax--whitespace.syntax--comment.syntax--leading, | |
.syntax--source { | |
font-family: FiraCode-Retina; // https://github.com/tonsky/FiraCode | |
text-rendering: optimizeLegibility; | |
letter-spacing: 0; | |
} | |
.syntax--string.quoted, | |
.syntax--string.regexp { |
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
#!env bash | |
# NOTE: based on | |
# https://coderwall.com/p/fkk2lw/bash-script-to-clean-up-obsolete-git-branches | |
# Changes made to first only remove branches you've checked out, | |
# then 2nd repo-wide check. | |
# also added human-readable output and prompts | |
# This has to be run from master | |
git checkout master |
OlderNewer