This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| text="$(xclip -out -selection clipboard)" | |
| # OR xsel --output --clipboard ; remove "clipboard" if you want to use PRIMARY selection. | |
| xdotool type --window $(xdotool search --class Kodi) -- "$text" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| bench: force | |
| $(DOCKER) run --rm -v $(GOPATH):/go -e GOPATH=/go -e GOCACHE=/go-cache -v $(shell pwd):/go/src/$(GO_PKG) -v $(shell go env GOCACHE):/go-cache -u `stat -c "%u:%g" $(shell go env GOCACHE)` --ulimit memlock=67108864 -w /go/src/$(GO_PKG) $(DOCKER_IMAGE):$(TARGET_OS)-$(TARGET_ARCH) go test -benchtime=1000x -bench=. ./library/playcount/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package main | |
| import ( | |
| "log" | |
| "math/rand" | |
| "runtime" | |
| "sync" | |
| "testing" | |
| "time" | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Dmitry Andreevich (klekovkinda) [7 days ago] | |
| На музейном острове музеи интересно. | |
| anovikov [7 days ago] | |
| если интересна живопись\искусство, то: | |
| https://www.berlin.de/ausstellungen/archiv/4903983-3238788-von-monet-bis-kandinsky.html | |
| https://www.smb.museum/museen-und-einrichtungen/gemaeldegalerie/home.html |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| user [3:47 PM] | |
| А кто-нибудь юзал aldi симки? | |
| Hennadii Bolshakov [3:50 PM] | |
| У меня aldi | |
| kadabrik [4:07 PM] | |
| У меня | |
| Hennadii Bolshakov [4:08 PM] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| name: bosh-tutorial-deployment | |
| director_uuid: REPLACE_WITH_DIRECTOR_UUID | |
| releases: | |
| - {name: ardo_app, version: latest} | |
| resource_pools: | |
| - name: vms | |
| network: default |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| source "http://rubygems.org" | |
| gem "sinatra" |