TagAPI

Yahoo Term Extractor API Discontinued

Y

A couple of days ago Yahoo announced two of its search services will be discontinued on August 31st 2009. Annoyingly, one of those is the Term Extraction API Which means my Windows Live Writer Auto Tag Generator plug-in will simply cease to work. Important Announcement: The Term Extraction Web Search service will be discontinued on August 31, 2 So, what can you do. Well, according to a few posts...

Reverse GeoCoding with Google API and C#

R

I needed to write a function to get a set of co-ordinates from an address, supplied as a string. Using the Google API, I came up with this: First, I created a struct, to represent the lat and lon co-ordinates: public struct Coordinate { private double _latitude; private double _longitude; public Coordinate(double latitude, double longitude) { _latitude = latitude; _longitude = longitude; } public...

TinyURL API

T

The popular url shortening service, TinyUrl has an API.
This is probably the most simple API I’ve come across:

(obviously, you can replace with any URL)