I hereby claim:
- I am l0b0 on github.
- I am l0b0 (https://keybase.io/l0b0) on keybase.
- I have a public key whose fingerprint is E5D2 3A00 D8C6 93B4 C2AC D93C EC92 D395 260D 3194
To claim this, I am signing this object:
| let | |
| pkgs = | |
| import ( | |
| builtins.fetchTarball { | |
| url = "https://github.com/nixos/nixpkgs/archive/d934204a0f8d9198e1e4515dd6fec76a139c87f0.tar.gz"; | |
| sha256 = "1zfby2jsfkag275aibp81bx1g1cc305qbcy94gqw0g6zki70k1lx"; | |
| } | |
| ) { | |
| overlays = [ | |
| (final: prev: { |
I hereby claim:
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| # Example of git-bisect use | |
| # Commented code can be copied to verify the state of the code | |
| # Alice creates a repository with a simple Bourne/Dash script | |
| cd -- "$(mktemp -d)" | |
| git init | |
| > test.sh cat <<"EOF" | |
| if [ "`id -u`" -ne 0 ] |
| #!/usr/bin/env bash | |
| set -o errexit -o nounset -o pipefail | |
| cd "$(mktemp --directory)" | |
| git init | |
| cat > test.txt <<EOF | |
| alfa | |
| bravo | |
| charlie |
| #!/bin/sh | |
| # | |
| # $Id: update-wordpress.sh 393 2008-06-19 10:29:18Z vengmark $ | |
| # | |
| # NAME | |
| # update-wordpress.sh - Update WordPress to latest stable version. | |
| # | |
| # SYNOPSIS | |
| # update-wordpress.sh [options] | |
| # |
| java -Xmx256M -verbose:gc -XX:+UseConcMarkSweepGC -XX:+UseAdaptiveGCBoundary -Djava.library.path=bin/natives -cp "bin/*" net.minecraft.client.Minecraft Notch foo |
| grep -v '^$\|^#' /etc/fstab | while read fs_spec fs_file dummy | |
| do | |
| if [ ! -e "$fs_spec" ] && [ "$fs_spec" != 'none' ] | |
| then | |
| echo "$fs_spec" | |
| fi | |
| if [ ! -e "$fs_file" ] | |
| then | |
| echo "$fs_file" | |
| fi |
| # Convert strings like '5kb', '2MB' and '500TB' to their byte equivalents | |
| # Based on http://stackoverflow.com/questions/4399475/unformat-disk-size-strings | |
| unformat() | |
| { | |
| echo $1 | sed -e 's/b//i;s/k/*1000/i;s/m/*1000000/i;s/g/*1000000000/i;s/t/*1000000000000/i' | bc | |
| } |
| find . -maxdepth 1 -print0 | \ | |
| sort --zero-terminated | \ | |
| while IFS= read -rd $'\0' path | |
| do | |
| grep "$(basename -- "${path:2}")" -- Makefile >/dev/null || echo "Could not find $path" | |
| done |
| while true | |
| do | |
| inotifywait -e modify,attrib,move,delete . | |
| make test | |
| done |