Skip to content

Instantly share code, notes, and snippets.

View funkenstrahlen's full-sized avatar

Stefan Trauth funkenstrahlen

View GitHub Profile
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
javascript:location.href='https://fyyd.de/fyydify-bm/'+btoa(location.href)
@funkenstrahlen
funkenstrahlen / cre.fm.archiv.rss
Created April 20, 2014 16:24
Metaebene - CRE Chaos Radio Express - Archiv RSS Feed
<rss version="2.0" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">
<channel>
<title>CRE: Technik, Kultur, Gesellschaft - ARCHIV</title>
<description>Der Interview-Podcast mit Tim Pritlove</description>
<link>http://cre.fm/archiv</link>
<language>de</language>
<itunes:summary>Intensive und ausfuehrliche Gespraeche ueber Themen aus Technik, Kultur und Gesellschaft, das ist CRE. Interessante Gespraechspartner stehen Rede und Antwort zu Fragen, die man normalerweise selten gestellt bekommt. CRE moechte aufklaeren, weiterbilden und unterhalten.</itunes:summary>
<itunes:author>Tim Pritlove</itunes:author>
<itunes:explicit>no</itunes:explicit>
<itunes:image href="http://meta.metaebene.me/media/cre/cre-logo-600x600.jpg"></itunes:image>
@funkenstrahlen
funkenstrahlen / CrackRestrictionsPassword
Created September 12, 2013 13:37
Apple Script to Crack iOS Restriction Password Pin Code. Requires Type2Phone App on the Mac. Source: http://forums.macrumors.com/showthread.php?t=1566207
-- Author Chris Russell
-- This script is designed to brute force the restrictions passcode on iPhone
-- Assumptions:
-- Blutooth is enabled
-- Type2Phone App is running and connected to your phone (avail on Mac App Store)
-- iPhone is switched on and on the restrictions passcode screen (General - Restrictions)
global pinCodeDigit1
global pinCodeDigit2
global pinCodeDigit3
global pinCodeDigit4
<html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><style type="text/css">@media print { #feedlyMiniIcon { display: none; } }</style></head><body>$("#episodes").html(" <!-- SHOW ALL UPCOMING PODCASTS -->\n <div class="\&quot;row" episode\"="">\n <div class="\&quot;small-3" columns\"="">\n\n <!-- EPISODE PODCAST IMAGE -->\n <h2><img src="./reliveradio.de_files/-">&lt;\/h2&gt;\n\n <!-- EPISODE PLAYTIME INFO FOR SMALL DEVICES-->\n <div class="\&quot;show-for-small" playtime-small\"="">\n <!-- start time -->\n <!-- end time -->\n <div class="\&quot;time-info\&quot;"><i class="\&quot;icon-stop\&quot;">&lt;\/i&gt; 17:30&lt;\/div&gt;\n <!-- duration -->\n <!-- time left -->\n <div class="\&quot;time-info\&quot;"><i class="\&quot;icon-arrow-right\&quot;">&lt;\/i&gt; <span class="\&quot;timeleft\&quot;">&lt;\/span&gt; Min.&lt;\/div&gt;\n <!-- <div class=\"time-info\"><span class=\"percentplayed\"><\/span><\/div>\n <div class=\"time-info\">
<?php
// Parsing this spreadsheet: https://spreadsheets.google.com/pub?key=0Ah0xU81penP1dFNLWk5YMW41dkcwa1JNQXk3YUJoOXc&hl=en&output=html
$url = 'http://spreadsheets.google.com/feeds/list/0Ah0xU81penP1dFNLWk5YMW41dkcwa1JNQXk3YUJoOXc/od6/public/values?alt=json';
$file= file_get_contents($url);
$json = json_decode($file);
$rows = $json->{'feed'}->{'entry'};
foreach($rows as $row) {
echo '<p>';
#!/bin/bash
# Updates all keys of tracked users in the local gpg keychain
LIST=`keybase list-tracking`
for name in $LIST
do
keybase track -l --batch $name
done
for i in `gem list --no-versions`; do gem uninstall -aIx $i; done
brew update && brew upgrade --cleanup
@funkenstrahlen
funkenstrahlen / openvpn.md
Last active August 29, 2015 14:26 — forked from padde/openvpn.md
OpenVPN on Ubuntu 12.10 at DigitalOcean

OpenVPN on Ubuntu 12.10 at DigitalOcean

Install OpenVPN

sudo apt-get install openvpn

Generate Server Certificates

sudo cp -r /usr/share/doc/openvpn/examples/easy-rsa/2.0 /etc/openvpn/easy-rsa2

cd /etc/openvpn/easy-rsa2