Skip to content

Instantly share code, notes, and snippets.

@stefancrain
stefancrain / convert.sh
Created February 14, 2015 00:39
Fastest image converter on osx
#!/bin/bash
# 2015 Stefan Crain - stefancrain@gmail.com
# Find all image files and convert them to a jpgs with sips
# OSX only
#
# Usage
# ./convert.sh toScan/ Output/
parsedCLI=("$@")
scandir=${parsedCLI[0]%/}
@stefancrain
stefancrain / slowconvert.sh
Created February 14, 2015 01:16
Find all image files and convert them to a jpgs with ImageMagick's convert
#!/bin/bash
# 2015 Stefan Crain - stefancrain@gmail.com
# Find all image files and convert them to a jpgs with ImageMagick's convert
#
# Usage
# ./slowconvert.sh toscan/ output/
parsedCLI=("$@")
scandir=${parsedCLI[0]%/}
outputdir=${parsedCLI[1]:-$scandir}
@stefancrain
stefancrain / gist:5091689
Last active December 14, 2015 13:09
Linux Setup for Bluebird in BASH
#!/bin/bash
# run with sudo ./initial_setup.sh
cd ~/
sudo apt-get update
sudo apt-get upgrade -y
# install some basic programs
#!/bin/bash
# largly from
# http://www.nickyeoman.com/blog/system-administration/184-installing-owncloud-on-ubuntu-1204
#Setup Server
sudo su
# make sure you have dependentcies
apt-get install -y apache2 php5 php5-gd php-xml-parser php5-sqlite libcurl3-dev php5-ldap php5-curl libsqlite0 unzip sqlite-doc libsqlite0 mp3info sqlite unzip zip git wget lm-sensors hddtemp sysstat iptraf
vi /etc/apache2/httpd.conf
@stefancrain
stefancrain / rsync-lowcpu.sh
Created July 14, 2016 18:51
skip some file types that don't compress very well
export RSYNC_SKIP_COMPRESS=3g2/3gp/3gpp/7z/aac/ace/amr/apk/appx/appxbundle/arc/arj/asf/avi/bz2/cab/crypt5/crypt7/crypt8/deb/dmg/drc/ear/gz/flac/flv/gpg/iso/jar/jp2/jpg/jpeg/lz/lzma/lzo/m4a/m4p/m4v/mkv/msi/mov/mp3/mp4/mpeg/mpg/mpv/oga/ogg/ogv/opus/png/qt/rar/rpm/rzip/s7z/sfx/svgz/tbz/tgz/tlz/txz/vob/wim/wma/wmv/xz/z/zip/cr2/nef/iiq/3fr/dcr/k25/kdc/erf/mef/mos/orf/pef/rw2/arw/srf/sr2
rsync -avzchP --compress-level=9 --skip-compress=$RSYNC_SKIP_COMPRESS /from/disk /to/disk
@stefancrain
stefancrain / hook-dns-01-lets-encrypt-route53.py
Created August 4, 2016 16:11
Python 3 script to use as a hook for the letsencrypt.sh client
#!/usr/bin/env python3
# How to use:
#
# LE_HOSTED_ZONE=XXXXXX LE_AWS_PROFILE=dns-access ./letsencrypt.sh --cron --domain example.org --challenge dns-01 --hook /tmp/hook-dns-01-lets-encrypt-route53.py
#
# More info about letsencrypt.sh: https://github.com/lukas2511/letsencrypt.sh/wiki/Examples-for-DNS-01-hooks
# Using AWS Profiles: http://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html#cli-multiple-profiles
# Obtaining your Hosted Zone ID from Route 53: http://docs.aws.amazon.com/cli/latest/reference/route53/list-hosted-zones-by-name.html
@stefancrain
stefancrain / keybase.md
Last active November 11, 2016 21:50
Proof of my identity on Keybase

Keybase proof

I hereby claim:

  • I am stefancrain on github.
  • I am stefancrain (https://keybase.io/stefancrain) on keybase.
  • I have a public key ASC9kOw1_uHclJ4BABEu_sRxnfxx6OdUb4_5Wj4GfUD2Gwo

To claim this, I am signing this object:

@stefancrain
stefancrain / jenkins_export.sh
Last active April 6, 2017 15:41
Backup up all Jenkins jobs as XML
#!/bin/bash
HOST="JENKINS_URL"
PORT="8443"
URL="http://USERNAME:APIKEY@$HOST:$PORT"
folder=$(date +%Y%m%d-%H%M%S)
mkdir -p "$HOST/$folder"
while read job
do
echo "Job: '$job'";
java -jar ~/Downloads/jenkins-cli.jar -s "$URL" get-job "$job" > "$HOST/$folder/$job".xml
@stefancrain
stefancrain / sublime setup.sh
Created February 8, 2018 17:38
Setup Sublime from a shell prompt
# Link sublime to its bin
ln -s "/Applications/Sublime Text.app/Contents/SharedSupport/bin/subl" /usr/local/bin
# install package control
subl --command install_package_control
@stefancrain
stefancrain / disable-jenkins-auth.sh
Last active July 31, 2018 16:06
Disabling Jenkins auth when auth method fails
#!/bin/bash
# Backup Jenkins Config
cp $JENKINS_HOME/config.xml $JENKINS_HOME/config-bk.xml
# Set useSecurity to false to enable login when auth temporarily
# This opens Jenkins to all with access to the URL
grep "useSecurity" $JENKINS_HOME/config.xml
sed -i "s#<useSecurity>true#<useSecurity>false#g" $JENKINS_HOME/config.xml
grep "useSecurity" $JENKINS_HOME/config.xml