This file contains 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
$ git clone https://github.com/JefMasereel/mgmt.git . | |
Cloning into '.'... | |
remote: Enumerating objects: 13096, done. | |
remote: Counting objects: 100% (922/922), done. | |
remote: Compressing objects: 100% (426/426), done. | |
remote: Total 13096 (delta 496), reused 776 (delta 446), pack-reused 12174 | |
Receiving objects: 100% (13096/13096), 5.14 MiB | 9.89 MiB/s, done. | |
Resolving deltas: 100% (8998/8998), done. | |
$ git config --local user.email [email protected] && git config --local user.signingkey CFBB6A86 |
This file contains 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
$ ./promxy --config=config.yml --bind-addr=10.133.8.18:4798 --log-level=trace 2>&1 | tee promxy.log | |
time="2020-05-29T15:35:28Z" level=debug msg="Updating targets from discovery manager" | |
time="2020-05-29T15:35:28Z" level=trace msg="Potential target pre-relabel: {__address__=\"10.133.8.22:4654\", __meta_consul_address=\"10.133.8.22\", __meta_consul_dc=\"sfo07\", __meta_consul_metadata_consul_network_segment=\"\", __meta_consul_node=\"133m20\", __meta_consul_service=\"prometheus-rack\", __meta_consul_service_address=\"10.133.8.22\", __meta_consul_service_id=\"_nomad-task-29543cc6-b956-8b78-0b5d-c888c98984a2-prometheus-rack-task-prometheus-rack-http\", __meta_consul_service_metadata_external_source=\"nomad\", __meta_consul_service_port=\"4654\", __meta_consul_tagged_address_lan=\"10.133.8.22\", __meta_consul_tagged_address_wan=\"10.133.8.22\", __meta_consul_tags=\",sw00.sfo07,\"}" | |
time="2020-05-29T15:35:28Z" level=trace msg="Potential target post-relabel: {__address__=\"10.133.8.22:4654\", __meta_consul_address=\ |
This file contains 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
diff --git a/PKGBUILD b/PKGBUILD | |
index 4de4517..63b67d8 100644 | |
--- a/PKGBUILD | |
+++ b/PKGBUILD | |
@@ -2,7 +2,7 @@ | |
_pkgname=libnotify | |
pkgname=${_pkgname}-id | |
-pkgver=0.7.7 | |
+pkgver=0.7.8 |
This file contains 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
frebib@frebib-Cf ~> mtr google.com -rwz | |
Start: 2019-07-06T23:40:35+0100 | |
HOST: frebib-Cf Loss% Snt Last Avg Best Wrst StDev | |
1. AS13037 2a02:8010:64b4:3:: 0.0% 10 2.2 5.7 1.8 35.1 10.3 | |
2. AS13037 lo-0.cor1.lond2.ptn.zen.net.uk 0.0% 10 6.3 11.4 5.8 29.9 8.1 | |
3. AS??? ??? 100.0 10 0.0 0.0 0.0 0.0 0.0 | |
4. AS13037 ae-3.agg1.lond1.ptn.zen.net.uk 0.0% 10 9.1 9.8 5.5 27.9 6.6 | |
5. AS15169 2001:4860:1:1:0:32ed:0:1 0.0% 10 18.5 8.9 4.7 18.9 5.5 | |
6. AS15169 2001:4860:0:1101::1 0.0% 10 5.8 7.0 5.8 11.3 1.7 | |
7. AS15169 2001:4860:0:1::2f81 0.0% 10 5.7 6.6 5.4 11.0 2.0 |
This file contains 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/sh | |
set -e | |
dir=${1:-"${HOME}/git/"} | |
since=${2:-"yesterday.midnight"} | |
author=${3:-"$(git config user.email)"} | |
repos=$(find "$dir" -mindepth 1 -maxdepth 1 -type d) | |
for project in ${repos}; do |
This file contains 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/sh | |
set -e | |
NOTIFY_APPNAME="$(basename "$0")" | |
NOTIFY_ICONPATH="/usr/share/icons/Xenlism-Wildfire/Apps/screenshot.svg" | |
SCROT_CMD="maim -m 10 -us %" | |
FILENAME="$(date '+%s%N' | sha256sum | head -c7).png" | |
DIRECTORY="$HOME/pictures/screenshots" |
This file contains 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/sh | |
set -e | |
# Based on https://github.com/vincentbernat/awesome-configuration/blob/master/bin/xsettingsd-setup | |
dpi=$1 | |
if [ -z "$1" ]; then | |
>&2 printf "Usage\n\t%s: <dpi>" "$(basename "$0")" | |
exit 1 |
This file contains 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
#!/usr/bin/env bash | |
# Source: https://gist.github.com/Tadly/0741821d3694deaec1ee454a95c591fa | |
# | |
# Use rofi to pick emoji because that's what this | |
# century is about apparently... | |
# | |
# Requirements: | |
# rofi, xclip, xdotool, curl, xmllint | |
# | |
# Usage: |
This file contains 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/sh | |
set -e -o pipefail | |
# This sed expression is POSIX compliant and provides 99.9% the same functionality as the previous revision | |
# The only caveat is with paths that contain % (percent) characters. This can be changed for # or something else if desired | |
pwd | sed -E 's|^'$HOME'|~|;s|(.*)/|\1%|;s|((^\|/)\.?[^/%]{1})[^/%]*|\1|g;s|(.*)%|\1/|' |
This file contains 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/sh | |
set -e | |
# This script requires ripgrep and sed. | |
# Save as .git/hooks/pre-commit for automatic TODO list updates when committing to git. | |
echo "Updating TODO list" | |
rg \ | |
--heading \ |
NewerOlder