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
exec -l zsh | |
# ____....---\ | |
# _____.....----""""""" \ | |
# ------"""""""""" \ | |
# /""""\ ^ ^ \ | |
# \ / ""\ | \/|/| \ | |
# \ .--""" """" / / | | |
# \ """""""""" _---"" / " | | |
# \ -"" _ \ \ | |
# \ __.___ /"""--|_ "" /`| | |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Label</key> | |
<string>org.wholezero.watchpath</string> | |
<key>ProgramArguments</key> | |
<array> | |
<string>/bin/zsh</string> | |
<string>-lc</string> |
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
#pragma once | |
#include <cassert> | |
#include <cstdint> | |
#include <exception> | |
#include <new> | |
#include <type_traits> | |
#include <utility> | |
namespace detail { |
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 -eu | |
trap "echo 'usage: $0 <pier> <base> [desk]' >&2" EXIT | |
pier=$1 | |
base=$2 | |
if [ 3 -eq $# ]; then | |
desk=$3 | |
else | |
desk=base | |
fi |
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 python3 | |
import fileinput | |
import re | |
def main(): | |
for line in fileinput.input(): | |
if not re.search(r'^[0-9a-fA-F]+$', line): | |
continue | |
print('0x', end='') | |
line = line.strip().lstrip('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
// requires urbit-ob | |
const ob = require('urbit-ob'); | |
const crypto = require('crypto'); | |
const STAR = '~binzod'; | |
const STAR_HEX = ob.patp2hex(STAR); | |
for (var i = 0; i < 16; ++i) { | |
const byt = crypto.randomBytes(2).toString('hex'); | |
console.log('0x' + byt + '.' + STAR_HEX, ob.hex2patp(byt + STAR_HEX)); |
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 -eux | |
NDISPLAY=:13 | |
if [ $# -ge 1 ] | |
then | |
case $1 in | |
:*) | |
NDISPLAY=$1 | |
shift |
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 -eu | |
tmpfile=$(mktemp) | |
xauth -q -f $tmpfile generate $DISPLAY . untrusted | |
xauth_data=$(xauth -f $tmpfile nlist $DISPLAY) | |
rm -f $tmpfile | |
DOAS_XAUTH="xauth -q remove $DISPLAY ; echo $xauth_data | xauth nmerge - ;" | |
export DOAS_XAUTH |
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
#include <stdio.h> | |
int main() { | |
while (1) puts("whee"); | |
} |
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 | |
# usage: flag <flag> [args...] | |
# e.g.: flag --foo= x y z | |
# --foo=x --foo=y --foo=z | |
trap "awk '/^# /' $(which $0) | cut -d' ' -f2-" EXIT | |
set -eu; flag=$1; shift; for arg in "$@"; do echo $flag$arg; done | |
exec true |
NewerOlder