Skip to content

Instantly share code, notes, and snippets.

View criztovyl's full-sized avatar

Christoph Schulz criztovyl

View GitHub Profile
#!/usr/bin/env bash
# GoKoKo - libgourou kobo koreader
# use libgourou to download epub via ACSM (e.g. from Kobo) and remove Adobe Adept DRM
# to allow reading in your eBook reader app of choice (e.g. KOReader), independent of whether it supports DRM.
sel=$1
if [ ! -f $sel ]; then
echo >&2 non such file $sel
exit 1
commit 15375f08900f69ae9c8074c3be57182ea676fb81
Author: joham97 <joham97@web.de>
Date: Mon Jun 26 23:17:39 2017 +0200
Anmeldebogen Funktionalität
WICHTIG: Ich musste die Anmeldebogen Depencency mit Travis neu builden. Ich wusste nicht wie ich die Version auf 0.1.1 stelle. Dementsprechend muss einmal die Dependency lokal neu herruntergeladen werden. Sorry ging nicht anders.
diff --git a/src/main/java/de/atiw/sportfest/backend/resource/KlasseResource.java b/src/main/java/de/atiw/sportfest/backend/resource/KlasseResource.java
index 0c53659..4fd9e3e 100644
@criztovyl
criztovyl / gdb.txt
Created February 7, 2017 23:44
firefox_decrypt gdb log
$ gdb --args python3 ~/.local/opt/firefox_decrypt/firefox_decrypt.py -vvv
GNU gdb (Debian 7.12-6) 7.12.0.20161007-git
Copyright (C) 2016 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law. Type "show copying"
and "show warranty" for details.
This GDB was configured as "x86_64-linux-gnu".
Type "show configuration" for configuration details.
For bug reporting instructions, please see:
@criztovyl
criztovyl / changemail.php
Last active January 3, 2023 23:29 — forked from tjarksaul/gist:9047330
Script to change vbox user password on uberspace. Thanks to @_einstein_
<?php
// Config
// Der Server auf dem dein Uberspace läuft
$server = '';
// Dein Nutzername
$username = '';
// Für aufgeschaltete Domains
@criztovyl
criztovyl / password.sh
Last active January 20, 2017 20:14
Utility to firefox_decrypt.py
#!/bin/bash
# Utility to firefox_decrypt.py
# Copyright (C) 2016 Christoph criztovyl Schulz
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,

Keybase proof

I hereby claim:

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

To claim this, I am signing this object:

@criztovyl
criztovyl / da_gallery_dl.rb
Last active April 13, 2016 16:30
Downloads a full devian art gallery.
@criztovyl
criztovyl / gpl-comment.sh
Last active July 1, 2016 13:13
Tries to display the description line of a GPLed file.
gpl-comment()
{
[[ "$1" =~ ^-{0,2}h(elp)?$ ]] && { echo -e "Tries to display the description line of a GPLed file.\nUsage: gpl-comment file"; return 0; }
echo $(head -n2 $1 | tail -n1 | sed 's/^\W \?//')
}
@criztovyl
criztovyl / devpath.sh
Last active June 27, 2016 17:21
Overwrite a command with it's development one.
devpath()
{
DEVPATH_DIR=$HOME/.local/share/devpath
DEVPATH_RE='.*devpath/.'
if [[ "$1" =~ ^-{0,2}h(elp)?$ ]] || [[ -z "$1" ]]; then
echo "Usage: devpath scriptName" >&2
echo "or : devpath -l|--list" >&2
return 0
elif [[ "$1" =~ ^-{0,2}l(ist)?$ ]]; then
@criztovyl
criztovyl / notify-send-remote.sh
Last active January 14, 2017 22:03
Hacky-Hacky notify-send hack for sending from cron(tab).
#!/bin/bash
# Hacky-Hacky notify-send hack for sending from cron(tab).
# Copyright (C) 2016 Christoph criztovyl Schulz
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,