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
if [[ jq '.source | test("github")' metadata.json ]] && [[ ! git remote -v | grep -F 'upstream' ]]; then | |
git remote add upstream $(jq -r .source metadata.json | sed -e 's#git@\|git://\|http://#https://#' | sed -e 's#m:#m/#') | |
fi |
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
somekey: &REFERENCE | |
subkey: value | |
otherkey: | |
thing: | |
<<: *REFERENCE | |
stuff: value |
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
[20:05.44] -irc.freenode.net- *** Attempting to connect to irc.freenode.net (94.125.182.252) on port 6667 | |
[20:05.44] -irc.freenode.net- Sending User Registration Information | |
[20:05.45] --adams.freenode.net-- *** Looking up your hostname... | |
[20:05.45] --adams.freenode.net-- *** Checking Ident | |
[20:05.45] --adams.freenode.net-- *** No Ident response | |
[20:05.45] --adams.freenode.net-- *** Couldn't look up your hostname | |
[20:05.45] -irc.freenode.net- Capabilities supported: account-notify extended-join identify-msg multi-prefix sasl | |
[20:05.45] -irc.freenode.net- Capabilities requested: account-notify extended-join multi-prefix | |
[20:05.45] -irc.freenode.net- Capabilities acknowledged: account-notify extended-join multi-prefix | |
[20:05.45] -adams.freenode.net- Welcome to the freenode Internet Relay Chat Network FriedBob |
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
No implemntation of method: :-plan-sql of protocol: #'puppetlabs.puppetdb.query-eng.engine/SQLGen found for class: nil |
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 class foos a hash. | |
# | |
# @param foo The hash to be food. | |
# Example format: | |
# acquaintance_name: | |
# command: /path/to/command | |
# frequency: rarely | |
# oneoff: true | |
# @param bar Where to meet. | |
# |
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 class manages foo | |
# | |
# @summary Some summary text | |
# | |
# @param foo_1 Descxription | |
# | |
# **NOTE** This is an important note! | |
# | |
# @note This is an important note! | |
# |
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
# <snip> | |
# @param install_dirs | |
# * [Stdlib::Absolutepath] staging | |
# * [Stdlib::Absolutepath] home | |
# * [Stdlib::Absolutepath] install | |
# * [Stdlib::Absolutepath] log | |
# @param param_foo | |
# * [Stdlib::Absolutepath] install_dirs | |
# <snip> | |
# |
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
--- | |
heroes: | |
Trickster: | |
Grade: Gold | |
Level: 58 | |
Rank: 7 | |
Prima Donna: | |
Grade: Gold | |
Level: 58 | |
Rank: 7 |
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
I was trying to sign up, and when I went to enter a password it complained it wasn't valid. I had entered a mixed case alphanumeric | |
password with 100 bits of entropy (this is near impossible to brute force) , but it seems to be forcing me to use a mixed cased | |
alphabetic password that has to be exactly 8 characters long (this winds up being a very weak password with only 40 bits of entropy, | |
can be brute forced in as little as 5 hours with modern hardware). | |
How do you expect me to trust you with my medical and personal information when you security is so lax? |
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
# Class for managing local users | |
class base::user_locals ( | |
hash $users = {}, | |
){ | |
$users.each | $user_name, $attrs | { | |
user { | |
$user_name: | |
* => $attrs | |
} |