Skip to content

Instantly share code, notes, and snippets.

View mgoerlich-dev's full-sized avatar

Manuel Görlich mgoerlich-dev

View GitHub Profile
This file has been truncated, but you can view the full file.
<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE tv SYSTEM "xmltv.dtd">
<!-- EPG XMLTV FILE CREATED BY Take-a-LUG TEAM- (c) 2020 Bastian Kleinschmidt -->
<!-- created on 2021-03-14 00:18:30.023844 -->
<tv generator-info-name="Takealug EPG Grabber Ver. 1.0.5" generator-info-url="https://github.com/DeBaschdi/service.takealug.epg-grabber">
<!-- TV SPIELFILM (DE) CHANNEL LIST -->
<channel id="RTL.de">
<display-name lang="de">RTL</display-name>
<icon src="http://live.tvspielfilm.de/static/images/channels/large/RTL.png" />
@mgoerlich-dev
mgoerlich-dev / springer-free-maths-books.md
Created December 29, 2015 00:05 — forked from bishboria/springer-free-maths-books.md
Springer have made a bunch of maths books available for free, here are the direct links
@mgoerlich-dev
mgoerlich-dev / pbot.html
Created May 22, 2015 19:35
Cystasy's Pfandbot
<script src="./script.js"></script>
<div id="state"><b>State:</b> Idle</div>
<!-- Login Formular !-->
<form id="login_form" action="http://koeln.pennergame.de/login/check/" method="POST" target="request_window">
ID: <input type="text" name="username" id="username" value="">
PW: <input type="password" name="password" id="password" value="">
<input type="button" value="Login" onClick="login()">
<input type="button" value="Logout" onClick="javascript:logout()"><br \><br \>
<input type="button" value="Pfandsammeln Start" onClick="javascript:pfandsammeln()">
1. you should install LWP::Simple and Fuse:Simple - use cpan or cpanm
2. you should configure the local fuse install to run as root or as common user
3. don't forget 'fusermount -u <mountpoint>' after finish the script
to test
$ chmod +x cats.pl
$ mkdir catfs
$ ./cats.pl catfs
@mgoerlich-dev
mgoerlich-dev / ios6-timers.js
Created October 31, 2012 19:27 — forked from ronkorving/ios6-timers.js
iOS6 webkit timer bug workaround
(function (window) {
// This library re-implements setTimeout, setInterval, clearTimeout, clearInterval for iOS6.
// iOS6 suffers from a bug that kills timers that are created while a page is scrolling.
// This library fixes that problem by recreating timers after scrolling finishes (with interval correction).
// This code is free to use by anyone (MIT, blabla).
// Author: rkorving@wizcorp.jp
var timeouts = {};
var intervals = {};