<?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/category/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>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 Display Dymanicly Timed Content using Javascript</title>
		<link>http://www.thatguycharlie.com/2009/how-to-display-content-by-the-time-of-day/</link>
		<comments>http://www.thatguycharlie.com/2009/how-to-display-content-by-the-time-of-day/#comments</comments>
		<pubDate>Sat, 12 Dec 2009 23:11:34 +0000</pubDate>
		<dc:creator>Charlie</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[How to Display Dymanicly Timed Content with JavaScript]]></category>
		<category><![CDATA[time of day content]]></category>

		<guid isPermaLink="false">http://www.thatguycharlie.com/?p=821</guid>
		<description><![CDATA[I&#8217;ve spent many a long hour playing with this javascript to make it work seamlessly. You can see the results, daily, on my website. If you want to change your website background depending on the time of day you will need this specific code. Otherwise, make sure to read till the bottom so you understand [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve spent many a long hour playing with this javascript to make it work seamlessly. You can see the results, daily, on my website.</p>
<p>If you want to change your website background depending on the time of day you will need this specific code. Otherwise, make sure to read till the bottom so you understand and don&#8217;t come back to me asking why it isn&#8217;t working for you.</p>
<table border="0">
<tbody>
<tr>
<td>
<p>Nighttime on ThatGuyCharlie</p>
<p><img class="enhanimg" title="ThatGuyCharlie night-time background" src="http://www.thatguycharlie.com/wp-content/themes/scyhigh/img/night.png" alt="[image: TGCNight]" width="200" height="100" /></p>
</td>
<td>
<p>Daytime on ThatGuyCharlie</p>
<p><img class="enhanimg" title="ThatGuyCharlie Day-time Background" src="http://www.thatguycharlie.com/wp-content/themes/scyhigh/img/dayclouds.png" alt="[image: TGCDay]" width="200" height="100" /></p>
</td>
</tr>
</tbody>
</table>
<p><span id="more-821"></span>Copy this text into your webpage before the </head> tag.</p>
<p><span style="font-family: courier new,courier;"><script type="text/javascript"><br />
 <!--<br />
 now = new Date</span></p>
<p><span style="font-family: courier new,courier;">if (now.getHours() < 4) {<br />
 document.write("</p>
<style>html {background: #101318 url(\"http://www.thatguycharlie.com/wp-content/themes/scyhigh/img/night.png\") top center no-repeat;}</style>
<p>")<br />
 }<br />
 else if (now.getHours() < 10) {<br />
 document.write("</p>
<style>html {background: #101318 url(\"http://www.simpleshare.vividperfection.com/privateuploads/morningmountains.png\") top center no-repeat;}</style>
<p>")<br />
 }<br />
 else if (now.getHours() < 20) {<br />
 document.write("</p>
<style>html {background: #101318 url(\"http://www.thatguycharlie.com/wp-content/themes/scyhigh/img/dayclouds.png\") top center no-repeat;}</style>
<p>")<br />
 }<br />
 else if (now.getHours() < 24) {<br />
 document.write("</p>
<style>html {background: #101318 url(\"http://www.thatguycharlie.com/wp-content/themes/scyhigh/img/night.png\") top center no-repeat;}</style>
<p>")<br />
 }<br />
 //--><br />
 </script></span></p>
<p><strong>Ok now, if you didnt understand that, here&#8217;s what&#8217;s happening.</strong></p>
<p><br class="spacer_" /></p>
<p><span style="font-family: courier new,courier;">now = new Date</span></p>
<p><strong>Here we obtain the date from the user&#8217;s computer</strong></p>
<p><br class="spacer_" /></p>
<p><span style="font-family: courier new,courier;">if (now.getHours() < 4) {<br />
 document.write(&#8220;</p>
<style>html {background: #101318 url(\"http://www.thatguycharlie.com/wp-content/themes/scyhigh/img/night.png\") top center no-repeat;}</style>
<p>&#8220;)<br />
 }</span></p>
<p><strong>This bit of code says that if the hour of the day is before four o&#8217;clock AM, then print the css background style for night-time.</strong></p>
<p><br class="spacer_" /></p>
<p><span style="font-family: courier new,courier;">else if (now.getHours() < 10) {<br />
 document.write(&#8220;</p>
<style>html {background: #101318 url(\"http://www.simpleshare.vividperfection.com/privateuploads/morningmountains.png\") top center no-repeat;}</style>
<p>&#8220;)<br />
 }</span></p>
<p><strong>Again, this does the same, but checks to see if it is before 10 o&#8217;clock.</strong></p>
<p><br class="spacer_" /></p>
<p><span style="font-family: courier new,courier;">else if (now.getHours() < 24)</span></p>
<p><strong>Remember to have this last part of your code so the script knows what to do up till midnight. The first code which defines &#8220;< 4" will only display the specified content from zero o'clock until 4 o'clock so to display content till midnight, you must have "< 24".</strong></p>
<p><strong><br />
 </strong></p>
<p>You can use this code and copy in different content to display at any time of the day by changing the hours. If you didn&#8217;t understand any of that, don&#8217;t worry! Test out the code at the top on your web-page and see if you can make it work. If not, comment below and I will try to help you out.</p>
<p><br class="spacer_" /></p>
<p>If you want to display symbols like apostrophes &#8221; and backward slashes \ make sure to put a &#8220;\&#8221; before each one so that java-script recognizes it and dosen&#8217;t mess up your code.</p>
<p>Example of the WRONG way:</p>
<p>document.write(&#8220;hi! my friend said <span style="background-color: #ff0000;">&#8220;</span>I am going to the store<span style="background-color: #ff0000;"> </span><span style="background-color: #ff0000;">&#8220;</span>&#8220;);</p>
<p>Example of the RIGHT way:</p>
<p>document.write(&#8220;hi! my friend said <span style="background-color: #ff0000;">\&#8221;</span>I am going to the store<span style="background-color: #ff0000;">\&#8221;</span>&#8220;);</p>
<img src="http://www.thatguycharlie.com/?ak_action=api_record_view&id=821&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.thatguycharlie.com/2009/how-to-display-content-by-the-time-of-day/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To: JS Bookmark Script</title>
		<link>http://www.thatguycharlie.com/2009/how-to-js-bookmark-script/</link>
		<comments>http://www.thatguycharlie.com/2009/how-to-js-bookmark-script/#comments</comments>
		<pubDate>Wed, 11 Nov 2009 20:25:09 +0000</pubDate>
		<dc:creator>Charlie</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Javascript]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.vividperfection.com/?p=714</guid>
		<description><![CDATA[This easy to implement Javascript bookmark script takes advantages of JS technology to provide functionality in most popular browsers like Internet Explorer and Firefox. Put this between the &#60;head&#62;&#60;/head&#62; tags of your webpage. &#60;script type=&#8221;text/javascript&#8221;&#62;&#60;!&#8211; function bookmarksite(title,url){ if (window.sidebar) window.sidebar.addPanel(title, url, &#8220;&#8221;); else if(window.opera &#38;&#38; window.print){ var elem = document.createElement(&#8216;a&#8217;); elem.setAttribute(&#8216;href&#8217;,url); elem.setAttribute(&#8216;title&#8217;,title); elem.setAttribute(&#8216;rel&#8217;,'sidebar&#8217;); elem.click(); } [...]]]></description>
			<content:encoded><![CDATA[<table border="0">
<tbody>
<tr>
<td>This easy to implement Javascript bookmark script takes advantages of JS technology to provide functionality in most popular browsers like Internet Explorer and Firefox.</td>
<td></td>
</tr>
<tr>
<td><strong>Put this between the &lt;head&gt;&lt;/head&gt; tags of your webpage.</strong></p>
<p><br class="spacer_" /></p>
<form> <textarea cols="40" rows="6" name="jsbkmark">&lt;script type=&#8221;text/javascript&#8221;&gt;&lt;!&#8211; function bookmarksite(title,url){ if (window.sidebar) 	window.sidebar.addPanel(title, url, &#8220;&#8221;); else if(window.opera &amp;&amp; window.print){ 	var elem = document.createElement(&#8216;a&#8217;); 	elem.setAttribute(&#8216;href&#8217;,url); 	elem.setAttribute(&#8216;title&#8217;,title); 	elem.setAttribute(&#8216;rel&#8217;,'sidebar&#8217;); 	elem.click(); }  else if(document.all) 	window.external.AddFavorite(url, title); } // &#8211;&gt;&lt;script&gt;</textarea></form>
<p><strong>Put this anywhere between the &lt;body&gt;&lt;/body&gt; tags. </strong></p>
<form> <textarea cols="40" rows="6" name="jsbkmark">&lt;a href=&#8221;javascript:bookmarksite(&#8216;A Cool JS Bookmark Code&#8217;, &#8216;http://vividperfection.com&#8217;)&#8221; mce_href=&#8221;javascript:bookmarksite(&#8216;A Cool JS Bookmark Code&#8217;, &#8216;http://vividperfection.com&#8217;)&#8221;&gt;Add This Code To Favorites&lt;/a&gt;</textarea></form>
<form> </form>
<form>&gt; <a href="http://www.simpleshare.vividperfection.com/uploads/js bookmkark code.html">Click HERE to download the script</a> &lt;<br />
 </form>
</td>
<td></td>
</tr>
</tbody>
</table>
<img src="http://www.thatguycharlie.com/?ak_action=api_record_view&id=714&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.thatguycharlie.com/2009/how-to-js-bookmark-script/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To: Complete List of Windows Vista Hotkeys</title>
		<link>http://www.thatguycharlie.com/2009/how-to-complete-list-of-windows-vista-hotkeys/</link>
		<comments>http://www.thatguycharlie.com/2009/how-to-complete-list-of-windows-vista-hotkeys/#comments</comments>
		<pubDate>Fri, 23 Oct 2009 21:06:01 +0000</pubDate>
		<dc:creator>Charlie</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[2000]]></category>
		<category><![CDATA[2003]]></category>
		<category><![CDATA[alt]]></category>
		<category><![CDATA[complete]]></category>
		<category><![CDATA[ctrl]]></category>
		<category><![CDATA[hotkey]]></category>
		<category><![CDATA[hotkeys]]></category>
		<category><![CDATA[key]]></category>
		<category><![CDATA[keystroke]]></category>
		<category><![CDATA[letters]]></category>
		<category><![CDATA[list]]></category>
		<category><![CDATA[numbers]]></category>
		<category><![CDATA[os]]></category>
		<category><![CDATA[shift]]></category>
		<category><![CDATA[shortcut]]></category>
		<category><![CDATA[space]]></category>
		<category><![CDATA[stroke]]></category>
		<category><![CDATA[tab]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[windows key]]></category>
		<category><![CDATA[windows vista]]></category>
		<category><![CDATA[xp]]></category>

		<guid isPermaLink="false">http://www.vividperfection.com/?p=669</guid>
		<description><![CDATA[Most of the Windows Vista keyboard shortcuts or hotkeys in this guide are applicable to other Windows OS too, such as Windows 2003, Windows XP, Windows 2000, etc. For offline reference, you can always refer to Window Vista built-in Windows Help And Support, where I copy and post this so-called complete set of Windows Vista [...]]]></description>
			<content:encoded><![CDATA[<p>Most of the Windows Vista keyboard shortcuts or hotkeys in this guide are applicable to other Windows OS too, such as Windows 2003, Windows XP, Windows 2000, etc.</p>
<p>For offline reference, you can always refer to Window Vista built-in Windows Help And Support, where I copy and post this so-called complete set of Windows Vista keyboard shortcut!<br />
 <!--wgads--></p>
<blockquote><p>Windows keyboard shortcuts, or Windows Hotkeys, require one to press 2 or more keys at the same time to trigger a Windows task that will otherwise require few mouse movements and mouse clicks to complete.</p>
<p>By using some of these Windows Vista keyboard shortcuts for commonly used functions will greatly enhance your experience with Windows Vista – it is more convenient, speedy, and efficient than moving and clicking pointing device here and there!<span id="more-669"></span></p>
</blockquote>
<p><strong><span style="text-decoration: underline;">Keyboard shortcut to turn on / off Window Vista <em>Ease Of Access</em> features</span></strong></p>
<dl>
<dt>Right SHIFT for eight seconds</dt>
<dd>Turn on / off the <em>Filter Keys</em> feature – used to ignore or slow down brief or repeated keystrokes and adjust keyboard repeat rate.</dd>
<dd>
</dd>
<dt>Left ALT + left SHIFT + PRINT SCREEN</dt>
<dd>Turn on / off <em>High Contrast</em> feature – try to see it yourself</dd>
<dd>
</dd>
<dt>Left ALT + left SHIFT + NUM LOCK</dt>
<dd>Turn on / off <em>Mouse Keys</em> feature – use the numeric keypad to move a mouse pointer</dd>
<dd>
</dd>
<dt>SHIFT five times</dt>
<dd>Turn on / off <em>Sticky Keys</em> feature – used to define pressing hotkey one at a time (for example, CTRL + ALT + DEL)</dd>
<dd>
</dd>
<dt>NUM LOCK for five seconds</dt>
<dd>Turn on / off <em>Toggle Keys</em> feature – used to alert an audible sound when CAP LOCK, SCROLL LOCK, or NUM LOCK is pressed.</dd>
<dd>
</dd>
<dt>Windows + U</dt>
<dd>Open the Windows Vista <em>Ease Of Access</em> dialog box</dd>
</dl>
<p><strong><span style="text-decoration: underline;">General keyboard shortcuts or hotkey in Windows Vista</span></strong></p>
<dl>
<dt>F1</dt>
<dd>Display help page</dd>
<dd>
</dd>
<dt>F2</dt>
<dd>Rename the selected item</dd>
<dd>
</dd>
<dt>F3</dt>
<dd>Search for a file or folder</dd>
<dd>
</dd>
<dt>F4</dt>
<dd>Display the Address bar list in Windows Explorer</dd>
<dd>
</dd>
<dt>F5</dt>
<dd>Refresh the active window</dd>
<dd>
</dd>
<dt>F6</dt>
<dd>Cycle through screen elements in a window or on the desktop</dd>
<dd>
</dd>
<dt>F10</dt>
<dd>Activate the menu bar in the active program</dd>
<dd>
</dd>
<dt>CTRL + C</dt>
<dd>Copy the selected item</dd>
<dd>
</dd>
<dt>CTRL + X</dt>
<dd>Cut the selected item</dd>
<dd>
</dd>
<dt>CTRL + V</dt>
<dd>Paste the selected item</dd>
<dd>
</dd>
<dt>CTRL + Z</dt>
<dd>Undo the last committed action</dd>
<dd>
</dd>
<dt>CTRL + Y</dt>
<dd>Redo the last undo action</dd>
<dd>
</dd>
<dt>DELETE</dt>
<dd>Delete the selected item and move it to Windows Recycle Bin</dd>
<dd>
</dd>
<dt>SHIFT + DELETE</dt>
<dd>Delete the selected item without save it into Windows Recycle Bin</dd>
<dd>
</dd>
<dt>CTRL + RIGHT ARROW</dt>
<dd>Move the cursor to the beginning of the next word</dd>
<dd>
</dd>
<dt>CTRL + LEFT ARROW</dt>
<dd>Move the cursor to the beginning of the previous word</dd>
<dd>
</dd>
<dt>CTRL + DOWN ARROW</dt>
<dd>Move the cursor to the beginning of the next paragraph</dd>
<dd>
</dd>
<dt>CTRL + UP ARROW</dt>
<dd>Move the cursor to the beginning of the previous paragraph</dd>
<dd>
</dd>
<dt>CTRL + SHIFT with an arrow key</dt>
<dd>Select a block of text</dd>
<dd>
</dd>
<dt>SHIFT with any arrow key</dt>
<dd>Select more than one item in a window or on the desktop, or select text within a<br />
 document</dd>
<dd>
</dd>
<dt>CTRL with any arrow key + SPACE BAR</dt>
<dd>Select multiple individual items in a window or on the desktop</dd>
<dd>
</dd>
<dt>CTRL + A</dt>
<dd>Select all items in a document or window</dd>
<dd>
</dd>
<dt>ALT + ENTER</dt>
<dd>Display properties for the selected item</dd>
<dd>
</dd>
<dt>ALT + F4</dt>
<dd>Close the active item, or exit the active program. When Vista Desktop is the active window, this hotkey fire up the classic Shutdown Windows dialog box.</dd>
<dd>
</dd>
<dt>ALT + SPACE BAR</dt>
<dd>Open the shortcut menu for the active window</dd>
<dd>
</dd>
<dt>CTRL + F4</dt>
<dd>Close the active document (in programs that allow you to have multiple documents open simultaneously, such as Microsoft Word 2007 or any MDI program)</dd>
<dd>
</dd>
<dt>ALT + TAB</dt>
<dd>Switch between open items</dd>
<dd>
</dd>
<dt>CTRL + ALT + TAB</dt>
<dd>Use the arrow keys to switch between open items</dd>
<dd>
</dd>
<dt>CTRL + Mouse scroll wheel</dt>
<dd>Change the size of icons on the desktop</dd>
<dd>
</dd>
<dt>Windows + TAB</dt>
<dd>Cycle through programs on the taskbar by using Windows Flip 3D</dd>
<dd>
</dd>
<dt>CTRL + Windows + TAB</dt>
<dd>Use the arrow keys to cycle through programs on the taskbar by using Windows Flip 3D</dd>
<dd>
</dd>
<dt>ALT + ESC</dt>
<dd>Cycle through items in the order in which they were opened</dd>
<dd>
</dd>
<dt>SHIFT + F10</dt>
<dd>Display the shortcut menu for the selected item</dd>
<dd>
</dd>
<dt>CTRL + ESC</dt>
<dd>Open the Start menu</dd>
<dd>
</dd>
<dt>ALT + underlined letter</dt>
<dd>Display the corresponding menu, perform the menu command (or other underlined command</dd>
<dd>
</dd>
<dt>RIGHT ARROW</dt>
<dd>Open the next menu to the right, or open a submenu</dd>
<dd>
</dd>
<dt>LEFT ARROW</dt>
<dd>Open the next menu to the left, or close a submenu</dd>
<dd>
</dd>
<dt>ALT + UP ARROW</dt>
<dd>View the folder one level up in Windows Explorer</dd>
<dd>
</dd>
<dt>ESC</dt>
<dd>Cancel the current task</dd>
<dd>
</dd>
<dt>CTRL + SHIFT + ESC</dt>
<dd>Open Task Manager</dd>
<dd>
</dd>
<dt>SHIFT when you insert a CD</dt>
<dd>Prevent the CD from automatically playing</dd>
</dl>
<p><strong><span style="text-decoration: underline;">Dialog box keyboard shortcuts or hotkeys in Windows Vista</span></strong></p>
<dl>
<dt>CTRL + TAB</dt>
<dd>Move forward through tabs</dd>
<dd>
</dd>
<dt>CTRL + SHIFT + TAB</dt>
<dd>Move back through tabs</dd>
<dd>
</dd>
<dt>TAB</dt>
<dd>Move forward through options</dd>
<dd>
</dd>
<dt>SHIFT + TAB</dt>
<dd>Move back through options</dd>
<dd>
</dd>
<dt>ALT + underlined letter</dt>
<dd>Perform the command (or select the option) that goes with that letter</dd>
<dd>
</dd>
<dt>ENTER</dt>
<dd>Replaces clicking the mouse for many selected commands</dd>
<dd>
</dd>
<dt>SPACEBAR</dt>
<dd>Select or clear the check box if the active option is a check box</dd>
<dd>
</dd>
<dt>Arrow keys</dt>
<dd>Select a button if the active option is a group of option buttons</dd>
<dd>
</dd>
<dt>F1</dt>
<dd>Display Help</dd>
<dd>
</dd>
<dt>F4</dt>
<dd>Display the items in the active list</dd>
<dd>
</dd>
<dt>BACK SPACE</dt>
<dd>Open a folder one level up if a folder is selected in the Save As or Open dialog box</dd>
</dl>
<p><strong><span style="text-decoration: underline;">Microsoft (Windows) keyboard hotkey</span></strong></p>
<p><!--wgad2--></p>
<p><br class="spacer_" /></p>
<blockquote><p>What is a Microsoft (Windows) keyboard?</p>
<p>If your found a Windows Logo key that sit in between CTRL and ALT keys, then it’s considered a Windows (Windows) keyboard. So, the Windows key is referring to this additional key that labeled with Windows logo.</p>
</blockquote>
<dl>
<dt>Windows</dt>
<dd>Open or close the Start menu</dd>
<dd>
</dd>
<dt>Windows + PAUSE</dt>
<dd>Display the System Properties dialog box, where you will see the Windows Vista Experience Index</dd>
<dd>
</dd>
<dt>Windows + D</dt>
<dd>Display the desktop</dd>
<dd>
</dd>
<dt>Windows + M</dt>
<dd>Minimize all windows</dd>
<dd>
</dd>
<dt>Windows + SHIFT + M</dt>
<dd>Restore minimized windows to the desktop</dd>
<dd>
</dd>
<dt>Windows + E</dt>
<dd>Open My Computer</dd>
<dd>
</dd>
<dt>Windows + F</dt>
<dd>Search for a file or folder</dd>
<dd>
</dd>
<dt>CTRL + Windows + F</dt>
<dd>Search for computers (if you are on a network)</dd>
<dd>
</dd>
<dt>Windows + L</dt>
<dd>Lock your computer or switch users</dd>
<dd>
</dd>
<dt>Windows + R</dt>
<dd>Open the Run dialog box</dd>
<dd>
</dd>
<dt>Windows + T</dt>
<dd>Cycle through programs on the taskbar</dd>
<dd>
</dd>
<dt>Windows + TAB</dt>
<dd>Cycle through programs on the taskbar by using Windows Flip 3D</dd>
<dd>
</dd>
<dt>CTRL + Windows + TAB</dt>
<dd>Use the arrow keys to cycle through programs on the taskbar by using Windows Flip 3D</dd>
<dd>
</dd>
<dt>Windows + SPACE BAR</dt>
<dd>Bring all gadgets to the front and select Windows Sidebar</dd>
<dd>
</dd>
<dt>Windows + G</dt>
<dd>Cycle through Windows Sidebar gadgets</dd>
<dd>
</dd>
<dt>Windows + U</dt>
<dd>Open Ease of Access Center</dd>
<dd>
</dd>
<dt>Windows + X</dt>
<dd>Open Windows Mobility Center</dd>
<dd>
</dd>
<dt>Windows with any number key</dt>
<dd>Open the Quick Launch shortcut that is in the position that corresponds to the number. For example, Windows + 1 to launch the first shortcut in the Quick Launch menu.</dd>
</dl>
<p><strong><span style="text-decoration: underline;">Windows Explorer keyboard shortcut / hotkey in Windows Vista</span></strong></p>
<dl>
<dt>CTRL + N</dt>
<dd>Open a new window</dd>
<dd>
</dd>
<dt>END</dt>
<dd>Display the bottom of the active window</dd>
<dd>
</dd>
<dt>HOME</dt>
<dd>Display the top of the active window</dd>
<dd>
</dd>
<dt>F11</dt>
<dd>Maximize or minimize the active window</dd>
<dd>
</dd>
<dt>NUM LOCK + ASTERISK (*) on numeric keypad</dt>
<dd>Display all subfolders under the selected folder</dd>
<dd>
</dd>
<dt>NUM LOCK + PLUS SIGN (+) on numeric keypad</dt>
<dd>Display the contents of the selected folder</dd>
<dd>
</dd>
<dt>NUM LOCK + MINUS SIGN (-) on numeric keypad</dt>
<dd>Collapse the selected folder</dd>
<dd>
</dd>
<dt>LEFT ARROW</dt>
<dd>Collapse the current selection (if it is expanded), or select the parent folder</dd>
<dd>
</dd>
<dt>ALT + LEFT ARROW</dt>
<dd>View the previous folder</dd>
<dd>
</dd>
<dt>RIGHT ARROW</dt>
<dd>Display the current selection (if it is collapsed), or select the first subfolder</dd>
<dd>
</dd>
<dt>ALT + RIGHT ARROW</dt>
<dd>View the next folder</dd>
<dd>
</dd>
<dt>CTRL + Mouse scroll wheel</dt>
<dd>Change the size and appearance of file and folder icons</dd>
<dd>
</dd>
<dt>ALT + D</dt>
<dd>Select the Address bar</dd>
</dl>
<p><strong><span style="text-decoration: underline;">Windows Sidebar keyboard shortcut / hotkeys in Windows Vista</span></strong></p>
<dl>
<dt>Windows + SPACEBAR</dt>
<dd>Bring all gadgets to the front and select Sidebar</dd>
<dd>
</dd>
<dt>Windows + G</dt>
<dd>Cycle through Sidebar gadgets</dd>
<dd>
</dd>
<dt>TAB</dt>
<dd>Cycle through Sidebar controls</dd>
</dl>
<p><strong><span style="text-decoration: underline;">Windows Photo Gallery keyboard shortcuts / hotkeys in Windows Vista</span></strong></p>
<dl>
<dt>CTRL + F</dt>
<dd>Open the Fix pane</dd>
<dd>
</dd>
<dt>CTRL + P</dt>
<dd>Print the selected picture</dd>
<dd>
</dd>
<dt>ENTER</dt>
<dd>View the selected picture at a larger size</dd>
<dd>
</dd>
<dt>CTRL + I</dt>
<dd>Open or close the Details pane</dd>
<dd>
</dd>
<dt>CTRL + PERIOD (.)</dt>
<dd>Rotate the picture clockwise</dd>
<dd>
</dd>
<dt>CTRL + COMMA (,)</dt>
<dd>Rotate the picture counter-clockwise</dd>
<dd>
</dd>
<dt>F2</dt>
<dd>Rename the selected item</dd>
<dd>
</dd>
<dt>CTRL+E</dt>
<dd>Search for an item</dd>
<dd>
</dd>
<dt>ALT + LEFT ARROW</dt>
<dd>Go back</dd>
<dd>
</dd>
<dt>ALT + RIGHT ARROW</dt>
<dd>Go forward</dd>
<dd>
</dd>
<dt>PLUS SIGN (+)</dt>
<dd>Zoom in or resize the picture thumbnail</dd>
<dd>
</dd>
<dt>MINUS SIGN (-)</dt>
<dd>Zoom out or resize the picture thumbnail</dd>
<dd>
</dd>
<dt>CTRL + Mouse scroll wheel</dt>
<dd>Change the size of the picture thumbnail</dd>
<dd>
</dd>
<dt>CTRL + B</dt>
<dd>Best fit</dd>
<dd>
</dd>
<dt>LEFT ARROW</dt>
<dd>Select the previous item</dd>
<dd>
</dd>
<dt>DOWN ARROW</dt>
<dd>Select the next item or row</dd>
<dd>
</dd>
<dt>UP ARROW</dt>
<dd>Previous item (Easel) or previous row (Thumbnail)</dd>
<dd>
</dd>
<dt>PAGE UP</dt>
<dd>Previous screen</dd>
<dd>
</dd>
<dt>PAGE DOWN</dt>
<dd>Next screen</dd>
<dd>
</dd>
<dt>HOME</dt>
<dd>Select the first item</dd>
<dd>
</dd>
<dt>END</dt>
<dd>Select the last item</dd>
<dd>
</dd>
<dt>DELETE</dt>
<dd>Move the selected item to the Recycle Bin</dd>
<dd>
</dd>
<dt>SHIFT + DELETE</dt>
<dd>Permanently delete the selected item</dd>
<dd>
</dd>
<dt>LEFT ARROW</dt>
<dd>Collapse node</dd>
<dd>
</dd>
<dt>RIGHT ARROW</dt>
<dd>Expand node</dd>
</dl>
<p><strong><span style="text-decoration: underline;">Windows Photo Gallery keyboard shortcuts / hotkeys to work with video files in Windows Vista</span></strong></p>
<dl>
<dt>J</dt>
<dd>Move back one frame</dd>
<dd>
</dd>
<dt>K</dt>
<dd>Pause the playback</dd>
<dd>
</dd>
<dt>L</dt>
<dd>Move forward one frame</dd>
<dd>
</dd>
<dt>I</dt>
<dd>Set the start trim point</dd>
<dd>
</dd>
<dt>O</dt>
<dd>Set the end trim point</dd>
<dd>
</dd>
<dt>M</dt>
<dd>Split a clip</dd>
<dd>
</dd>
<dt>HOME</dt>
<dd>Stop and rewind all the way back to the start trim point</dd>
<dd>
</dd>
<dt>ALT + RIGHT ARROW</dt>
<dd>Advance to the next frame</dd>
<dd>
</dd>
<dt>ALT + LEFT ARROW</dt>
<dd>Go back to the previous frame</dd>
<dd>
</dd>
<dt>CTRL + K</dt>
<dd>Stop and rewind playback</dd>
<dd>
</dd>
<dt>CTRL + P</dt>
<dd>Play from the current location</dd>
<dd>
</dd>
<dt>HOME</dt>
<dd>Move the start trim point</dd>
<dd>
</dd>
<dt>END</dt>
<dd>Move to the end trim point</dd>
<dd>
</dd>
<dt>PAGE UP</dt>
<dd>Seek to nearest split point before the current location</dd>
<dd>
</dd>
<dt>PAGE DOWN</dt>
<dd>Seek to nearest split point after the current location</dd>
</dl>
<p><strong><span style="text-decoration: underline;">Keyboard shortcuts / hotkeys to work with Windows Vista Help And Supports</span></strong></p>
<dl>
<dt>ALT+C</dt>
<dd>Display the Table of Contents</dd>
<dd>
</dd>
<dt>ALT+N</dt>
<dd>Display the Connection Settings menu</dd>
<dd>
</dd>
<dt>F10</dt>
<dd>Display the Options menu</dd>
<dd>
</dd>
<dt>ALT + LEFT ARROW</dt>
<dd>Move back to the previously viewed topic</dd>
<dd>
</dd>
<dt>ALT + RIGHT ARROW</dt>
<dd>Move forward to the next (previously viewed) topic</dd>
<dd>
</dd>
<dt>ALT + A</dt>
<dd>Display the customer support page</dd>
<dd>
</dd>
<dt>ALT + HOME</dt>
<dd>Display the Help and Support home page</dd>
<dd>
</dd>
<dt>HOME</dt>
<dd>Move the to beginning of a topic</dd>
<dd>
</dd>
<dt>END</dt>
<dd>Move to the end of a topic</dd>
<dd>
</dd>
<dt>CTRL + F</dt>
<dd>Search the current topic</dd>
<dd>
</dd>
<dt>CTRL + P</dt>
<dd>Print a topic</dd>
<dd>
</dd>
<dt>F3</dt>
<dd>Move to the Search box</dd>
</dl>
<img src="http://www.thatguycharlie.com/?ak_action=api_record_view&id=669&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.thatguycharlie.com/2009/how-to-complete-list-of-windows-vista-hotkeys/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Replace Form Buttons with Images</title>
		<link>http://www.thatguycharlie.com/2009/replace-form-buttons-with-images/</link>
		<comments>http://www.thatguycharlie.com/2009/replace-form-buttons-with-images/#comments</comments>
		<pubDate>Tue, 25 Aug 2009 21:54:20 +0000</pubDate>
		<dc:creator>Charlie</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[form button]]></category>
		<category><![CDATA[image]]></category>

		<guid isPermaLink="false">http://www.vividperfection.com/?p=517</guid>
		<description><![CDATA[&#8220;Replace the Form submit button with an image&#8221; When designing a form with a submit button, how do you utilize an image for the button instead of using a plain ol&#8217; grey box? No problem, just use this code: &#60;input name=&#8221;optional&#8221; src=&#8221;picture.gif&#8221; type=&#8221;image&#8221; /&#62;]]></description>
			<content:encoded><![CDATA[<p>&#8220;Replace the Form submit button with an image&#8221;</p>
<p><strong>When designing a form with a submit button, how do you utilize an  	image for the button instead of using a plain ol&#8217; grey box?</strong></p>
<p>No problem, just use this code:</p>
<blockquote><p>&lt;input name=&#8221;optional&#8221; src=&#8221;picture.gif&#8221; type=&#8221;image&#8221; /&gt;</p>
</blockquote>
<img src="http://www.thatguycharlie.com/?ak_action=api_record_view&id=517&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.thatguycharlie.com/2009/replace-form-buttons-with-images/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Speed Hacking in Halo 2</title>
		<link>http://www.thatguycharlie.com/2009/speed-hacking-in-halo-2/</link>
		<comments>http://www.thatguycharlie.com/2009/speed-hacking-in-halo-2/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 13:44:07 +0000</pubDate>
		<dc:creator>Charlie</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Halo 2]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[cheat]]></category>
		<category><![CDATA[cheatengine]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[hack]]></category>
		<category><![CDATA[speed]]></category>
		<category><![CDATA[speed hacking]]></category>

		<guid isPermaLink="false">http://www.vividperfection.com/?p=489</guid>
		<description><![CDATA[Speed hacking is the #1 annoyance among all Halo 2 Vista multiplayer fans. Little do ordinary players know that speed hacking just serves sheer fun, although it [may] pose a large disadvantage. PLEASE do not over use this and USE IT AT YOUR OWN RISK. Experience the PURE FUN in speed hacking by following these [...]]]></description>
			<content:encoded><![CDATA[<div>
<p>Speed hacking is the #1 annoyance among all Halo 2 Vista multiplayer fans. Little do ordinary players know that speed hacking just serves sheer fun, although it [may] pose a large disadvantage. PLEASE do not over use this and USE IT AT YOUR OWN RISK.</p>
<p>Experience the PURE FUN in speed hacking by following these steps!</p>
<p>1. Go to <a href="http://www.cheatengine.org/">http://www.cheatengine.org</a> and download/install the latest version of Cheat Engine<br />
 2. Start Halo 2<br />
 3. <strong>Minimize</strong> the game (this is very important). Start Cheat Engine<br />
 4. Click on the flashing button at the very top left corner of Cheat Engine<br />
 5. Search for the Halo 2 process (halo2.exe)<br />
 6. You will see many intimidating settings (hex values, etc.). Don’t worry about those. You will only need the “Enable Speedhack” option, which is located on the right of the Cheat Engine window.<br />
 7. Adjust the speed to 5 (I prefer this number. You may play with this setting, but note that a much larger number may yield server lag.)<br />
 8. If you wish to reset the speed to normal, <strong>do not set the speed to 1.</strong> Instead, exit Cheat Engine and restart Halo 2.<br />
 —-OR—–<br />
 Use a number of 1.5 (closest to normal speed IMO)</p>
<p>Notice that this speed hacking method does not involve altering the settings within the map itself. This method simply speeds up the Halo 2 process so EVERYTHING is sped up (the main menu, melee, reload, etc.)!!!</p>
<p>Good luck and have fun!</p>
<p>Psssst…I would suggest creating a phony Live screen name along with a fake identity!!! And don’t do it too much on the same server or you will really annoy server owners (they could ban your IP forever)!!</p>
</div>
<img src="http://www.thatguycharlie.com/?ak_action=api_record_view&id=489&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.thatguycharlie.com/2009/speed-hacking-in-halo-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cyber&#039;s Rcon Guide (Halo PC/CE/Trial)</title>
		<link>http://www.thatguycharlie.com/2009/cybers-rcon-guide-halo-pccetrial/</link>
		<comments>http://www.thatguycharlie.com/2009/cybers-rcon-guide-halo-pccetrial/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 11:13:53 +0000</pubDate>
		<dc:creator>Charlie</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Halo CE]]></category>
		<category><![CDATA[Halo PC]]></category>
		<category><![CDATA[Halo Trial]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[cyber]]></category>
		<category><![CDATA[cyberguy]]></category>
		<category><![CDATA[guide]]></category>
		<category><![CDATA[rcon]]></category>
		<category><![CDATA[rcon guide]]></category>

		<guid isPermaLink="false">http://www.vividperfection.com/?p=454</guid>
		<description><![CDATA[CYBER’S RCON GUIDE www.VividPerfection.com Please Note: This guide is intended for Halo Trial, Halo, and Halo Custom Edition only. Halo Trial will require console patch. Bans WILL NOT WORK in Halo Trial. Table of Contents Preparing to use Remote Server Control (Rcon) How to Use Rcon Commonly Used Commands Default Game and Map Variants Server [...]]]></description>
			<content:encoded><![CDATA[<p><strong>CYBER’S RCON GUIDE</strong></p>
<p>www.VividPerfection.com</p>
<p><span style="font-size: x-small;">Please Note: This guide is intended for Halo Trial, Halo, and Halo Custom Edition only. Halo Trial will require console patch. Bans WILL NOT WORK in Halo Trial.</span></p>
<p>
<strong>Table of Contents</strong></p>
<ul>
<li>Preparing to use Remote Server Control (Rcon)</li>
<li>How to Use Rcon</li>
<li>Commonly Used Commands</li>
<li>Default Game and Map Variants</li>
<li>Server Conduct Rules</li>
</ul>
<p><a href="http://www.simpleshare.vividperfection.com/uploads/Cyber\'s_Rcon_Guide_v1.5.pdf">Click To Download</a></p>
<img src="http://www.thatguycharlie.com/?ak_action=api_record_view&id=454&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.thatguycharlie.com/2009/cybers-rcon-guide-halo-pccetrial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Halo PC/CE/Trial: How to use Console</title>
		<link>http://www.thatguycharlie.com/2009/halo-pccetrial-how-to-use-console/</link>
		<comments>http://www.thatguycharlie.com/2009/halo-pccetrial-how-to-use-console/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 11:07:03 +0000</pubDate>
		<dc:creator>Charlie</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[Halo CE]]></category>
		<category><![CDATA[Halo PC]]></category>
		<category><![CDATA[Halo Trial]]></category>
		<category><![CDATA[How To]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[devmode]]></category>
		<category><![CDATA[halo console]]></category>

		<guid isPermaLink="false">http://www.vividperfection.com/?p=452</guid>
		<description><![CDATA[What is console? console is a handy little tool that is built into Halo PC – along with many other games. It is a way to manipulate settings, control the server, and even to eliminate unruly players. You must enable it before using it. However, if you’re running the full version (or Custom Edition), the [...]]]></description>
			<content:encoded><![CDATA[<div>
<p><strong>What is console?</strong></p>
<p>console is a handy little tool that is built into Halo <span style="font-weight: 400; font-size: 12px; position: static;"><span style="font-family: Verdana,Tahoma,Arial,&quot;font-size:12px;position:static;&quot;;">PC</span></span></span> – along with many other games.  It is a way to manipulate settings, control the <span><span style="font-weight: 400; font-size: 12px; position: static;"><span style="font-family: Verdana,Tahoma,Arial,&quot;font-size:12px;position:static;&quot;;">server</span></span></span>, a</span>nd even to eliminate unruly players. You must enable it before using it. However, if you’re running the full version (or Custom Edition), the console is built into the game, so ignore this first section.</p>
<blockquote><p><strong>Patching to Console (Trial ONLY)</strong><br />
 A patch has been made to Halo Trial to enable the console.  get it <a href="http://www.aofarm.com/halo/console.rar" target="_blank">HERE!</a><br />
 <em>patch “borrowed” from halotrialmods.com, where it was posted by Phenomena, who got it from sniper, who got it from nmgod. <img style="vertical-align: middle;" src="http://www.modhalo.net/style_emoticons/custom/happy.gif" border="0" alt="happy.gif" /><br />
 </em><br />
 alrighty, so here’s what to do:  first, you need <a href="http://www.modhalo.net/index.php?showtopic=28" target="_blank">ppf-o-matic</a>, and something to extract .rar files.  extract the file console.rar you just downloaded above.  run ppf-o-matic.  set the <span style="font-weight: 400; font-size: 12px; position: static;"><span style="font-family: Verdana,Tahoma,Arial,&quot;font-size:12px;position:static;&quot;;">ISO </span><span style="font-family: Verdana,Tahoma,Arial,&quot;font-size:12px;position:static;&quot;;">file</span></span></span> to</span> c:/~the halo trial folder~/halo.exe. set the patch to wherever you put console.ppf. hit patch and let ppf-o-matic do its magic. now you must enable the console.</p>
</blockquote>
<p><strong>Enabling Console (Trial, Full and CE)</strong><br />
 go to the SHORTCUT on your <span style="font-weight: 400; font-size: 12px; position: static;"><span style="font-family: Verdana,Tahoma,Arial,&quot;font-size:12px;position:static;&quot;;">desktop</span></span></span> </span>(not the exe) for halo (or make a new one if you wish). right click it, and choose properties. in the ‘target:’ box, it will say something like “C:\Program Files\Microsoft Games\Halo\halo.exe”</p>
<p>add -console to the end, so it looks like this:<br />
 “C:\Program Files\Microsoft Games\Halo\halo.exe” -console</p>
<p><strong>Using Console (Trial, Full and CE)</strong><br />
 Now, run halo BY DOUBLE CLICKING THE SHORTCUT YOU MADE (running it any other way will not load the console). Start a <span style="font-weight: 400; font-size: 12px; position: static;"><span style="font-family: Verdana,Tahoma,Arial,&quot;font-size:12px;position:static;&quot;;">multi</span><span style="font-family: Verdana,Tahoma,Arial,&quot;font-size:12px;position:static;&quot;;">player </span><span style="font-family: Verdana,Tahoma,Arial,&quot;font-size:12px;position:static;&quot;;">game</span></span></span> as</span> you normally would. While in your server, type the ~/` symbol (…Below the esc key. Symbol will variate among different keyboard types. Don’t forget to hold down shift if using a United States International Keyboard). in the bottom left corner, a little pink text pops up that says something like “halo(~”<br />
 <img src="http://www.tweakguides.com/images/Halo_20s.jpg" border="0" alt="" /><br />
 This is the console.  you can do some pretty cool things.  for a detailed list, go <a href="http://www.tweakguides.com/Halo_10.html" target="_blank">HERE</a></p>
<p>But, if you just want to ban people, here’s what you do. Type “sv_players” and it will list all of the players. remember the first number, (1 – 16) and then type “sv_kick ” and then the number. Note that this simply removes the player from the game and does not stop them from rejoining again. typing “sv_ban “(number) will stop them from rejoining, but will not kick them from the current game.</p>
<p>happy kicking! (and devmode’ing, etc ^_^)</p>
<p>Trial <span><span style="font-weight: 400; font-size: 12px; position: static;"><span style="font-family: Verdana,Tahoma,Arial,&quot;font-size:12px;position:static;&quot;;">users</span></span> should note however that since sv_ban bans based on <span><span style="font-weight: 400; font-size: 12px; position: static;"><span style="font-family: Verdana,Tahoma,Arial,&quot;font-size:12px;position:static;&quot;;">cd</span></span></span> hash</span>es, and there are no hashes <span style="text-decoration: underline;">in halo trial, banning has no effect.<br />
 </span> <em></em></p>
<p><em>Disclaimer: I‘m not responsible for you being an idiot. <img src="../sites/unknownmods/wp-includes/images/smilies/icon_razz.gif" alt=":P" /> </em></p>
<p><em>Back up your halo.exe before you patch it. And please, don’t kick people just cuz they’re better than you.</em></p>
</div>
<img src="http://www.thatguycharlie.com/?ak_action=api_record_view&id=452&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.thatguycharlie.com/2009/halo-pccetrial-how-to-use-console/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to change a Windows user password which you don&#039;t know</title>
		<link>http://www.thatguycharlie.com/2009/how-to-change-a-windows-user-pass-which-you-dont-know/</link>
		<comments>http://www.thatguycharlie.com/2009/how-to-change-a-windows-user-pass-which-you-dont-know/#comments</comments>
		<pubDate>Sun, 31 May 2009 20:13:29 +0000</pubDate>
		<dc:creator>Charlie</dc:creator>
				<category><![CDATA[How To]]></category>
		<category><![CDATA[Other]]></category>
		<category><![CDATA[change password]]></category>
		<category><![CDATA[cmd]]></category>
		<category><![CDATA[command line]]></category>
		<category><![CDATA[hack password]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[system 32]]></category>
		<category><![CDATA[windows user]]></category>

		<guid isPermaLink="false">http://www.nitronic.1337space.com/?p=305</guid>
		<description><![CDATA[It&#8217;s pretty simple Windows CMD stuff&#8230;but the nubs might enjoy. If at any time CMD sayz you dont have permissions or a command just isn&#8217;t working, try running CMD from your system 32 folder as an administrator. (1) Click Start Menu (2) Click Run (3) Type &#8220;cmd&#8221; without the &#8220;&#8221; and hit Return/Enter In the [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s pretty simple Windows CMD stuff&#8230;but the nubs might enjoy. If at any time CMD sayz you dont have permissions or a command just isn&#8217;t working, try running CMD from your system 32 folder as an administrator. <img title="Razz" src="http://www.hacking-place.co.uk/images/smilies/icon_razz.gif" alt=":P" /></p>
<p><span style="font-weight: bold;">(1)</span> Click Start Menu<br />
 <span style="font-weight: bold;">(2)</span> Click Run<br />
 <span style="font-weight: bold;">(3)</span> Type &#8220;cmd&#8221; without the &#8220;&#8221; and hit Return/Enter</p>
<p>In the black window that comes up:<span id="more-305"></span></p>
<p><span style="font-weight: bold;"><span style="color: #ff0000;">(1)</span></span> Type &#8220;net users&#8221; without the &#8220;&#8221;<br />
 Basically, a list of user names should come up</p>
<p><span style="font-weight: bold;"><span style="color: #ff0000;">(2)</span></span> Type: net user (your victim&#8217;s username) *  (&lt;- remember to put the * at the end)<br />
 e.g. I would type<br />
 net user Charlie *</p>
<p><span style="font-weight: bold;"><span style="color: #ff0000;">(3)</span></span> It will ask for a new password. Type and enter a new password but be warned, it will not display •••, ***, or text. (In other words, what you type is invisible.) So be sure to type it correctly the first time.<br />
 Once you hit Enter, it will again ask for the password you just typed to confirm it.</p>
<p><span style="font-weight: bold;"><span style="color: #ff0000;">(4)</span></span> (Optional) Now test the new password by going into control panel and attempting to change that user&#8217;s password and entering the password you just typed into the &#8220;old password &#8221; field.</p>
<p>Tadaa! All done!<br />
 -Cyßer/Charlie</p>
<img src="http://www.thatguycharlie.com/?ak_action=api_record_view&id=305&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://www.thatguycharlie.com/2009/how-to-change-a-windows-user-pass-which-you-dont-know/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>

