Coredump
Work, play, and everything in-between [feed]

Posts Tagged ‘flickr’

2007 in pictures

Cover-flow style, courtesy of MooFlow tools. The photos were compiled from Flickr.

I was attempting to automate the process ala-fd’s Flickr toys, what with the Flickr API’s fantastic use of JSON responses (no need for server-side nor cross-site xHTTP requests). Alas, my days were packed. But I’m getting the hang of it. I’m relearning JavaScript [...]

Work in progress: 2007 in pictures

UPDATE: It’s finally up, my review of 2007 in pictures, cover-flow style.
I’m building up a review of 2007, using Flickr photos. Nothing spectacular — just a retrospective tool for me. We have had many blessings this year, and what better way to reminisce than through pictures. For now, I’m collecting photos from various sources, one [...]

I’m famous

Sort of.
Just stumbled upon this while reviewing my Flickr account: a university lecturer in Australia used my (and a couple of other Flickr members’) mugshot in the cover for her compilation of readings. How cool is that?
Okay, so this is very ancient, but still, it’s a great ego boost. Not! But it’s nice, really.

Downloading Flickr photos, part 2

I made several improvements in the previous script:

#!/usr/bin/python
 
import flickr
import urllib
import time
import re
 
flickr.API_KEY = ‘Flick API goes here’
print "Registered using API key"
user = flickr.people_findByUsername(u’username’)
print "Found user %s – username" % user.id
try:
photos = flickr.people_getPublicPhotos(user.id, 500)
print "Found the photos"
[...]

Downloading Flickr photos

Flickr Leech is a cool web app. It displays all Flickr photos, including those already rendered invisible because of the 200-photo limit in free accounts. But I need more: I want to download these photos for backup.
After looking around, I found several tools that does the job. They didn’t quite work for me, so I [...]

« Before