Entering The Wonderful World of Geo Location
I thought I could not be out-geeked. With a background in radio, and having dabbled in the demo scene on the Commodore 64 and hung out on BBSes and IRC for a long time and all the other things normal kids don’t quite get, I thought I was safe in this area.
Then I went to my first WhereCamp, an unconference dealing with geographical issues and how they relate to the world of Web development. Even my A-Levels in Astronomy did not help me there. I was out-geeked by the people who drive and tweak the things that we now consider normal about geo-location on the Web.
Pulling out your phone, find your location and getting directions to the nearest bar is easy, but a lot of work has gone into making that possible. The good news is that because of that effort, mere geo-mortals like you and me can now create geographically aware products using a few lines of code. So, let’s give the geo-community a big hand.
[By the way, did you know we have a brand new free Smashing Email Newsletter? Subscribe now and get fresh short tips and tricks on Tuesdays!]
Why Geo Matters
First of all, why is it important to consider physical location on this planet (at this moment) when we develop Web products? There are a few answers to this.
The first answer is mobility. The days of people sitting in front of desktop machines at home are over. Sales of mobile devices, laptops and netbooks have overtaken those of bulky stationary computers in the last few years. The power of processors now allows us to use smaller, more mobile hardware to perform the same tasks. So, if people use their hardware on the go, we should bring our systems to them. Which brings us to the second—very important—point: relevance.
Giving the user content that is relevant to the physical space they are in at the moment makes a lot of sense. We are creatures of habit. While we love the reach of the Internet, we also want to be able to find things in our local area easily: people to meet, cafes to frequent, interesting buildings and museums to learn about. The advertising industry—especially of the adult and dating variety—realized this years ago. I am sure you have come across one of the following before:

I am sure these ads are more successful than the ones that show only user names. That the photos and names are the same for every location doesn’t seem to be a problem (but yes, I noticed it). So how does it all work?
Getting The User’s Location Via IP
Every computer on a network has a number that identifies it: its IP address. The Internet is nothing but a massive network, and your IP number is assigned to you by the service provider that you have used to connect to that network. Because the numbers that service providers assign change from one geographical location to the next (much like telephone numbers), you can make quite a good estimate of where your visitors are from.
To find out where a certain phone number is from, you use a phone book. To find out where an IP is from, you can use the Maxmind GeoIP database. Maxmind also provides a JavaScript solution that you can use on websites:
<script type="text/javascript" src="http://j.maxmind.com/app/geoip.js"></script>
<script>
var info = document.getElementById('info');
var lat = geoip_latitude();
var lon = geoip_longitude();
var city = geoip_city();
var out = '<h3>Information from your IP</h3>'+
'<ul>'+
'<li>Latitude: ' + lat + '</li>'+
'<li>Longitude: ' + lon + '</li>'+
'<li>City: ' + city + '</li>'+
'<li>Region: ' + geoip_region() + '</li>'+
'<li>Region Name: ' + geoip_region_name() + '</li>'+
'<li>Postal Code: ' + geoip_postal_code() + '</li>'+
'<li>Country Code: ' + geoip_country_code() + '</li>'+
'<li>Country Name: ' + geoip_country_name() + '</li>'+
'</ul>'
info.innerHTML = out;
</script>

This gives you some information on the user (try it out for yourself). The challenge, though, is relevance. Your IP location is the location of the IP that your provider has assigned to you. Depending on your provider, this could be quite a ways off (in my case, I live in London, but my provider used to show me as living in Rochester). Another problem is if you work for a company that uses a VPN. At Yahoo, for example, I have to connect to the VPN to read my company email, and I have to choose a location to connect to:

So, for a solution like the one highlighted above, I would show up as being in a totally different part of the world (which might be useful for watching Internet TV in the UK while I am in the US). IP geo-location, then, is an approximation, not a dead-on science.
Getting The User’s Location Via The W3C Geo API
Guessing geographical location via IP is possible, but it can also be pretty creepy. Being able to take advantage of your location is useful, but security-conscious users and people who are generally suspicious of the Internet are not happy with the idea of their movements being monitored by a computer. This makes sense: if I can monitor your whereabouts day and night, I would know where and when to rob your house without you being there.
There are a lot of solutions to the challenge of having good-quality geo-location and maintaining privacy. Google Gears has a geo-location service; Plazes helps you store your location; and Yahoo’s Fire Eagle is probably the most polished way to securely maintain your location on the Web.
The problem with all of these services is that they require the user to either install a plug-in or visit a Web service to update their location. This is not fun; browsers should do the work for you.
We now have a W3C recommendation for a geo-location API that allows browsers to request the geographical location of the user. This makes it less creepy, and you get real data back.
Firefox 3.5 and above supports the W3C geo-location API. So does Safari on the iPhone if you run OS 3.0 or above. If you use the API, the browser will ask the user whether they want to share their location with your website.

