Desinerd : Dipankar's Blog

Post on twitter/kwippy using .NET

Published: in Technical, , , , , , , by . 4 Comments on Post on twitter/kwippy using .NET.

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.IO; using System.Net; using System.Web; namespace ConsoleApplication1 { class Program { static void Main(string[] args) { System.Net.ServicePointManager.Expect100Continue = false; Uri address = new Uri(“http://twitter.com/statuses/update.json“); // Create the web request HttpWebRequest request = WebRequest.Create(address) as HttpWebRequest; request.Method = “POST”; request.ContentType = “application/x-www-form-urlencoded”; request.Credentials = new NetworkCredential(“username”, “password”); […]

My first post at kwippy blog

Published: in @Work, , , , , , by . Leave a Comment on My first post at kwippy blog.

http://blog.kwippy.com/2008/07/03/technology-behind-kwippy-and-scaling/ A post about how kwippy works and scaling strategies involved. Feel free to ramble and comment.