👀📎 It looks like you're preparing to MC a conference...
🚨 GIANT DISCLAIMER: This stuff is far from authoritative. But it's what I think works for me, and what I enjoy in an MC when I'm attending a conference.
| # how to fix the error: | |
| # warning: reattach-to-user-namespace: unsupported new OS, trying as if it were "10.10" Mojave | |
| # replace | |
| bind-key -T copy-mode-vi 'y' send -X copy-pipe "reattach-to-user-namespace pbcopy" | |
| # with | |
| bind-key -T copy-mode 'y' send -X copy-pipe-and-cancel "pbcopy" |
| export TERM=xterm-256color | |
| export CLICOLOR=1 | |
| export ZSH=$HOME/.oh-my-zsh | |
| ZSH_THEME='asap' | |
| plugins=(brew git npm node osx yarn zsh-autosuggestions zsh-syntax-highlighting) |
| #!/bin/bash | |
| HOSTNAME="asapzacy" | |
| TIMEZONE="America/Los_Angeles" | |
| # Close any open System Preferences panes, to prevent them from overriding | |
| # settings we’re about to change | |
| osascript -e 'tell application "System Preferences" to quit' | |
| # Ask for the administrator password upfront |
When building a service, we have a responsibility to define some baseline agreements as to the service’s expected uptime and performance. This document focuses on the various terminology that we use to define these values.
Service Level Indicator (SLI)
What the service owner has chosen to measure progress towards their goal.
e.g. What is good/bad service for your users.
Service Level Objective (SLO)
What the service owner’s goal is for the given indicator.
This is my summary of "The A method for recruiting" by Geoff Smart and Randy Street.
"I feel great ! I have a fantastic team working with me now. [...] It's all because I have a team of A players."
| var elasticsearch = require('elasticsearch'); | |
| var elastic = new elasticsearch.Client({ | |
| host: 'localhost:9200', | |
| log: 'info' | |
| }); | |
| var kafka = require('kafka-node'), | |
| HighLevelConsumer = kafka.HighLevelConsumer, | |
| client = new kafka.Client(), | |
| consumer = new HighLevelConsumer( |
| #!/usr/bin/env node | |
| // Channel ID is on the the browser URL.: https://mycompany.slack.com/messages/MYCHANNELID/ | |
| // Pass it as a parameter: node ./delete-slack-messages.js CHANNEL_ID | |
| // CONFIGURATION ####################################################################################################### | |
| const token = 'SLACK TOKEN'; | |
| // Legacy tokens are no more supported. | |
| // Please create an app or use an existing Slack App |
If you want to use the latest available version of Squid, you can Build a Squid anonymous proxy from source code
FWIW: I (@rondy) am not the creator of the content shared here, which is an excerpt from Edmond Lau's book. I simply copied and pasted it from another location and saved it as a personal note, before it gained popularity on news.ycombinator.com. Unfortunately, I cannot recall the exact origin of the original source, nor was I able to find the author's name, so I am can't provide the appropriate credits.