My Blog

All about my activities, Ideas and everything.

Category: Programming

Tutorial : Implement AJAX to your wordpress theme.

I’m trying to implement AJAX on wordpres theme. I have scouted around the Internet and I found quite a few articles about it, so I think I would write one more to increase the search results. Before starting, I think it would be great to read this article. http://www.garyc40.com/2010/03/5-tips-for-using-ajax-in-wordpress/#form. The article tells you what dos [...]

Test Command Line Program

When I was in TWU I was assigned to implement a simple program in Java Command line. I was ok but when I came to TDD approach I really didn’t know what to do and test command-line in JUnit. I googled but I found nothing. However, after Mark Needham shows us in code and it [...]

Tutorial: Embedding Jetty with SSL

I think everybody knows what SSL is and probable knows what Jetty is. Jetty is basically a container which receives requests and generate responses. I choose Jetty because it’s really small and can be deployed in just one jar file. Without further ado. here is the code to add SSL connector to embedding jetty. 1234567891011 Server [...]