Archive for February, 2011

Coding a web server with C# – part 2

Posted in Programming on February 5th, 2011 by kev – Be the first to comment

Hey all,

We left off at the end of my last article being able to grab and print a GET request from a web page. There were a few issues with the way we did things however. Firstly, we were reading in a buffer the size of the maximum possible buffer size, so when we were printing out our request it was followed by a ton of whitespace. In order to fix this I tried to trim the string for whitespace, this did not work.
read more »

Coding a web server with C# – part 1

Posted in Programming on February 1st, 2011 by kev – Be the first to comment

Howdy folks,

It has been quite a while since I programmed something productive on my own time. I have been really busy lately at work as we are finishing up our major project from the last 6 months. Hopefully at some point I will write a blog post regarding that project as it is really interesting. I have also been reading up on some languages I have toyed around with (Javascript, Objective-C, C#, Clojure). I also haven’t updated this blog in months. Because of these facts I have decided that it is time to stop reading and start doing, so I have come up with a fun little project for myself.
read more »