I have been working on other people’s bugs for the last couple of weeks and it has been a terribly painful experience. This has been a great experience which has taught me a lot of corrective measures for the roadmap ahead for me. Some basic observations are Not everyone can program or should program – […]
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”); […]
Well, for lack of better topics i will take this opportunity to talk about some cool things that i have started to learn namely the .NET platform. The best part is that i finally get exposed to complete GUI based tools to do nearly everything, (i am sure i will find a way to do […]
To be honest, I am a very conspiracy theory kind of a guy. Always believe things after i can validate certain things personally, that invariably leads to me getting too involved (call it the observer effect). But then again there are certain things that are much bigger than me which i believe are absolute frauds, […]