all repos — h3rald @ 019fbb7ff0b1584fc9b431c3f8728244abc2ba50

The sources of https://h3rald.com

Added jsonfeed script
h3rald h3rald@h3rald.com
Sun, 07 Mar 2010 15:07:51 +0100
commit

019fbb7ff0b1584fc9b431c3f8728244abc2ba50

parent

343f0e88dcd2b6cb51f9de0b64d2b7f0eabce823

1 files changed, 21 insertions(+), 0 deletions(-)

jump to
A jsonfeed

@@ -0,0 +1,21 @@

+#!/bin/bash +# $1: the file name (without extension) +# $2: the json feed to download +# +# Feeds: +# http://github.com/api/v2/json/commits/list/h3rald/concatenative/master +# http://github.com/api/v2/json/commits/list/h3rald/redbook/master +# http://github.com/api/v2/json/commits/list/h3rald/glyph/master +# http://github.com/api/v2/json/commits/list/h3rald/stash/master +# http://github.com/api/v2/json/commits/list/h3rald/rawline/master +# http://github.com/api/v2/json/commits/list/h3rald/h3rald/master +# http://api.backtype.com/user/h3rald/comments.json?key=47bf0031e3a18a598b85&html=1 +# http://twitter.com/status/user_timeline/h3rald.json +# http://feeds.delicious.com/v2/json/h3rald + +data=./output/data + +wget -q -O $data/tmp/$1.json $2 || rm $data/tmp/$1.json + +cp $data/tmp/$1.json $data/$1.json +