I hereby claim:
- I am bkono on github.
- I am bkono (https://keybase.io/bkono) on keybase.
- I have a public key ASASckZ-1gUvHCVp-CBHrt-Ze8KDRkVgGp2wQmrYPF4Zlwo
To claim this, I am signing this object:
client | |
dev tun | |
comp-lzo | |
auth-user-pass | |
# remote-cert-tls server | |
server-poll-timeout 10 | |
auth-nocache | |
auth-retry interact | |
verb 1 | |
remote openvpn.getcloakvpn.com 443 udp |
I hereby claim:
To claim this, I am signing this object:
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
// default font size in pixels for all tabs | |
fontSize: 18, | |
// font family with optional fallbacks |
I hereby claim:
To claim this, I am signing this object:
# ~/.elvish/lib/direnv.elv | |
fn hook []{ | |
env = (or (direnv export json | from-json) [&]) | |
if (> (count $env) 0) { | |
f = (mktemp) | |
keys $env | each [k]{ echo "E:"$k" = \""$env[$k]"\"" >> $f } | |
-source $f | |
rm -f $f | |
} |
if not functions -q fisher | |
set -q XDG_CONFIG_HOME; or set XDG_CONFIG_HOME ~/.config | |
curl https://git.io/fisher --create-dirs -sLo $XDG_CONFIG_HOME/fish/functions/fisher.fish | |
fish -c fisher | |
end | |
set --export EDITOR nvim | |
set --export VISUAL nvim | |
# general exports & pathing |
import cdk = require('@aws-cdk/cdk'); | |
import ec2 = require('@aws-cdk/aws-ec2'); | |
import elastic = require('@aws-cdk/aws-elasticache'); | |
import rds = require ('@aws-cdk/aws-rds'); | |
import es = require("@aws-cdk/aws-elasticsearch"); | |
import ecs = require('@aws-cdk/aws-ecs'); | |
import s3 = require("@aws-cdk/aws-s3"); | |
import elbv2 = require('@aws-cdk/aws-elasticloadbalancingv2'); | |
import route53 = require('@aws-cdk/aws-route53'); | |
import certificateManager = require("@aws-cdk/aws-certificatemanager"); |
package main | |
import ( | |
"context" | |
"io/ioutil" | |
"log" | |
"golang.org/x/oauth2/google" | |
"google.golang.org/api/sheets/v4" | |
) |
package main | |
import ( | |
"fmt" | |
"gopkg.in/alecthomas/kingpin.v2" | |
) | |
type DevCommand struct { | |
debug bool | |
} |