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..
?View [...]
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 [...]
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…..
Saving the output of a C program in a text file(Linux/Unix)
Consider the following c program
?View Code C1
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 [...]



