Skip to content

Instantly share code, notes, and snippets.

View twodarek's full-sized avatar
🚨
#honkernetes

Thomas Wodarek twodarek

🚨
#honkernetes
View GitHub Profile

Lazy consensus

The idea of lazy consensus can basically be described as: “Silence is consent”. It is used as a decision making tool in larger groups of individuals.

The concept

The main application areas of the lazy consensus are online communities where e.g. open-source software, ideas, or services are being developed. In order to be able to proceed with the work after posting the latest steps without having to wait for the majority to express their consent, the lazy consensus is assumed. That means, the posted step, feature, or idea is considered to be accepted if none of the community states otherwise. This way, the work can continue without unnecessary interruptions, whilst considering all reasonable objections.

@twodarek
twodarek / attributes.rb
Created April 19, 2019 04:17 — forked from lizthegrey/attributes.rb
Hardening SSH with 2fa
default['sshd']['sshd_config']['AuthenticationMethods'] = 'publickey,keyboard-interactive:pam'
default['sshd']['sshd_config']['ChallengeResponseAuthentication'] = 'yes'
default['sshd']['sshd_config']['PasswordAuthentication'] = 'no'
@twodarek
twodarek / docker-compose-coreos.sh
Last active December 14, 2016 04:41 — forked from sourcec0de/docker-compose-coreos.sh
Install docker compose on coreos
sudo su -
mkdir -p /opt/bin
curl -L https://github.com/docker/compose/releases/download/1.8.0/docker-compose-`uname -s`-`uname -m` > /opt/bin/docker-compose
chmod +x /opt/bin/docker-compose
exit