Spits out urls from image configurations from ocp-build-data files given as arguments.
ocp-urls <options> <files>
#!/usr/bin/env python | |
import requests | |
from ruamel import yaml | |
import sys | |
versions = ["4.12", "4.13", "4.14", "4.15", "4.16", "4.17", "4.18", "4.19"] | |
yml = yaml.YAML(typ='safe', pure=True) |
#!/usr/bin/env bash | |
home_monitor() { | |
echo "Setting single monitor">/dev/stderr | |
xrandr \ | |
--output DP-1 --primary --mode 3840x2160 --pos 0x0 --rotate normal \ | |
--output eDP-1 --off \ | |
--output HDMI-1 --off \ | |
--output DP-2 --off \ | |
--output HDMI-2 --off |
#!/usr/bin/env bash | |
set -euo pipefail | |
# git remote prune origin | |
originating_branch() { | |
local i branch | |
i=0 | |
branch="" |
I hereby claim:
To claim this, I am signing this object:
#!/bin/sh | |
# No more peck and hunt with xev! | |
# By Joep van Delft, github.com/joepvd | |
xev | | |
awk ' | |
BEGIN { | |
FS="[ (),]+" | |
fmt = "%-7s %-4s %-6s %s\n" | |
printf fmt, "action", "code", "sym", "name" | |
printf fmt, "-------", "----", "------", "----" |
#! /usr/bin/env bash | |
set -e | |
eval "$(rbenv init -)" | |
for version in `rbenv whence gem`; do | |
rbenv shell "$version" | |
echo "Updating rubygems for $version" | |
gem update --system --no-rdoc --quiet |