Views
Create you own custom Firefox search plugin in seconds
Welcome to my blog :-) .If you're new here, you may want to subscribe to my full RSS feed. Thanks for visiting!

I love Firefox especially the FF search plugin’s. This tutorial will explain how to create your own custom Firefox search plugin in seconds.
So let’s get started….Open up notepad and paste the following lines..
1 2 3 4 5 6 7 8 9 10 11 12 13 | <search name="Aditech" sourceTextEncoding="0" method="GET" action="http://www.google.com/search" queryCharset="UTF-8" > <input name="q"user> <input name="hl" value="en"> <input name="sitesearch" value="blog.aditech.info"> </search> </search> </search> |
Replace “Aditech” to any name which you like…and the most important thing replace “blog.aditech.info” to any site you wish to have the custom search engine.
Read More
Views
The mistake in made with my RSS feeds…

RSS feeds are a must have feature in any blog or site.Now-a-days no one is having enough time to manually navigate to their favorite web blogs or sites in order to view new or updated articles.
I added the RSS feature using feedburner.I got nearly 15-20 Subscribers within one week of the blog launch itself.I was extremely happy but this happiness didn’t lasted too long.Gradually the number of subscribers went on decreasing.I wished to know why this is happening.So i subscribed into my own feeds.
Read More
Views
Random post option in wordpress…
Wanna create a Random post option in your wordpress blog just like Random article option in Wikipedia…..?

Then read this small tut…..
Read More
Views
Windows Registry in depth-Part 1
The Windows registry is a directory which stores settings and options for the operating system for Microsoft Windows 32-bit versions, 64-bit versions and Windows Mobile.
This is one of the least understood aspects of the windows OS.It’s basically a database of all the values and settings required by windows as well as several softwares in order to function properly.It was specifically developed in order to overcome the drawbacks of .ini files which were the earlier means of storing the settings(Even now some settings are stored in .ini files..excellent example for this is boot.ini file)
To open windows registry…Just run “regedit” in the run dialog box
Registry Concepts
Hives
Hives are nothing but the top levels in registry.There are typically 5 different hives. They are:
Read More
Views
Saving the output of a C program in a text file(Linux/Unix)
Consider the following c program
1 2 3 4 5 6 7 8 9 10 | #include<stdio.h> main() { int i,n; printf("Enter limit\n"); scanf("%d",&n); printf("I will print %d times\n",n); for(i=0;i<n;i++) printf("I luv C\n"); } |
the output will be
Enter limit
4
I will print 4 times
I luv C
I luv C
I luv C
I luv C
This is a simple program which will print “I luv C” n times.Now, wouldn’t be nice if we saved the output in a text file
then in such case you have to use directed symbol “>>”
Read More

