This talk is also known as ‘PostMortem Facilitation: Theory and Practice of "New View" Debriefings’ Background reading for attendees
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
ok: [localhost] => { | |
"var": { | |
"linode": { | |
"changed": true, | |
"instance": { | |
"fqdn": "liXXXXXX.members.linode.com", | |
"id": LINODE_ID, | |
"ipv4": "LINODE_PUBLIC_IP", | |
"name": "LINODE_NAME", | |
"private": [], |
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
#!/bin/bash | |
# Based on the instructions in | |
# https://bucardo.org/wiki/Bucardo/Installation | |
# -------- configuration: Variables | |
BUCARDO_VERSION='5.4.1' | |
DOWNLOAD_URL="http://bucardo.org/downloads/Bucardo-${BUCARDO_VERSION}.tar.gz" | |
# ------------------------------- | |
TEMP_FILE="/tmp/${RANDOM}.tar.gz" |
(Trinity College Dublin (TCD) on a MACOS Yosemite)
- Download the zip file into Downloads folder
- Extract the zip file (Downloads/Bradford_Dissolvable_Agent.app)
- Open a terminal windown and run the command
sudo Downloads/Bradford_Dissolvable_Agent.app/Contents/MacOS/DissolvableAgent
I hereby claim:
- I am arturmartins on github.
- I am arturmartins (https://keybase.io/arturmartins) on keybase.
- I have a public key whose fingerprint is 5AD7 E464 F268 A96C A0DC B5B9 0BF4 27DB 2701 2336
To claim this, I am signing this object:
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
-- show running queries (pre 9.2) | |
SELECT procpid, age(query_start, clock_timestamp()), usename, current_query | |
FROM pg_stat_activity | |
WHERE current_query != '<IDLE>' AND current_query NOT ILIKE '%pg_stat_activity%' | |
ORDER BY query_start desc; | |
-- show running queries (9.2) | |
SELECT pid, age(query_start, clock_timestamp()), usename, query | |
FROM pg_stat_activity | |
WHERE query != '<IDLE>' AND query NOT ILIKE '%pg_stat_activity%' |
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
#!/bin/bash | |
# Requirements: | |
# - homebrew: https://brew.sh/ | |
# - homebrew tap: buo/cask-upgrade - https://github.com/buo/homebrew-cask-upgrade | |
# - homebrew mas (Mac App Store command-line interface - https://github.com/mas-cli/mas) | |
# | |
# Install the requirements by running: | |
# brew tap buo/cask-upgrade && brew install mas | |
# CONFIG: |
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
// SPDX-License-Identifier: MIT | |
pragma solidity 0.8.20; | |
// This defines a contract named “HelloWorld”. | |
// | |
// A contract is a collection of functions and data (its state). | |
// Once deployed, a contract will exist at an address on the Ethereum blockchain. | |
contract HelloWorld { | |
// This is a public function that returns the string “Hello World”. |
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
pragma solidity 0.8.20; | |
contract HelloWorld2{ | |
string userInput; | |
function set(string memory finalValue) public | |
{ | |
userInput = finalValue; | |
} |
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
#!/bin/bash | |
# Utility to download latest etcd version for linux | |
SYSTEM_VERSION="linux-amd64" | |
fail(){ | |
echo "[${0##*/}]: FATAL: ${@}" | |
exit 1 | |
} |
OlderNewer