<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>InksGuy's Idea Blog</title>
	<atom:link href="http://inksguy.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://inksguy.wordpress.com</link>
	<description>A Quasi-Pseudoblog type thingy.</description>
	<lastBuildDate>Mon, 31 Oct 2011 13:52:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='inksguy.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>InksGuy's Idea Blog</title>
		<link>http://inksguy.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://inksguy.wordpress.com/osd.xml" title="InksGuy&#039;s Idea Blog" />
	<atom:link rel='hub' href='http://inksguy.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Make a HTML Table from an SQL result set in PHP</title>
		<link>http://inksguy.wordpress.com/2011/10/31/make-a-html-table-in-php-from-an-sql-result-set/</link>
		<comments>http://inksguy.wordpress.com/2011/10/31/make-a-html-table-in-php-from-an-sql-result-set/#comments</comments>
		<pubDate>Mon, 31 Oct 2011 13:42:56 +0000</pubDate>
		<dc:creator>InksGuy</dc:creator>
				<category><![CDATA[HTML]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Postgres]]></category>
		<category><![CDATA[SQL]]></category>
		<category><![CDATA[Table]]></category>

		<guid isPermaLink="false">http://inksguy.wordpress.com/2011/10/31/make-a-html-table-in-php-from-an-sql-result-set/</guid>
		<description><![CDATA[The following method can be used to easily generate an HTML table from any SQL Result set. The PHP methods used are for Postgres, but you could change them to whatever database backend you use, for example, MySQL, etc. /** * Print out a generic results table from a postgresql result set. * Method should [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inksguy.wordpress.com&amp;blog=6857181&amp;post=132&amp;subd=inksguy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>The following method can be used to easily generate an HTML table from any SQL Result set. The PHP methods used are for Postgres, but you could change them to whatever database backend you use, for example, MySQL, etc.</p>
<p><code></p>
<pre>

/**
 * Print out a generic results table from a postgresql result set.
 * Method should work on any result set.
 */

function mk_table_from_SQL($SQLTable) {

	pg_result_seek($SQLTable, 0);	// Rewind the result set to the beginning
	$html = &quot;&lt;table&gt;&quot;;		// Write the table opening html
	$html .= &quot;&lt;tr&gt;&quot;;		// Write out the column headers

	for ($i=0; $i &lt; pg_num_fields($SQLTable); $i++) {
		$html .= &quot;&lt;th&gt;&quot; . pg_field_name($SQLTable, $i) . &quot;&lt;/th&gt;&quot;;
	}

	$html .= &quot;&lt;/tr&gt;&quot;;

	while($row=pg_fetch_array($SQLTable)) {
		// Write out subsequent rows

		$html .= &quot;&lt;tr&gt;&quot;;

		for ($i=0; $i &lt; pg_num_fields($SQLTable); $i++) {
			$html .= &quot;&lt;td&gt;$row[$i]&lt;/td&gt;&quot;;
		}

		$html .= &quot;&lt;/tr&gt;\n&quot;;
	}

	$html .= &quot;&lt;/table&gt;\n&quot;;	// End the table

	return $html;
}
</pre>
<p></code></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/inksguy.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/inksguy.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/inksguy.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/inksguy.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/inksguy.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/inksguy.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/inksguy.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/inksguy.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/inksguy.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/inksguy.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/inksguy.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/inksguy.wordpress.com/132/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/inksguy.wordpress.com/132/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/inksguy.wordpress.com/132/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inksguy.wordpress.com&amp;blog=6857181&amp;post=132&amp;subd=inksguy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://inksguy.wordpress.com/2011/10/31/make-a-html-table-in-php-from-an-sql-result-set/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dae4692474b9d5efb2ba6a3064ff5239?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">InksGuy</media:title>
		</media:content>
	</item>
		<item>
		<title>Minecraft!</title>
		<link>http://inksguy.wordpress.com/2010/12/05/minecraft/</link>
		<comments>http://inksguy.wordpress.com/2010/12/05/minecraft/#comments</comments>
		<pubDate>Sun, 05 Dec 2010 04:57:34 +0000</pubDate>
		<dc:creator>InksGuy</dc:creator>
				<category><![CDATA[Gaming]]></category>
		<category><![CDATA[creepers]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[Minecraft]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://inksguy.wordpress.com/?p=122</guid>
		<description><![CDATA[I haven&#8217;t posted anything on here for over a year now, but I&#8217;m not dead! I&#8217;ve been studying Computing Science at Newcastle University. On the topic of &#8220;studying&#8221;, I&#8217;ve recently been playing a lot of Minecraft, an indie game by Mojang Games. It&#8217;s still in Alpha but rapidly nearing Beta, with there currently being 50% [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inksguy.wordpress.com&amp;blog=6857181&amp;post=122&amp;subd=inksguy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I haven&#8217;t posted anything on here for over a year now, but I&#8217;m not dead! I&#8217;ve been studying Computing Science at Newcastle University.</p>
<p>On the topic of &#8220;studying&#8221;, I&#8217;ve recently been playing a lot of <a title="Minecraft" href="http://minecraft.net/" target="_blank">Minecraft</a>, an indie game by Mojang Games. It&#8217;s still in Alpha but rapidly nearing Beta, with there currently being 50% off the RRP of £20 (€18).</p>
<p>I bought it a couple of months back because everyone was playing it&#8230; Two months later, I run a server for the Survival Multiplayer gamemode. I bought an old Dual Core Dell Opteron workstation and stuck a copy of <a href="http://www.ubuntu.com/" target="_blank">Ubuntu</a> Server 10.10 on it. Configuring ssh, ftp, Java (the game and server are written in Java) and the Apache webserver were trivial. It&#8217;s been a great learning experience, I&#8217;ve been bash-scripting backups and little integration features ever since.</p>
<p>Anyhoo, the server is at <a href="http://inks.dyndns.org/" target="_blank">http://inks.dyndns.org/</a>, although you&#8217;ll need to ask an admin to whitelist you before you can build. Oh, and Griefers can look elsewhere&#8230; I don&#8217;t need your shenanigans, I have a degree to earn.</p>
<p style="text-align:center;">&nbsp;</p>
<div id="attachment_123" class="wp-caption aligncenter" style="width: 440px"><a href="http://inksguy.files.wordpress.com/2010/12/creeperfamily.png"><img class="size-large wp-image-123  " title="creeperfamily" src="http://inksguy.files.wordpress.com/2010/12/creeperfamily.png?w=430&#038;h=256" alt="We just want to be your friendsssssssssssssss" width="430" height="256" /></a><p class="wp-caption-text">We just want to be your friendssssssssssssss...</p></div>
<p>D: &#8230;Cheerio.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/inksguy.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/inksguy.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/inksguy.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/inksguy.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/inksguy.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/inksguy.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/inksguy.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/inksguy.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/inksguy.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/inksguy.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/inksguy.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/inksguy.wordpress.com/122/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/inksguy.wordpress.com/122/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/inksguy.wordpress.com/122/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inksguy.wordpress.com&amp;blog=6857181&amp;post=122&amp;subd=inksguy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://inksguy.wordpress.com/2010/12/05/minecraft/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dae4692474b9d5efb2ba6a3064ff5239?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">InksGuy</media:title>
		</media:content>

		<media:content url="http://inksguy.files.wordpress.com/2010/12/creeperfamily.png?w=1024" medium="image">
			<media:title type="html">creeperfamily</media:title>
		</media:content>
	</item>
		<item>
		<title>XBox 360 Headset on PC? &#8211; Part 2</title>
		<link>http://inksguy.wordpress.com/2009/08/02/xbox-360-headset-on-pc-part-2/</link>
		<comments>http://inksguy.wordpress.com/2009/08/02/xbox-360-headset-on-pc-part-2/#comments</comments>
		<pubDate>Sun, 02 Aug 2009 17:42:24 +0000</pubDate>
		<dc:creator>InksGuy</dc:creator>
				<category><![CDATA[XBox]]></category>
		<category><![CDATA[360]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[headset]]></category>

		<guid isPermaLink="false">http://inksguy.wordpress.com/?p=79</guid>
		<description><![CDATA[Ok, so I began this little &#8220;how to&#8221; in this post way back in March, and I&#8217;ve finally gotten around to buying the parts (i.e. had time) and putting it together. DISCLAIMER: You undertake this project entirely at your own risk. By attempting this you understand that I cannot be held liable for any damage [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inksguy.wordpress.com&amp;blog=6857181&amp;post=79&amp;subd=inksguy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Ok, so I began this little &#8220;how to&#8221; in <a title="this post" href="http://inksguy.wordpress.com/2009/03/28/xbox-360-headset-on-pc/" target="_self">this post</a> way back in March, and I&#8217;ve finally gotten around to buying the parts (i.e. had time) and putting it together.</p>
<hr /><em><strong>DISCLAIMER: </strong>You undertake this project entirely <strong>at your own risk</strong>. By attempting this you understand that I cannot be held liable for any damage you cause to your own equipment.</em></p>
<p>That being said: seriously, audio signals are of negligible voltage. You can cause a short circuit… and <strong>nothing will happen</strong>. There’s no way you’re going to cause a fire or anything.</p>
<hr />You can click on the pictures on this post to get the full size image. Incidentally, while I’m at it I might as well license them to you under the GPL as <em>Attribution Non-commercial.</em></p>
<hr />
<p><a href="http://inksguy.files.wordpress.com/2009/08/02082009128.jpg"><img style="display:inline;border-width:0;" title="02082009128" src="http://inksguy.files.wordpress.com/2009/08/02082009128_thumb.jpg?w=244&#038;h=185" border="0" alt="02082009128" width="244" height="185" /></a></p>
<p>So, as a recap, the components I have bought: x2 <em>3.5mm Male Mono</em> jacks, and x1 <em>2.5mm Female Stereo</em> jack.</p>
<p><a href="http://inksguy.files.wordpress.com/2009/08/02082009130.jpg"><img style="display:inline;border-width:0;" title="02082009130" src="http://inksguy.files.wordpress.com/2009/08/02082009130_thumb.jpg?w=244&#038;h=129" border="0" alt="02082009130" width="244" height="129" /></a> <a href="http://inksguy.files.wordpress.com/2009/08/02082009132.jpg"><img style="display:inline;border-width:0;" title="02082009132" src="http://inksguy.files.wordpress.com/2009/08/02082009132_thumb.jpg?w=244&#038;h=129" border="0" alt="02082009132" width="244" height="129" /></a></p>
<p><em>(Photos showing the inner connections of each jack.)</em></p>
<p><a href="http://inksguy.files.wordpress.com/2009/08/02082009134.jpg"><img style="display:inline;border-width:0;" title="02082009134" src="http://inksguy.files.wordpress.com/2009/08/02082009134_thumb.jpg?w=244&#038;h=184" border="0" alt="02082009134" width="244" height="184" /></a> <em>(2.5mm Connected to the h</em><em>eadset.)</em></p>
<p>So: I’m using a couple of pieces of cable I had lying about, single core in two wires, core is probably about 1mm diameter. You don’t want anything more than that or wiring the ends into the jack becomes particularly fiddly.</p>
<p><a href="http://inksguy.files.wordpress.com/2009/08/02082009142.jpg"><img style="display:inline;border-width:0;" title="02082009142" src="http://inksguy.files.wordpress.com/2009/08/02082009142_thumb.jpg?w=509&#038;h=383" border="0" alt="02082009142" width="509" height="383" /></a></p>
<p>Wiring the mono jacks: the outer cable was marked with a white strip, and this was how I kept track of which wire was neutral.</p>
<p><a href="http://inksguy.files.wordpress.com/2009/08/02082009147.jpg"><img style="display:inline;border-width:0;" title="02082009147" src="http://inksguy.files.wordpress.com/2009/08/02082009147_thumb.jpg?w=244&#038;h=184" border="0" alt="02082009147" width="244" height="184" /></a> <a href="http://inksguy.files.wordpress.com/2009/08/02082009144.jpg"><img style="display:inline;border-width:0;" title="02082009144" src="http://inksguy.files.wordpress.com/2009/08/02082009144_thumb.jpg?w=244&#038;h=184" border="0" alt="02082009144" width="244" height="184" /></a></p>
<p><a href="http://inksguy.files.wordpress.com/2009/08/02082009148.jpg"><img style="display:inline;border-width:0;" title="02082009148" src="http://inksguy.files.wordpress.com/2009/08/02082009148_thumb.jpg?w=244&#038;h=184" border="0" alt="02082009148" width="244" height="184" /></a> <a href="http://inksguy.files.wordpress.com/2009/08/02082009151.jpg"><img style="display:inline;border-width:0;" title="02082009151" src="http://inksguy.files.wordpress.com/2009/08/02082009151_thumb.jpg?w=244&#038;h=184" border="0" alt="02082009151" width="244" height="184" /></a></p>
<p>I put a dab of solder on each connection to hold it in place and make a good connection.</p>
<p>At this point, don’t forget to put the outer plastic of the female jack onto the wire! It’s going to be frustrating if you have to unwire the jack afterwards to put the plastic on and start again!</p>
<p><a href="http://inksguy.files.wordpress.com/2009/08/02082009155.jpg"><img style="display:inline;border-width:0;" title="02082009155" src="http://inksguy.files.wordpress.com/2009/08/02082009155_thumb.jpg?w=244&#038;h=184" border="0" alt="02082009155" width="244" height="184" /></a> <em>(Yes, I know it seems obvious, but… well.)</em></p>
<p>Test the headphone socket first, see if you can get anything playing through the 360 headset so you can see that you’ve wired the audio jack correctly. I would expect (<em>if</em> you have the same design of connector as me) that the silvery inner connection is the speaker wire connection, rather than the brass-coloured one.</p>
<p><a href="http://inksguy.files.wordpress.com/2009/08/02082009152.jpg"><img style="display:inline;border-width:0;" title="02082009152" src="http://inksguy.files.wordpress.com/2009/08/02082009152_thumb.jpg?w=244&#038;h=184" border="0" alt="02082009152" width="244" height="184" /></a></p>
<p>Make sure the audio is actually turned up on the headset if you’re testing it this way. Same for the mic, when you do  that. <strong>Turn it on</strong>.</p>
<p><a href="http://inksguy.files.wordpress.com/2009/08/02082009156.jpg"><img style="display:inline;border-width:0;" title="02082009156" src="http://inksguy.files.wordpress.com/2009/08/02082009156_thumb.jpg?w=184&#038;h=244" border="0" alt="02082009156" width="184" height="244" /></a> <a href="http://inksguy.files.wordpress.com/2009/08/02082009157.jpg"><img style="display:inline;border-width:0;" title="02082009157" src="http://inksguy.files.wordpress.com/2009/08/02082009157_thumb.jpg?w=184&#038;h=244" border="0" alt="02082009157" width="184" height="244" /></a></p>
<p>As above, I cropped the wires to the correct length. The first photo makes them look cropped shorter than they actually are, so careful here. You want enough left to go through the holes, but not <em>too</em> much, or it just gets in the way.</p>
<p><a href="http://inksguy.files.wordpress.com/2009/08/02082009161.jpg"><img style="display:inline;border-width:0;" title="02082009161" src="http://inksguy.files.wordpress.com/2009/08/02082009161_thumb.jpg?w=244&#038;h=184" border="0" alt="02082009161" width="244" height="184" /></a> <a href="http://inksguy.files.wordpress.com/2009/08/02082009163.jpg"><img style="display:inline;border-width:0;" title="02082009163" src="http://inksguy.files.wordpress.com/2009/08/02082009163_thumb.jpg?w=244&#038;h=184" border="0" alt="02082009163" width="244" height="184" /></a></p>
<p>A couple of dabs of solder later, and there you have it! Note that you may want to mark which jack is the mic and which is the speaker, avoiding confusion later.</p>
<p><a href="http://inksguy.files.wordpress.com/2009/08/02082009164.jpg"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="02082009164" src="http://inksguy.files.wordpress.com/2009/08/02082009164_thumb.jpg?w=507&#038;h=382" border="0" alt="02082009164" width="507" height="382" /></a></p>
<hr />Ta da! If you do attempt this, let me know! It’d be nice to see if I can actually help anyone out here.</p>
<p>Next up: an overview of the equipment I use to film a “Let’s Play”. Adios.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/inksguy.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/inksguy.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/inksguy.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/inksguy.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/inksguy.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/inksguy.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/inksguy.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/inksguy.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/inksguy.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/inksguy.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/inksguy.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/inksguy.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/inksguy.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/inksguy.wordpress.com/79/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inksguy.wordpress.com&amp;blog=6857181&amp;post=79&amp;subd=inksguy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://inksguy.wordpress.com/2009/08/02/xbox-360-headset-on-pc-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dae4692474b9d5efb2ba6a3064ff5239?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">InksGuy</media:title>
		</media:content>

		<media:content url="http://inksguy.files.wordpress.com/2009/08/02082009128_thumb.jpg" medium="image">
			<media:title type="html">02082009128</media:title>
		</media:content>

		<media:content url="http://inksguy.files.wordpress.com/2009/08/02082009130_thumb.jpg" medium="image">
			<media:title type="html">02082009130</media:title>
		</media:content>

		<media:content url="http://inksguy.files.wordpress.com/2009/08/02082009132_thumb.jpg" medium="image">
			<media:title type="html">02082009132</media:title>
		</media:content>

		<media:content url="http://inksguy.files.wordpress.com/2009/08/02082009134_thumb.jpg" medium="image">
			<media:title type="html">02082009134</media:title>
		</media:content>

		<media:content url="http://inksguy.files.wordpress.com/2009/08/02082009142_thumb.jpg" medium="image">
			<media:title type="html">02082009142</media:title>
		</media:content>

		<media:content url="http://inksguy.files.wordpress.com/2009/08/02082009147_thumb.jpg" medium="image">
			<media:title type="html">02082009147</media:title>
		</media:content>

		<media:content url="http://inksguy.files.wordpress.com/2009/08/02082009144_thumb.jpg" medium="image">
			<media:title type="html">02082009144</media:title>
		</media:content>

		<media:content url="http://inksguy.files.wordpress.com/2009/08/02082009148_thumb.jpg" medium="image">
			<media:title type="html">02082009148</media:title>
		</media:content>

		<media:content url="http://inksguy.files.wordpress.com/2009/08/02082009151_thumb.jpg" medium="image">
			<media:title type="html">02082009151</media:title>
		</media:content>

		<media:content url="http://inksguy.files.wordpress.com/2009/08/02082009155_thumb.jpg" medium="image">
			<media:title type="html">02082009155</media:title>
		</media:content>

		<media:content url="http://inksguy.files.wordpress.com/2009/08/02082009152_thumb.jpg" medium="image">
			<media:title type="html">02082009152</media:title>
		</media:content>

		<media:content url="http://inksguy.files.wordpress.com/2009/08/02082009156_thumb.jpg" medium="image">
			<media:title type="html">02082009156</media:title>
		</media:content>

		<media:content url="http://inksguy.files.wordpress.com/2009/08/02082009157_thumb.jpg" medium="image">
			<media:title type="html">02082009157</media:title>
		</media:content>

		<media:content url="http://inksguy.files.wordpress.com/2009/08/02082009161_thumb.jpg" medium="image">
			<media:title type="html">02082009161</media:title>
		</media:content>

		<media:content url="http://inksguy.files.wordpress.com/2009/08/02082009163_thumb.jpg" medium="image">
			<media:title type="html">02082009163</media:title>
		</media:content>

		<media:content url="http://inksguy.files.wordpress.com/2009/08/02082009164_thumb.jpg" medium="image">
			<media:title type="html">02082009164</media:title>
		</media:content>
	</item>
		<item>
		<title>Cat Muffin Radio</title>
		<link>http://inksguy.wordpress.com/2009/06/16/cat-muffin-radio/</link>
		<comments>http://inksguy.wordpress.com/2009/06/16/cat-muffin-radio/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 21:10:31 +0000</pubDate>
		<dc:creator>InksGuy</dc:creator>
				<category><![CDATA[Uncategorificated]]></category>

		<guid isPermaLink="false">http://inksguy.wordpress.com/?p=74</guid>
		<description><![CDATA[Another little project that I will  be continuing with next week is Cat Muffin Radio. We have a jingle and everything. It&#8217;s a weekly radio show brought to you from three Very English Fellows, under the pseudonyms InksGuy, Jibar and Voidseraph. Because we have something to hide. Basically, we do the news, a review of [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inksguy.wordpress.com&amp;blog=6857181&amp;post=74&amp;subd=inksguy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Another little project that I will  be continuing with next week is Cat Muffin Radio.</p>
<p>We have a jingle and everything.</p>
<p>It&#8217;s a weekly radio show brought to you from three Very English Fellows, under the pseudonyms InksGuy, Jibar and Voidseraph.</p>
<p>Because we have something to hide.</p>
<p>Basically, we do the news, a review of whatever video game we happen to be playing at the moment, and other general hilarity. In the format of a 1/2 hour podcast or &#8220;Radio show&#8221;.</p>
<p>Target audience is anyone who finds the need for some entertainment.</p>
<p>Anyway, if you&#8217;re into that sort of thing, check it out at <a title="http://catmuffin.wordpress.com/" href="http://catmuffin.wordpress.com/" target="_self">http://catmuffin.wordpress.com/</a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/inksguy.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/inksguy.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/inksguy.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/inksguy.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/inksguy.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/inksguy.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/inksguy.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/inksguy.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/inksguy.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/inksguy.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/inksguy.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/inksguy.wordpress.com/74/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/inksguy.wordpress.com/74/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/inksguy.wordpress.com/74/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inksguy.wordpress.com&amp;blog=6857181&amp;post=74&amp;subd=inksguy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://inksguy.wordpress.com/2009/06/16/cat-muffin-radio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dae4692474b9d5efb2ba6a3064ff5239?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">InksGuy</media:title>
		</media:content>
	</item>
		<item>
		<title>I Hate Chain E-Mail</title>
		<link>http://inksguy.wordpress.com/2009/05/12/i-hate-chain-e-mails/</link>
		<comments>http://inksguy.wordpress.com/2009/05/12/i-hate-chain-e-mails/#comments</comments>
		<pubDate>Tue, 12 May 2009 17:07:48 +0000</pubDate>
		<dc:creator>InksGuy</dc:creator>
				<category><![CDATA[Rants]]></category>

		<guid isPermaLink="false">http://inksguy.wordpress.com/?p=63</guid>
		<description><![CDATA[Graah! Angry blog! One of the things I really hate is chain E-Mail. Don&#8217;t like it. Not one bit. So, when I was sent this by a good friend who had also been hoaxed, I was a little bit annoyed&#8230; well&#8230; more than a little. The E-Mail included a statement accusing someone (who is more [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inksguy.wordpress.com&amp;blog=6857181&amp;post=63&amp;subd=inksguy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Graah! Angry blog!</p>
<p>One of the things I really hate is chain E-Mail. Don&#8217;t like it. Not one bit.</p>
<p>So, when I was sent this by a good friend who had also been hoaxed, I was a <em>little bit</em> annoyed&#8230; well&#8230; more than a little.</p>
<p>The E-Mail included a statement accusing someone (who is more than likely entirely innocent) of being a &#8220;hacker&#8221;. In the bad sense of the word. Black hat. I have removed the poor fellow&#8217;s name and E-Mail address, I imagine the original perpetrators have simply used this E-Mail as a vehicle for bullying him. And I am not going to continue that.</p>
<blockquote><p>&gt;&gt; THIS IS NO JOKE<br />
&gt;&gt;<br />
&gt;&gt; IF A PERSON CALLED &lt;Name and E-Mail address&gt;<br />
&gt;&gt; CONTACTS YOU THROUGH EMAIL DON&#8217;T OPEN THE MESSAGE.<br />
&gt;&gt; DELETE IT BECAUSE HE IS A HACKER!!<br />
&gt;&gt; TELL EVERYONE ON YOUR LIST BECAUSE IF SOMEBODY ON YOUR LIST<br />
&gt;&gt; ADDS HIM THEN YOU WILL GET HIM ON YOUR LIST. HE WILL FIGURE<br />
&gt;&gt; OUT YOUR ID COMPUTER ADDRESS, SO COPY AND PASTE THIS MESSAGE<br />
&gt;&gt; TO EVERYONE EVEN IF YOU DONT CARE FOR THEM AND FAST BECAUSE<br />
&gt;&gt; IF HE HACKS THEIR EMAIL HE HACKS YOUR MAIL TOO!!!!!&#8230;</p></blockquote>
<p>(It went on in this vein for quite a while.)</p>
<p>This particular E-Mail made use of scare-tactics and the claim that:</p>
<blockquote><p>&gt;&gt; Subsequently  you will LOSE EVERYTHING IN YOUR PC,<br />
&gt;&gt; And the person who sent it to you will gain access to your<br />
&gt;&gt; name, e-mail and password.<br />
&gt;&gt;<br />
&gt;&gt; This is a new virus which started to circulate on Saturday<br />
&gt;&gt; afternoon. AOL has already confirmed the severity, and the<br />
&gt;&gt; anti virus software&#8217;s are not capable of destroying it .</p></blockquote>
<p>It just makes me angry.</p>
<p>In all fairness, the sender wasn&#8217;t particularly computer-savvy, so the threat may have seemed real in that respect. However, the use of LOTS OF BLOCK CAPITALS and numerous grammatical errors were a dead give away.</p>
<p>(<em>I was going to</em><em> put an apostrophe before the &#8220;s&#8221; in &#8220;errors&#8221;, but I couldn&#8217;t bring myself to. Not even for the sake of humour&#8230;</em>)</p>
<p>In response, I wrote a rather ranty reply (whoo, triple alliteration high score!), which I now feel slightly bad about.  They <em>probably</em> didn&#8217;t deserve the brunt of my spam-induced wrath. Decide for yourself:</p>
<blockquote><p>Hi,</p>
<p>Sorry to break it to you, but this is absolute rot. Rubbish, balderdash, baloney. Tripe. Piffle. Numerous other synonyms.</p>
<p>All you have accomplished by sending it on is to perpetuate the original sender&#8217;s little chain spam e-mail.</p>
<p>The original E-Mail addresses are quite obviously faked, they are web-based E-Mail accounts easily made to look like official company addresses. I guarantee you, there is absolutely no function in existence that could allow the (wholly fictional) &#8220;hacker&#8221; mentioned in this E-Mail to perform the tasks &#8220;he&#8221; is reputed to be doing.</p>
<p>In addition, <strong>no legitimate company <span style="font-family:arial black,sans-serif;">ever</span> sends this sort of E-Mail</strong>. This particular type of chain E-mail hoax makes effective use of the lack of knowledge in non-computer-savvy users who perpetuate the message. The excessive use of block capitals is the first clue. In addition, the instruction to:</p>
<div class="im">
<p>&#8220;PLEASE SEND A COPY OF THIS E-MAIL TO ALL YOUR FRIENDS, And<br />
ask them to PASS IT ON IMMEDIATELY!&#8221;</p></div>
<p>is also absolute rubbish.</p>
<p>You are, in fact, more susceptible to the (currently) non-existant &#8220;virus&#8221; by sending this E-Mail on, because, in the sending of this E-Mail, you have passed on to me (and everyone else) the E-Mail addresses of everyone in the chain. And your own E-Mail address. And, presumably, mine.</p>
<p>Please, please, <strong>please</strong> don&#8217;t re-send chain E-Mail, especially rubbish ones like this.</p>
<p>-Sam, 12/05/2009 17:19<br />
(Because I care!)</p>
<p>PS: Sorry I&#8217;ve subjected you to my little rant, it rather touched a vein. <em>I</em> <em>really do not like spam</em>!</p></blockquote>
<p>So there you have it. Was it fair? Comment below to break or multiply my guilt!</p>
<p>I&#8217;m going to point you in the direction of <a title="http://www.breakthechain.org/" href="http://www.breakthechain.org/">http://www.breakthechain.org/</a>. They&#8217;re making an effort to educate people on the scummy mass of spam and chain, floating on the surface of molten pool of E-Mail. Read it.</p>
<p>Oh, and as an afterthought, <a href="http://timthefoolman.com/2006/12/07/3-strategies-for-getting-almost-no-spam/">this post</a> is very good too.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/inksguy.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/inksguy.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/inksguy.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/inksguy.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/inksguy.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/inksguy.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/inksguy.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/inksguy.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/inksguy.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/inksguy.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/inksguy.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/inksguy.wordpress.com/63/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/inksguy.wordpress.com/63/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/inksguy.wordpress.com/63/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inksguy.wordpress.com&amp;blog=6857181&amp;post=63&amp;subd=inksguy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://inksguy.wordpress.com/2009/05/12/i-hate-chain-e-mails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dae4692474b9d5efb2ba6a3064ff5239?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">InksGuy</media:title>
		</media:content>
	</item>
		<item>
		<title>Windows Live Writer</title>
		<link>http://inksguy.wordpress.com/2009/04/11/windows-live-writer/</link>
		<comments>http://inksguy.wordpress.com/2009/04/11/windows-live-writer/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 14:36:02 +0000</pubDate>
		<dc:creator>InksGuy</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Live Essentials]]></category>
		<category><![CDATA[Live Writer]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://inksguy.wordpress.com/2009/04/11/windows-live-writer/</guid>
		<description><![CDATA[Aha! I was wondering what this thing did… Windows Live Writer is part of the Live Essentials pack. I’m using it on Windows 7 at the moment. It’s kinda pretty… This is just a post for me to get a first impression of the software, and I’m posting it in the form of a little [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inksguy.wordpress.com&amp;blog=6857181&amp;post=59&amp;subd=inksguy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Aha! I was wondering what this thing did…</p>
<p>Windows Live Writer is part of the Live Essentials pack. I’m using it on Windows 7 at the moment. It’s kinda pretty…</p>
<p>This is just a post for me to get a first impression of the software, and I’m posting it in the form of a little review. </p>
<p>The first really nice feature I noticed was that it mirrors the WordPress Blog’s theme in the editor. That is to say, the basic two column layout I’ve got going on. This WYSIWYG type editor is a good improvement on the built-in WordPress blogging tool, which (at time of posting) only gives a fairly generic editing platform.</p>
<p>I also like the capability to embed videos, maps and so on.</p>
<p>Anyway, future posts will be coming from this program.</p>
<p>&#160;</p>
</p>
<p><a href="http://inksguy.files.wordpress.com/2009/04/image.png"><img style="border-bottom:0;border-left:0;display:inline;border-top:0;border-right:0;" title="Screenshot of publishing" border="0" alt="Screenshot of publishing" src="http://inksguy.files.wordpress.com/2009/04/image-thumb.png?w=640&#038;h=400" width="640" height="400" /></a></p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/inksguy.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/inksguy.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/inksguy.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/inksguy.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/inksguy.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/inksguy.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/inksguy.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/inksguy.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/inksguy.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/inksguy.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/inksguy.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/inksguy.wordpress.com/59/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/inksguy.wordpress.com/59/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/inksguy.wordpress.com/59/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inksguy.wordpress.com&amp;blog=6857181&amp;post=59&amp;subd=inksguy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://inksguy.wordpress.com/2009/04/11/windows-live-writer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dae4692474b9d5efb2ba6a3064ff5239?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">InksGuy</media:title>
		</media:content>

		<media:content url="http://inksguy.files.wordpress.com/2009/04/image-thumb.png" medium="image">
			<media:title type="html">Screenshot of publishing</media:title>
		</media:content>
	</item>
		<item>
		<title>Recording a Skype Conversation</title>
		<link>http://inksguy.wordpress.com/2009/03/30/recording-a-skype-conversation/</link>
		<comments>http://inksguy.wordpress.com/2009/03/30/recording-a-skype-conversation/#comments</comments>
		<pubDate>Sun, 29 Mar 2009 23:03:43 +0000</pubDate>
		<dc:creator>InksGuy</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Audacity]]></category>
		<category><![CDATA[Guide]]></category>
		<category><![CDATA[Recording]]></category>
		<category><![CDATA[Skype]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://inksguy.wordpress.com/?p=32</guid>
		<description><![CDATA[I use Audacity to record from Skype, and I can show you how to set it up. This guide is aimed at Windows people, as I don&#8217;t have a Mac, and can&#8217;t be bothered to boot into Ubuntu to test it in Linux&#8230; Download Audacity and Skype, if you don&#8217;t already have &#8216;em. Check you [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inksguy.wordpress.com&amp;blog=6857181&amp;post=32&amp;subd=inksguy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I use Audacity to record from Skype, and I can show you how to set it up. This guide is aimed at Windows people, as I don&#8217;t have a Mac, and can&#8217;t be bothered to boot into Ubuntu to test it in Linux&#8230;</p>
<ol>
<li>Download <a href="http://audacity.sourceforge.net/download/" target="_blank">Audacity</a> and <a href="http://www.skype.com/intl/en-gb/download/skype" target="_blank">Skype</a>, if you don&#8217;t already have &#8216;em.</li>
<li>Check you can record from Stereo Mix. Actually, that should have been #1&#8230;</li>
</ol>
<p>To do this, open up the Sound Volume control, in the tray. Click Options, Properties, then the radio button which allows you to adjust properties for recording.</p>
<p style="text-align:center;"><img class="aligncenter size-full wp-image-44" title="Sound Volume - Mix highlighted" src="http://inksguy.files.wordpress.com/2009/03/sndvol322.png?w=456&#038;h=450" alt="Sound Volume - Mix highlighted" width="456" height="450" /></p>
<p style="text-align:center;">
<ul>
<li>If you have a Stereo Mix check-box in there- Check it if it isn&#8217;t checked already, and press OK.</li>
<li>If you don&#8217;t see a Stereo Mix check-box in the box next to the Line in and Microphone check boxes, this could mean a couple of things. Either your Soundcard doesn&#8217;t support it, full stop (unlikely)&#8230; Or, you need to update the drivers. I found <a href="http://www.niharsworld.com/2008/05/28/no-stereo-mix-recording-option-here-are-few-solutions/" target="_blank">this site</a> particularly helpful, you might too. (If you have a Dell laptop with a Sigmatel card, use Option 2 on there!) Otherwise, check the card manufacturer&#8217;s site.</li>
</ul>
<p>Then, ensure that the stereo mix slider is dragged up full and selected.</p>
<p>3.  Open Audacity and Skype.</p>
<p>In Audacity, set the recording source to Stereo Mix:</p>
<p style="text-align:center;"><img class="size-full wp-image-39  aligncenter" title="Select Source" src="http://inksguy.files.wordpress.com/2009/03/audacitysource.png?w=347&#038;h=93" alt="Select Source" width="347" height="93" /></p>
<p>Then go to Skype, find someone to call, hit record in Audacity and WHAM!</p>
<p>You have yourself a recording. Export it as an MP3 or WAV to save. For MP3 you&#8217;ll need the encoding DLL, but Audacity provides a guide on how to get this.</p>
<p>Happy Skype recording!</p>
<p><strong>|<br />
</strong></p>
<p><strong>[EDIT:UPDATE]</strong></p>
<p>This fellow <a href="http://www.thecruftofmybrain.com/2009/03/31/record-skype-in-audacity-on-windows/" target="_blank">here</a> had a problem with an echo of his own voice&#8230; I had a think about it and decided it might be this:</p>
<p style="text-align:center;"><img class="size-full wp-image-52 aligncenter" title="audacityprefs" src="http://inksguy.files.wordpress.com/2009/03/audacityprefs.png?w=510&#038;h=433" alt="Software Playthrough" width="510" height="433" /></p>
<p>Software Playthrough will play the current track back out while still recording it. It&#8217;s not simultaneous because of the latency you get on the non-realtime Windows kernel&#8230;</p>
<p>In other words, there&#8217;s a slight delay. While handy in a studio environment, or if you&#8217;re wearing headphones, you should disable it when recording from Stereo Mix or you&#8217;ll just get an echo.</p>
<p>Preferences is accessible through the edit menu, or press Ctrl+P from in Audacity.</p>
<p>Oh- and if the Mic is picking up the speakers you&#8217;ll get much the same effect&#8230;</p>
<p>Of course, I could be completely wrong, barking up the wrong tree and just plain mad, but it&#8217;s working echolessly for me!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/inksguy.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/inksguy.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/inksguy.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/inksguy.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/inksguy.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/inksguy.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/inksguy.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/inksguy.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/inksguy.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/inksguy.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/inksguy.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/inksguy.wordpress.com/32/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/inksguy.wordpress.com/32/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/inksguy.wordpress.com/32/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inksguy.wordpress.com&amp;blog=6857181&amp;post=32&amp;subd=inksguy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://inksguy.wordpress.com/2009/03/30/recording-a-skype-conversation/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dae4692474b9d5efb2ba6a3064ff5239?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">InksGuy</media:title>
		</media:content>

		<media:content url="http://inksguy.files.wordpress.com/2009/03/sndvol322.png" medium="image">
			<media:title type="html">Sound Volume - Mix highlighted</media:title>
		</media:content>

		<media:content url="http://inksguy.files.wordpress.com/2009/03/audacitysource.png" medium="image">
			<media:title type="html">Select Source</media:title>
		</media:content>

		<media:content url="http://inksguy.files.wordpress.com/2009/03/audacityprefs.png" medium="image">
			<media:title type="html">audacityprefs</media:title>
		</media:content>
	</item>
		<item>
		<title>XBox 360 Headset on PC? &#8211; Part 1</title>
		<link>http://inksguy.wordpress.com/2009/03/28/xbox-360-headset-on-pc/</link>
		<comments>http://inksguy.wordpress.com/2009/03/28/xbox-360-headset-on-pc/#comments</comments>
		<pubDate>Sat, 28 Mar 2009 23:12:02 +0000</pubDate>
		<dc:creator>InksGuy</dc:creator>
				<category><![CDATA[XBox]]></category>
		<category><![CDATA[audio]]></category>
		<category><![CDATA[Electronics]]></category>
		<category><![CDATA[headset]]></category>
		<category><![CDATA[XBox 360]]></category>

		<guid isPermaLink="false">http://inksguy.wordpress.com/?p=20</guid>
		<description><![CDATA[A couple of weeks ago, I received a lovely new Resident Evil 5 XBox 360, which I pre-ordered from Game. But for some reason, I now find myself wondering about the potential uses of the wired headset that came with it, instead of actually playing on it. So, I ask myself: &#8220;How do I hook [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inksguy.wordpress.com&amp;blog=6857181&amp;post=20&amp;subd=inksguy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>A couple of weeks ago, I received a lovely new <a href="http://www.game.co.uk/Xbox360/Hardware/Console/~r339955/Xbox-360-Limited-Edition-Red-Elite-Console-with-Resident-Evil-5/" target="_blank">Resident Evil 5 XBox 360</a>, which I pre-ordered from Game.</p>
<p>But for some reason, I now find myself wondering about the potential uses of the wired headset that came with it, instead of actually playing on it.</p>
<p>So, I ask myself: &#8220;How do I hook it up to my laptop? I want to use it for Skype!&#8221;</p>
<p>The headset, for those who don&#8217;t already know, features a 2.5mm stereo jack which plugs into the wireless controller for use with online gaming. This makes it reasonably friendly for people who want to put it to other uses&#8230;</p>
<p>But- my laptop doesn&#8217;t have a 2.5mm stereo jack&#8230; It&#8217;s got a veritable wealth of standard 3.5mm ones, but no 2.5mm.</p>
<p>For reference, a picture. Taken with the less-than-trusty webcam:</p>
<div id="attachment_28" class="wp-caption aligncenter" style="width: 189px"><img class="size-full wp-image-28  " title="Jack size comparison" src="http://inksguy.files.wordpress.com/2009/03/picture-003.jpg?w=179&#038;h=173" alt="Jack size comparison" width="179" height="173" /><p class="wp-caption-text">6.35mm (1/4&quot;), 3.5mm, and 2.5mm Stereo Jacks.</p></div>
<p>If you have a mobile phone with a stereo jack for handsfree, chances are that&#8217;ll be a 2.5mm one. You could probably make calls with it. Hell, you could probably plug it in and use the Bluetooth Audio Service to connect it to the PC! But I don&#8217;t have one of those phones, so that wasn&#8217;t an option. [EDIT: Actually, I think phones have a 4 pole jack... but it might still work.]</p>
<p>I&#8217;ll go for the hard-wired approach:</p>
<p>Maplins Electronics was my first port of call. I quickly found what I was looking for. A female <a href="http://www.maplin.co.uk/Module.aspx?ModuleNo=1143" target="_blank">2.5mm stereo socket</a>.</p>
<p style="text-align:center;"><a href="http://www.maplin.co.uk/Module.aspx?ModuleNo=1143"><img class="aligncenter" title="2.5mm female" src="http://images.maplin.co.uk/300/ft93b.jpg" alt="" width="300" height="149" /></a></p>
<p>That sorts the connection of the headset onto something I can wire. Next, I need to split the Speaker and Microphone up.</p>
<p>Effectively, I need two <span class="fiveA"><a href="http://www.maplin.co.uk/Module.aspx?ModuleNo=1145" target="_blank">3.5mm Mono Jacks</a>- one for the speaker, one for the mic. Maplins again.</span></p>
<p style="text-align:center;"><span class="fiveA"><a href="http://www.maplin.co.uk/Module.aspx?ModuleNo=1145"><img class="aligncenter" title="3.5mm male" src="http://images.maplin.co.uk/300/hf80b.jpg" alt="" width="300" height="147" /></a><br />
</span></p>
<p>It should be fairly simple to sort out which connection is the mic and which is the speaker. I&#8217;ll test it by holding the wires to an audio signal source&#8230; my laptop, playing music out through the speaker output, for instance.</p>
<p>Anyway, I&#8217;ll solder it all together when I get the chance. Watch this space.</p>
<hr />
<p>So, want <a title="Part 2" href="http://inksguy.wordpress.com/2009/08/02/xbox-360-headset-on-pc-part-2/" target="_self">Part 2</a>?</p>
<p>&nbsp;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/inksguy.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/inksguy.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/inksguy.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/inksguy.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/inksguy.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/inksguy.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/inksguy.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/inksguy.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/inksguy.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/inksguy.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/inksguy.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/inksguy.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/inksguy.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/inksguy.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inksguy.wordpress.com&amp;blog=6857181&amp;post=20&amp;subd=inksguy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://inksguy.wordpress.com/2009/03/28/xbox-360-headset-on-pc/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dae4692474b9d5efb2ba6a3064ff5239?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">InksGuy</media:title>
		</media:content>

		<media:content url="http://inksguy.files.wordpress.com/2009/03/picture-003.jpg" medium="image">
			<media:title type="html">Jack size comparison</media:title>
		</media:content>

		<media:content url="http://images.maplin.co.uk/300/ft93b.jpg" medium="image">
			<media:title type="html">2.5mm female</media:title>
		</media:content>

		<media:content url="http://images.maplin.co.uk/300/hf80b.jpg" medium="image">
			<media:title type="html">3.5mm male</media:title>
		</media:content>
	</item>
		<item>
		<title>So, WordPress&#8230;</title>
		<link>http://inksguy.wordpress.com/2009/03/06/so-wordpress/</link>
		<comments>http://inksguy.wordpress.com/2009/03/06/so-wordpress/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 22:43:26 +0000</pubDate>
		<dc:creator>InksGuy</dc:creator>
				<category><![CDATA[Uncategorificated]]></category>
		<category><![CDATA[craziness]]></category>
		<category><![CDATA[first post]]></category>

		<guid isPermaLink="false">http://inksguy.wordpress.com/?p=3</guid>
		<description><![CDATA[Hello, good evening, and welcome to&#8230; You. You are looking at InksGuy&#8217;s Quasi-Pseudoblog, a blog which is sort of not a blog. Sort of. Where will it take you? &#62;North You can&#8217;t go that way! &#62;South Look, come on. Traverse the Blogosphere! &#62; _ Anyway, yes. I&#8217;m going to use this blog to post some [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inksguy.wordpress.com&amp;blog=6857181&amp;post=3&amp;subd=inksguy&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Hello, good evening, and welcome to&#8230;<br />
You.</p>
<p>You are looking at InksGuy&#8217;s Quasi-Pseudoblog, a blog which is sort of not a blog. Sort of.<br />
Where will it take you?</p>
<p>&gt;North<br />
You can&#8217;t go that way!</p>
<p>&gt;South<br />
Look, come on. Traverse the Blogosphere!</p>
<p>&gt; _</p>
<p>Anyway, yes. I&#8217;m going to use this blog to post some fairly random stuff- the only rule being it has to interest me.</p>
<p>Come back when I&#8217;ve posted something! Go on! Begone!</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/inksguy.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/inksguy.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/inksguy.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/inksguy.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/inksguy.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/inksguy.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/inksguy.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/inksguy.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/inksguy.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/inksguy.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/inksguy.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/inksguy.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/inksguy.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/inksguy.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=inksguy.wordpress.com&amp;blog=6857181&amp;post=3&amp;subd=inksguy&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://inksguy.wordpress.com/2009/03/06/so-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/dae4692474b9d5efb2ba6a3064ff5239?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">InksGuy</media:title>
		</media:content>
	</item>
	</channel>
</rss>
