This file contains hidden or 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
| apt-get update | |
| apt-get dist-upgrade --yes | |
| apt-get install lsb-release ca-certificates --yes | |
| wget https://apt.puppetlabs.com/puppetlabs-release-pc1-jessie.deb | |
| dpkg -i puppetlabs-release-pc1-jessie.deb | |
| apt-get update | |
| apt-get install puppet-agent --yes | |
| /opt/puppetlabs/bin/puppet agent --test --waitforcert 30 |
This file contains hidden or 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
| // Paste in console | |
| var clickBestThing = function(){ | |
| var things = [...document.querySelectorAll("#manufacture__container > div")].map(function(e){ | |
| var res = {e}; | |
| [...e.getElementsByTagName("span")].map(function(s){ | |
| res[s.id] = +s.innerText.replace(/[^0-9]/g, '') | |
| }) | |
| if(e.id === "item__spudGun" || e.id === "item__potatoLauncher") res.powerGain *= 1000; | |
| res.score = res.cost * (powerGain + res.powerGain)/res.powerGain; |
This file contains hidden or 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/sh | |
| slapcat -n0 -F /etc/ldap/ldif > /tmp/schema.ldif | |
| #warning, ignores errors | |
| slapadd -n0 -F -c /etc/ldap/slapd.d -l /tmp/schema.ldif |
NewerOlder