I hereby claim:
- I am vixus0 on github.
- I am vixus0 (https://keybase.io/vixus0) on keybase.
- I have a public key ASD9_AsVY7SDAxcPc8ipqZOEN6Mr0Uje8FEkS0gHlnKaVgo
To claim this, I am signing this object:
| { | |
| auto_https off | |
| } | |
| :{$NOMAD_PORT_http:8080} { | |
| log { | |
| format console | |
| level INFO | |
| } |
| #!/usr/bin/env bash | |
| # gitfeels: find out how many PRs you (or someone) had merged since some date | |
| if test "$#" -lt 2; then | |
| echo "Usage: $0 <username> <since YYYY-MM-DD>" >/dev/stderr | |
| exit 1 | |
| fi | |
| author="$1" |
| --- | |
| apiVersion: traefik.containo.us/v1alpha1 | |
| kind: Middleware | |
| metadata: | |
| name: forward-auth | |
| namespace: pomerium | |
| spec: | |
| forwardAuth: | |
| address: https://pomerium-proxy.pomerium.svc.cluster.local | |
| trustForwardHeader: true |
I hereby claim:
To claim this, I am signing this object:
| ;; simplify | |
| (scroll-bar-mode -1) | |
| (tool-bar-mode -1) | |
| (tooltip-mode -1) | |
| (menu-bar-mode -1) | |
| ;; packages | |
| (require 'package) | |
| (setq package-enable-at-startup nil) | |
| (setq package-archives '(("org" . "https://orgmode.org/elpa/") |
| class IdpController < ApplicationController | |
| layout 'application' | |
| def initialize | |
| @init_form = IdpInitForm.new({}) | |
| end | |
| def idp_init | |
| render 'idp/init' | |
| end |
| diff --git a/sooperlooper-1.7.3/src/engine.cpp b/sooperlooper-1.7.3/src/engine.cpp | |
| --- a/sooperlooper-1.7.3/src/engine.cpp | |
| +++ b/sooperlooper-1.7.3/src/engine.cpp | |
| @@ -313,7 +313,7 @@ void Engine::set_midi_bridge (MidiBridge * bridge) | |
| _midi_bridge->MidiControlEvent.connect (mem_fun(*this, &Engine::push_midi_control_event)); | |
| _midi_bridge->MidiSyncEvent.connect (mem_fun(*this, &Engine::push_sync_event)); | |
| - ParamChanged.connect(bind (mem_fun(*_midi_bridge, &MidiBridge::parameter_changed), this)); | |
| + ParamChanged.connect(sigc::bind(mem_fun(*_midi_bridge, &MidiBridge::parameter_changed), this)); | |
| /* | |
| * Play youtube audio to mumble. | |
| */ | |
| (function() { | |
| var cmdre = /!(\w+) *(.*)/; | |
| var conre = /connect ([A-Za-z0-9.:]+); *password (.*)/; | |
| var file = '/tmp/mjtmp'; | |
| var queue = []; |
| from collections import namedtuple | |
| x = {} | |
| x['species'] = ['cow', 'pig'] | |
| x['sound'] = ['moo', 'oink'] | |
| tp_animal = namedtuple('animal', 'species sound') | |
| nanimals = 2 | |
| animals = [] |
| #!/usr/bin/env bash | |
| wm=monsterwm | |
| ff="/tmp/$RANDOM.monsterwm.fifo" | |
| tags=('\ue010' '\ue011' '\ue012' '\ue013' '\ue062') | |
| layouts=('\ue002' '\ue001' '\ue003' '\ue005' '\ue006') | |
| bs="\\\\u6\\\\b6\\\\f8 " | |
| br=" \\\\ur\\\\br\\\\fr" |