I hereby claim:
- I am tuxpeople on github.
- I am tdeutsch (https://keybase.io/tdeutsch) on keybase.
- I have a public key ASCF_NNwMLir2KuEHuAkRyOUYMogjekOC74NC3HVvrnJDQo
To claim this, I am signing this object:
# This gets the newest release version from a project. | |
# Even if they to not set the "latest" tag. | |
# And even if they release multiple version paths. | |
# Needs jq. | |
# | |
# Usage: | |
# $ get_latest_release "rancher/rke" | |
# | |
get_latest_release() { | |
curl --silent "https://api.github.com/repos/$1/releases" | # Get releases from GitHub api |
#!/bin/bash | |
# Andrew Oakley aoakley.com Public Domain 2016 | |
# Check out cotswoldjam.org for RPi events in Gloucestershire | |
# I recommend you place this script in /usr/local/sbin | |
# | |
# Changes and additions by Thomas Deutsch | |
# | |
# Thanks to https://raspberrypi.stackexchange.com/a/99531 | |
# |
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
# jdk_packager.sh | |
# Downloads JDK 7 and packages as DEB for both i386 and amd64 | |
# The resulting packages installing to /opt, creating a symlink /opt/java7 and do some magic stuff which hopefully works. | |
# | |
# Requirements | |
# - Effing Package Management | |
# https://github.com/jordansissel/fpm | |
# |
#!/bin/bash | |
# | |
# svnbackup.sh | |
# Dumps all SVN-Repos from a given location gzip compressed to a folder | |
# | |
# Copyright (C) 2008 by Thomas Deutsch <[email protected]> | |
# | |
# License: WTFPL - Do What The Fuck You Want To Public License | |
# | |
# This program is free software. It comes without any warranty, to |