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

<channel>
	<title>Catzie.net Blog</title>
	<atom:link href="http://blog.catzie.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.catzie.net</link>
	<description>Resources, mostly related to Information Technology. Brought to you by Catzie.</description>
	<lastBuildDate>Fri, 03 Sep 2010 10:52:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>JavaScript: Setting the selected dropdown option by its index number</title>
		<link>http://blog.catzie.net/javascript-setting-the-selected-dropdown-option-by-its-index-number/</link>
		<comments>http://blog.catzie.net/javascript-setting-the-selected-dropdown-option-by-its-index-number/#comments</comments>
		<pubDate>Tue, 10 Aug 2010 05:30:10 +0000</pubDate>
		<dc:creator>Catzie</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://blog.catzie.net/?p=327</guid>
		<description><![CDATA[Long time no new entry. Internship is keeping me very busy. In this blog entry I&#8217;ll show you how to select a drop down option by specifying its index number. The JavaScript code: document.getElementById("selectionDD").selectedIndex = 0; The HTML code: &#60;select id="selectionDD" name="selectionDD"&#62; &#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#60;option value="one"&#62;One&#60;/option&#62; &#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#60;option value="two"&#62;Two&#60;/option&#62; &#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#60;option value="three"&#62;Three&#60;/option&#62; &#60;/select&#62; Refer to the JavaScript code. The [...]]]></description>
			<content:encoded><![CDATA[<p>Long time no new entry. <img src='http://blog.catzie.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Internship is keeping me very busy. In this blog entry I&#8217;ll show you how to select a drop down option by specifying its index number.<br />
<span id="more-327"></span><br />
<strong>The JavaScript code:</strong></p>
<pre class="xml">
document.getElementById("selectionDD").selectedIndex = 0;
</pre>
<p><strong>The HTML code:</strong></p>
<pre class="xml">
&lt;select id="selectionDD" name="selectionDD"&gt;
&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&lt;option value="one"&gt;One&lt;/option&gt;
&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&lt;option value="two"&gt;Two&lt;/option&gt;
&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&#038;nbsp&lt;option value="three"&gt;Three&lt;/option&gt;
&lt;/select&gt;
</pre>
<p>Refer to the JavaScript code. The <code>selectionDD </code>is the id of the <code>&lt;select&gt;</code> tag. The value 0 represents the index number of the option that we want to be selected, and will select the first option in the selection. Note that the index numbers start with 0, not 1.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.catzie.net/javascript-setting-the-selected-dropdown-option-by-its-index-number/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easily embed web fonts to your web page using Google Font API</title>
		<link>http://blog.catzie.net/easily-embed-web-fonts-to-your-web-page-using-google-font-api/</link>
		<comments>http://blog.catzie.net/easily-embed-web-fonts-to-your-web-page-using-google-font-api/#comments</comments>
		<pubDate>Fri, 21 May 2010 13:35:57 +0000</pubDate>
		<dc:creator>Catzie</dc:creator>
				<category><![CDATA[web design]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[web fonts]]></category>

		<guid isPermaLink="false">http://blog.catzie.net/?p=312</guid>
		<description><![CDATA[I&#8217;ve been working on some website design recently. I used fancy fonts in the design sample I made in Adobe Illustrator, forgetting that I have to embed the fonts first to make them display on the visitors&#8217; browsers even if they don&#8217;t have those fonts in their computer. I ended up using images on my [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on some website design recently. I used fancy fonts in the design sample I made in Adobe Illustrator, forgetting that I have to embed the fonts first to make them display on the visitors&#8217; browsers even if they don&#8217;t have those fonts in their computer. I ended up using images on my header menu, making the web page take longer to load, and used fonts on site headings that are less matching to the website theme, making the design less attractive. I didn&#8217;t choose to embed the fonts I wanted to use because the procedures seem to take too much time from me.</p>
<p>The designs I&#8217;m making are almost done when I found out about the <b>Google Font API</b> and the <strong>Google Font Directory.</strong><span id="more-312"></span> I think that the<a href="http://code.google.com/apis/webfonts/" onclick="pageTracker._trackPageview('/outgoing/code.google.com/apis/webfonts/?referer=');"> Google Font API</a> will be very helpful to web designers because its <a href="http://code.google.com/webfonts" onclick="pageTracker._trackPageview('/outgoing/code.google.com/webfonts?referer=');">font directory</a> offers good-looking fonts, it works in most browsers, and it saves so much time because of the ease of use.</p>
<p>To use the Google Font API for embedding fonts, all we have to do is insert a call to their stylesheet (depending on which font(s) we choose to use) and then style a web page element with the chosen web font.</p>
<p>See their <a href="http://code.google.com/apis/webfonts/docs/getting_started.html" onclick="pageTracker._trackPageview('/outgoing/code.google.com/apis/webfonts/docs/getting_started.html?referer=');">Getting Started</a> page to see how it&#8217;s done.</p>
<p>I&#8217;m planning to modify the website designs I&#8217;m making, and use a font from the Google Font Directory instead. That way, the pages will load faster without images as header menu items, and the site headings will be more matching to the website design theme. <img src='http://blog.catzie.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.catzie.net/easily-embed-web-fonts-to-your-web-page-using-google-font-api/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Adobe Illustrator: If you cannot see or select points</title>
		<link>http://blog.catzie.net/adobe-illustrator-if-you-cannot-see-or-select-points/</link>
		<comments>http://blog.catzie.net/adobe-illustrator-if-you-cannot-see-or-select-points/#comments</comments>
		<pubDate>Sun, 11 Apr 2010 07:46:13 +0000</pubDate>
		<dc:creator>Catzie</dc:creator>
				<category><![CDATA[Graphics]]></category>
		<category><![CDATA[Adobe Illustrator]]></category>
		<category><![CDATA[solution]]></category>

		<guid isPermaLink="false">http://blog.catzie.net/?p=296</guid>
		<description><![CDATA[From now on I&#8217;ll be posting short entries like this, which will show solutions to small problems in graphics tools, programming, OS, and etcetera. I was working on an assignment (gradient mesh portrait) on Adobe Illustrator, when suddenly I could not see my mesh points. When I hovered on the mesh object I could see [...]]]></description>
			<content:encoded><![CDATA[<p>From now on I&#8217;ll be posting short entries like this, which will show solutions to small problems in graphics tools, programming, OS, and etcetera.</p>
<p>I was working on an assignment (gradient mesh portrait) on Adobe Illustrator, when suddenly I could not see my mesh points. When I hovered on the mesh object I could see the lines, but clicking doesn&#8217;t let me select it. I tried drawing a path using the pen tool to check if I could select anchor points, and found out that I couldn&#8217;t select them too.<br />
<span id="more-296"></span><br />
After searching Google for a solution, I was able to see and select mesh points and anchor points again. The solution to that problem was to &#8220;Show Edges.&#8221; To do this, click on &#8220;View&#8221; from the menu From the submenu that appears, select &#8220;Show Edges.&#8221;</p>
<p>The shortcut key for Hide Edges and Show Edges is <b>Ctrl + H</b> for Windows. I don&#8217;t know what it is for Mac, or if it is different. And by the way, I am using Adobe Illustrator CS4.</p>
<p>I guess I accidentally pressed Ctrl + H. <img src='http://blog.catzie.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.catzie.net/adobe-illustrator-if-you-cannot-see-or-select-points/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>CCNA Exploration 1 version 4.0 Network Fundamentals (Powerpoint Slides 1-11)</title>
		<link>http://blog.catzie.net/ccna-exploration-1-version-4-0-network-fundamentals-powerpoint-slides-1-11/</link>
		<comments>http://blog.catzie.net/ccna-exploration-1-version-4-0-network-fundamentals-powerpoint-slides-1-11/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 15:51:38 +0000</pubDate>
		<dc:creator>Catzie</dc:creator>
				<category><![CDATA[Study Materials]]></category>
		<category><![CDATA[cisco]]></category>

		<guid isPermaLink="false">http://blog.catzie.net/?p=294</guid>
		<description><![CDATA[Thanks to Catzie.net Blog&#8217;s visitor Ahmad M. for sharing with us his Powerpoint slides of CCNA 1. I&#8217;ve been looking for this online for some time already but failed to find any in version 4.0. You may download the instructional materials from this blog entry. MediaFire Download the zipped Powerpoint slides:]]></description>
			<content:encoded><![CDATA[<p>Thanks to Catzie.net Blog&#8217;s visitor Ahmad M. for sharing with us his Powerpoint slides of CCNA 1. <img src='http://blog.catzie.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  I&#8217;ve been looking for this online for some time already but failed to find any in version 4.0.</p>
<p>You may download the instructional materials from this blog entry.<br />
<span id="more-294"></span></p>
<h3>MediaFire Download the zipped Powerpoint slides:</h3>
<a class="downloadlink" href="http://blog.catzie.net/wp-content/plugins/download-monitor/download.php?id=25" title=" downloaded 545 times" >CCNA 1 powerpoint slides (mediafire) (545)</a>
]]></content:encoded>
			<wfw:commentRss>http://blog.catzie.net/ccna-exploration-1-version-4-0-network-fundamentals-powerpoint-slides-1-11/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>CCNA Exploration 4 version 4.0 Accessing the WAN (Powerpoint Slides 1-8)</title>
		<link>http://blog.catzie.net/ccna-exploration-4-version-4-0-accessing-the-wan-powerpoint-slides-1-8/</link>
		<comments>http://blog.catzie.net/ccna-exploration-4-version-4-0-accessing-the-wan-powerpoint-slides-1-8/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 02:32:23 +0000</pubDate>
		<dc:creator>Catzie</dc:creator>
				<category><![CDATA[Study Materials]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[powerpoint slides]]></category>
		<category><![CDATA[ppt]]></category>

		<guid isPermaLink="false">http://blog.catzie.net/?p=281</guid>
		<description><![CDATA[Finally, Accessing the WAN! My last CCNA (I really hope that it is already!). In this page I&#8217;m sharing the Powerpoint slides of chapters 1 to 8 for CCNA 4. The .ppt slides (instructors&#8217; materials) are useful if want a quick reading about the chapters or for reviewing before exams. DIRECT Download the zipped Powerpoint [...]]]></description>
			<content:encoded><![CDATA[<p>Finally, <b>Accessing the WAN!</b> My last CCNA (I really hope that it is already!). <img src='http://blog.catzie.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  In this page I&#8217;m sharing the Powerpoint slides of chapters 1 to 8 for CCNA 4. The .ppt slides (instructors&#8217; materials) are useful if want a quick reading about the chapters or for reviewing before exams.<br />
<span id="more-281"></span><br />
<H3>DIRECT Download the zipped Powerpoint slides:</H3></p>
<ul>
<li><a class="downloadlink" href="http://blog.catzie.net/wp-content/plugins/download-monitor/download.php?id=24" title="Version4.0 downloaded 630 times" >CCNA 4 Powerpoint Slides (Direct Download) (630)</a></li>
</ul>
<p>Or if the link for direct download becomes unavailable due to reaching the bandwidth limit, you may download it from my MediaFire account:</p>
<p><H3>MediaFire Download the zipped Powerpoint slides:</H3></p>
<ul>
<li><a class="downloadlink" href="http://blog.catzie.net/wp-content/plugins/download-monitor/download.php?id=23" title="Version4.0 downloaded 433 times" >CCNA 4 Powerpoint Slides (MediaFire) (433)</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://blog.catzie.net/ccna-exploration-4-version-4-0-accessing-the-wan-powerpoint-slides-1-8/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Restore missing desktop icons in Windows XP or Windows 7</title>
		<link>http://blog.catzie.net/restore-missing-desktop-icons-in-windows-xp-or-windows-7/</link>
		<comments>http://blog.catzie.net/restore-missing-desktop-icons-in-windows-xp-or-windows-7/#comments</comments>
		<pubDate>Fri, 05 Feb 2010 15:46:24 +0000</pubDate>
		<dc:creator>Catzie</dc:creator>
				<category><![CDATA[tips]]></category>
		<category><![CDATA[solution]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://blog.catzie.net/?p=279</guid>
		<description><![CDATA[I noticed that all my desktop icons were gone. I thought it was only because my computer was hanging, so I restarted it. After the restart there were still no icons. I&#8217;m not the kind of computer user who knows every solution to every small problem so I searched for solutions to what happened. (And [...]]]></description>
			<content:encoded><![CDATA[<p>I noticed that all my desktop icons were gone. I thought it was only because my computer was hanging, so I restarted it. After the restart there were still no icons. I&#8217;m not the kind of computer user who knows every solution to every small problem so I searched for solutions to what happened. (And I&#8217;m posting this in case a visitor needs help with the same thing.)</p>
<p>First thing I tried, based on a how-to page I stumbled upon (for Windows 7), was I right-click on my desktop and chooe Personalize. From the left side of the window that opened, I clicked on the &#8220;Change desktop icons.&#8221; There I checked the icons I wanted to appear. After clicking OK, there were still no icons.</p>
<p>I did a bit more of searching and then <span id="more-279"></span> I found a solution that worked. It says that for Windows XP, you right-click on your desktop, choose &#8220;Arrange Icons By&#8230;&#8221; and then click on &#8220;Show desktop icons.&#8221;</p>
<p>In <strong>Windows 7</strong>, I right-clicked on my desktop and hovered my mouse pointer over &#8220;View,&#8221; and from its fly-out menu I clicked on &#8220;Show desktop icons.&#8221; Simple, isn&#8217;t it? lol. </p>
<p>I don&#8217;t know what I did that made them disappear, but it&#8217;s good to have them back. XD</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.catzie.net/restore-missing-desktop-icons-in-windows-xp-or-windows-7/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Fix PNG images with transparency in older Windows Internet Explorer versions</title>
		<link>http://blog.catzie.net/fix-png-images-with-transparency-in-older-windows-internet-explorer-versions/</link>
		<comments>http://blog.catzie.net/fix-png-images-with-transparency-in-older-windows-internet-explorer-versions/#comments</comments>
		<pubDate>Mon, 16 Nov 2009 06:49:31 +0000</pubDate>
		<dc:creator>Catzie</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Internet Explorer]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[PNG images]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://blog.catzie.net/?p=251</guid>
		<description><![CDATA[I wonder if this post would still get hits from search engine result pages. So many other web pages feature this fix for IE 5.5 and IE 6 web browser, that the Catzie.net Blog&#8217;s entry might just show up on the&#8230; 10th page or so. lol. Anyways, I&#8217;m still posting this, in case there are [...]]]></description>
			<content:encoded><![CDATA[<p>I wonder if this post would still get hits from search engine result pages. So many other web pages feature this fix for <strong>IE 5.5 and IE 6</strong> web browser, that the Catzie.net Blog&#8217;s entry might just show up on the&#8230; 10th page or so. lol.</p>
<p>Anyways, I&#8217;m still posting this, in case there are some visitors browsing around who need help with properly displaying the transparency of <strong>.PNG</strong> images in <strong>IE5.5 and IE6</strong>. This also helps me easily find the needed code to fix the display. I need it from time to time when I design website layouts. <img src='http://blog.catzie.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p><span style="color: red;">Tip:</span> Most of us are probably using the newer versions of Internet Explorer. I suggest that you <a href="http://blog.catzie.net/ie-tester-see-how-your-web-pages-look-in-different-versions-of-ie-windows-internet-explorer/">download and use the IE Tester</a>. It&#8217;s a web browser that lets you see how web pages render in different versions of IE &#8211; 5.5, 6, 7, and 8.</p>
<p>I assume that as you read this, you are using Internet Explorer version 5.5, or the version 5.5 tab on the <a href="http://blog.catzie.net/ie-tester-see-how-your-web-pages-look-in-different-versions-of-ie-windows-internet-explorer/">IE Tester</a>.<br />
<span id="more-251"></span><br />
The following .png image has a grayish background color that replaces the parts that are supposed to be transparent.</p>
<div style="background:pink;padding:20px;">
<img src="http://img.photobucket.com/albums/v209/catzie/transparent1.png" alt="" />
</div>
<p>This is the code for what&#8217;s show above.</p>
<pre name="code" class="xml">
&lt;div style="background:pink;padding:20px;"&gt;
&lt;img src="http://img.photobucket.com/albums/v209/catzie/transparent1.png"
alt="" /&gt;
&lt;/div&gt;
</pre>
<p><a href="../pages/html/PNGtransparencyIE.html" target="_blank">Please click here</a> to open on a new window the fixed version of what we are trying to display. You&#8217;d notice that there&#8217;s no longer the  grayish background on the parts that are supposed to be transparent. Now you can see through the pink background.</p>
<p>The final code is:</p>
<pre name="code" class="xml">
&lt;html&gt;
&lt;head&gt;
	&lt;style type="text/css"&gt;
		body{
			background-color:pink;
		}
	&lt;/style&gt;
&lt;!--[if lt IE 7]&gt;
&lt;script language="JavaScript"&gt;
function correctPNG() // correctly handle PNG transparency in Win IE 5.5 &#038; 6.
{
   var arVersion = navigator.appVersion.split("MSIE")
   var version = parseFloat(arVersion[1])
   if ((version &gt;= 5.5) &#038;&#038; (document.body.filters))
   {
      for(var i=0; i&lt;document.images.length; i++)
      {
         var img = document.images[i]
         var imgName = img.src.toUpperCase()
         if (imgName.substring(imgName.length-3, imgName.length) == "PNG")
         {
            var imgID = (img.id) ? "id='" + img.id + "' " : ""
            var imgClass = (img.className) ? "class='" + img.className
                               + "' " : ""
            var imgTitle = (img.title) ? "title='" + img.title + "' " :
                               "title='" + img.alt + "' "
            var imgStyle = "display:inline-block;" + img.style.cssText
            if (img.align == "left") imgStyle = "float:left;" + imgStyle
            if (img.align == "right") imgStyle = "float:right;" + imgStyle
            if (img.parentElement.href) imgStyle = "cursor:hand;" + imgStyle
            var strNewHTML = "&lt;span " + imgID + imgClass + imgTitle
            + " style=\"" + "width:" + img.width + "px; height:" + img.height
            + "px;" + imgStyle + ";"
            + "filter:progid:DXImageTransform.Microsoft.AlphaImageLoader"
            + "(src=\'" + img.src + "\', sizingMethod='scale');\"&lt;&gt;/span&gt;"
            img.outerHTML = strNewHTML
            i = i-1
         }
      }
   }
}
window.attachEvent("onload", correctPNG);
&lt;/script&gt;
&lt;![endif]--&gt;
&lt;/head&gt;
&lt;body&gt;
  &lt;div style="background:pink;padding:20px;"&gt;
         &lt;img src="http://img.photobucket.com/albums/v209/catzie/transparent1.png"
                alt="" /&gt;
  &lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>The code above uses <b>conditional comment</b> to check if your current browser is older than IE 7. If it is, the JavaScript code which corrects the display of the .png is executed.</p>
<p>This method has limitations though. It works only on IE5.5 and IE6. It needs JavaScript enabled on your browser, or else it won&#8217;t work. And it only works on images placed using the &lt;img&gt; tag. It won&#8217;t work on background images.</p>
<p>I learned about this fix from <a href="http://homepage.ntlworld.com/bobosola" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/homepage.ntlworld.com/bobosola?referer=');">this website</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.catzie.net/fix-png-images-with-transparency-in-older-windows-internet-explorer-versions/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CCNA Exploration 3 version 4.0 (Powerpoint Slides)</title>
		<link>http://blog.catzie.net/ccna-exploration-3-version-4-0-powerpoint-slides/</link>
		<comments>http://blog.catzie.net/ccna-exploration-3-version-4-0-powerpoint-slides/#comments</comments>
		<pubDate>Sun, 01 Nov 2009 14:47:23 +0000</pubDate>
		<dc:creator>Catzie</dc:creator>
				<category><![CDATA[Study Materials]]></category>
		<category><![CDATA[ccna 3]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[powerpoint slides]]></category>
		<category><![CDATA[ppt]]></category>

		<guid isPermaLink="false">http://blog.catzie.net/?p=246</guid>
		<description><![CDATA[This is the sequel to an older post, which is CCNA 2 Powerpoint Slides. This one features CCNA 3 &#8211; LAN Switching and Wireless Powerpoint slides, those .ppt lecture materials that instructors use. These are less tiresome to read than the curriculum materials. The following files are NOT CHEATSCO. :p Hah. I wonder what Cisco [...]]]></description>
			<content:encoded><![CDATA[<p>This is the sequel to an older post, which is <a href="http://blog.catzie.net/ccna-2-powerpoint-slides-routing-protocols-and-concepts-4-0/">CCNA 2 Powerpoint Slides</a>. This one features <strong>CCNA 3 &#8211; LAN Switching and Wireless</strong> Powerpoint slides, those .ppt lecture materials that instructors use.</p>
<p>These are less tiresome to read than the <a href="http://blog.catzie.net/ccna-exploration-4-0-curriculum-course-material-installers-for-offline-viewing/">curriculum materials</a>.</p>
<p>The following files are NOT <b>CHEATSCO.</b> :p<br />
<span id="more-246"></span></p>
<ul>
<li><a class="downloadlink" href="http://blog.catzie.net/wp-content/plugins/download-monitor/download.php?id=21" title=" downloaded 781 times" >LAN Switching and Wireless (PPT - Chapters 1-7) - MediaFire (781)</a></li>
<li><a class="downloadlink" href="http://blog.catzie.net/wp-content/plugins/download-monitor/download.php?id=22" title=" downloaded 344 times" >LAN Switching and Wireless (PPT - Chapters 1-7) - FileDen (344)</a></li>
</ul>
<p>Hah. I wonder what Cisco Networking Academy thinks about <b>cheatsco</b> blogs &#8211; those blogs providing answers to assessments. Our school (FEU &#8211; East Asia College) started giving us written exams last term because they knew most students pass the course as they rely on the <strong>answers to exams</strong> provided by <b>cheatsco</b> sites. <img src='http://blog.catzie.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://blog.catzie.net/ccna-exploration-3-version-4-0-powerpoint-slides/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to tune a guitar manually</title>
		<link>http://blog.catzie.net/how-to-tune-a-guitar-manually/</link>
		<comments>http://blog.catzie.net/how-to-tune-a-guitar-manually/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 05:15:25 +0000</pubDate>
		<dc:creator>Catzie</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[guitar]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blog.catzie.net/?p=240</guid>
		<description><![CDATA[So you have a guitar that&#8217;s out of tune but don&#8217;t feel like buying a tuner? You have a tuner but it&#8217;s not working? It&#8217;s not with you? Or simply bored? You can put it to the right tune manually, even without the piano! All you need is a sharp hearing and this simple tutorial. [...]]]></description>
			<content:encoded><![CDATA[<p>So you have a guitar that&#8217;s out of tune but don&#8217;t feel like buying a tuner? You have a tuner but it&#8217;s not working? It&#8217;s not with you? Or simply bored? You can put it to the right tune manually, even without the piano! All you need is a sharp hearing and this simple tutorial. <img src='http://blog.catzie.net/wp-includes/images/smilies/icon_wink.gif' alt=':wink:' class='wp-smiley' />  Of course tuning it with a tuner is more accurate. But learning to tune manually will come in handy, isn&#8217;t it?</p>
<p>Let me share to you this tutorial on how to tune a guitar manually.</p>
<p><center><br />
<img src="http://img.photobucket.com/albums/v209/catzie/strings-1.jpg" alt="The Guitar Strings" class="imgb" /><br />
</center></p>
<p><span id="more-240"></span></p>
<p>Refer to the image above. Let&#8217;s call the thinnest string <strong>#1</strong> and the thickest string <strong>#6</strong>. The letters over the right are the corresponding notes of each string, but just ignore them for now. We&#8217;ll use the numbers instead to make it easier. <img src='http://blog.catzie.net/wp-includes/images/smilies/icon_smile.gif' alt=':smile:' class='wp-smiley' />  Read the following directions carefully.</p>
<h3>directions</h3>
<ol>
<li>Press #6 on the 5th fret and pluck it. Listen to its pitch. Pluck the open #5 string. Adjust it until it gains the same pitch as that of #6.</li>
<li>Press #5 on the 5th fret and pluck it. Listen to its pitch. Pluck the open #4 string. Adjust it until it gains the same pitch as that of #5</li>
<li>Press #4 on the 5th fret and pluck it. Listen to its pitch. Pluck the open #3 string. Adjust it until it gains the same pitch as that of #4.</li>
<li>Press #3 on the 4th fret (yes, <u>4th</u> fret!) and pluck it. Listen to its pitch. Pluck the open #2 string. Adjust it until it gains the same pitch as that of #3.</li>
<li>Press #2 on the 5th fret (yes, <u>5th</u> fret again!) and pluck it. Listen to its pitch. Pluck the open #1 string. Adjust it until it gains the same pitch as that of #2.</li>
</ol>
<h3>tips and notes</h3>
<ul>
<li>You need to listen very well when you pluck each string. Try plucking it as hard as you can to produce a louder sound. You must know how to distinguish the difference of the pitches/notes that you hear.</li>
<li>After adjusting all the strings, strum them. If you&#8217;re not satisfied with the outcome, you might want to do the tuning all over again. Be patient. It will be easy when you get used to it anyway. If the outcome pitch is too high, adjust string #6 to a lower pitch and do the tuning over again; If the outcome pitch is too low, adjust string #6 to a higher pitch and do the tuning all over again.</li>
</ul>
<p>Comments on this tutorial will be appreciated. Please note I&#8217;m just an amateur guitarist that I might not be able to answer questions that might be asked about guitars. <img src='http://blog.catzie.net/wp-includes/images/smilies/icon_lol.gif' alt=':lol:' class='wp-smiley' /> </p>
<p>If you find this article helpful, <a href="http://blog.catzie.net/how-to-tune-a-guitar-manually/">feel free to link back through this permalink.</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.catzie.net/how-to-tune-a-guitar-manually/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Inline Frame that automatically adjusts its height for the source page</title>
		<link>http://blog.catzie.net/inline-frame-that-automatically-adjusts-its-height-for-the-source-page/</link>
		<comments>http://blog.catzie.net/inline-frame-that-automatically-adjusts-its-height-for-the-source-page/#comments</comments>
		<pubDate>Sat, 31 Oct 2009 04:58:10 +0000</pubDate>
		<dc:creator>Catzie</dc:creator>
				<category><![CDATA[Web Development]]></category>
		<category><![CDATA[iframe]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://blog.catzie.net/?p=234</guid>
		<description><![CDATA[Last year, I was working on our MULPROJ layout, and the type of layout I was making needed an iframe whose height is auto resized according to the source page&#8217;s content. This means that there should be no vertical scrollbar in the iframe, it simply adjusts itself vertically. I thought that it wasn&#8217;t possible to [...]]]></description>
			<content:encoded><![CDATA[<p>Last year, I was working on our <acronym title="Multimedia Web Design Project">MULPROJ</acronym> layout, and the type of layout I was making needed an iframe whose height is auto resized according to the source page&#8217;s content. This means that there should be no vertical scrollbar in the iframe, it simply adjusts itself vertically.</p>
<p>I thought that it wasn&#8217;t possible to do this but I found a JavaScript code that can do the trick, and I just want to share it with you. <img src='http://blog.catzie.net/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /><br />
<span id="more-234"></span></p>
<pre name="code" class="xml">

&lt;script language=&quot;JavaScript&quot;&gt;

 function autoResize(id){
  var newheight;
  var newwidth;

 if(document.getElementById){
  newheight=document.getElementById(id).contentWindow.document .body.scrollHeight;
  newwidth=document.getElementById(id).contentWindow.document .body.scrollWidth;
  }

 document.getElementById(id).height= parseInt(newheight) + 45 + &quot;px&quot;;
  document.getElementById(id).width= (newwidth) + &quot;px&quot;;
  }
  &lt;/script&gt;


&lt;iframe SRC=&quot;yourPage.html&quot; width=&quot;100%&quot; id=&quot;iframe1&quot; marginheight=&quot;0&quot; frameborder=&quot;0&quot; onLoad=&quot;autoResize('iframe1');&quot;&gt;&lt;/iframe&gt;
</pre>
<p>Save the above code as iframe.html, or whatever you like.<br />
Remember to create the file yourPage.html in the same folder as your previous html file.</p>
<p>I stumbled upon it on: <a href="ttp://www.programmingtalk.com/showthread.php?t=25995" rel="nofollow">this forum thread</a>.</p>
<p>I also did a little editing.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.catzie.net/inline-frame-that-automatically-adjusts-its-height-for-the-source-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