Once the user allows you to get their location, you get much more detailed latitude and longitude values. Using the API is very easy:
// if the browser supports the w3c geo api
if(navigator.geolocation){
// get the current position
navigator.geolocation.getCurrentPosition(
// if this was successful, get the latitude and longitude
function(position){
var lat = position.coords.latitude;
var lon = position.coords.longitude;
},
// if there was an error
function(error){
alert('ouch');
});
}
Compare the IP and W3C solutions side by side. As you can see, there can be quite a difference in measuring the visitor’s location. The extent of the difference is shown in the following demo:
Converting Latitude And Longitude Back Into A Name
Having more information is nice, but we have lost the name of the city and all the other nice data that came with the Maxmind database. Because the location has changed, we cannot just grab that old data; we have to find a way to convert latitude and longitude coordinates into a name. This process is called “reverse geo-coding,” and several services on the Web allow you to do it. Probably the most well-known is the geo-names Web service, but it has a few issues. For starters, the results are very US-centric.
One freely available but lesser-known reverse geo-coder that works worldwide comes from a surprising source: Flickr. The flickr.places.findByLatLon service returns a location from a latitude and longitude coordinates. You can try it out in the app explorer, but by far the easiest way to use it is by using the Yahoo Query Language (or YQL). YQL deserves its own article, but let’s just say that, instead of having to authenticate with the Flickr API and read the docs, reverse geo-coding becomes as easy as this:
select * from flickr.places where lat=37.416115 and lon=-122.0245671
Using the YQL Web service, you can get the result back as XML or JSON. So, to use the service in JavaScript, all you need is the following:
<script type="text/javascript" charset="utf-8">
function getPlaceFromFlickr(lat,lon,callback){
// the YQL statement
var yql = 'select * from flickr.places where lat='+lat+' and lon='+lon;
// assembling the YQL webservice API
var url = 'http://query.yahooapis.com/v1/public/yql?q='+
encodeURIComponent(yql)+'&format=json&diagnostics='+
'false&callback='+callback;
// create a new script node and add it to the document
var s = document.createElement('script');
s.setAttribute('src',url);
document.getElementsByTagName('head')[0].appendChild(s);
};
// callback in case there is a place found
function output(o){
if(typeof(o.query.results.places.place) != 'undefined'){
alert(o.query.results.places.place.name);
}
}
// call the function with my current lat/lon
getPlaceFromFlickr(37.416115,-122.02456,'output');
</script>
Combine that with the other services, and we get a more detailed result and can put a name to the coordinates:
The Trouble With Latitude And Longitude
While latitude and longitude coordinates are a good way to describe a location on Earth, it is also ambiguous. The coordinates could represent either the centre of a city or a point of interest (such as a museum or a pub) in that spot.
WOEID to the Rescue
To work around the problem, Yahoo and Flickr (and soon will Twitter) support another way to pinpoint a location. The Where On Earth Identifier (or WOEID) is a more granular way to describe locations on Earth. Because Flickr supports it, we can easily get get photos from a particular area:
select * from flickr.photos.search where woe_id in ( select place.woeid from flickr.places where lat=37.416115 and lon=-122.02456 )
Using this and a few lines of JavaScript, showing geo-located photos is pretty easy:
This has also been wrapped in a simple-to-use YQL solution. The following code will display 10 photos of Paris:
<script>
function photos(o){
var container = document.getElementById('photos');
container.innerHTML = o.results;
}
</script>
<script src="http://query.yahooapis.com/v1/public/yql?q=
select%20*%20from%20flickr.photolist%20where%20location%3D%22paris%2Cfr
%22%20and%20text%3D%22%22%20and%20amount%3D10&format=xml&
env=store%3A%2F%2Fdatatables.org%2Falltableswithkeys&callback=photos">
You can also play with this in the YQL console.
Why Not Search For The Location’s Name?
The main question about implementations such as the one above is why couldn’t we just do a search on Flickr for the city, instead of doing all the complex geo-lookups? The reason is false positives. Take Paris, for example: if you want to show photos of Paris on a travel website, you don’t want Paris Hilton to show up in there. Same goes for Jack London. You may also want to show photos of London, England, not London, Ontario. Geographic data is full of these kinds of gotchas, and the term for finding the right one is “disambiguation.” See the Wikipedia article on “Victoria” to see just how many geographical contexts this term can have.
Turning Text Into Geo-Data
Finding a visitor’s geographic location is all well and good, but it doesn’t mean much if you can’t link it to information for that area. This is where it gets tricky. For Flickr (and soon Twitter), this is easy, because both services are able to attach geographical locations to the content you put in them. This is not so for most of the information on the Web, though, and this is when we resort to clever algorithms, machine-learning, pattern-matching and all the other think-tank stuff that computers and the scientists in front of them do.
Say you want to identify the geographical locations that a particular text or Web page talks about. Yahoo offers a service for that called Placemaker, and it is pretty easy to use. You need to get a developer key and send this as appid, send a text as documentContent, define the type of the text as documentType and define the type of data you want back as outputType. All of this needs to be sent as a POST to http://wherein.yahooapis.com/v1/document:
<form action="http://wherein.yahooapis.com/v1/document" method="post">
<textarea id="text" name="documentContent">Hi there, I am Chris.
I live in London, I am currently in Sunnyvale and will soon be in
Atlanta and Las Vegas.</textarea>
<div><input type="submit" name="sub" value="get locations"></div>
<input type="hidden" name="appid" value="{YOUR_APP_ID}">
<input type="hidden" name="documentType" value="text/plain">
<input type="hidden" name="outputType" value="xml">
</form>
You can try this out yourself. Using PHP to call the API instead of a simple form, you can even format the output nicely. See it in action here:
While developers who have played around with Web services won’t find Placemaker hard to use, the service can be daunting for the average developer. That is why I built GeoMaker some time ago. GeoMaker allows you to enter a text or URL, select the locations you want to include in the final outcome, and get the locations either as a map to copy and paste or as micro-formats.
However, because there is also a YQL solution for using PlaceMaker in JavaScript, we can do the same with a few lines of client-side code to enhance an HTML document. Check out the following example:
To use this, you need three things: a text with geographical locations in them in an element with an ID, a Google Maps API key (which you can get here) and the following few lines of code:
<script src="http://github.com/codepo8/geotoys/raw/master/addmap.js"></script>
<script>
addmap.config.mapkey = 'COPY YOUR API KEY HERE';
addmap.analyse('content');
</script>
This makes it incredibly easy to give your visitors a sense of what part of the world a text is related to.
Adding Maps To Your Documents
Online maps have been around for a while now (and Google Maps was instrumental in the rise of AJAX), and many providers out there allow you to add maps to your documents. Google is probably the leader, but Yahoo also has maps, as does Microsoft and many more. There is even a fully open map service called Open Street Maps, which has been instrumental in the recent rescue efforts in Haiti.
If you want interactive maps, probably the easiest thing to use is Mapstraction, which is a JavaScript library that does away with the discrepancies between the various map providers and gives you a single interface for all of them. 24ways published a good introduction to it three years ago.
Probably the simplest way to show a map that supports markers and paths in your document without having to dive into JavaScript is the Google static maps API. It creates maps as images, and all you need to do is provide the map information in the src URI of the image. For example, in the script example above, this would be:
http://maps.google.com/maps/api/staticmap? sensor=false &size=200x200 &maptype=roadmap &key=YOUR_MAP_KEY &markers=color:blue|label:1|37.4447,-122.161 &markers=color:blue|label:2|37.3385,-121.886 &markers=color:blue|label:3|37.3716,-122.038 &markers=color:blue|label:4|37.7792,-122.42
You can define the size and type of the map. If all you provide is the location of markers, the API will automatically find the right zoom level and area to ensure that all markers are visible. Google’s website even offers a detailed tool to create static maps, including markers and paths.
Geo Is A Space To Watch
I hope this has given you some insight into all of the things you can do to bring the earth to your product and to put your product on the map. Geo-location and geo-aware services are already huge, and they’ll be even more important this year. There will be more services—some mobile providers are ready to roll out new hardware and software—and now you can be a part of it.
What the geo-world needs now is a designer’s eye, and this is where you can help the geo-geeks create apps that matter, that look great and that make a difference in our visitors’ lives. For inspiration, check out Mapumental, which allows you to pinpoint a place to live in London, or see how Google Earth and some 3-D Objects allow you to race a milk truck on real map data.
(al)
© Christian Heilmann for Smashing Magazine, 2010. | Permalink | 45 comments | Add to del.icio.us | Digg this | Stumble on StumbleUpon! | Tweet it! | Submit to Reddit | Forum Smashing Magazine
Post tags: javascript
Uncovering Toy Cameras and Polaroid Vintage Effects (With Photoshop Tutorials)
Since its emergence, the digital photography market has gradually supplanted the traditional one. APN and digital SLR cameras entered our lives, and some people announced the death of silver-based images. This is not all lie, and yet old-fashioned images have been particularly popular in the past few years. All we do seem to do now is try to recreate the atmosphere of those bygone times anyway. Blurry, distorted and over-saturated images are not just a fad anymore. People have became familiar with the style and even consider it a full-fledged photographic genre.
And this is where toy cameras play a role. These devices, made entirely of plastic, including often the lens itself, are not only toys. Sure, they cost next to nothing and have no controls to speak of, but this is what people like about them: they create unpredictable pictures, with equally unpredictable vintage effects. Once you understand this, the rest is a beautiful game. Take them anywhere, anytime, and photograph whatever you like.

