Archive for the 'Programming' Category

Basic jQuery Form

Tuesday, August 5th, 2008

I have been working on a web project at work for the past month and used it as an opportunity to learn jQuery and CouchDB. jQuery is a fast, concise, JavaScript Library that simplifies how you traverse HTML documents, handle events, perform animations, and add Ajax interactions to your web pages. While learning it, I [...]

Hello world!

Wednesday, March 8th, 2006

#include <iostream> using std::cout; using std::endl;   int main() {   cout << “Hello world!” << endl;   return 0; } There you go kiddies; I hope you have enjoyed my first blog post