Twitter background generator version 0.1

Working on a very basic twitter background generator, right now focusing on how to get the sidebar width right. It is very much under use at my twitter handle @dipankarsarkar (http://twitter.com/dipankarsarkar). The core idea is to be abe to communicate more information about what i do as a person using the background image. Some features that I personally want are Transparency for the sidebar - The image underneath should be visible, right now its a grey opaque color....

September 18, 2009 · 1 min · 169 words · Me

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”); StringBuilder data = new StringBuilder(); data.Append(“status=from%20.net”); // Create a byte array of the data we want to send byte[] byteData = UTF8Encoding....

March 3, 2009 · 1 min · 140 words · Me

Twitter feed wall - great for projectors

Inspired by http://twistori.com/. I wrote a generic tool which will allow people to setup a simple wall where people can post and it will automatically refresh. I built this tool specifically because it was needed at proto.in. I am very sure it will be useful to a lot of people out there. Uses JQuery and a Queues for javascript library. Maybe someone can do some transition magic with it, i am still a javascript n00b :)....

January 22, 2009 · 1 min · 90 words · Me

Pownce gone, use kwippy

In a blatant act of self promotion, now that pownce is finished, I can confidently write that we are the only other django based micro-blogging network with some traction. I do admit the user interface needs a bit of work, but if you interact with our community, you will realize that they are a set of amazing people. So keeping in mind that you want to move on from pownce, try something new … or just try kwippy....

December 2, 2008 · 1 min · 79 words · Me