<?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 J-Doc</title>
	<atom:link href="http://jsilva.komodoopenlab.com/blog/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://jsilva.komodoopenlab.com/blog</link>
	<description>inclusion, equity, open source</description>
	<lastBuildDate>Wed, 05 Oct 2011 04:43:48 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Make compiz-fusion work with xscreensaver (the quick &amp; dirty way) by steve beschakis</title>
		<link>http://jsilva.komodoopenlab.com/blog/archives/187/comment-page-1#comment-4049</link>
		<dc:creator>steve beschakis</dc:creator>
		<pubDate>Wed, 05 Oct 2011 04:43:48 +0000</pubDate>
		<guid isPermaLink="false">http://jsilva.komodoopenlab.com/blog/?p=187#comment-4049</guid>
		<description>how are they &quot;working together&quot; if you&#039;re killing one in order to run the other?
i&#039;d LOVE to have a functional xscreensaver, but I&#039;m not prepared to give up wobbly windows and painting with fire to get it.</description>
		<content:encoded><![CDATA[<p>how are they &#8220;working together&#8221; if you&#8217;re killing one in order to run the other?<br />
i&#8217;d LOVE to have a functional xscreensaver, but I&#8217;m not prepared to give up wobbly windows and painting with fire to get it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Activate spelling check in OpenOffice 2.4 by John</title>
		<link>http://jsilva.komodoopenlab.com/blog/archives/66/comment-page-1#comment-3981</link>
		<dc:creator>John</dc:creator>
		<pubDate>Fri, 13 May 2011 17:17:29 +0000</pubDate>
		<guid isPermaLink="false">http://jsilva.komodoopenlab.com/blog/?p=66#comment-3981</guid>
		<description>If you didn&#039;t manage to activate spell checker or you language isn&#039;t presented in the vocabulary you can still use online spellcheckers, like this one: http://www.spellchecker.net/spellcheck/
You need to copy and paste text but it is better than nothing.</description>
		<content:encoded><![CDATA[<p>If you didn&#8217;t manage to activate spell checker or you language isn&#8217;t presented in the vocabulary you can still use online spellcheckers, like this one: <a href="http://www.spellchecker.net/spellcheck/" rel="nofollow">http://www.spellchecker.net/spellcheck/</a><br />
You need to copy and paste text but it is better than nothing.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Make compiz-fusion work with xscreensaver (the quick &amp; dirty way) by Anonymous</title>
		<link>http://jsilva.komodoopenlab.com/blog/archives/187/comment-page-1#comment-1188</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Wed, 23 Sep 2009 05:56:23 +0000</pubDate>
		<guid isPermaLink="false">http://jsilva.komodoopenlab.com/blog/?p=187#comment-1188</guid>
		<description>maybe this will work, textarea isn&#039;t supported
&lt;code&gt;#!/bin/bash
if [ -f fixscreensaver.out ]; then rm fixscreensaver.out; fi
xscreensaver-command -watch &gt;&gt; fixscreensaver.out &amp;
while true; do
	if tail --lines=1 fixscreensaver.out &#124; grep -w UNBLANK; then
		echo &#039;&#039; &gt;&gt; fixscreensaver.out;
		compiz --replace --sm-disable --ignore-desktop-hints ccp --loose-binding &amp;
	fi
	if tail --lines=1 fixscreensaver.out &#124; grep -w BLANK; then
		echo &#039;&#039; &gt;&gt; fixscreensaver.out;
		metacity --replace &amp;
	fi
	sleep .1;
done;
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>maybe this will work, textarea isn&#8217;t supported<br />
<code>#!/bin/bash<br />
if [ -f fixscreensaver.out ]; then rm fixscreensaver.out; fi<br />
xscreensaver-command -watch &gt;&gt; fixscreensaver.out &amp;<br />
while true; do<br />
	if tail --lines=1 fixscreensaver.out | grep -w UNBLANK; then<br />
		echo '' &gt;&gt; fixscreensaver.out;<br />
		compiz --replace --sm-disable --ignore-desktop-hints ccp --loose-binding &amp;<br />
	fi<br />
	if tail --lines=1 fixscreensaver.out | grep -w BLANK; then<br />
		echo '' &gt;&gt; fixscreensaver.out;<br />
		metacity --replace &amp;<br />
	fi<br />
	sleep .1;<br />
done;<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Make compiz-fusion work with xscreensaver (the quick &amp; dirty way) by Anonymous</title>
		<link>http://jsilva.komodoopenlab.com/blog/archives/187/comment-page-1#comment-1187</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Wed, 23 Sep 2009 05:50:06 +0000</pubDate>
		<guid isPermaLink="false">http://jsilva.komodoopenlab.com/blog/?p=187#comment-1187</guid>
		<description>this makes it easier to see
#!/bin/bash
if [ -f fixscreensaver.out ]; then rm fixscreensaver.out; fi
xscreensaver-command -watch &gt;&gt; fixscreensaver.out &amp;
while true; do
	if tail --lines=1 fixscreensaver.out &#124; grep -w UNBLANK; then
		echo &#039;&#039; &gt;&gt; fixscreensaver.out;
		compiz --replace --sm-disable --ignore-desktop-hints ccp --loose-binding &amp;
	fi
	if tail --lines=1 fixscreensaver.out &#124; grep -w BLANK; then
		echo &#039;&#039; &gt;&gt; fixscreensaver.out;
		metacity --replace &amp;
	fi
	sleep .1;
done;
</description>
		<content:encoded><![CDATA[<p>this makes it easier to see<br />
#!/bin/bash<br />
if [ -f fixscreensaver.out ]; then rm fixscreensaver.out; fi<br />
xscreensaver-command -watch &gt;&gt; fixscreensaver.out &amp;<br />
while true; do<br />
	if tail &#8211;lines=1 fixscreensaver.out | grep -w UNBLANK; then<br />
		echo &#8221; &gt;&gt; fixscreensaver.out;<br />
		compiz &#8211;replace &#8211;sm-disable &#8211;ignore-desktop-hints ccp &#8211;loose-binding &amp;<br />
	fi<br />
	if tail &#8211;lines=1 fixscreensaver.out | grep -w BLANK; then<br />
		echo &#8221; &gt;&gt; fixscreensaver.out;<br />
		metacity &#8211;replace &amp;<br />
	fi<br />
	sleep .1;<br />
done;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Make compiz-fusion work with xscreensaver (the quick &amp; dirty way) by Anonymous</title>
		<link>http://jsilva.komodoopenlab.com/blog/archives/187/comment-page-1#comment-1186</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Wed, 23 Sep 2009 05:46:33 +0000</pubDate>
		<guid isPermaLink="false">http://jsilva.komodoopenlab.com/blog/?p=187#comment-1186</guid>
		<description>I used a similary script as follows, I like it more since its just one bash script, just prepend with sh and add to your session 

#!/bin/bash
if [ -f fixscreensaver.out ]; then rm fixscreensaver.out; fi
xscreensaver-command -watch &gt;&gt; fixscreensaver.out &amp;
while true; do
	if tail --lines=1 fixscreensaver.out &#124; grep -w UNBLANK; then
		echo &#039;&#039; &gt;&gt; fixscreensaver.out;
		compiz --replace --sm-disable --ignore-desktop-hints ccp --loose-binding &amp;
	fi
	if tail --lines=1 fixscreensaver.out &#124; grep -w BLANK; then
		echo &#039;&#039; &gt;&gt; fixscreensaver.out;
		metacity --replace &amp;
	fi
	sleep .1;
done;</description>
		<content:encoded><![CDATA[<p>I used a similary script as follows, I like it more since its just one bash script, just prepend with sh and add to your session </p>
<p>#!/bin/bash<br />
if [ -f fixscreensaver.out ]; then rm fixscreensaver.out; fi<br />
xscreensaver-command -watch &gt;&gt; fixscreensaver.out &amp;<br />
while true; do<br />
	if tail &#8211;lines=1 fixscreensaver.out | grep -w UNBLANK; then<br />
		echo &#8221; &gt;&gt; fixscreensaver.out;<br />
		compiz &#8211;replace &#8211;sm-disable &#8211;ignore-desktop-hints ccp &#8211;loose-binding &amp;<br />
	fi<br />
	if tail &#8211;lines=1 fixscreensaver.out | grep -w BLANK; then<br />
		echo &#8221; &gt;&gt; fixscreensaver.out;<br />
		metacity &#8211;replace &amp;<br />
	fi<br />
	sleep .1;<br />
done;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ukelele tuner for the Gameboy Advance by Mr Speaker</title>
		<link>http://jsilva.komodoopenlab.com/blog/archives/13/comment-page-1#comment-1121</link>
		<dc:creator>Mr Speaker</dc:creator>
		<pubDate>Sun, 05 Jul 2009 02:47:15 +0000</pubDate>
		<guid isPermaLink="false">http://jsilva.komodoopenlab.com/blog/?p=13#comment-1121</guid>
		<description>Gameboy ukelele hacking... that&#039;s pretty niche - I love it!</description>
		<content:encoded><![CDATA[<p>Gameboy ukelele hacking&#8230; that&#8217;s pretty niche &#8211; I love it!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Protected: The Silva Screen Cine Club by Anonymous</title>
		<link>http://jsilva.komodoopenlab.com/blog/misc/cine-club/comment-page-1#comment-1096</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Fri, 29 May 2009 20:59:16 +0000</pubDate>
		<guid isPermaLink="false">http://jsilva.komodoopenlab.com/blog/?page_id=287#comment-1096</guid>
		<description>Protected Comments: Please enter your password to view comments.</description>
		<content:encoded><![CDATA[<form action="http://jsilva.komodoopenlab.com/blog/wp-pass.php" method="post">
	<p>This post is password protected. To view it please enter your password below:</p>
	<p><label for="pwbox-287">Password: <input name="post_password" id="pwbox-287" type="password" size="20" /></label> <input type="submit" name="Submit" value="Submit" /></p>
	</form>
	]]></content:encoded>
	</item>
	<item>
		<title>Comment on Protected: The Silva Screen Cine Club by flor</title>
		<link>http://jsilva.komodoopenlab.com/blog/misc/cine-club/comment-page-1#comment-1092</link>
		<dc:creator>flor</dc:creator>
		<pubDate>Mon, 18 May 2009 19:55:29 +0000</pubDate>
		<guid isPermaLink="false">http://jsilva.komodoopenlab.com/blog/?page_id=287#comment-1092</guid>
		<description>Protected Comments: Please enter your password to view comments.</description>
		<content:encoded><![CDATA[<form action="http://jsilva.komodoopenlab.com/blog/wp-pass.php" method="post">
	<p>This post is password protected. To view it please enter your password below:</p>
	<p><label for="pwbox-287">Password: <input name="post_password" id="pwbox-287" type="password" size="20" /></label> <input type="submit" name="Submit" value="Submit" /></p>
	</form>
	]]></content:encoded>
	</item>
	<item>
		<title>Comment on Activate spelling check in OpenOffice 2.4 by Jorge</title>
		<link>http://jsilva.komodoopenlab.com/blog/archives/66/comment-page-1#comment-188</link>
		<dc:creator>Jorge</dc:creator>
		<pubDate>Wed, 04 Mar 2009 14:46:10 +0000</pubDate>
		<guid isPermaLink="false">http://jsilva.komodoopenlab.com/blog/?p=66#comment-188</guid>
		<description>The spell check icon has to be there in order to enable spell check with the selected language pack... some languages don&#039;t support spell check or you may have to look for the complete language pack elsewhere.</description>
		<content:encoded><![CDATA[<p>The spell check icon has to be there in order to enable spell check with the selected language pack&#8230; some languages don&#8217;t support spell check or you may have to look for the complete language pack elsewhere.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Activate spelling check in OpenOffice 2.4 by David Goudie</title>
		<link>http://jsilva.komodoopenlab.com/blog/archives/66/comment-page-1#comment-186</link>
		<dc:creator>David Goudie</dc:creator>
		<pubDate>Wed, 25 Feb 2009 12:29:35 +0000</pubDate>
		<guid isPermaLink="false">http://jsilva.komodoopenlab.com/blog/?p=66#comment-186</guid>
		<description>Fantastic -I have tried to activate the speling check many times without any success. However part of my problem is that I have been trying to use English (Australia) Dictionary. This doesn&#039;t have the Spell Check Icon - is this necessary before such a Dictionary can be selected or does it imply that the associated dictionary has been selected. Thanks and kind regards</description>
		<content:encoded><![CDATA[<p>Fantastic -I have tried to activate the speling check many times without any success. However part of my problem is that I have been trying to use English (Australia) Dictionary. This doesn&#8217;t have the Spell Check Icon &#8211; is this necessary before such a Dictionary can be selected or does it imply that the associated dictionary has been selected. Thanks and kind regards</p>
]]></content:encoded>
	</item>
</channel>
</rss>

