sudzy wrote: » So I was looking to start writing programs for the internet. Not necessarily web apps as such, but like a program that would run on your OS but interface with the internet using APIs and the like. Was just wondering what would be the most suitable language for this. E.g. A friend of mine mentioned he was trying to write a program in perl that would send a notification on twitter when a torrent was finished downloading. Not sure if he got it, but would perl be a suitable language. I already no how to program in c and c++, can you use c/c++ to do this kind of thing across the web?
M450 wrote: » A quick glance at the twitter page source code and you can see that the action of the "Update" button is a POST to http://twitter.com/status/update with some sort of authenticity_token to identify the user...? I'm sure with a bit of poking around you could figure out how to emulate this form and then all you'd need is a HttpConnection implementation.