Captcha support

I am planning to add CAPTCHA support to the blogging engine. For those who don't know what CAPTCHA is, remember those web sites that ask you to enter the text displayed in a distorted image before submitting the page? That's what CAPTCHA is. You can read more about it over here.

It is very easy to write code that would programmatically post hundreds of comments within a couple of seconds and bring your web site down. This has been the problem for many forums / blog sites, hence most blog sites do not allow anonymous comments anymore. Not many people know about my site and hence I don't have that threat, but I want to implement a feature where you don't have to leave the main page to add a comment or read existing comments. Having to navigate back and forth between pages breaks the reading experience. In order to implement the ability to add / read comments from the main page, I will have to use AJAX. I plan to use webservices that would add / retrieve comments. This website being open for anonymous users, anyone can add comments, which means that if someone gets the path to my webservice (which is easy, just "view source" to get it) they can easily post thousands of comments through the webservice as it would not be authenticated. The best protection against it is to add CAPTCHA support.

Here's my plan:
Phase I: Add captcha support to the existing feedback page, see how it goes. I am in no hurry to get this done, will plan and get it out in the next couple of weeks. To create the CAPTCHA distorted images, I would be using the code from the DotNetNuke project instead of re-inventing the wheel.

Phase II: Once all hurdles from Phase I are overcome, add webservices that would create / retrieve comments from the main page on the fly.


Firefox support

This was complete negligence on my part. In the past any time I added new features I used to test it in both IE and Firefox. This time around I completely forgot to do so. Thanks to Lilly for pointing this out. I am happy to tell you that my site now works on Firefox as well. I think I need to create a checklist to avoid such messups in the future. Let me know of any other problems you come across.

Thanks and Enjoy!


PS3 vs XBox 360, iPod vs Zune

I visited the local Best Buy store to check out the new PS3 and Zune. I was completely blown away by the quality output of the PS3 all HD quality. The 360 looks old technology in front of it. It may be that Sony has installed it's best in those demo consoles, but that's what marketing is all about. The games on 360 look pale. The console business is a multi-year business. Given this fact I think that even thought the PS3 is a year late compared to the 360, it has plenty of time to catch up. My gut feeling is that it will win this time around also until Microsoft does some magic. Time will tell.

As for the Zune, don't even get me started. The look and feel is so bad that it looks worse than a prototype. I can't believe this is the same team that designed the 360. There is no way that people would buy this piece of crap. I don't care that it has WiFi or some cool feature that the iPod doesn't. First impression is what matters, you should get attracted towards the product the moment you see it. iPod vs Zune, there is no comparison.


Virtual Path Provider

I have been trying to find material reading on the Virtual Path Provider (VPP) feature of ASP.NET 2.0. So far I haven't found a lot. The whole concept is supercool. If you visit the new MSDN website, it is built on VPP. The cool thing about VPP is that all those pages that you see are not actual physical ASP.NET files, instead they are all coming from a backend database. The most important feature from a user stand point is that you can query a website through the url. Yes you heard me right. Type https://msdn2.microsoft.com/system.net and you will be redirected to the .NET libary's System.Net namespace homepage. You can do the same with any class in the framework. Try https://msdn2.microsoft.com/System.String. That is simply awesome.


New Skin for the website

I have a new look and feel for the website. All the code behind the scene is the same. the only thing that is different is the skin. I have used the Glue Ideas theme and applied to the site. Some of the other sites that use the same theme are DunanMackenzie.net and AdamKinney.com. Note however that the only thing I have used is the outer skin, the content layout and color combinations are my own.

I have been working on this for the past two evenings and it was a breeze. I wanted to use ASP.NET 2.0 theming before going live, but I was so excited to show this to you that I just decided to release it. The next big thing for me is to get the business logic and data access layer changed. There is nothing wrong with those layers, just that I want to redesign them using the MVC pattern.


Blog changes

I have added a couple of features to the blog. You would now see the previous and next links on both top and bottom parts of the page. Also when you click on an archive month, you would see a label "Archies for month year". This new label would make it easier to understand whether the paging is enabled for all entries or only for that month.