Django powered flickr photo voting site
11–20 of 23 posts
Re: Django powered flickr photo voting site
#12The design is clean, I like the concept. I didn't see attribution for each photo, did I miss it? I wouldn't feel comfortable visiting the site everyday if you don't give credit to the photographer.
Re: Django powered flickr photo voting site
#13Actually there are tons of voting groups of Flickr, I was really hoping that app was a way to do that better, but everything is lumped together, so it doesn't.
Re: Django powered flickr photo voting site
#14One question about your implementation. Last time I checked Django their file upload mechanism wasn't pretty, I'm not sure if you're dealing with file uploads, but did it cause any pains? Please enlighten me.
Re: Django powered flickr photo voting site
#15By the way, this site used to be written in php (Code Igniter), but I just rewrote it in Python (Django), which took about 2 weeks. I also automatically pull top photos from Flickr's interestingness api, so there's always fresh content on the site. Please offer any feedback you might have.
what prompted the rewrite?
Re: Django powered flickr photo voting site
#16The design is clean, I like the concept. I didn't see attribution for each photo, did I miss it? I wouldn't feel comfortable visiting the site everyday if you don't give credit to the photographer.
I just noticed the attribution is missing on the photo page, but present on the homepage. If you were only going to do one, it seems the one that would benefit the photographer them most is on the photo page - because likely that will be the one that is indexed and possibly found on your site later - thus the link would help them.
Re: Django powered flickr photo voting site
#17Great job. It would be a lot more addictive if it was in a hot-or-not format -- random sequence of pictures and you get to vote on each one. Each vote shows you the next one.
Re: Django powered flickr photo voting site
#18One question about your implementation. Last time I checked Django their file upload mechanism wasn't pretty, I'm not sure if you're dealing with file uploads, but did it cause any pains? Please enlighten me.
Re: Django powered flickr photo voting site
#19Actually there are tons of voting groups of Flickr, I was really hoping that app was a way to do that better, but everything is lumped together, so it doesn't.
Could you describe some ways that would make it better?
Flickr already has a very active scene where people create groups that are voted on in various ways, but it's very ad-hoc. Here are a few examples of the types of groups:
Post pictures with at least 50 favs http://www.flickr.com/groups/greatpix50/
Pictures with a least 4000 views http://www.flickr.com/groups/views4000/
Post a picture of a tree, comment on one http://www.flickr.com/groups/the_tree/
Post one, award two http://www.flickr.com/groups/history-mystery/
Top 20 Travel Pics http://www.flickr.com/groups/top20travelpix/
I would suggest looking at what these people are doing and seeing if you can make a better system for them.
Re: Django powered flickr photo voting site
#20One question about your implementation. Last time I checked Django their file upload mechanism wasn't pretty, I'm not sure if you're dealing with file uploads, but did it cause any pains? Please enlighten me.
FWIW, if you're searching for a better interface, django-filebrowser uses Uploadify which works quite well.