I hereby claim:
- I am kcollasarundell on github.
- I am kca (https://keybase.io/kca) on keybase.
- I have a public key whose fingerprint is F947 B5C6 6134 9BCD FD51 6711 7A77 20DD 1C11 48E2
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/python | |
| import random | |
| import crypt | |
| import sys | |
| ALPHABET = "0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" | |
| rounds = 25412 |
| { | |
| "metadata": { | |
| "name": "fraus" | |
| }, | |
| "nbformat": 3, | |
| "nbformat_minor": 0, | |
| "worksheets": [ | |
| { | |
| "cells": [ | |
| { |
| ~ [ dig myki.com.au. @ns2.ntsprod.com. any | |
| ; <<>> DiG 9.9.3-rpz2+rl.13214.22-P2-Ubuntu-1:9.9.3.dfsg.P2-4ubuntu1.1 <<>> myki.com.au. @ns2.ntsprod.com. any | |
| ;; global options: +cmd | |
| ;; Got answer: | |
| ;; ->>HEADER<<- opcode: QUERY, status: NOERROR, id: 24696 | |
| ;; flags: qr aa rd ra; QUERY: 1, ANSWER: 7, AUTHORITY: 0, ADDITIONAL: 6 | |
| ;; OPT PSEUDOSECTION: | |
| ; EDNS: version: 0, flags:; udp: 1280 |
| #!upstart | |
| # An example upstart script for running the ghost blog as a daemon with | |
| # logging and process management via upstart | |
| # You will need to set the environment variables noted below to conform to | |
| # your use case, and should change the description. | |
| description "GHOST blog" |
| description "Starting a quick and dirty killingfloor server with upstart" | |
| #put this file into /etc/init/ | |
| #Start the service when the host has network and filesystems | |
| start on (local-filesystems and net-device-up and runlevel [2345]) | |
| stop on runlevel [016] | |
| #the magic restart | |
| respawn |
| So 3JT asked about the use of ; in https://forge.puppetlabs.com/nodes/php/0.6.1 | |
| it all comes down to making multiple resource declarations in a single block vs multiple blocks | |
| With multiple declarations ; indicates the end of a resource | |
| This | |
| class { | |
| 'php::cli': | |
| ensure => $php_version; | |
| 'php::apache': |
| [include] | |
| path = .gitlocal | |
| [alias] | |
| lol = log --graph --decorate --pretty --oneline --abbrev-commit | |
| lola = log --graph --decorate --pretty=oneline --abbrev-commit --all | |
| hlog = log --pretty=format:'The author of %h was %an, %ar%nThe title was >>%s<<%n' | |
| unstage = reset HEAD -- | |
| tree = log --graph --oneline --pretty=oneline --all | |
| treeall = log --oneline --decorate --all --decorate --graph | |
| lg = log --graph --pretty=format:'%C(red)%h%C(reset) -%C(yellow)%d%C(reset) %s %C(green)(%cr) %C(blue)<%an>%C(reset)' --abbrev-commit --date=relative |
| #!/bin/bash | |
| USER=`whoami` | |
| DATE=`date --iso-8601=minute` | |
| REPONAME= | |
| PREFIX="$REPONAME_files_attempt" | |
| PATCHFILE="${PREFIX}-${DATE}.patch" | |
| REPODIR="/opt/$REPONAME" | |
| MAINREPO="SOURCEGOESHERE" |
| this |