Skip to content

Instantly share code, notes, and snippets.

@joepvd
joepvd / Makefile
Last active August 29, 2015 14:18 — forked from isaacs/Makefile
# Hello, and welcome to makefile basics.
#
# You will learn why `make` is so great, and why, despite its "weird" syntax,
# it is actually a highly expressive, efficient, and powerful way to build
# programs.
#
# Once you're done here, go to
# http://www.gnu.org/software/make/manual/make.html
# to learn SOOOO much more.
@joepvd
joepvd / update-rbenv-rubygems.sh
Last active September 5, 2017 10:27 — forked from gshutler/update-rbenv-rubygems.sh
Update Rubygems for all rbenv rubies
#! /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
#!/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, "-------", "----", "------", "----"
@joepvd
joepvd / keybase.md
Created March 20, 2019 19:27
keybase.md

Keybase proof

I hereby claim:

  • I am joepvd on github.
  • I am jvd (https://keybase.io/jvd) on keybase.
  • I have a public key ASB4IUFMBtQ7BO6tcK67Dh6luXEjqvDvLOekTQnL6nIH4go

To claim this, I am signing this object:

@joepvd
joepvd / pre-commit
Created November 19, 2021 13:30
Pre commit hook for ocp-build-data
#!/usr/bin/env bash
set -euo pipefail
# git remote prune origin
originating_branch() {
local i branch
i=0
branch=""
# Love you, GNU. But got a bit tired of this conversation pattern:
#
# % ln -h
# ln: invalid option -- 'h'
# Try 'ln --help' for more information.
#
# Don't worry. I fixed you for me.
#
# Eternally yours,
#
#!/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
@joepvd
joepvd / README.md
Last active November 6, 2023 19:31
review-plashet-logs

review plashet logs

@joepvd
joepvd / README.md
Last active December 10, 2023 14:21
git-update

git update

For automatically rebasing current branch to freshly fetched origin branch, and rebase local branches with upstream changes.

Usage:

git update

Installation

@joepvd
joepvd / README.md
Last active December 10, 2023 19:23
ocp-urls: Spits out GitHub Dockerfiles from image configurations from ocp-build-data

ocp-urls

Spits out urls from image configurations from ocp-build-data files given as arguments.

Usage

ocp-urls <options> <files>

Options