A Nanoc filter for compiling Sass stylesheets with the
sassc
gem.
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 | |
docker run \ | |
--interactive \ | |
--tty \ | |
--rm \ | |
--volume ~/.aws:/root/.aws \ | |
--volume $(pwd):/aws \ | |
--network=host \ | |
--env "$(env | grep AWS_ | cut -f1 -d=)" \ |
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
add_newline = false | |
[git_status] | |
disabled = true |
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
@propertyWrapper | |
struct RawKeyedCodableDictionary<Key, Value>: Codable where Key: Hashable & RawRepresentable, Key.RawValue: Codable & Hashable, Value: Codable { | |
var wrappedValue: [Key: Value] | |
init() { | |
wrappedValue = [:] | |
} | |
init(wrappedValue: [Key: Value]) { | |
self.wrappedValue = wrappedValue |
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
global _preferences, _safari, _systemEvents, _passwords, _passwordsLocked, _passwordPrompt | |
-- BEGIN customization points | |
--- Change the following global variables as needed for localization | |
set _preferences to "Preferences…" | |
set _safari to "Safari" | |
set _systemEvents to "System Events" | |
set _passwords to "Passwords" |
I hereby claim:
- I am jarrodldavis on github.
- I am jarrodldavis (https://keybase.io/jarrodldavis) on keybase.
- I have a public key ASBAtQQuQI2ynPaz1eD4iwP30E4aTZUYu4rbYSqXrNcFOQo
To claim this, I am signing this object:
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
var game = (function() { | |
function generateHexColor() { | |
return '#' + Math.floor(Math.random() * 16777215).toString(16); | |
} | |
var getQueryParam = (function() { | |
var params = {}; | |
var query = location.search.substr(1); | |
var _query = query.split("&"); |