<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for /home/spsneo/blog</title>
	<atom:link href="http://spsneo.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://spsneo.com/blog</link>
	<description>Trying to move every bit to cloud.</description>
	<lastBuildDate>Thu, 05 Apr 2012 15:31:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Set BING Background as your Desktop Wallpaper in GNOME by Set Bing images as your wallpaper &#171; The Ubuntu Incident</title>
		<link>http://spsneo.com/blog/2009/07/18/set-bing-background-as-your-desktop-wallpaper-in-gnome/comment-page-1/#comment-510</link>
		<dc:creator>Set Bing images as your wallpaper &#171; The Ubuntu Incident</dc:creator>
		<pubDate>Thu, 05 Apr 2012 15:31:13 +0000</pubDate>
		<guid isPermaLink="false">http://spsneo.com/blog/?p=86#comment-510</guid>
		<description>[...] Set BING Background as your Desktop Wallpaper in GNOME (in PHP, for Gnome 2 only)  Share this:FacebookEmailPrintLike this:LikeBe the first to like this post.    Categories: python Tags: bing, bing image of the day, bing wallpaper       Comments (0) Trackbacks (0) Leave a comment Trackback [...]</description>
		<content:encoded><![CDATA[<p>[...] Set BING Background as your Desktop Wallpaper in GNOME (in PHP, for Gnome 2 only)  Share this:FacebookEmailPrintLike this:LikeBe the first to like this post.    Categories: python Tags: bing, bing image of the day, bing wallpaper       Comments (0) Trackbacks (0) Leave a comment Trackback [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to install Pintos on QEMU by Shehbaz Jaffer</title>
		<link>http://spsneo.com/blog/2008/08/03/how-to-install-pintos-on-qemu/comment-page-1/#comment-508</link>
		<dc:creator>Shehbaz Jaffer</dc:creator>
		<pubDate>Thu, 09 Feb 2012 15:51:43 +0000</pubDate>
		<guid isPermaLink="false">http://spsneo.com/blog/?p=25#comment-508</guid>
		<description>Awesome post! Thanks a lot!!</description>
		<content:encoded><![CDATA[<p>Awesome post! Thanks a lot!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Set BING Background as your Desktop Wallpaper in GNOME by Karfield</title>
		<link>http://spsneo.com/blog/2009/07/18/set-bing-background-as-your-desktop-wallpaper-in-gnome/comment-page-1/#comment-481</link>
		<dc:creator>Karfield</dc:creator>
		<pubDate>Mon, 05 Dec 2011 12:17:57 +0000</pubDate>
		<guid isPermaLink="false">http://spsneo.com/blog/?p=86#comment-481</guid>
		<description>I think it&#039;s no need to use php-cli. I write a bash script, it works fine too;)
Here&#039;s my code:

#!/bin/bash
#
# Write by Karfield
#
# Free to use it!)
#
BING=http://www.bing.com
TMPFILE=/tmp/bing.html
WALLPAPER=/home/$USER/Downloads/bing.jpg
echo &quot;Try to get the BING page...&quot;
wget -q $BING -O $TMPFILE
! [ -e $TMPFILE ] &amp;&amp; exit;
URL=$BING$(sed -n &quot;s/\(.*\)g_img={url\:&#039;\([0-9a-Z?=%_-\\/\\.]*\)&#039;\,id\(.*\)/\2/p&quot; &lt; $TMPFILE)
echo &quot;Get the picture&#039;s URL = &quot;$URL
rm $TMPFILE
mv $WALLPAPER{,-old}
echo &quot;Download the wallpaper... &quot;
wget -q $URL -O $WALLPAPER
if [ -e $WALLPAPER ]; then
	echo &quot;We got it, set the background...&quot;
	gconftool-2 --type string --set /desktop/gnome/background/picture_filename $WALLPAPER
	gconftool-2 --type string --set /desktop/gnome/background/picture_options zoom
	gconftool-2 --type string --set /desktop/gnome/background/primary_color black
fi


You can save the code as update_bing_wallpaper.sh, don&#039;t forget to change the file mode as &quot;u+x&quot;. And run it to change your background.</description>
		<content:encoded><![CDATA[<p>I think it&#8217;s no need to use php-cli. I write a bash script, it works fine too;)<br />
Here&#8217;s my code:</p>
<p>#!/bin/bash<br />
#<br />
# Write by Karfield<br />
#<br />
# Free to use it!)<br />
#<br />
BING=http://www.bing.com<br />
TMPFILE=/tmp/bing.html<br />
WALLPAPER=/home/$USER/Downloads/bing.jpg<br />
echo &#8220;Try to get the BING page&#8230;&#8221;<br />
wget -q $BING -O $TMPFILE<br />
! [ -e $TMPFILE ] &amp;&amp; exit;<br />
URL=$BING$(sed -n &#8220;s/\(.*\)g_img={url\:&#8217;\([0-9a-Z?=%_-\\/\\.]*\)&#8217;\,id\(.*\)/\2/p&#8221; &lt; $TMPFILE)<br />
echo &quot;Get the picture&#039;s URL = &quot;$URL<br />
rm $TMPFILE<br />
mv $WALLPAPER{,-old}<br />
echo &quot;Download the wallpaper&#8230; &quot;<br />
wget -q $URL -O $WALLPAPER<br />
if [ -e $WALLPAPER ]; then<br />
	echo &quot;We got it, set the background&#8230;&quot;<br />
	gconftool-2 &#8211;type string &#8211;set /desktop/gnome/background/picture_filename $WALLPAPER<br />
	gconftool-2 &#8211;type string &#8211;set /desktop/gnome/background/picture_options zoom<br />
	gconftool-2 &#8211;type string &#8211;set /desktop/gnome/background/primary_color black<br />
fi</p>
<p>You can save the code as update_bing_wallpaper.sh, don&#039;t forget to change the file mode as &quot;u+x&quot;. And run it to change your background.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Advantages of Looking Stuff Up by Kshitiz</title>
		<link>http://spsneo.com/blog/the-advantages-of-looking-stuff-up/comment-page-1/#comment-479</link>
		<dc:creator>Kshitiz</dc:creator>
		<pubDate>Thu, 27 Oct 2011 04:00:21 +0000</pubDate>
		<guid isPermaLink="false">http://spsneo.com/blog/?page_id=170#comment-479</guid>
		<description>New theme! Clean!!</description>
		<content:encoded><![CDATA[<p>New theme! Clean!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to install Pintos on QEMU by Bhriguraj</title>
		<link>http://spsneo.com/blog/2008/08/03/how-to-install-pintos-on-qemu/comment-page-1/#comment-476</link>
		<dc:creator>Bhriguraj</dc:creator>
		<pubDate>Mon, 12 Sep 2011 10:32:57 +0000</pubDate>
		<guid isPermaLink="false">http://spsneo.com/blog/?p=25#comment-476</guid>
		<description>Do the following modification it will work:

~/bin/pintos file
line no:257-&gt;my $name = find_file (&#039;kernel.bin&#039;);
replace the kernel.bin with absolute path.  ~/pintos/src/threads/build/kernel.bin

line no:257-&gt;push (@cmd, &#039;-no-kqemu&#039;);
comment the line #push (@cmd, &#039;-no-kqemu&#039;);

~/bin/Pintos.pm file
line no:362-&gt;$name = find_file (&quot;loader.bin&quot;) if !defined $name;
replace the loader.bin with absolute path.  ~/pintos/src/threads/build/loader.bin</description>
		<content:encoded><![CDATA[<p>Do the following modification it will work:</p>
<p>~/bin/pintos file<br />
line no:257-&gt;my $name = find_file (&#8216;kernel.bin&#8217;);<br />
replace the kernel.bin with absolute path.  ~/pintos/src/threads/build/kernel.bin</p>
<p>line no:257-&gt;push (@cmd, &#8216;-no-kqemu&#8217;);<br />
comment the line #push (@cmd, &#8216;-no-kqemu&#8217;);</p>
<p>~/bin/Pintos.pm file<br />
line no:362-&gt;$name = find_file (&#8220;loader.bin&#8221;) if !defined $name;<br />
replace the loader.bin with absolute path.  ~/pintos/src/threads/build/loader.bin</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on GRUB Tutorial for Beginners by GRUB &#124; Warren Tang&#039;s Blog</title>
		<link>http://spsneo.com/blog/2008/07/20/grub-tutorial/comment-page-1/#comment-474</link>
		<dc:creator>GRUB &#124; Warren Tang&#039;s Blog</dc:creator>
		<pubDate>Sun, 15 May 2011 14:35:46 +0000</pubDate>
		<guid isPermaLink="false">http://spsneo.com/blog/?p=15#comment-474</guid>
		<description>[...] Boot with GRUB http://www.linuxjournal.com/article/4622 GRUB Tutorial for Beginners http://spsneo.com/blog/2008/07/20/grub-tutorial/ How to install GRUB on the MBR [...]</description>
		<content:encoded><![CDATA[<p>[...] Boot with GRUB <a href="http://www.linuxjournal.com/article/4622" rel="nofollow">http://www.linuxjournal.com/article/4622</a> GRUB Tutorial for Beginners <a href="http://spsneo.com/blog/2008/07/20/grub-tutorial/" rel="nofollow">http://spsneo.com/blog/2008/07/20/grub-tutorial/</a> How to install GRUB on the MBR [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to install Pintos on QEMU by Priyank</title>
		<link>http://spsneo.com/blog/2008/08/03/how-to-install-pintos-on-qemu/comment-page-1/#comment-472</link>
		<dc:creator>Priyank</dc:creator>
		<pubDate>Sun, 17 Apr 2011 12:00:31 +0000</pubDate>
		<guid isPermaLink="false">http://spsneo.com/blog/?p=25#comment-472</guid>
		<description>Hello all!

If you are getting the &#039;Cannot find kernel&#039;, then go to the &quot;~/pintos/src/threads/build&quot; and then run the command.

Also, os.dsk wsa not found anywhere and it didn&#039;t affect anything :D.</description>
		<content:encoded><![CDATA[<p>Hello all!</p>
<p>If you are getting the &#8216;Cannot find kernel&#8217;, then go to the &#8220;~/pintos/src/threads/build&#8221; and then run the command.</p>
<p>Also, os.dsk wsa not found anywhere and it didn&#8217;t affect anything <img src='http://spsneo.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> .</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Perplexing Probability &#8211; Things are not always obvious by kageiit</title>
		<link>http://spsneo.com/blog/2011/01/17/perplexing-probability-things-are-not-always-obvious/comment-page-1/#comment-452</link>
		<dc:creator>kageiit</dc:creator>
		<pubDate>Wed, 19 Jan 2011 06:12:16 +0000</pubDate>
		<guid isPermaLink="false">http://spsneo.com/blog/?p=146#comment-452</guid>
		<description>you think too much :)</description>
		<content:encoded><![CDATA[<p>you think too much <img src='http://spsneo.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Perplexing Probability &#8211; Things are not always obvious by spsneo</title>
		<link>http://spsneo.com/blog/2011/01/17/perplexing-probability-things-are-not-always-obvious/comment-page-1/#comment-450</link>
		<dc:creator>spsneo</dc:creator>
		<pubDate>Tue, 18 Jan 2011 00:55:29 +0000</pubDate>
		<guid isPermaLink="false">http://spsneo.com/blog/?p=146#comment-450</guid>
		<description>@Nipun

Yeah yeah, I forgot to mention that matches are independent. Its a totally hypothetical series. :-)</description>
		<content:encoded><![CDATA[<p>@Nipun</p>
<p>Yeah yeah, I forgot to mention that matches are independent. Its a totally hypothetical series. <img src='http://spsneo.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Perplexing Probability &#8211; Things are not always obvious by Nipun</title>
		<link>http://spsneo.com/blog/2011/01/17/perplexing-probability-things-are-not-always-obvious/comment-page-1/#comment-449</link>
		<dc:creator>Nipun</dc:creator>
		<pubDate>Mon, 17 Jan 2011 19:43:47 +0000</pubDate>
		<guid isPermaLink="false">http://spsneo.com/blog/?p=146#comment-449</guid>
		<description>If matches are independent (!), then S-I-S is better then I-S-I by a factor of:
(2-P(India wins away))/(2-P(India wins at home))

Conditional probability will introduce too many variables :D</description>
		<content:encoded><![CDATA[<p>If matches are independent (!), then S-I-S is better then I-S-I by a factor of:<br />
(2-P(India wins away))/(2-P(India wins at home))</p>
<p>Conditional probability will introduce too many variables <img src='http://spsneo.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

