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
# This is Git's per-user configuration file. | |
[user] | |
name = {{ YOUR NAME }} | |
email = {{ YOUR EMAIL }} | |
[alias] | |
au = add -u | |
ca = commit --amend --no-edit | |
cm = commit -m | |
co = checkout |
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
<# | |
.Synopsis | |
Packs and deploys a Squirrel.Windows app | |
.DESCRIPTION | |
Nuget Pack and Squirrel.Windows Releasify. The parameters taken will then run the --signWithParams flag which signs your executables with the given certificate. | |
.EXAMPLE | |
Deploy-SquirrelApp -NuSpec C:\Temp\MyApp.nuspec -OutputDir .\bin\Release\ -ReleaseDir C:\Network\Folder\ -CertificatePath .\Certificate.pfx | |
#> | |
function Deploy-SquirrelApp { | |
[CmdletBinding()] |
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
function BinaryToText(inputString) { | |
return inputString | |
.replace(/\s/g,'') | |
.match(/.{1,8}/g) | |
.map( | |
function(byte) { | |
return String.fromCharCode(parseInt(byte,2)); | |
} | |
) | |
.join(''); |
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) | |
// ---- | |
/** | |
* Responsive widths | |
* @namespace u- Utility | |
* @url http://csswizardry.com/2015/03/more-transparent-ui-code-with-namespaces/ | |
*/ |
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
// ---- | |
// Sass (v3.3.14) | |
// Compass (v1.0.3) | |
// ---- | |
$width-numerator: one, two, three, four, five, six, seven, eight, nine, ten, eleven, twelve, thriteen, fourteen, fifteen, sixteen; | |
$width-denominator: whole, half, third, quarter, fifth, sixth, seventh, eighth, ninth, tenth, eleventh, twelfth, thirtheenth, fourteenth, fifteenth, sixteenth; | |
$width-denominators: whole, halfs, thirds, quarters, fifths, sixths, sevenths, eighths, ninths, tenths, elevenths, twelfths, thirtheenths, fourteenths, fifteenths, sixteenths; | |
$screen-breakpoint-labels: xs, sm, md, lg, xl !default; |
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 | |
echo | |
echo Deleting all .DS_Store and ._* files that Mac puts all over your system | |
echo | |
find . -name ".DS_Store" -print0 | xargs -0 rm -rf | |
find . -name "._*" -print0 | xargs -0 rm -rf | |
echo | |
echo " _ _ _ ____ _ " | |
echo " / \ | | | | _ \ ___ _ __ ___| |" |
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 | |
# modify these two variables to be the width and height of your desired alternates | |
thumbbox=250 | |
thumbwidth=250 | |
thumbheight=250 | |
coverbox=750 | |
coverwidth=750 | |
coverheight=300 |