Photo credit: Pirouetting, by helenannsia
How does this apply to modern design? Now that vintage websites are so trendy, why not look to this type of image for inspiration? You probably don’t want to go through the trouble of taking up silver-based photography because that would mean buying, developing and scanning film, maybe even making prints. That takes time and is expensive.
What you can do, though, is use the magic of Photoshop to make your ultra-sharp, high-definition images look like they were taken with one of these cameras. Below are a list of the most famous toy cameras and some tutorials that can be used to recreate their famous effects. Most of them are part of the Lomography movement, but you might also want to consider some other options in trying to recreate that authentic look. You also may be interested in our previous article “The Disturbing Beauty of Oversaturated Pictures and Lomography.”
[By the way, did you know there is a brand new Smashing Wordpress Book? Push WordPress past its limits!]
Famous Toy Cameras
Toy cameras are cheap, low quality and yet functional. As such, the deformations in the photos they produce are pronounced, and not all images are guaranteed to be perfectly exposed. Still, there are just so many of them these days that picking a few is hard. The ones presented here have paved the way for the success of the others. You may know them but not the stories behind them?
Diana
Let’s start where it all began. Picture yourself in Hong Kong in the early ’60s, when a factory starts producing the Diana. This inexpensive plastic-body camera was at the time usually given away as a novelty gift. Occasionally, it would be used by actual photographers who took advantage of the various effects it produced. And many effects there were. Because of the poor quality of materials used, the Diana camera was disposed to light leaks, leading to film damage, an effect typically fixed by sealing the seams with light-proof tape. Handy, huh?
But the plastic body wasn’t the most interesting part: it was the lens, also made out of plastic. Not only did it enhance the already low contrast created by the light infiltration, but it also made for odd color rendering, chromatic aberration and blurry images. As if this weren’t enough, the image circle only marginally covered the diagonal of the film frame, which is why Diana images have heaving vignetting.

