<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:series="http://unfoldingneurons.com/"
	>

<channel>
	<title>Programming Ideas, Logics, Tips and Tricks &#187; yahoo</title>
	<atom:link href="http://www.sajithmr.me/tag/yahoo/feed" rel="self" type="application/rss+xml" />
	<link>http://www.sajithmr.me</link>
	<description></description>
	<lastBuildDate>Sat, 07 Apr 2012 16:30:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>PHP  Spider &#8211; Sphider</title>
		<link>http://www.sajithmr.me/php-spider-sphider</link>
		<comments>http://www.sajithmr.me/php-spider-sphider#comments</comments>
		<pubDate>Fri, 30 Apr 2010 20:57:55 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[bot]]></category>
		<category><![CDATA[crawl]]></category>
		<category><![CDATA[custom search]]></category>
		<category><![CDATA[google]]></category>
		<category><![CDATA[google like crawl]]></category>
		<category><![CDATA[indexing]]></category>
		<category><![CDATA[location search]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[search engine]]></category>
		<category><![CDATA[search html]]></category>
		<category><![CDATA[search static]]></category>
		<category><![CDATA[static page]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://www.sajithmr.me/?p=643</guid>
		<description><![CDATA[We can create a search page for a dynamic website using Database queries and looping over resultant record sets. But what can we do if the website main contains static html files than dynamically populated content. In this case , we usually put Google search box inside website (Google custom search) Sphider is a php [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-644" title="sphider" src="http://www.sajithmr.me/wp-content/uploads/2010/04/sphider.png" alt="sphider" width="300" height="100" /></p>
<p>We can create a search page for a dynamic website using Database queries and looping over resultant record sets. But what can we do if the website main contains static html files than dynamically populated content. In this case , we usually put Google search box inside website (Google custom search)</p>
<p>Sphider is a php based spider to crawl inside your own website and index all the pages as a Search Engine does. It makes search over static html pages simple. The script crawls through all links from basic home page and create an index file in your own local database.</p>
<p>Here is the website:<a href="http://www.sphider.eu/" target="_blank"> http://www.sphider.eu/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/php-spider-sphider/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Yahoo Media Player</title>
		<link>http://www.sajithmr.me/yahoo-media-player</link>
		<comments>http://www.sajithmr.me/yahoo-media-player#comments</comments>
		<pubDate>Mon, 03 Aug 2009 18:22:08 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[general]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[mp3]]></category>
		<category><![CDATA[player]]></category>
		<category><![CDATA[playlist]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/?p=447</guid>
		<description><![CDATA[It may be an unwanted post, but I recently got this information while sufing through.. It is nothing but a javascript file from Yahoo. It is duty is to convery every mp3 link inside an html page into mp3 player and it also creates a playlist according the the mp3 links available.&#60;a href=&#34;http://www.sajithmr.com/wp-content/uploads/2009/08/yplayer.jpg&#34;&#62;&#60;img class=&#34;alignnone size-full [...]]]></description>
			<content:encoded><![CDATA[<p>It may be an unwanted post, but I recently got this information while sufing through.. It is nothing but a javascript file from Yahoo. It is duty is to convery every mp3 link inside an html page into mp3 player and it also creates a playlist according the the mp3 links available.</p><pre class="crayon-plain-tag"><code>&lt;a href=&quot;http://www.sajithmr.com/wp-content/uploads/2009/08/yplayer.jpg&quot;&gt;&lt;img class=&quot;alignnone size-full wp-image-448&quot; title=&quot;yplayer&quot; src=&quot;http://www.sajithmr.com/wp-content/uploads/2009/08/yplayer.jpg&quot; alt=&quot;&quot; width=&quot;499&quot; height=&quot;67&quot; /&gt;&lt;/a&gt;</code></pre><p>What you have to do, is just add this js file below your html page which contains some mp3 href</p><pre class="crayon-plain-tag"><code>&amp;lt;&lt;span class=&quot;start-tag&quot;&gt;script&lt;/span&gt;&lt;span class=&quot;attribute-name&quot;&gt; type&lt;/span&gt;=&lt;span class=&quot;attribute-value&quot;&gt;&quot;text/javascript&quot; &lt;/span&gt;&lt;span class=&quot;attribute-name&quot;&gt;src&lt;/span&gt;=&lt;span class=&quot;attribute-value&quot;&gt;&quot;http://mediaplayer.yahoo.com/js&quot;&lt;/span&gt;&amp;gt;&amp;lt;/&lt;span class=&quot;end-tag&quot;&gt;script&lt;/span&gt;&amp;gt;</code></pre><p></p><pre class="crayon-plain-tag"><code>You can see the demo here,if your browser supports flash</code></pre><p></p><pre class="crayon-plain-tag"><code>&lt;a href=&quot;http://www.sajithmr.com/downloads/yplayer.html&quot; target=&quot;_blank&quot;&gt;http://www.sajithmr.com/downloads/yplayer.html&lt;/a&gt;</code></pre><p></p><pre class="crayon-plain-tag"><code>Take view source to see how does it work</code></pre><p></p><pre class="crayon-plain-tag"><code>Thanks</code></pre><p></p><pre class="crayon-plain-tag"><code>Sajith</code></pre><p></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/yahoo-media-player/feed</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Contact Grabber</title>
		<link>http://www.sajithmr.me/contact-grabber</link>
		<comments>http://www.sajithmr.me/contact-grabber#comments</comments>
		<pubDate>Thu, 06 Nov 2008 10:55:51 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[php source code]]></category>
		<category><![CDATA[access]]></category>
		<category><![CDATA[AOL]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[contact]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[fetch]]></category>
		<category><![CDATA[get]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[grab]]></category>
		<category><![CDATA[grabber]]></category>
		<category><![CDATA[Hotmail]]></category>
		<category><![CDATA[Indiatimes]]></category>
		<category><![CDATA[Linkedin]]></category>
		<category><![CDATA[lycos]]></category>
		<category><![CDATA[MySpace]]></category>
		<category><![CDATA[orkut]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[Rediff]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/?p=353</guid>
		<description><![CDATA[If you are a social media website developer , sometimes you might search for grabbing contacts from a particular email account if the password is given. I also did the same.  In most of the cases it did not work properly. But recently i got a contact grabber from phpclasses.org which works perfectly on Gmail, [...]]]></description>
			<content:encoded><![CDATA[<p>If you are a social media website developer , sometimes you might search for grabbing contacts from a particular email account if the password is given. I also did the same.  In most of the cases it did not work properly. But recently i got a contact grabber from <a href="http://www.phpclasses.org" target="_blank">phpclasses.org</a> which works perfectly on <strong>Gmail</strong>, <strong>Hotmail</strong>, <strong>Rediff</strong>, <strong>Yahoo</strong>, <strong>Orkut</strong>, <strong>MySpace</strong>, <strong>Indiatimes</strong>, <strong>Linkedin</strong> , <strong>AOL</strong> and <strong>lycos</strong></p>
<div id="attachment_355" class="wp-caption alignnone" style="width: 371px"><a href="http://www.sajithmr.com/wp-content/uploads/2008/11/grabber.jpg"><img class="size-full wp-image-355" title="Contact Grabber " src="http://www.sajithmr.com/wp-content/uploads/2008/11/grabber.jpg" alt="screen shot" width="361" height="225" /></a><p class="wp-caption-text">screen shot</p></div>
<p>But the zip file i got is not well arranged, so it shows some errors . I arranged it in proper way and uploaded here:</p>
<p><span style="text-decoration: underline;">Download:</span></p>
<p><a href="http://sajithmr.com/downloads/grabber.zip" target="_self"><img class="alignnone size-thumbnail wp-image-354" title="winzip_180x180" src="http://www.sajithmr.com/wp-content/uploads/2008/11/winzip_180x180-150x150.gif" alt="" width="98" height="98" /></a></p>
<p><a title="Contact Grabber" href="http://sajithmr.com/downloads/grabber.zip" target="_self">http://sajithmr.com/downloads/grabber.zip</a></p>
<p><span style="color: #808080;"><em>(Under GNU Public License)</em></span></p>
<p>Using this <strong>php code</strong> , you can <strong>export the email contacts</strong> as csv file.</p>
<p>Here is the actual source website : <a href="http://www.phpclasses.org/browse/package/3895.html" target="_blank">http://www.phpclasses.org/browse/package/3895.html</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/contact-grabber/feed</wfw:commentRss>
		<slash:comments>49</slash:comments>
		</item>
		<item>
		<title>Mozilla Plugin for Gmail</title>
		<link>http://www.sajithmr.me/mozilla-plugin-for-gmail</link>
		<comments>http://www.sajithmr.me/mozilla-plugin-for-gmail#comments</comments>
		<pubDate>Fri, 14 Mar 2008 17:15:31 +0000</pubDate>
		<dc:creator>Mr Me</dc:creator>
				<category><![CDATA[html]]></category>
		<category><![CDATA[webworld]]></category>
		<category><![CDATA[better gmail]]></category>
		<category><![CDATA[gmail]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[mozilla]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[yahoo]]></category>

		<guid isPermaLink="false">http://www.sajithmr.com/mozilla-plugin-for-gmail/</guid>
		<description><![CDATA[I personally like gmail than any other webmail service in this world. I was a regular yahoo mail user two years before, and i used yahoo messenger also. I am not blaming yahoo mail service, i don&#8217;t know the reason for this switching exactly, but i like gmail. Might be because of its simple chat, [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.sajithmr.com/wp-content/uploads/2008/03/gmail-logo.jpg" alt="Gmail logo" style="margin: 20px; float: left" /></p>
<p><strong><font size="8">I</font></strong> personally like gmail than any other webmail service in this world. I was a regular yahoo mail user  two years before, and i used yahoo messenger also. I am not blaming yahoo mail service, i don&#8217;t  know the reason for this switching exactly, but i like gmail. Might be because of its simple chat, simple Ajax implementation, very simple look, etc . But the thing i want to disclose is not a mere comparison of gmail and yahoo, that is not my concern here.</p>
<p><img src="http://www.sajithmr.com/wp-content/uploads/2008/03/firefox-logo.png" alt="Firefox logo" style="margin: 20px; float: right" height="207" width="209" /></p>
<p>Some additional features i expected while using gmail are <span style="font-weight: bold">HTML signature</span>, customizing the view,  labellings,  theme ,  removal of ads ,  i am not revealing the climax of the  movie here <img src='http://www.sajithmr.me/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />   but i got a mozilla plugin which does all the lagging features of gmail what i expected, and its name is  Better Gmail  (They could have put better name) .</p>
<p>You can download that plugin from here :<a href="https://addons.mozilla.org/en-US/firefox/addon/4866" title="Better Gmail" target="_blank"> Better Gmail </a></p>
<p>Screen shot:<br />
<img src="http://www.sajithmr.com/wp-content/uploads/2008/03/better-gmail.JPG" alt="Better Gmail Screen Shot" style="margin: 20px; float: right" /></p>
<p><a href="https://addons.mozilla.org/en-US/firefox/addon/4866" title="Download Mozilla Plugin" target="_blank">Download the plugin</a> and install and refresh gmail page after making any changes in the option. Put a better html signature with images , links etc like yahoo, customize your gmail as you wish.</p>
<p><img src="http://www.sajithmr.com/wp-content/uploads/2008/03/20070417-gmail-logo.jpg" alt="Google Mail Logo" height="220" width="302" /></p>
<p>(Tips: For 100% working of this plugin, you need to switch into older gmail version)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sajithmr.me/mozilla-plugin-for-gmail/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

