<?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"
	>

<channel>
	<title>TechCorner.biz</title>
	<atom:link href="http://www.itcare.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.itcare.net</link>
	<description>Vail Valley Information Technology (IT) Services</description>
	<pubDate>Tue, 04 Nov 2008 00:57:27 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.2</generator>
	<language>en</language>
			<item>
		<title>Font Bonanza on Ubuntu Hardy</title>
		<link>http://www.itcare.net/2008/09/19/font-bonanza-on-ubuntu-hardy/</link>
		<comments>http://www.itcare.net/2008/09/19/font-bonanza-on-ubuntu-hardy/#comments</comments>
		<pubDate>Sat, 20 Sep 2008 05:58:57 +0000</pubDate>
		<dc:creator>tibor</dc:creator>
		
		<category><![CDATA[(K)Ubuntu]]></category>

		<category><![CDATA[EyeCandy]]></category>

		<category><![CDATA[IT]]></category>

		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.itcare.net/?p=270</guid>
		<description><![CDATA[To install an amazing amount and quality of fonts execute the following command:
Code:
sudo apt-get install ttf-georgewilliams ttf-sjfonts sun-java6-fonts ttf-larabie-deco ttf-larabie-straight ttf-larabie-uncommon gnome-specimen
I am reviewing hundreds of fonts to pick the right one for my new IT Care Inc. logo I am designing. I will post the best of them fonts soon.
For now here is an [...]]]></description>
			<content:encoded><![CDATA[<p>To install an <strong>amazing amount and quality of fonts</strong> execute the following command:</p>
<p><strong>Code</strong>:</p>
<pre>sudo apt-get install ttf-georgewilliams ttf-sjfonts sun-java6-fonts ttf-larabie-deco ttf-larabie-straight ttf-larabie-uncommon gnome-specimen</pre>
<p>I am reviewing hundreds of fonts to pick the right one for my new IT Care Inc. logo I am designing. I will post the best of them fonts soon.</p>
<p>For now here is an &#8220;<strong>appetizer</strong>&#8220;, though:</p>
<p><a href="http://www.itcare.net/wp-content/uploads/2008/09/font_eyecandy.png" ><img class="aligncenter size-full wp-image-269" title="Font Eye Candy" src="http://www.itcare.net/wp-content/uploads/2008/09/font_eyecandy.png" alt="" width="499" height="233" /></a></p>
<p>This font is called Cuomotype in case you wanted to know. <img src='http://www.itcare.net/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.itcare.net/2008/09/19/font-bonanza-on-ubuntu-hardy/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wordpress Revolution Theme - How do I create a page that doesn&#8217;t appear in the navigation</title>
		<link>http://www.itcare.net/2008/09/18/wordpress-revolution-theme-how-do-i-create-a-page-that-doesnt-appear-in-the-navigation/</link>
		<comments>http://www.itcare.net/2008/09/18/wordpress-revolution-theme-how-do-i-create-a-page-that-doesnt-appear-in-the-navigation/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 01:43:47 +0000</pubDate>
		<dc:creator>tibor</dc:creator>
		
		<category><![CDATA[Fixes/Solutions]]></category>

		<category><![CDATA[IT]]></category>

		<category><![CDATA[Linux]]></category>

		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.itcare.net/?p=261</guid>
		<description><![CDATA[http://www.revolutiontheme.com/support/viewtopic.php?f=3&#38;t=5847&#38;p=31221&#38;hilit=+menu+link#p31221
Re: How do I create a page that doesn&#8217;t appear in the navigation
You can create a page in the normal way then exclude it from the navbar.  Find this in header.php:

Code:

&#60;div id="navbarleft"&#62;
&#60;ul id="nav"&#62;
&#60;li&#62;&#60;a href="&#60;?php echo get_settings('home'); ?&#62;"&#62;Home&#60;/a&#62;&#60;/li&#62;
&#60;?php wp_list_pages('title_li=&#38;depth=2&#38;sort_column=menu_order'); ?&#62;
&#60;/ul&#62;
&#60;/div&#62;


and change it to:

Code:

&#60;div id="navbarleft"&#62;
&#60;ul id="nav"&#62;
&#60;li&#62;&#60;a href="&#60;?php echo get_settings('home'); ?&#62;"&#62;Home&#60;/a&#62;&#60;/li&#62;
&#60;?php wp_list_pages('exclude=XX&#38;title_li=&#38;depth=2&#38;sort_column=menu_order'); ?&#62;
&#60;/ul&#62;
&#60;/div&#62;


Replace XX with the ID [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.revolutiontheme.com/support/viewtopic.php?f=3&amp;t=5847&amp;p=31221&amp;hilit=+menu+link#p31221" onclick="javascript:pageTracker._trackPageview('/outbound/article/www.revolutiontheme.com');" target="_blank">http://www.revolutiontheme.com/support/viewtopic.php?f=3&amp;t=5847&amp;p=31221&amp;hilit=+menu+link#p31221</a></p>
<p>Re: How do I create a page that doesn&#8217;t appear in the navigation</p>
<div class="postbody">You can create a page in the normal way then exclude it from the navbar.  Find this in header.php:</p>
<div class="codewrapper">
<div class="codetitle"><strong>Code:</strong></div>
<div class="codecontent">
<pre class="xhtml">&lt;div id="navbarleft"&gt;
&lt;ul id="nav"&gt;
&lt;li&gt;&lt;a href="&lt;?php echo get_settings('home'); ?&gt;"&gt;Home&lt;/a&gt;&lt;/li&gt;
&lt;?php wp_list_pages('title_li=&amp;depth=2&amp;sort_column=menu_order'); ?&gt;
&lt;/ul&gt;
&lt;/div&gt;</pre>
</div>
</div>
<p>and change it to:</p>
<div class="codewrapper">
<div class="codetitle"><strong>Code:</strong></div>
<div class="codecontent">
<pre class="xhtml">&lt;div id="navbarleft"&gt;
&lt;ul id="nav"&gt;
&lt;li&gt;&lt;a href="&lt;?php echo get_settings('home'); ?&gt;"&gt;Home&lt;/a&gt;&lt;/li&gt;
&lt;?php wp_list_pages('exclude=XX&amp;title_li=&amp;depth=2&amp;sort_column=menu_order'); ?&gt;
&lt;/ul&gt;
&lt;/div&gt;</pre>
</div>
</div>
<p>Replace XX with the ID number of the page to be excluded.</p>
<p>To exclude more than one page, the code looks like this:</p>
<div class="codewrapper">
<div class="codetitle"><strong>Code:</strong></div>
<div class="codecontent">&lt;?php wp_list_pages(&#8217;exclude=1,4&amp;title_li=&amp;depth=2&amp;sort_column=menu_order&#8217;); ?&gt;</div>
</div>
<p>Ade</p></div>
]]></content:encoded>
			<wfw:commentRss>http://www.itcare.net/2008/09/18/wordpress-revolution-theme-how-do-i-create-a-page-that-doesnt-appear-in-the-navigation/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wordpress REVOLUTION theme tweaks #2</title>
		<link>http://www.itcare.net/2008/09/16/wordpress-revolution-theme-tweaks-2/</link>
		<comments>http://www.itcare.net/2008/09/16/wordpress-revolution-theme-tweaks-2/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 05:18:38 +0000</pubDate>
		<dc:creator>tibor</dc:creator>
		
		<category><![CDATA[Favorite Wordpress Blogs]]></category>

		<category><![CDATA[IT]]></category>

		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.itcare.net/?p=198</guid>
		<description><![CDATA[To enable the commenting ability on a static Page post in the REVOLUTION wordpress theme (for example for a Testimony Page)

Insert the following code segment:
&#60;div class="comments"&#62;
&#60;h4&#62;Comments&#60;/h4&#62;
&#60;?php comments_template(); // Get wp-comments.php template ?&#62;
&#60;/div&#62;
into the theme&#8217;s page.php file to make it look like below:

&#60;?php get_header(); ?&#62;
&#60;div id="content"&#62;
&#60;div id="contentleft"&#62;
&#60;?php if (have_posts()) : while (have_posts()) : the_post(); ?&#62;
&#60;h1&#62;&#60;?php the_title(); [...]]]></description>
			<content:encoded><![CDATA[<p>To enable the commenting ability on a static Page post in the REVOLUTION wordpress theme (for example for a Testimony Page)</p>
<p><a href="http://www.itcare.net/wp-content/uploads/2008/09/testimonials.png" ><img class="alignnone size-thumbnail wp-image-203" title="TESTIMONIALS" src="http://www.itcare.net/wp-content/uploads/2008/09/testimonials-150x150.png" alt="" width="150" height="150" /></a></p>
<p><strong>Insert the following code segment:</strong></p>
<pre class="xhtml">&lt;div class="comments"&gt;
&lt;h4&gt;Comments&lt;/h4&gt;
&lt;?php comments_template(); // Get wp-comments.php template ?&gt;
&lt;/div&gt;</pre>
<p><strong>into the theme&#8217;s page.php file to make it look like below:</strong></p>
<pre class="xhtml">
&lt;?php get_header(); ?&gt;
&lt;div id="content"&gt;
&lt;div id="contentleft"&gt;
&lt;?php if (have_posts()) : while (have_posts()) : the_post(); ?&gt;
&lt;h1&gt;&lt;?php the_title(); ?&gt;&lt;/h1&gt;
&lt;?php the_content(__('Read more'));?&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;
&lt;!--
&lt;?php trackback_rdf(); ?&gt;
--&gt;
&lt;?php endwhile; else: ?&gt;
&lt;p&gt;&lt;?php _e('Sorry, no posts matched your criteria.'); ?&gt;&lt;/p&gt;&lt;?php endif; ?&gt;
&lt;div class="comments"&gt;
&lt;h4&gt;Comments&lt;/h4&gt;
&lt;?php comments_template(); // Get wp-comments.php template ?&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;?php include(TEMPLATEPATH."/sidebar_page.php");?
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.itcare.net/2008/09/16/wordpress-revolution-theme-tweaks-2/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Wordpress REVOLUTION theme tweaks #1</title>
		<link>http://www.itcare.net/2008/09/16/wordpress-revolution-theme-tweaks/</link>
		<comments>http://www.itcare.net/2008/09/16/wordpress-revolution-theme-tweaks/#comments</comments>
		<pubDate>Wed, 17 Sep 2008 03:20:28 +0000</pubDate>
		<dc:creator>tibor</dc:creator>
		
		<category><![CDATA[Favorite Wordpress Blogs]]></category>

		<category><![CDATA[IT]]></category>

		<category><![CDATA[Web]]></category>

		<guid isPermaLink="false">http://www.itcare.net/?p=180</guid>
		<description><![CDATA[This is pretty specific to the Wordpress theme I purchased from http://www.revolutionthemes.com/.
The desired outcome is displayed in the following 2 images (click on images to get the full size displayed:
 and 
On the default REVOLUTION theme to align text better with the bottom 3 image you need to change 3 sections in the theme&#8217;s style.css [...]]]></description>
			<content:encoded><![CDATA[<p>This is pretty specific to the Wordpress theme I purchased from http://www.revolutionthemes.com/.</p>
<p>The desired outcome is displayed in the following 2 images (click on images to get the full size displayed:<br />
<a href="http://www.itcare.net/wp-content/uploads/2008/09/before.png" ><img class="alignnone size-thumbnail wp-image-184" title="BEFORE" src="http://www.itcare.net/wp-content/uploads/2008/09/before-150x150.png" alt="" width="150" height="150" /></a> and <a href="http://www.itcare.net/wp-content/uploads/2008/09/after.png" ><img class="alignnone size-thumbnail wp-image-186" title="AFTER" src="http://www.itcare.net/wp-content/uploads/2008/09/after-150x150.png" alt="" width="150" height="150" /></a></p>
<p>On the default REVOLUTION theme to align text better with the bottom 3 image you need to change 3 sections in the theme&#8217;s style.css file.</p>
<p>The 3 sections to look for are:</p>
<ol>
<li>#homebottomleft img {</li>
<li>#homebottommiddle img {</li>
<li>#homebottomright img {</li>
</ol>
<p>Change the second px setting on the margin line from 0px to 5px or whatever number of pixels work for you in all 3 instances. Example 1 is displayed below:</p>
<p><strong>BEFORE</strong></p>
<pre class="css"><span class="cssSelector">#homebottomleft img {</span>
<span class="cssProperty">float</span><span class="cssRest">:</span><span class="cssValue"> left</span><span class="cssRest">;</span>
border: 2px solid #999999;
<span class="cssProperty">margin</span><span class="cssRest">:</span><span class="cssValue"> 0px 0px 10px 0px</span><span class="cssRest">;</span>
<span class="cssSelector">}</span></pre>
<p><strong>AFTER</strong></p>
<pre class="css"><span class="cssSelector">#homebottomleft img {</span>
<span class="cssProperty">float</span><span class="cssRest">:</span><span class="cssValue"> left</span><span class="cssRest">;</span>
border: 2px solid #999999;
<span class="cssProperty">margin</span><span class="cssRest">:</span><span class="cssValue"> 0px 5px 10px 0px</span><span class="cssRest">;</span>
<span class="cssSelector">}</span></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.itcare.net/2008/09/16/wordpress-revolution-theme-tweaks/feed/</wfw:commentRss>
		</item>
		<item>
		<title>GLText screensaver - Change displayed text</title>
		<link>http://www.itcare.net/2008/08/31/gltext-screensaver-change-displayed-text/</link>
		<comments>http://www.itcare.net/2008/08/31/gltext-screensaver-change-displayed-text/#comments</comments>
		<pubDate>Sun, 31 Aug 2008 18:23:00 +0000</pubDate>
		<dc:creator>tibor</dc:creator>
		
		<category><![CDATA[Fixes/Solutions]]></category>

		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://milehighlinux.com/blog/?p=31</guid>
		<description><![CDATA[Edit the /usr/share/applications/screensavers/gltext.desktop file as root.
1. Alt+F2
2. &#8220;gksu gedit /usr/share/applications/screensavers/gltext.desktop&#8221;
Change the line that currently says Exec=gltext -root to the following line instead:
Exec=gltext -root -front -no-spin -text &#8220;Mind is your conditioning\n always seeking expression\n IN THOUGHT\N through NOW!&#8221;
3. Save, Exit
4. Set your Screensaver to GLText under System, Preferences, Screensavers
]]></description>
			<content:encoded><![CDATA[<p>Edit the /usr/share/applications/screensavers/gltext.desktop file as root.</p>
<p>1. Alt+F2<br />
2. &#8220;gksu gedit /usr/share/applications/screensavers/gltext.desktop&#8221;</p>
<p>Change the line that currently says Exec=gltext -root to the following line instead:</p>
<p>Exec=gltext -root -front -no-spin -text &#8220;Mind is your conditioning\n always seeking expression\n IN THOUGHT\N through NOW!&#8221;</p>
<p>3. Save, Exit</p>
<p>4. Set your Screensaver to GLText under System, Preferences, Screensavers</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itcare.net/2008/08/31/gltext-screensaver-change-displayed-text/feed/</wfw:commentRss>
		</item>
		<item>
		<title>VNC through SSH</title>
		<link>http://www.itcare.net/2008/05/29/vnc-through-ssh/</link>
		<comments>http://www.itcare.net/2008/05/29/vnc-through-ssh/#comments</comments>
		<pubDate>Thu, 29 May 2008 03:04:42 +0000</pubDate>
		<dc:creator>tibor</dc:creator>
		
		<category><![CDATA[Fixes/Solutions]]></category>

		<guid isPermaLink="false">http://milehighlinux.com/blog/?p=29</guid>
		<description><![CDATA[INTERNAL: ssh -p10000 -X -L 5900:localhost:5900 user@internalIPaddress
EXTERNAL: ssh -p10000 -X -L 5900:localhost:5900 user@externalIPaddress
vncviewer localhost
]]></description>
			<content:encoded><![CDATA[<p>INTERNAL: ssh -p10000 -X -L 5900:localhost:5900 user@internalIPaddress<br />
EXTERNAL: ssh -p10000 -X -L 5900:localhost:5900 user@externalIPaddress<br />
vncviewer localhost</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itcare.net/2008/05/29/vnc-through-ssh/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Firefox 2 on Hardy cannot install extensions/addons</title>
		<link>http://www.itcare.net/2008/05/24/firefox-2-on-hardy-cannot-install-extensionsaddons/</link>
		<comments>http://www.itcare.net/2008/05/24/firefox-2-on-hardy-cannot-install-extensionsaddons/#comments</comments>
		<pubDate>Sat, 24 May 2008 02:20:00 +0000</pubDate>
		<dc:creator>tibor</dc:creator>
		
		<category><![CDATA[Fixes/Solutions]]></category>

		<guid isPermaLink="false">http://milehighlinux.com/blog/?p=28</guid>
		<description><![CDATA[The error message in the Firefox 2 error console says: &#8220;installlocation has no properties&#8221;
Solution: Close firefox, delete extensions.rdf file in your firefox path, restart firefox
]]></description>
			<content:encoded><![CDATA[<p>The error message in the Firefox 2 error console says: &#8220;installlocation has no properties&#8221;</p>
<p>Solution: Close firefox, delete extensions.rdf file in your firefox path, restart firefox</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itcare.net/2008/05/24/firefox-2-on-hardy-cannot-install-extensionsaddons/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Fix Flash audio not playing in Ubuntu Hardy under PulseAudio</title>
		<link>http://www.itcare.net/2008/05/23/fix-flash-audio-not-playing-in-ubuntu-hardy-under-pulseaudio/</link>
		<comments>http://www.itcare.net/2008/05/23/fix-flash-audio-not-playing-in-ubuntu-hardy-under-pulseaudio/#comments</comments>
		<pubDate>Fri, 23 May 2008 02:02:10 +0000</pubDate>
		<dc:creator>tibor</dc:creator>
		
		<category><![CDATA[Fixes/Solutions]]></category>

		<guid isPermaLink="false">http://milehighlinux.com/blog/?p=27</guid>
		<description><![CDATA[sudo apt-get install &#8211;reinstall pulseaudio libflashsupport
]]></description>
			<content:encoded><![CDATA[<p>sudo apt-get install &#8211;reinstall pulseaudio libflashsupport</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itcare.net/2008/05/23/fix-flash-audio-not-playing-in-ubuntu-hardy-under-pulseaudio/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Flyback on Ubuntu Hardy 8.04 LTS</title>
		<link>http://www.itcare.net/2008/05/22/flyback-on-ubuntu-hardy-804-lts/</link>
		<comments>http://www.itcare.net/2008/05/22/flyback-on-ubuntu-hardy-804-lts/#comments</comments>
		<pubDate>Thu, 22 May 2008 00:05:40 +0000</pubDate>
		<dc:creator>tibor</dc:creator>
		
		<category><![CDATA[Fixes/Solutions]]></category>

		<guid isPermaLink="false">http://milehighlinux.com/blog/?p=26</guid>
		<description><![CDATA[Original code homepage: http://code.google.com/p/flyback/
$sudo apt-get install python python-glade2 python-gnome2 python-pysqlite2 python-gconf rsync gnome-schedule
$ mkdir ~/Applications
$ cd ~/Applications
$ wget http://flyback.googlecode.com/files/flyback_0.4.0.tar.gz
$ tar -zxvf flyback_0.4.0.tar.gz
$ cd flyback
$ cp GPL.txt ~
$ ln -s flyback.py ~/flyback.py #it expects flyback to be installed to yourhome directory, ie the cron line is looking for the file /home/user/flyback.py
$ python flyback.py
Create a custom application [...]]]></description>
			<content:encoded><![CDATA[<p>Original code homepage: http://code.google.com/p/flyback/</p>
<p>$sudo apt-get install python python-glade2 python-gnome2 python-pysqlite2 python-gconf rsync gnome-schedule<br />
$ mkdir ~/Applications<br />
$ cd ~/Applications<br />
$ wget http://flyback.googlecode.com/files/flyback_0.4.0.tar.gz<br />
$ tar -zxvf flyback_0.4.0.tar.gz<br />
$ cd flyback<br />
$ cp GPL.txt ~<br />
$ ln -s flyback.py ~/flyback.py #it expects flyback to be installed to yourhome directory, ie the cron line is looking for the file /home/user/flyback.py<br />
$ python flyback.py</p>
<p>Create a custom application launcher in Gnome Panel to create an icon:<br />
python /home/t/Applications/flyback/flyback.py</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itcare.net/2008/05/22/flyback-on-ubuntu-hardy-804-lts/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Turn off X on Ubuntu 7.04 Feisty server</title>
		<link>http://www.itcare.net/2008/05/07/turn-off-x-on-ubuntu-704-feisty-server/</link>
		<comments>http://www.itcare.net/2008/05/07/turn-off-x-on-ubuntu-704-feisty-server/#comments</comments>
		<pubDate>Wed, 07 May 2008 23:20:35 +0000</pubDate>
		<dc:creator>tibor</dc:creator>
		
		<category><![CDATA[Fixes/Solutions]]></category>

		<guid isPermaLink="false">http://milehighlinux.com/blog/?p=25</guid>
		<description><![CDATA[$ cd /etc/rc2.d/
$ sudo mv S13gdm K87gdm
$ sudo reboot
This way the server stays at the console login prompt instead of booting into X (GDM)
]]></description>
			<content:encoded><![CDATA[<p><em>$ cd /etc/rc2.d/<br />
$ sudo mv S13gdm K87gdm<br />
$ sudo reboot</em></p>
<p>This way the server stays at the console login prompt instead of booting into X (GDM)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.itcare.net/2008/05/07/turn-off-x-on-ubuntu-704-feisty-server/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
