This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# A small script to convert all AVI files in a folder to mp4 h264 | |
# You can either use HandbrakeCLI or ffmpeg. | |
# ffmpeg requires to be compiled with libx264 which is not default in debian based distributions | |
# | |
# To use HandbrakeCLI do not forget to install the packages! | |
# For Linux Mint I had to do the following to get HandbrakeCLI running: | |
# sudo add-apt-repository ppa:stebbins/handbrake-snapshots | |
# sudo apt-get update |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<iframe name="Relive Radio Player" src="http://cm.wikibyte.org/testcodes/neu-chapters/standalone.php?stream=mix-mobile&color=289dcc&liste=5" height="360px" width="100%" marginwidth="10" marginheight="10" border="0"></iframe> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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="\"row" episode\"="">\n <div class="\"small-3" columns\"="">\n\n <!-- EPISODE PODCAST IMAGE -->\n <h2><img src="./reliveradio.de_files/-"><\/h2>\n\n <!-- EPISODE PLAYTIME INFO FOR SMALL DEVICES-->\n <div class="\"show-for-small" playtime-small\"="">\n <!-- start time -->\n <!-- end time -->\n <div class="\"time-info\""><i class="\"icon-stop\""><\/i> 17:30<\/div>\n <!-- duration -->\n <!-- time left -->\n <div class="\"time-info\""><i class="\"icon-arrow-right\""><\/i> <span class="\"timeleft\""><\/span> Min.<\/div>\n <!-- <div class=\"time-info\"><span class=\"percentplayed\"><\/span><\/div>\n <div class=\"time-info\"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# sshuttle helpers | |
# | |
# To load, you can add a line in ~/.bashrc: | |
# source ~/.bashrc.d/sshuttle_helpers | |
# | |
# or add a few lines to load all files in ~/.bashrc.d | |
# for f in ~/.bashrc.d/*; do | |
# source $f; | |
# done | |
# |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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>'; |
NewerOlder