Yahoo adds Glue to make search more useful

2009-12-19 2 min read Linux

The article is so good in itself that I need not say anything more than giving the <a href="http://www.guardian.co.uk/technology/blog/2008/nov/20/yahoo-glue" target="_blank">link.

Way back in May, I posted technology/blog/2008/may/09/yahootriesglueinindia&#8221;>Yahoo tries Glue in India, which said: &#8221;Most big search companies are experimenting with the idea of comprehensive search pages that show lots of different results — text, images, video etc — instead of just text. Google calls it Universal Search. Yahoo&#8217;s is Glue, and a beta version has just been launched in India.&#8221;

Continue reading

check out http://browsershots.org/

2009-12-19 1 min read Learning Uncategorized

If you are a web developer and are worried about how your <a class="zem_slink" href="http://en.wikipedia.org/wiki/Website" title="Website" rel="wikipedia">website would look like in the various browsers and do not have the resources to test all the browsers, what do you do? Check out the <a class="zem_slink" href="http://en.wikipedia.org/wiki/Web_page" title="Web page" rel="wikipedia">webpage at

<a href="http://browsershots.org/">http://browsershots.org/<h6 class="zemanta-related-title">Related articles by Zemanta <ul class="zemanta-article-ul"> <li class="zemanta-article-ul-li"><a href="http://www.macstories.net/iphone/website-iphone/">Setting Up Your Website to Run on iPhone Browser (macstories.net) <div class="zemanta-pixie"><a class="zemanta-pixie-a" href="http://reblog.zemanta.com/zemified/8d5363f4-7641-40c8-b111-4a4d12d41ba5/" title="Reblog this post [with Zemanta]"><img class="zemanta-pixie-img" src="http://blog.amit-agarwal.co.in/wp-content/uploads/2010/08/reblog_e36.png" alt="Reblog this post [with Zemanta]" /><span class="zem-script more-related more-info pretty-attribution paragraph-reblog">

Continue reading

Display a block of text with delineated by a start pattern and an end pattern

2009-12-18 1 min read Bash

Taken idea from commandlinefu.com

The command will display a segment from the file from the start pattern to the end pattern.

function viewsegment() { tail -n +`fgrep -n -m 1 “$1” $3 | head -`fgrep -n -m 1 “$2” $3 }
Display a block of text with delineated by a start pattern and an end pattern

Compiz/Beryl issue on Fedora.

2009-12-15 1 min read Fedora Linux

Since quite some time I was getting the below error when I am trying to run compiz. I was busy and also was not working in Gnome so did not look at this until today.

compiz (core) – Fatal: Root visual is not a GL visual.

on doing a grep in the Xorg log files found that the error is due to the mismatch of version between kernel module and the nvidia driver. The command to check the errors in the Xorg log file is

Continue reading

Tip: Using find Command in Linux

2009-12-10 2 min read Linux

Ok this I was planning for quite sometime.. but found this <a href="http://www.pinoytux.com/linux/tip-using-find-command-in-linux" target="_blank">here. Worth reading for people who want to start off using find command.

Doing command-line stuff in Linux is fun. It may be intimidating for some at first, now that we are in the age where GUI is no longer an option. But with CLI, we can do so many things that can be accomplished faster if we know how to utilize the features of a certain command.

Continue reading

Google wave invitation available with me.

2009-12-10 1 min read Uncategorized

I have couple of wave invitations available with me, added yesterday by wave team to my accounts. Thanks to wave. It seems that lot of people suddenly saw that the wave invitations remaining in their accounts have increased. So, now I have couple of invitations spare. Please leave a comment and will try to send you one.

C Prog to change wallpaper in every 30 seconds.

2009-12-08 1 min read GNOME

I wrote a good length of description on the below but somehow my browser closed without saving that. So I am just putting the program below:

#include <stdio.h>
#include <sys/types.h>
#include <dirent.h>
#include <string.h>
#include <gconf/gconf-client.h>

int main(int argc, char ** argv)
{
DIR *dp;
struct dirent ep;
char dirname[80];
GConfClient
client;
int s;

if (argc<=1)
{
printf(&#8221;%d is argc\n&#8221;, argc);
fflush (stdout);
dp = opendir(&#8221;.&#8221;);
strcpy(dirname, &#8221;.&#8221;);
}
else
{
dp = opendir(argv[1]);
strcpy(dirname, argv[1]);
}
if (argc <=2 )
s = 30;
else if ( argc >2 ) s = atoi(argv[2]);
//g_type_init();
client = gconf_client_get_default();
//client = gconf_client_get_for_engine (gconf_engine_get_default());

Continue reading
Older posts Newer posts