I hereby claim:
- I am trapier on github.
- I am trapier (https://keybase.io/trapier) on keybase.
- I have a public key ASC7Tj_NIylOeBJxSuucwWtck2s2bIJzgUfkIZJvH91U3wo
To claim this, I am signing this object:
// ==UserScript== | |
// @name triple touch to fullscreen | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description triple touch to fullscreen for for mobile | |
// @author trapier | |
// @run-at document-end | |
// @match http(s)?://*/* | |
// @include http://* | |
// @include https://* |
+-----------------------------------------------------------------------------+ | |
|CLIENT POD HOST | | |
| +---------------------------------------------+ | | |
+---------------+ | |CLIENT POD | | | |
|KUBEDNS | | | | | | |
| <-------------+ $ curl http://myservice:4000 | | | |
| | | srvc | | | | |
| myservice | | disc | $ grep nameserver /etc/resolv.conf | | ++ kubelet | |
| A 10.96.193.4 | | (DNS) | nameserver 10.96.0.10 | | ++ > svc cluster ip range: | |
| | | | | | |
## Do this on each swarm-node | |
# store containers attached to the bridge | |
$ gwbridge_users=$(docker network inspect --format '{{range $key, $val := .Containers}} {{$key}}{{end}}' docker_gwbridge | \ | |
$ xargs -d' ' -I {} -n1 docker ps --format {{.Names}} -f id={}) | |
# stop all containers | |
# if you have stacks that restart automatically, remove them via docker stack <stackName> rm | |
$ echo "$gwbridge_users" | xargs docker stop | |
$ docker network rm docker_gwbridge | |
$ docker network disconnect -f docker_gwbridge gateway_ingress-sbox |
#!/usr/bin/python | |
import os | |
import re | |
import subprocess | |
import tempfile | |
import time | |
import urllib.request | |
from pathlib import Path | |
TW_URL = 'https://twitter.com/PrimitivePic' |
diff --git a/components/engine/vendor/github.com/docker/libnetwork/drivers/macvlan/macvlan_network.go b/components/engine/vendor/github.com/docker/libnetwork/drivers/macvlan/macvlan_network.go | |
index 914c6cdf64..8e73809cff 100644 | |
--- a/components/engine/vendor/github.com/docker/libnetwork/drivers/macvlan/macvlan_network.go | |
+++ b/components/engine/vendor/github.com/docker/libnetwork/drivers/macvlan/macvlan_network.go | |
@@ -64,10 +64,16 @@ func (d *driver) CreateNetwork(nid string, option map[string]interface{}, nInfo | |
// empty parent and --internal are handled the same. Set here to update k/v | |
config.Internal = true | |
} | |
- err = d.createNetwork(config) | |
+ |
#!/usr/bin/env python3 | |
# Mark the most-recently-focused i3 window with _last | |
# | |
# Add this to your i3 config: | |
# exec_always --no-startup-id /path/to/script | |
# bindsym <your binding here> [con_mark=_last] focus | |
# | |
# Inspired by: | |
# - https://www.reddit.com/r/i3wm/comments/4d4luc/how_to_focus_the_last_window/ |
import time | |
def keyboard_type(keys): | |
for key in keys: | |
keyboard.send_keys(key) | |
time.sleep(0.1) | |
def copy_next_field(): | |
keyboard_type("vcwv$y") |
/*Fix Pukey Colors on Case Tabs*/ | |
.caseTab .tertiaryPalette, | |
.individualPalette .caseBlock .tertiaryPalette, | |
.layoutEdit .individualPalette .caseBlock .tertiaryPalette { | |
background-color: #36a0fe; | |
border-color: #015ba7; | |
} | |
.caseTab .primaryPalette, | |
.individualPalette .caseBlock .primaryPalette { |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
VM=$1 | |
TARGET=$2 | |
vm_path=/var/lib/libvirt/images/$VM.img | |
rsync -vS --progress $vm_path root@$TARGET:$vm_path && \ | |
virsh migrate --live --suspend --persistent --undefinesource --verbose $VM qemu+ssh://$TARGET/system && \ | |
rsync -vS --progress $vm_image root@$TARGET:$vm_path && \ |