Skip to content

Instantly share code, notes, and snippets.

Keybase proof

I hereby claim:

  • I am yehudasa on github.
  • I am yehuda (https://keybase.io/yehuda) on keybase.
  • I have a public key whose fingerprint is 1315 B704 3706 8314 2AC4 6CAB A675 D4F9 B97A D91F

To claim this, I am signing this object:

#!/bin/bash
ulimit -c unlimited
export EXTRA_CFG=""
ZONE_CFG=""
if [ "$3" != "" ]; then
ZONE_CFG="--rgw-zone=$3"
fi
if [ "$1" == "" ]; then
bin/radosgw --debug-ms=1 --debug-rgw=20 --rgw-frontends="civetweb port=8000" --log-file=out/radosgw.log $EXTRA_CFG
else
@yehudasa
yehudasa / git-superfixup.pl
Created February 9, 2017 18:18 — forked from oktal3700/git-superfixup.pl
Perl script for automating the process of creating fixup! commits for use with git rebase -i --autosquash
#!/usr/bin/perl
# Scan unstaged changes in git tracked files, identify which commits they could
# be applied to as fixups, and automatically produce the appropriate "fixup!"
# commits for use with "git rebase -i --autosquash".
#
# Copyright (C) 2016 by Mat Sutcliffe
# This program is free software; you can redistribute it and/or modify it under
# the GNU General Public License as published by the Free Software Foundation;
# either version 2 of the License, or (at your option) any later version.