Background Image


I have designed some websites by Photoshop. I keep them in Flickr. Here I am stacking those.


Preview of makeForm plugin
It is a common need of developers to design HTML <select> element unlike default design by browser. Also need to keep the functionality same.  As all you know there are so many plugins do the same. So I’ve made a variant of the plugin. Can’t understand?? see the demo | download | github

It(makeForm plugin) takes a select box and make a list along with a textarea to comment and a submit button. After clicking on the submit button it calls a callback function specified by user(coder). This callback function have two parameters, one is the comment text and other is the text of selected option.


One of my friends every day used to send me a embarrassing video on my wall. I asked him why? He said that he is not sending it intentionally, it is spreading automatically.  He cant get rid of it even after removing all applications. So he gave me his credentials to me to solve the problem. I have solved his problem in the following way.

  1. I logged in facebook through his credentials.
  2. Went to privacy setting by clicking the right top corner arrow.
  3. Clicked on Edit settigns of “Apps and Websites”  block.
  4. There are 2 links in “Apps you use” block. They are Remove unwanted or spammy apps and Turn off all apps.
  5. I clicked on first link and saw there was no apps to remove.
  6. then i clicked on second link and get the list of apps one of them were spamming.
  7. I simply turned off the app. :)

My friend and all of his friends got rid of the embarrassing app. Happy ending.


I love to design. It gives me different type of pleasure. My new design is uploaded here.


At first i need to learn a language to communicate with OS. So i picked up C ( paralleled with C++ ). I am using Ubuntu, 10.04(lucid),  Kernel Linux 2.6.32-24-Generic, GNOME 2.30.2

Lucid: codename of Ubuntu, 10.04 is Lucid Lynx
Kernel: WikiLink
GNOME: WikiLink

Here gcc is already installed. So no worry about compiling C. So only need to install g++ to compile C++.

Now it is time to start coding. I love Netbeans so i’ve installed C/C++ plugin.

#include <cstdlib>
#include <iostream>
using namespace std;
/*
*
*/
int main(int argc, char** argv) {
cout << “Hello World!”;
return 0;
}
To Be Continued…