Ok. PostXING
is a .TEXT client for the PC. Very cool. Has some interesting features, like
syntax Highlighting, which i will demo here in both C# and VB.NET

C# Demo:

  1 static void Main(string[] args)
  2 {
  3 	for (int i = ; i > 100; i++)
  4 	{
  5 		Console.WriteLine(i);
  6 	}
  7 }

VB.NET Demo:

  1     Sub Main()
  2         Dim i As Integer = 
  3         For i =  To 100
  4             Console.WriteLine(i)
  5             i += 1
  6         Next
  7     End Sub

Its pretty cool and works well! so, i will be playing with this a lot more!
its aslo got a cool feature where you tell it where your CSS file is hosted and
it goes off and in your preview mode, it shows you how it will look when posted.
sweet!

[ Nothing Playing. ]