Skip to content

Instantly share code, notes, and snippets.

View johnraff's full-sized avatar

John Crawley johnraff

View GitHub Profile
@johnraff
johnraff / rec_radiko.sh
Last active December 12, 2020 07:21 — forked from matchy256/rec_radiko.sh
簡易Radiko録音スクリプト
#!/bin/bash
LANG=ja_JP.utf8
pid=$$
date=`date '+%Y-%m-%d-%H_%M'`
outdir="."
if [ $# -le 1 ]; then
@johnraff
johnraff / tweets2html.php
Last active July 10, 2018 05:16 — forked from russellbeattie/twitterfeed.php
Access Twitter with OAuth, get json feed and output html for embedding in web page.
<?php
/**
* tweets2html.php
*
* Modified by John Crawley 2013/07/24
* to output html from Twitter feed for embedding in web page.
*
* Based on twitterfeed.php by Russell Beattie (2012-10-16)
* (http://www.russellbeattie.com/blog/twitterfeedphp-get-your-authenticated-twitter-stream-as-an-atom-feed)
*