Photo credit: elZekah
As photographers started to deliberately exploit these characteristics, production grew through the ’70s and opened the way for other toy camera manufacturers.

Photo credit: chomdee
Lomo LC-A
This is where things get a bit tricky, so pay attention. It’s now the beginning of the ’90s, and for a few years the Russian factory Lomo PLC has been producing the Lomo LC-A camera, which basically has all of the characteristics of a toy camera (vignetting in particular). But production was stopped, and the camera was all but forgotten until two Austrian students found one at a flea market in 1991 and decided to exploit its marketing potential. They convinced the director of the Lomo PLC factory to relaunch production and negotiated an exclusive contract for distribution with their brand-new company: Lomography AG.

Photo credit: maaku
And here begins the Lomography movement. If the term is familiar to you, you probably know at least two things about it. First, it promotes casual snapshot photography. Second, it is associated with over-saturated and high-contrast images. To confuse things, this second characteristic has nothing to do with the LC-A camera itself or with any other cameras for that matter. It is actually the result of the way the film is processed, which would usually be cross-processing. But Lomography is a movement, not a technique, and it was certainly the first to promote camera imperfections as an aesthetic. The success of the LC-A camera helped spread this aesthetic.

Photo credit: citronnade
Holga
With the success of this movement, Lomography AG became interested in other low-cost cameras, such as the Holga, which had been produced in China for a decade. Even though it was made by a different manufacturer, the Holga was considered the successor of the Diana. Inspired by its predecessor, the Holga was designed as an inexpensive mass-market camera. And like the Diana, it is not of the best quality and has the same flaws.

Photo credit: babyabby10
But the Holga became popular and was even exported to the West over time, mostly for photo-reporting, for which its low profile was appreciated. Its problems were no longer problems, and now it is not surprising to hear of Holga photos winning awards. Because it is entirely manual, one can create effects, such as double exposure and panoramas, by not winding the film.

Photo credit: Bill Hansen (website)
ActionSampler, SuperSampler, Oktomat
These three cameras don’t have many differences. They all take multiple shots in a set period of time, thus creating micro-images that look like short animated movies. The Actionsampler and Supersampler have four lenses each, while the Oktomat has eight, fitting eight frames into the standard 35mm.

Photo credit: amylynnthompson
To make them a bit more fun, what you see through the viewfinder is not exactly what you get.

Photo credit: golfpunkgirl
Lomo Fisheye 2
As the name suggests, the Lomo Fisheye camera has a fish-eye lens. It was the first 35mm compact camera to offer such a wide angle (170°), and unlike the other toy cameras covered here, it gave surprisingly good results for the price. The second edition came with several enhancements, such a viewfinder that covered the same angle as the lens (it was blocked off before).

Photo credit: aapnootmies
The effect created, often seen in sport images, can serve many other purposes. But the user should be aware of two major characteristics: strong deformation and light leaks.

Photo credit: faha
Photoshop Tutorials And Resources
Now, let’s put all this into practice. Even if you are familiar with these effects, have ever actually tried to replicate them? There are a lot of different effects, and you can combine them to create unique images.
Faking the Holga Camera and Fisheye Lens
How to Fake a Holga Photograph
This tutorial shows you how to fake Holga photographs in a few simple steps.
Another Way to Fake a Holga Photograph
Another tutorial on faking Holga photographs.
Fish-eye effect
This shows you how to create a fish-eye effect for a picture taken with a regular lens. This one is a video and it addresses two important points: the lens circle border is not supposed to be so sharp when taking a fish-eye photograph, and one often deals with light infiltration.
Fish-eye effect
Another fish-eye tutorial. It doesn’t show how to distort the image, so you will have to add this step yourself, but it adds a nice final touch to the image by using a picture of the inside of a fish-eye lens.
Recreating Low-Quality Camera Flaws
Vignetting
A very simple tutorial on recreating the vignetting effect.
Soft-Focus Lens Effect
What if you’re already happy with the contrast and color saturation of your image and just want to recreate the effect of a soft-focus camera lens or diffusion filter? In this tutorial, you’ll learn a fast and easy way to add a more traditional soft-focus lens effect to images.
Faking Barrel Distortion and Chromatic Aberrations
Here is a nice Photoshop plug-in to fake barrel distortion and chromatic aberrations. Adding these effects to your pictures will make them look even more authentic.
Light Leaks Effect, Part 1 and Part 2
Of course, this article wouldn’t be complete without a great tutorial on light leak effects. Here is an awesome one, divided into two parts, each covering a different effect: a white-blur light and a colored bar leak.
Working on Colors and Light Exposure
Getting That X-Pro Lomo Look
This tutorial is fairly quick and easy. It shows you how to get that great x-pro Lomo look by tweaking color. You’ll be exploring a new method of vignetting, and you’ll be widening and blurring the image a little.
Cross-Processing Tutorial
With so many possible permutations of film stock and processing techniques, there is no single, identifiable look to cross-processed images. The most common combination is C-41 as E-6, in which slide chemistry is used to process color negative film; and mimicking it in Photoshop is a quick job. Image contrast is usually high, with blown-out highlights, while shadows tend towards dense shades of blue. Reds tend to be magenta, lips almost purple and highlights normally have a yellow-green tinge.
Cross-Processing
Another cros-processing tutorial.
Vintage Effect
Age your images a give them a vintage effect.
Using Textures and Double Exposure
Through the Viewfinder
Did you know that Flickr has a Through the Viewfinder group? The idea is that you shoot through the viewfinder of an old camera using your modern digital or film camera and create an interesting framing effect. Here is a tutorial on how to create this effect.
Resources of Speckle Pattern
Yes, there is also a Flickr group called “Noise and Dust Through the Viewfinder.”
Paper Texture Effect
Here is a quick and easy tutorial for those who want to learn the art of taking a photo and turning it into an old-fashioned vintage picture.
Some More Paper Texture Effect
Another tutorial (this one a video).
Filmstrip Effect
Download a filmstrip template and use it to create negatives of your pictures.
Double Exposure
When you take a double-exposed photograph, the results are usually a bit unpredictable. With Photoshop you have much more control over the result.
Another Way to Create Double Exposure
While the most common way to create a double exposure is by using a different blending mode on the top layer and adjusting its opacity, this method accurately simulates how a camera takes a double exposure.
Other Ideas
No tutorials are needed to create these effects. They are included here merely to give you more ideas. You’ll still need to work on your pictures to get that vintage look. Then, just put them together and enjoy.
Shoot Series Like the Oktomat and the Actionsampler
Draw inspiration from the Oktomat and Actionsampler cameras. You’ll get either four or eight images in the same frame, each of them having been shot after an interval of only a few seconds.

