Skip to content

Instantly share code, notes, and snippets.

View bryanjvolz's full-sized avatar
🍕

Bryan V bryanjvolz

🍕
View GitHub Profile
@bryanjvolz
bryanjvolz / UpperCase.workflow
Created March 16, 2018 01:23
Setup an all uppercase text action for Mac in Automator
on run {input, parameters}
set upperCaseString to ¬
(do shell script ("echo " & input & " | tr a-zäáà A-ZÄÁÀ;"))
return upperCaseString
end run
.wrap--break-all {
word-break: break-all;
word-wrap: break-word;
}
.wrap--break-word {
word-break: break-word;
word-wrap: break-word;
}
{
"bold_folder_labels": true,
"caret_style": "phase",
"color_scheme": "Packages/User/SublimeLinter/AnarchistEighties (SL).tmTheme",
"font_size": 17.0,
"highlight_line": true,
"hot_exit": true,
"ignored_packages":
[
"JSLint",
{
"window.zoomLevel": 0,
"workbench.colorTheme": "Seti",
"workbench.fontSize": 10,
"editor.fontSize": 16,
"editor.tabSize": 2,
"editor.wordWrap": "on",
"editor.tabCompletion": true,
"editor.fontFamily": "'Source Code Pro', Menlo, Monaco, 'Courier New', monospace",
"editor.wordWrap":"on",
@bryanjvolz
bryanjvolz / iterm prefs
Created November 13, 2017 02:55
iterm2 profile
{
"Working Directory" : "----------",
"Prompt Before Closing 2" : 0,
"Selected Text Color" : {
"Green Component" : "0",
"Blue Component" : "0",
"Red Component" : "0"
},
"Rows" : 25,
"Ansi 11 Color" : {

Keybase proof

I hereby claim:

To claim this, I am signing this object:

@bryanjvolz
bryanjvolz / spacing-mixin.scss
Created March 10, 2017 21:29
SCSS spacing mixin
$base-spacing-unit : 1.6rem;
$half-spacing-unit : ($base-spacing-unit / 2);
$double-spacing-unit : ($base-spacing-unit * 2);
// @type = margin or padding
// @direction = top, right, bottom, left
// @amount = 2x, half
@mixin spacing($type : margin, $direction : top, $amount : "2x") {
@if($amount == "2x") {
@bryanjvolz
bryanjvolz / spacing-mixin.less
Created March 10, 2017 21:19
Less spacing mixin
## LESS
@base-spacing-unit : 1.6rem;
@half-spacing-unit : (@base-spacing-unit / 2);
@double-spacing-unit : (@base-spacing-unit * 2);
// @type = margin or padding
// @direction = top, right, bottom, left
// @amount = 2x, half