<?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>ThatGuyCharlie &#124; Charlie Mathews Blog &#38; Portfolio &#187; How To</title>
	<atom:link href="http://www.thatguycharlie.com/tag/how-to/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.thatguycharlie.com</link>
	<description>Charlie Mathews Blog &#38; Portfolio</description>
	<lastBuildDate>Fri, 28 Oct 2011 05:05:00 +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>CSS Powered Percentage Bar</title>
		<link>http://www.thatguycharlie.com/2010/css-powered-percentage-bar/</link>
		<comments>http://www.thatguycharlie.com/2010/css-powered-percentage-bar/#comments</comments>
		<pubDate>Thu, 07 Jan 2010 11:07:01 +0000</pubDate>
		<dc:creator>Charlie</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[percentage]]></category>
		<category><![CDATA[tool]]></category>

		<guid isPermaLink="false">http://www.thatguycharlie.com/?p=920</guid>
		<description><![CDATA[After reading some of the css techniques mentioned at SmashingMagizine, I discovered that they had removed a dead link about a css powered percentage bar. I quickly decided to attempt a recreation of such a useful feature. Anyways, here is the easy code for creating a percentage bar. Demo The demo here shows the percentage [...]]]></description>
			<content:encoded><![CDATA[<p>After reading some of the css techniques mentioned at SmashingMagizine, I discovered that they had removed a dead link about a css powered percentage bar. I quickly decided to attempt a recreation of such a useful feature. Anyways, here is the easy code for creating a percentage bar.<span id="more-920"></span></p>
<h3>Demo</h3>
<p>The demo here shows the percentage bar using image backgrounds. This sample code tutorial below will demonstrate using background colors but if you wish to use images like above, refer to <a href="http://www.simpleshare.vividperfection.com/privateuploads/css_percentage_bar.zip">this download</a></p>
<p><img src="http://www.simpleshare.vividperfection.com/privateuploads/percentdemo.png" alt="[image: percentagebardemo]" width="520" height="50" /></p>
<h3>The Code</h3>
<pre class="brush: xml; title: ; notranslate">
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;CSS Percentage Bar Test&lt;title&gt;
&lt;style&gt;
.bar {
width: 500px ;
height: 20px ;
border: 1px solid #444444;
background-color: #656565 ;
}
.barfill {
height: 20px ;
float: left ;
background-color: #6ba8e5 ;
width: 50% ; /* This is the percentage displayed */
}
&lt;/style&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;div class=&quot;bar&quot;&gt;
&lt;div class=&quot;barfill&quot;&gt;
&lt;/div&gt;
&lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;
</pre>
<p>This CSS basically is the whole workings of the thing. It creates a bar and then fills it to a certain percent you define. Simple, eh? Try to play with it a bit, It&#8217;s amazing fun to mix with some javascript and use as a loading bar or upload progress bar.</p>
<p>What i&#8217;ve done is created the div with a class of &#8220;bar&#8221;. I made this 500 pixels wide and 20 pixels high. I gave it a grey background and gave it a dark grey border. To create the percentage, I then created a div with the class of &#8220;barfill&#8221; and made this float left inside of the &#8220;bar&#8221; div. I gave it a blue background and the percentage width I wanted displayed. To get results like the demo image, you would put &#8220;43%&#8221;. Check out <a href="http://www.simpleshare.vividperfection.com/privateuploads/css_percentage_bar.zip">the download</a> to get the images and full code I used in my demo image.</p>
<img src="http://www.thatguycharlie.com/?ak_action=api_record_view&id=920&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.thatguycharlie.com/2010/css-powered-percentage-bar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Create a CSS Stylesheet</title>
		<link>http://www.thatguycharlie.com/2009/how-to-create-a-css-stylesheet/</link>
		<comments>http://www.thatguycharlie.com/2009/how-to-create-a-css-stylesheet/#comments</comments>
		<pubDate>Tue, 29 Dec 2009 06:01:47 +0000</pubDate>
		<dc:creator>Charlie</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css stylesheet]]></category>
		<category><![CDATA[stylesheet]]></category>

		<guid isPermaLink="false">http://www.thatguycharlie.com/?p=923</guid>
		<description><![CDATA[Although simple, this is a question I&#8217;ve been asked numerous times by learner developers. This &#8220;tutorial&#8221; assumes you have also never created a html and css webpage before because the two facets are so closely linked. About Firstly, you need to understand what CSS is. CSS stands for Cascading StyleSheet and it is the key [...]]]></description>
			<content:encoded><![CDATA[<p>Although simple, this is a question I&#8217;ve been asked numerous times by learner developers. This &#8220;tutorial&#8221; assumes you have also never created a html and css webpage before because the two facets are so closely linked.</p>
<h2>About</h2>
<p>Firstly, you need to understand what CSS is. CSS stands for Cascading StyleSheet and it is the key element of web development. CSS is used to tell a webpage how you want it to look. It can be used to define id&#8217;s, classes, and other html elements.</p>
<p>You can load a stylesheet in html using this code:</p>
<p style="padding-left: 30px;"><span style="font-size: x-small;"><em>&lt;link rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; href=&#8221;yourstyle.css&#8221;/&gt; </em></span></p>
<h2>Example</h2>
<p>Now, an example. Create a new file in notepad or a similar text editor and save it as <span style="text-decoration: underline;">style.css</span> to a folder on your computer. Repeat this and create another file called <span style="text-decoration: underline;">index.html</span> and save it to the same folder as your style.css file. <span id="more-923"></span>Open your index.html in a text editor and add this code:</p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;">&lt;html&gt;</span></em></p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;">&lt;head&gt;</span></em></p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;">&lt;title&gt;My First Webpage&lt;/title&gt;</span></em></p>
<p style="padding-left: 30px;"><span style="font-size: x-small;"><em>&lt;link rel=&#8221;stylesheet&#8221; type=&#8221;text/css&#8221; href=&#8221;style.css&#8221;/&gt; </em></span></p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;">&lt;/head&gt;</span></em></p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;">&lt;body&gt;</span></em></p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;"><strong>&lt;div class=&#8221;mybox&#8221;&gt;Sample Text&lt;/div&gt;</strong><br />
 </span></em></p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;">&lt;/body&gt;</span></em></p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;">&lt;/html&gt;</span></em></p>
<p>As you can see, we have added a &lt;div&gt; element with a class of &#8220;mybox&#8221;. Now, open your style.css and add the div class by typing this code.</p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;">.mybox {</span></em></p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;">width: 100px ;</span></em></p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;">height: 100px;</span></em></p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;">background-color: #000000 ;<br />
 </span></em></p>
<p style="padding-left: 30px;"><em><span style="font-size: x-small;">}</span></em></p>
<p>Save your style.css and index.html.</p>
<h2>Explanation</h2>
<p>What you have just done is told the &#8220;mybox&#8221; class to be 100 pixels high by 100 pixels wide with a background color of black (which is the same as #000000). Double click index.html and it will open in your default web browser. See your black box? Pretty cool, hu?</p>
<p>There are hundreds of ways and commands you can use in CSS so I&#8217;d recommend reading more about CSS at <a href="http://www.w3schools.com/Css/default.asp">W3Schools</a>. Have fun!</p>
<img src="http://www.thatguycharlie.com/?ak_action=api_record_view&id=923&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.thatguycharlie.com/2009/how-to-create-a-css-stylesheet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Run Multiple GP4 Instances</title>
		<link>http://www.thatguycharlie.com/2009/how-to-run-multiple-gp4-instances/</link>
		<comments>http://www.thatguycharlie.com/2009/how-to-run-multiple-gp4-instances/#comments</comments>
		<pubDate>Mon, 16 Feb 2009 11:14:33 +0000</pubDate>
		<dc:creator>Charlie</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[gather]]></category>
		<category><![CDATA[gp4]]></category>
		<category><![CDATA[multiple]]></category>
		<category><![CDATA[place]]></category>

		<guid isPermaLink="false">http://nitronicguy.wordpress.com/?p=90</guid>
		<description><![CDATA[So yeah, I guessed a few people I know might enjoy trying this out. This glitch in GP4 can/(should) in no way harm your computer. Joining two sessions at once may lag your computer though. Just close one to regain some breathing space on your CPU. I am not responsible for the foolish things you [...]]]></description>
			<content:encoded><![CDATA[<p>So yeah, I guessed a few people I know might enjoy trying this out. <img src='http://www.thatguycharlie.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':-D' class='wp-smiley' /> </p>
<p>This glitch in GP4 can/(should) in no way harm your computer. Joining two sessions at once may lag your computer though. Just close one to regain some breathing space on your CPU.</p>
<blockquote><p>I am not responsible for the foolish things you do as a result of reading this post.</p>
<p>Please Note: If your computer crashes, your hard drive get&#8217;s deleted, your email gets spammed, your user name hacked or any other such event, I simply had <em>nothing</em> to do with it.</p>
</blockquote>
<p>Ok, now that is out of the way. Here is the method I use for opening two GP4&#8242;s. <em>Read all the steps before</em> trying it out so you can know what to do when your screen goes black asking for Admin Permission.</p>
<p>1) Put a shortcut to GP4 on your Desktop. (shortcut: the thing you double click to open GP4 <img src='http://www.thatguycharlie.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> )</p>
<p>2) Right-click and hit run as Administrator. (oh, didn&#8217;t i mension? You need to have an administrators password *or be an admin*)</p>
<p>3) As you hit ok on the &#8220;Program needs Permission to continue&#8221; admin box, quicky double click the gp4 short cut again on your desktop (not as administrator, so dont right click and select that).</p>
<p>Try to double click as many times as you want to have open. You will most likley be able to open only one extra but it is possible to open lots more.</p>
<p>There it is! Have fun xD</p>
<img src="http://www.thatguycharlie.com/?ak_action=api_record_view&id=90&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.thatguycharlie.com/2009/how-to-run-multiple-gp4-instances/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