Photo credit: Look!, by Moyö
Shoot Series like the Supersampler
The Supersampler effect is quite similar to the Actionsampler: four images in the same frame, but spaced differently. And remember that you can arrange layers both horizontally and vertically.

Photo credit: moving clocks run slow, by aleinsomniac
Panorama 1
Panorama images don’t necessarily have to be perfectly arranged. Here is an example of what else can be done.

Photo credit: Christophe Dillinger (website)
Panorama 2
Another inspiring panorama.

Photo credit: bruceberrien
Panorama 3
The panorama view can be combined with a filmstrip effect. It simulates a double-exposure panorama taken on a manual camera.

Photo credit: mikrofoniusz
Want More?
Polaroid
If cheapness is a defining characteristic of toy cameras, it surely isn’t for Polaroids. The Polaroid camera itself is not expensive, but because Fuji is now the only company that produces the film for it, getting affordable ones has become difficult. But this may change in the next few months thanks to the Impossible Project.
Going back a bit, the world’s first commercial instant camera was the “Land” camera, unveiled in 1947. Since then, Polaroid has become synonymous with instant photography, because most of the cameras have been created by the Polaroid Corporation. Nowadays, the cameras are used by photographers mainly to preview their work before actually shooting. But as toy cameras, they are fun to play with and can make for nice effects.

Photo credit: paine666
Polaroid and Transfer Effect
Retro Polaroid Coloring on Your Photos
This is a simple tutorial on how to get that retro Polaroid coloring in your photos.
Polaroid Transfer Effect
This Photoshop tutorial shows you how to create a cool old photo transfer edge effect using a piece of stock photography, an alpha channel and the burn and dodge tools.
Showcase of Beautiful Pictures
Considering that Flickr has a group for almost every subject, it is no surprise that there is one for toy cameras. Here is a showcase of the most beautiful images from it.

Photo credit: have I told you lately, by cHr1st1an S

Photo credit: ubu84

Photo credit: 000038, by qwj

Photo credit: 54330027, by etara

Photo credit: Ipanema Beach – Brazil, by marcelo_maia
Photo credit: Hélicoïdal, by Cathy Lehnebach

Photo credit: Purgatoire, by stiveune

Photo credit: untitled, by Greg Zauswoz

Photo credit: untitled, by bradbrochill

Photo credit: .., by cjlomo

Photo credit: spree1, by hellomelly

Photo credit: Love me two times, by laszlo_ototh

Photo credit: exit, by renaishashin

Photo credit: untitled, by Sergio Conde Sánchez

Photo credit: Akhirnya buat lomba juga -__-, by febryanyovi

Photo credit: Cosy Clausterphobia, by miss_michelle

Photo credit: svema_test1, by ashtonleee

Photo credit: untitled, by poppart

Photo credit: lomographicsocietyinternational

Photo credit: La Bòfia – Redscale, by fgali1964

Photo credit: chomdee

Photo credit: offcenter

Photo credit: Holga Tennis, by Nick Whitmoyer

Photo credit: golfpunkgirl

