Brisbane Artforce

This isn't political, but it is about public space. Brisbane's had a cool project in recent years where the council supports artists painting traffic signal boxes. This is complemented by annotations on the web, including on flickr.

You could say this is just mainstreaming graffiti, and I guess it is, but it's also recognising graffiti wasn't just about defacement, but rather a revival and renewal of earlier traditions of public art.
cam: DC last year put sculptures of elephants and: donkeys around the place that were birghtly coloured, having been ?defaced? by local artists, schools and community groups. The local town here recently put out horses around the place in a similar style. Can\'t find pictures on the internet of them either. Guess I should go around and take some happy snaps and put them up on ... ah-ha flickr to the rescue .

cam
adam: In place: What I particularly like about painting traffic boxes is that it makes art out of an ugly necessity. Bruce Sterling\'s new design manifesto - which I haven\'t and may not read - proposes a typology of designed objects, quoted by Raph here :

In part because the trend Bruce projects are still maturing, these things make a smudgy mess of Bruce\'s typology. They\'re mass produced machines, turned into artifacts by painting, which makes them interesting enough to be blogged about hot-or-not style on the web.

Getty and Flickr

Getty Images will be contacting select Flickr users with an eye to licensing those pictures to Getty's clients. Flickr is a little odd in that most image websites offer mechanisms to monetize those pictures through selling prints, etc. I guess Flickr is more comfortable with the $25 a year model for professional users.

The Boudist offers a professional photographers opinion on the new partnership between Getty/Yahoo/Flickr:

I don't put photos on Flickr with a view to selling them. Many photos i couldn't sell because of copyright issues or existing licensing deals.

But a bit like bloggers using google adsense on a personal blog, it wouldn't hurt to get a bit of extra pocket money should someone wish to buy a license to use a photo i already took.

I already upload everything in hi-res, i title, caption and keyword the images. It's all ready to go.

It is probably a mistake, IMO, for Getty to only license select photographs, probably easier just to try and license the whole lot. You never know what reasons people will want to license a photograph for.

Python and the Flickr Services API

I decided to try and integrate my flickr feed into the blog somehow. After some cursory looking around it seemed using the Flickr Services and the flickrapi was the simplest way to achieve that. While this open style of API might enable Web 2.0, the cloud, and all other manner of new uses, for me I just wanted to put my latest flickr uploads on one page on my blog.

I used easy_install to put the flickrapi library on my dev machine and ISP's server. I got the api-key from flickr and since I haven't changed my user id to something more human readable it was a simple find as well.

 # get the list of photos from flickr
def get_flickr_photos(self):
    flickr = flickrapi.FlickrAPI(self.flickr_api_key, format='etree')
    photos = flickr.photos_search(user_id=self.flickr_user_id, per_page='50') # comes out as the _ElementInterface
    # parse out the XML and return an array of URLs
    # http://farm{farm-id}.static.flickr.com/{server-id}/{id}_{secret}_[mstb].jpg
    urls = []
    for image in photos.getchildren()[0]:
        img = {}
        src = 'http://farm%s.static.flickr.com/%s/%s_%s_m.jpg' %  (image.attrib['farm'], image.attrib['server'], image.attrib['id'], image.attrib['secret'])
        url = 'http://www.flickr.com/photos/%s/%s/' % (self.flickr_user_id, image.attrib['id'])
        img['src'] = src
        img['title'] = image.attrib['title']
        img['url'] = url
        urls.append(img)
    return urls

Turned out to be simpler than I expected. The hardest part was working out what the hell I was getting back, Python interfaces can be quite opaque to what data they are carrying. I finally found ElementTree.toString(_ElementInterface) so I could see what I was getting and how far down it I had to drill to get the information I wanted.

You can see the results on the photography page. I made it permanently accessible by the camera icon at the top of the page.
ranomatic: This is cool. I could imagine all sorts of UI fun if you went all flash on it, but as it stands, it is simple and does exactly what you wanted to do.
cam: I have a six month project coming up that is in Flex.
I just re-upped my flickr pro account. I realized seeing the payment history that this is my fourth year doing it. For $25 I think it is a good service.

Most Popular on South Sea Republic

The articles that have been viewed the most:

Most Popular Restaurants in Phoenix

Phoenix Eats Out is the restaurant review site for Phoenix, Scottsdale and Old Town Scottsdale which lists the modernist and contemporary restaurants, taverns and bars in the greater Phoenix area. This is the list of the most popular restaurants pages from phoenixeatsout.com that have been viewed the most; My personal favourite restaurants in Phoenix are AZ88, Postinos, Bomberos with Grazie, Humble Pie, Orange Table, The Vig, Fez and others coming close behind. View the complete list with the photo-journalistic style images on phoenixeatsout.com

Most Popular Hikes in Arizona

Arizona is an outdoor state and has lots of hiking in the city and around the state. Phoenix is unusual for most cities in having several large mountains in the center of the city with great hiking. Anyone who comes to Phoenix has to do the Echo Canyon trail on Camelback and the Summit Hike on Squaw Peak or Piesta Peak. The views of the city, suburbs and surrounding mountains are wonderful from Camelback and Piesta Peak. For more experienced hikers there is the McDowell Mountains in North Scottsdale that has several difficult and strenuous hikes in Tom's Thumb and Bell Pass. Alternatively, you can hike the highest mountain in Arizona. At 12,600 feet Humphrey's Peak is a long and difficult hike.

Alternate Australian Constitutions

Between 2004 and 2009 this site, southsearepublic.org, was a constitutional blog based on scoop which focused on Australian and global constitutional issues. One of the strongest aspects of it was the development of constitutions by those involved in the blog. These constitutions are the outcome: The constitutions were built using principles from Montesquieu's separation of powers, the enlightnment's universal political rights and the ancient Athenian technology of sortition and choice by lot.

Archives For South Sea Republic

South Sea Republic started in 2004 as an Australian constitutional blog in 2004 based on scoop software. It was an immigrative outgrowth of Kuro5hin. The archives for each year since then; The articles are ordered by views.

Who Is Cam Riley

Cam Riley I am an Australian living in the United States as a permanent resident. I am a software developer by trade and mostly work in Java and jump between middleware and front end. I originally worked in the New York area of the United States in telecommunications before moving to Washington DC and working in a mix of telecommunications, energy and ITS. I started my own software company before heading out to Arizona and working with Shutterfly. Since then I have joined a startup in the Phoenix area and am thoroughly enjoying myself.

I do a lot of photography which I post on this website, but also on flickr. I have a photo-journalistic website which lists the modernist and contemporary restaurants in phoenix. I have a site on the Australian Flying Corps [AFC] which has been around since the 1990s and which I unfortunately lost the .org URL to during a life event; however, it is under the www.australianflyingcorps.com URL now. The AFC website has gone through several iterations since the 90s and the two most recent are Australian Flying Corps Archives(2004-2002) and Australian Flying Corps Archives(2002-1999) which are good places to start.

Websites Worth Reading

Websites of friends, colleagues and of interest;