Skip to content

Instantly share code, notes, and snippets.

@pbausch
pbausch / FlickrFeed.sh
Created November 2, 2016 19:12
Flickr RSS feed with larger images
#!/bin/bash
wget -q -O- $1 |
sed -e 's/_m.jpg/_b.jpg/' |
sed -e 's/width="[0-9]*"//' |
sed -e 's/height="[0-9]*"//'
@pbausch
pbausch / mediumtweets
Last active August 29, 2015 14:00
Bookmarklet: Search for Medium Article Mentions on Twitter
javascript:var h=location.href;if((h.indexOf('medium.com') !== -1) && (h.split('/').length-1 >= 4)){location.href='https://twitter.com/search?q='+encodeURIComponent(h.substr(h.lastIndexOf('/') + 1))}else{alert('Not at a Medium article.');}