Photo credit: eyetwist
Further Resources
Old Toy Camera – Photoshop action
This Photoshop action makes images look as though they are aged prints, shot on a toy or antique camera. Also included are two actions that create borders similar to those seen on photos from many antique and toy cameras.
Toy Camera Contest
FILE presents here a selection of images submitted for its Toy Camera Contest. This collection gives an idea of the challenge facing the judges to find three winners. The range and quality of the submitted images are impressive.
Gallery
This project is home to photos taken with toy cameras. Most are plastic: Holga, Diana, Dorie, Debonair, Lubitel, Banner, Snappy and Yunon. Distortion, blur and imperfection are some of the characteristics that endear these cameras to enthusiasts.
Abduzeedo: 60 Interesting Lomo Fisheye Shots
Gathered here are a few Lomography fish-eye shots. Some were taken with Lomography cameras such as the Diana and the LC-A+ with a fish-eye lens adapter attached.
Lomography.com
Lomographic Society International Website.
(al)
© Jessica Bordeau for Smashing Magazine, 2010. | Permalink | Be the first to comment | Add to del.icio.us | Digg this | Stumble on StumbleUpon! | Tweet it! | Submit to Reddit | Forum Smashing Magazine
Post tags: photography, photoshop, toy camera, tutorial, Tutorials, vintage
SXSW 2010 for Marketers & Online Strategists
Navigating SXSW is overwhelming to say the least! To help you out ReadWriteWeb has been breaking the events, panels and parties down into vertical reviews. This post provides what we think are some of the best for marketers and online strategists. We’d also love to hear your recommendations in the comments.
Online strategy is multi-faceted. You need to know as much about marketing and understanding people and their motivations as you do perfecting the online experience, understanding the next technology breakthrough on the horizon and being an excellent conversationalist – while still being able to measure the impact of it all. So this list provides a smattering of some of the best to see in all four.
This is part of a series of ReadWriteWeb guides to SXSW Interactive 2010. If this guide isn’t your cup of tea, be sure to check back for more information soon!
How Your Brand Can Succeed in the New Web
With Brian Solis. “Engage is the new book by Brian Solis that will debut at SXSW. Representing the third book on new media and its impact on society, culture and communication. Engage will help anyone not only understand the changes in the media landscape but also how to lead it. Brian Solis will be joined by a special guest to discuss the new book and answer questions followed by a book signing.”
“The ability to share online has allowed consumers to control and filter the Web. For brands and publishers, tapping into Influence is critical to social media’s future. What is influence and how is it measured? Leading voices in social media from multiple backgrounds will define the value of influence, discuss best practices, and predict future impact. Data will be shared! This panel is sponsored by ShareThis.” With Tim Schigel, Paul Berry, Dave Knox, Mike John-Baptiste, Shiv Singh.
Extending Your Brand? There’s an App for That
“For many, brand extension into the digital realm means a Web site, a banner ad, a viral campaign. But applications can extend conversations and perceptions of a brand, as well as add to discussions and ideas in compelling new ways. How can applications help your brand and idea be more authentic, genuine, user friendly, and just plain old fun? Learn from the folks that are making it happen. This panel is sponsored by Microsoft Silverlight.”
With Gary Vaynerchuk. The content of this presentation has not been announced, but knowing Gary and his successful track record in growing business through the use of social media, this one is not to be missed.
Program or be Programmed: Ten Commands for a Digital Age
With Douglas Rushkoff. “Winner of the first Neil Postman award for Career Achievement in Public Intellectual Activity, Douglas Rushkoff is an author, teacher, and documentarian who focuses on the ways people, cultures, and institutions create, share, and influence each other’s values.”
I Don’t Trust You One Stinking Bit
“What gives people confidence on the Web? Bringing together experts in social capital and online trust, we help you build the company your users can love and call their own.” With Chris Brogan and Julien Smith.
Monkeys with Internet Access: Sharing, Human Nature, and Digital Data
Clay Shirky hasn’t announced the content of his presentation yet. He “divides his time between consulting, teaching, and writing on the social and economic effects of Internet technologies. His consulting practice is focused on the rise of decentralized technologies such as peer-to-peer, Web services, and wireless networks that provide alternatives to the wired client/server infrastructure that characterizes the Web.”
With Craig Watkins. “In 2006, S. Craig Watkins participated in the MacArthur Foundation’s well-funded digital media initiative alongside a select team of scholars and tech experts. The goal was simple: to understand young people’s emphatic embrace of social and mobile media. Watkins went on to build a small research team that skillfully collected over 500 surveys and conducted 350 in-depth interviews with young adults, parents, and educators.”
Design and Usability, The UX of Mobile
“The term ‘user experience’ used to be an afterthought in mobile application design. The iPhone changed all that and has set a new benchmark for user experience on mobile devices. This panel will serve as a primer for anyone interested in learning how to apply UX principles to the creation of applications for iPhone, Android, and mobile websites.” With Barbara Ballard, Tom Limongello, Scott Jenson.
The Ten Commandments of User Experience
“User experience is the result of your interactions with a product or service, specifically how it’s delivered and its related artifacts according to the design. In this presentation we will explain how following the 10 commandments can boost your project’s ease of use, appeal, conversion rates, and more.” With Raina Van Cleave, Nick Finck.
Persuasive Design: Encouraging Your Users To Do What You Want Them To!
“So you’ve designed a great product, fixed a stack of usability problems and spent a fortune on marketing. The only problem is, people aren’t using it. In this session you will learn how to get your users to do what you want them to through good design, human psychology and a touch of mind control.” With Andy Budd.
My Three-Year Old Is My Usability Expert
“Children are perfect testers for the innate usability of visual structures. Learn how neuroscience and cognitive psychology research can make your designs and interfaces more intuitive.” With Dave Stanton.
Can the Real-Time Web Be Realized?
“The emergence of the real-time Web enables an unprecedented level of user engagement and dynamic content online. However, the rapidly growing audience puts new, complex demands on the architecture of the Web as we know it. This panel will discuss what is needed to make the real-time Web achievable.” With Scott Raymond, Brett Slatkin, Dare Obasanjo, Marshall Kirkpatrick, Jack Moffitt.
Time + Social + Location. What’s Next In Mobile Experiences?
“As more devices become location aware, social uses will continue to evolve beyond just who and what,to WHEN. Adding the temporal dimension creates new opportunities for social interaction. Learn about ways to leverage and use technology to add features at the intersection of temporal, social, and location.” With Naveen Selvadurai, Josh Babetski, Greg Cypes.
ActivityStrea.ms: Is It Getting Streamy In Here?
“From Facebook’s newsfeed to Twitter’s relentless real-time updates, the metaphor of the “stream” has taken social networking beyond blog posts and on to rich social activities. Learn about ActivityStrea.ms – the open format adopted by Facebook, MySpace, and Windows Live – and how it’s fundamentally changing the social Web.” With Chris Messina.
HTML5: Tales from the Development Trenches
“HTML5 is coming. Originally called “Web applications 1.0″, it brings new semantics, JavaScript APIs for drag and drop, offline storage, generating images, plugin-free video and form validation. It’s upset semantic Web advocates, accessibility evangelists and baffled developers. Cut through the crap: learn what it is and what it does.”
What Are Analytics? A Guide To Practical Data
“Analytics are often a confusing and convoluted mess, but that doesn’t mean that they have to be. The Guide to Practical Data will help ensure you’re reaching your full analytical potential. Learn how to analyze public and proprietary data to accelerate the success of any initiative.” With Margaret Francis, Blake Robinson.
Those are our SXSW Interaction recommendations for marketers and Web strategists. If you’ve got suggestions or feedback, let us know in the comments! See you in Austin!
SXSW 2010 for Marketers & Online Strategists
Navigating SXSW is overwhelming to say the least! To help you out ReadWriteWeb has been breaking the events, panels and parties down into vertical reviews. This post provides what we think are some of the best for marketers and online strategists. We’d also love to hear your recommendations in the comments.
Online strategy is multi-faceted. You need to know as much about marketing and understanding people and their motivations as you do perfecting the online experience, understanding the next technology breakthrough on the horizon and being an excellent conversationalist – while still being able to measure the impact of it all. So this list provides a smattering of some of the best to see in all four.
This is part of a series of ReadWriteWeb guides to SXSW Interactive 2010. If this guide isn’t your cup of tea, be sure to check back for more information soon!
How Your Brand Can Succeed in the New Web
With Brian Solis. “Engage is the new book by Brian Solis that will debut at SXSW. Representing the third book on new media and its impact on society, culture and communication. Engage will help anyone not only understand the changes in the media landscape but also how to lead it. Brian Solis will be joined by a special guest to discuss the new book and answer questions followed by a book signing.”
“The ability to share online has allowed consumers to control and filter the Web. For brands and publishers, tapping into Influence is critical to social media’s future. What is influence and how is it measured? Leading voices in social media from multiple backgrounds will define the value of influence, discuss best practices, and predict future impact. Data will be shared! This panel is sponsored by ShareThis.” With Tim Schigel, Paul Berry, Dave Knox, Mike John-Baptiste, Shiv Singh.
Extending Your Brand? There’s an App for That
“For many, brand extension into the digital realm means a Web site, a banner ad, a viral campaign. But applications can extend conversations and perceptions of a brand, as well as add to discussions and ideas in compelling new ways. How can applications help your brand and idea be more authentic, genuine, user friendly, and just plain old fun? Learn from the folks that are making it happen. This panel is sponsored by Microsoft Silverlight.”
With Gary Vaynerchuk. The content of this presentation has not been announced, but knowing Gary and his successful track record in growing business through the use of social media, this one is not to be missed.
Program or be Programmed: Ten Commands for a Digital Age
With Douglas Rushkoff. “Winner of the first Neil Postman award for Career Achievement in Public Intellectual Activity, Douglas Rushkoff is an author, teacher, and documentarian who focuses on the ways people, cultures, and institutions create, share, and influence each other’s values.”
I Don’t Trust You One Stinking Bit
“What gives people confidence on the Web? Bringing together experts in social capital and online trust, we help you build the company your users can love and call their own.” With Chris Brogan and Julien Smith.
Monkeys with Internet Access: Sharing, Human Nature, and Digital Data
Clay Shirky hasn’t announced the content of his presentation yet. He “divides his time between consulting, teaching, and writing on the social and economic effects of Internet technologies. His consulting practice is focused on the rise of decentralized technologies such as peer-to-peer, Web services, and wireless networks that provide alternatives to the wired client/server infrastructure that characterizes the Web.”
With Craig Watkins. “In 2006, S. Craig Watkins participated in the MacArthur Foundation’s well-funded digital media initiative alongside a select team of scholars and tech experts. The goal was simple: to understand young people’s emphatic embrace of social and mobile media. Watkins went on to build a small research team that skillfully collected over 500 surveys and conducted 350 in-depth interviews with young adults, parents, and educators.”
Design and Usability, The UX of Mobile
“The term ‘user experience’ used to be an afterthought in mobile application design. The iPhone changed all that and has set a new benchmark for user experience on mobile devices. This panel will serve as a primer for anyone interested in learning how to apply UX principles to the creation of applications for iPhone, Android, and mobile websites.” With Barbara Ballard, Tom Limongello, Scott Jenson.
The Ten Commandments of User Experience
“User experience is the result of your interactions with a product or service, specifically how it’s delivered and its related artifacts according to the design. In this presentation we will explain how following the 10 commandments can boost your project’s ease of use, appeal, conversion rates, and more.” With Raina Van Cleave, Nick Finck.
Persuasive Design: Encouraging Your Users To Do What You Want Them To!
“So you’ve designed a great product, fixed a stack of usability problems and spent a fortune on marketing. The only problem is, people aren’t using it. In this session you will learn how to get your users to do what you want them to through good design, human psychology and a touch of mind control.” With Andy Budd.
My Three-Year Old Is My Usability Expert
“Children are perfect testers for the innate usability of visual structures. Learn how neuroscience and cognitive psychology research can make your designs and interfaces more intuitive.” With Dave Stanton.
Can the Real-Time Web Be Realized?
“The emergence of the real-time Web enables an unprecedented level of user engagement and dynamic content online. However, the rapidly growing audience puts new, complex demands on the architecture of the Web as we know it. This panel will discuss what is needed to make the real-time Web achievable.” With Scott Raymond, Brett Slatkin, Dare Obasanjo, Marshall Kirkpatrick, Jack Moffitt.
Time + Social + Location. What’s Next In Mobile Experiences?
“As more devices become location aware, social uses will continue to evolve beyond just who and what,to WHEN. Adding the temporal dimension creates new opportunities for social interaction. Learn about ways to leverage and use technology to add features at the intersection of temporal, social, and location.” With Naveen Selvadurai, Josh Babetski, Greg Cypes.
ActivityStrea.ms: Is It Getting Streamy In Here?
“From Facebook’s newsfeed to Twitter’s relentless real-time updates, the metaphor of the “stream” has taken social networking beyond blog posts and on to rich social activities. Learn about ActivityStrea.ms – the open format adopted by Facebook, MySpace, and Windows Live – and how it’s fundamentally changing the social Web.” With Chris Messina.
HTML5: Tales from the Development Trenches
“HTML5 is coming. Originally called “Web applications 1.0″, it brings new semantics, JavaScript APIs for drag and drop, offline storage, generating images, plugin-free video and form validation. It’s upset semantic Web advocates, accessibility evangelists and baffled developers. Cut through the crap: learn what it is and what it does.”
What Are Analytics? A Guide To Practical Data
“Analytics are often a confusing and convoluted mess, but that doesn’t mean that they have to be. The Guide to Practical Data will help ensure you’re reaching your full analytical potential. Learn how to analyze public and proprietary data to accelerate the success of any initiative.” With Margaret Francis, Blake Robinson.
Those are our SXSW Interaction recommendations for marketers and Web strategists. If you’ve got suggestions or feedback, let us know in the comments! See you in Austin!
Bicycling Directions, Trails Comes to Google Maps
There’s nothing worse for a bicyclist than finding yourself a mile in to a two-mile stretch of shoulder-less, busy, highway-speed traffic with no alternative route. Before today, this was a common occurrence if you went to trusty Google Maps to get bicycling directions, but starting today, that has all changed.
Google has added bicycling directions, lanes and routes to Google Maps, meaning you no longer have to drive, walk or bus to get directions. And we can tell you, bicyclists are excited.
Before now, the only option to cyclists to get even remotely appropriate directions, was to use the walking option, but this would still ignore bike trails. Google has heard the pleas of cyclists and, from first look, we have to say that the feature is well implemented.
We gave it a test to see if it would put us on some of Austin’s more bike unfriendly streets, but it managed to chose some good alternative routes and stick to the bike trails when it could. The directions got a little wonky when we threw it a few curve balls, but we expect this to happen with any mapping service, especially one still in beta. But, as we’ve learned, you can’t just go mindlessly follow directions, lest you end up in a lake.

The new feature also includes a “Bicycling Layer”, which shows bike paths and bike-friendly streets with or without lanes. Three different lanes appear in the layer.
- Dark green indicates a dedicated bike-only trail;
- Light green indicates a dedicated bike lane along a road;
- Dashed green indicates roads that are designated as preferred for bicycling, but without dedicated lanes
According to Google, it has also taken steps to avoid uphill and long downhill routes, busy roads and even busy intersections. Google says that it even takes hills and other factors into account when calculating your trip time. “Assuming typical values for mass and for wind resistance, we compute the effort you’ll require and the speed you’ll achieve while going uphill,” Google says in its Lat Long Blog.
Google worked with the Rails-to-Trails Conservancy to bring more than 12,000 miles of biking trails to its map, along with bike lanes and recommended streets for 150 cities across the country. Google makes sure to point out that the feature is still in beta, so feel free to tell Google the next time you find yourself on a crowded, shoulder-less highway because of Google Maps.
And for those of you headed to fair Austin this week, make sure to take a look at the new feature, because it includes all of Austin’s numerous bike trails and bike lanes. If you’ve never been to Austin for SXSW before, bicycling is the way to get around town and now you’ll know how to get there.





























