Tag Archives: web

I Got Code #5: Downloading linked images

There was actually a question that got me thinking – how would I implement a program that downloads pictures from a web page, that are pointed by some links? Here is a sample console application I came up with: using System; using System.Collections.Generic; using System.Net; using System.Threading; using System.IO; using System.Text.RegularExpressions; using System.Drawing; namespace ConsoleApplication [...]

I Got Code #3: Uploading pictures. With TwitPic and C#.

If you used Twitter, you should know that there is a service called TwitPic, that allows Twitter users to share pictures. It is simple and easily accessible. Being integrated in the majority of Twitter clients, it gained quite a lot of popularity. It offers a public API that lets the developers upload images right from [...]

Using the Google Weather API – pros and cons so far

For my latest project, WeatherBar, I had to pick a weather API. Basically, I needed to get the weather conditions for a specific location, as well as a short forecast. The choices I had were Yahoo Weather API, WeatherBug API and Google Weather API (yes,there is no mistake here – it is a direct API [...]