With Puppet:
puppet module install rtyler-jenkins
puppet apply -v -e "include jenkins"
| # Heavily depends on: | |
| # libqrencode (fukuchi.org/works/qrencode/) | |
| # paperkey (jabberwocky.com/software/paperkey/) | |
| # zbar (zbar.sourceforge.net) | |
| # Producing the QR codes: | |
| # Split over 4 codes to ensure the data per image is not too large. | |
| gpg --export-secret-key KEYIDGOESHERE | paperkey --output-type raw | base64 > temp | |
| split temp -n 4 IMG | |
| for f in IMG*; do cat $f | qrencode -o $f.png; done |
| #!/bin/sh | |
| # Setup dynamic dns on Route 53 for aws ec2 (CNAME) | |
| # | |
| # Modified from Johan Lindh's script | |
| # | |
| # Script requirements: | |
| # | |
| # wget | |
| # grep |
| // The Grid | |
| #grid { | |
| .core (@gridColumnWidth: @gridColumnWidth , @gridGutterWidth: @gridGutterWidth) { | |
| .span (@columns) { | |
| width: (@gridColumnWidth * @columns) + (@gridGutterWidth * (@columns - 1)); | |
| } |
| <?php | |
| use Everyman\Neo4j\Node, | |
| Everyman\Neo4j\Index; | |
| class Actor | |
| { | |
| public $id = null; | |
| public $name = ''; | |
| protected $node = null; |
| package org.bsnyder.activemq.jmx; | |
| import java.io.IOException; | |
| import java.net.MalformedURLException; | |
| import java.util.HashMap; | |
| import java.util.Iterator; | |
| import java.util.Map; | |
| import java.util.Set; | |
| import java.util.logging.Level; | |
| import java.util.logging.Logger; |