I hereby claim:
- I am marzocchi on github.
- I am fmarzocchi (https://keybase.io/fmarzocchi) on keybase.
- I have a public key whose fingerprint is B9CE 00EE E0CB 4929 F75B 2DFE 3DD2 6755 9C50 26A6
To claim this, I am signing this object:
| package main | |
| import ( | |
| "bufio" | |
| "fmt" | |
| "gopkg.in/yaml.v2" | |
| "net/url" | |
| "os" | |
| ) |
| #!/bin/sh | |
| set -e | |
| hash() { | |
| if [[ $# != 1 ]]; then | |
| echo "usage: hash FILE" >&2 | |
| return 1 | |
| fi | |
| shasum "$1" | cut -f1 -d' ' |
| iterm-notify config-set failure-icon "https://media3.giphy.com/media/10ECejNtM1GyRy/200_s.gif" | |
| iterm-notify config-set failure-title "wow such #fail" | |
| iterm-notify config-set success-icon "https://s-media-cache-ak0.pinimg.com/564x/b5/5a/18/b55a1805f5650495a74202279036ecd2.jpg" | |
| iterm-notify config-set success-title "very #success. wow" |
| if status is-interactive > /dev/null | |
| function fish_vi_cursor; end | |
| fish_vi_key_bindings | |
| function fish_greeting | |
| end | |
| function first_prompt_line --on-event fish_prompt | |
| set_color red |
| # vim: se filetype=zsh | |
| # zmodload zsh/zprof | |
| autoload -U add-zsh-hook | |
| export LANG=en_US.UTF-8 | |
| TZ="Europe/Berlin" | |
| HISTFILE=$HOME/.zhistory | |
| HISTSIZE=3000 | |
| SAVEHIST=3000 |
I hereby claim:
To claim this, I am signing this object:
| # - list packages | |
| # nix-env -qaP | |
| # | |
| # - install packages in this file, or update packages after channel update: | |
| # nix-env -iA nixpkgs.myPackages | |
| # | |
| # - update package list | |
| # nix-channel --update | |
| { | |
| allowUnfree = true; |
| FROM golang:alpine AS builder | |
| RUN apk --no-cache add build-base git mercurial gcc | |
| ADD . /go/src/grpc-client-test | |
| RUN cd /go/src/grpc-client-test && go build -o grpc-client-test main.go | |
| FROM alpine | |
| COPY --from=builder /go/src/grpc-client-test /grpc-client-test | |
| ENV GRPC_GO_LOG_SEVERITY_LEVEL=info | |
| ENV GRPC_GO_LOG_VERBOSITY_LEVEL=6 |
| ================== | |
| WARNING: DATA RACE | |
| Write at 0x00c00062e050 by goroutine 32: | |
| github.com/brutella/hc/hap.(*session).SetCryptographer() | |
| /Users/marzocchi/projects/hc/hap/session.go:100 +0x3e | |
| github.com/brutella/hc/hap/endpoint.(*PairVerify).ServeHTTP() | |
| /Users/marzocchi/projects/hc/hap/endpoint/pair-verify.go:71 +0x7d6 | |
| net/http.(*ServeMux).ServeHTTP() | |
| /nix/store/1kxvwk77952rppirjn258z7s3i3680zx-go-1.16/share/go/src/net/http/server.go:2448 +0xaf | |
| net/http.serverHandler.ServeHTTP() |
| #!/usr/bin/env bash | |
| # | |
| # Usage: | |
| # | |
| # vault-list-recurive.sh START_PATH | |
| set -euo pipefail | |
| to_lines() { | |
| sed "s/{}//g" \ |