I hereby claim:
- I am jleeothon on github.
- I am jleeothon (https://keybase.io/jleeothon) on keybase.
- I have a public key ASDMS3AwK0kLSMJI5DMviWfRGLnrGmTCeIPaJarITbGjGgo
To claim this, I am signing this object:
## githubConfigUrl is the GitHub url for where you want to configure runners | |
## ex: https://github.com/myorg/myrepo or https://github.com/myorg | |
githubConfigUrl: "https://github.com/wunderflats" | |
## githubConfigSecret is the k8s secrets to use when auth with GitHub API. | |
## You can choose to use GitHub App or a PAT token | |
## githubConfigSecret: | |
### GitHub Apps Configuration | |
## NOTE: IDs MUST be strings, use quotes | |
#github_app_id: "" |
```mermaid | |
pie title Pets adopted by volunteers | |
"Dogs" : 386 | |
"Cats" : 85 | |
"Rats" : 15 | |
``` |
process.stdin.on('data', (chunk) => { process.stdout.write(chunk.toString().normalize()) }) |
I hereby claim:
To claim this, I am signing this object:
# Note .lazy | |
txt_files = file_names.lazy.filter { |file_name| file_name.end_with? '.txt' } | |
file_contents = txt_files = { |file_name| File.read(file_name) } | |
second_to_last_chars = file_contents.map { |text| text[-2] } | |
concatenated_characters = second_to_last_chars.reduce { |c, result| result + c } |
FROM ubuntu:14.04.5 | |
COPY files /etc/files | |
RUN \ | |
export BUILD_DEPS="\ | |
build-essential \ | |
" && \ | |
export RUN_DEPS="\ | |
libffi6 \ |
// | |
// _oo0oo_ | |
// o8888888o | |
// 88" . "88 | |
// (| -_- |) | |
// 0\ = /0 | |
// ___/`---'\___ | |
// .' \\| |// '. | |
// / \\||| : |||// \ | |
// / _||||| -:- |||||- \ |
#!/bin/bash | |
# tip: run with `./hashes.sh | column -t` | |
set -eu | |
for g in `find . -name .git` | |
do | |
d=$(basename $(dirname $g)) | |
h=$(git --git-dir $g rev-parse HEAD) |
default_template: | |
title: "Default" | |
settings: | |
"*": | |
"editor.tabLength": 4 | |
".source.coffee": | |
"editor.tabLength": 2 | |
".source.ruby": | |
"editor.tabLength": 2 | |
alfiebox: |
# Rake Quick Reference | |
# by Greg Houston | |
# http://ghouston.blogspot.com/2008/07/rake-quick-reference.html | |
# ----------------------------------------------------------------------------- | |
# Running Rake | |
# ----------------------------------------------------------------------------- | |
# running rake from the command-line: | |
# rake --help |