Skip to content

Instantly share code, notes, and snippets.

The Fest 24 Lineup:

Ska Punk

  • Against All Authority (Miami, FL) - Political ska-punk with political lyrics.
  • Catbite (Philadelphia, PA) - Ska-punk with tour-tested energy, new-wave color, and pop polish.
  • Half Past Two (Southern California) - Ska-punk with veteran history, big hooks, and heavy guitars.
  • Kill Lincoln (Washington, DC) - Ska-punk with a concise, personality-forward FEST bio.
  • Mustard Plug (Grand Rapids MI) - Ska-punk with DIY roots, veteran history, and tour-tested energy.
  • Sorry Sweetheart (Denver, CO) - Ska-punk with tour-tested energy, heavy guitars, and pop poli
@mynameiswhm
mynameiswhm / reindex.sh
Created December 4, 2015 05:18
Bulk reindexing elasticsearch to another cluster using jq
#/bin/bash
if [ $# -lt 3 ]
then
echo "Usage: reindex.sh source_url target_url index [query]"
echo "Example: reindex.sh http://source.com:9200 http://target.com:9200 products_v1 '{\"query\":{\"range\":{\"mod_date\":{\"from\":\"2015-12-03T20:00:00\"}}}}'"
exit 1
fi
SOURCE_URL=$1