<?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>Aric.info &#187; Tweaks</title>
	<atom:link href="http://aric.info/category/tweaks/feed/" rel="self" type="application/rss+xml" />
	<link>http://aric.info</link>
	<description>Anything that happens to cross my life</description>
	<lastBuildDate>Sun, 12 Feb 2012 04:30:29 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Create multiple HP recovery disc sets</title>
		<link>http://aric.info/software/create-multiple-hp-recovery-disc-sets/</link>
		<comments>http://aric.info/software/create-multiple-hp-recovery-disc-sets/#comments</comments>
		<pubDate>Tue, 05 Oct 2010 15:29:12 +0000</pubDate>
		<dc:creator>Aric</dc:creator>
				<category><![CDATA[Software]]></category>
		<category><![CDATA[Tweaks]]></category>

		<guid isPermaLink="false">http://aric.info/?p=82</guid>
		<description><![CDATA[A simple method to bypass HP&#8217;s limit restriction on the number of recovery sets is to simply delete all instances of &#8220;hpcd.sys&#8221; or &#8220;hpdrcu.prc&#8221;. Credits to TheFakeGeek.com]]></description>
			<content:encoded><![CDATA[<table border="0">
<tbody>
<tr>
<th>
<p style="text-align: left;">A simple method to bypass HP&#8217;s limit restriction on the number of recovery sets is to simply delete all instances of &#8220;hpcd.sys&#8221; or &#8220;hpdrcu.prc&#8221;.</p>
<p style="text-align: left;">Credits to <a href="http://www.thefakegeek.com/2008/07/tweaks-make-more-then-one-recovery-disc-on-hps/">TheFakeGeek.com</a></p>
</th>
<th><a href="http://aric.info/blog/wp-content/uploads/2010/10/cd-spindle.jpg"><img class="size-full wp-image-85 alignright" title="cd spindle" src="http://aric.info/blog/wp-content/uploads/2010/10/cd-spindle.jpg" alt="" width="180" height="180" /></a></th>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://aric.info/software/create-multiple-hp-recovery-disc-sets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Quickly Resize Browser Window</title>
		<link>http://aric.info/tweaks/quickly-resize-browser-window/</link>
		<comments>http://aric.info/tweaks/quickly-resize-browser-window/#comments</comments>
		<pubDate>Sat, 20 Mar 2010 13:36:00 +0000</pubDate>
		<dc:creator>Aric</dc:creator>
				<category><![CDATA[Tweaks]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[javascript]]></category>

		<guid isPermaLink="false">http://aric.info/?p=27</guid>
		<description><![CDATA[Thanks to the sick deal Joe passed onto me I&#8217;ve replaced my 19-inch monitor with a 22-inch wide screen monitor. I&#8217;ve opted to use my 19-inch as my primary monitor in the past due to not having a real need to complete everyday tasks in my 21-inch monitor, instead I&#8217;d only use the larger monitor [...]]]></description>
			<content:encoded><![CDATA[<p>Thanks to the sick deal Joe passed onto me I&#8217;ve replaced my 19-inch monitor with a 22-inch wide screen monitor. I&#8217;ve opted to use my 19-inch as my primary monitor in the past due to not having a real need to complete everyday tasks in my 21-inch monitor, instead I&#8217;d only use the larger monitor for <a title="Windows Media Center" href="http://www.microsoft.com/windows/windows-media-center/default.aspx" target="_blank">MCE</a>, <a title="Justin.Tv" href="http://www.justin.tv" target="_blank">Justin.tv</a>, <a title="Hulu" href="http://www.hulu.com">Hulu</a> and movies. I&#8217;ve noticed a large number of websites choose to develop only one layout which normally is geared to include those with much lower resolutions.  For those with resolutions nearly double the majority(<img src="file:///C:/Users/Aric/AppData/Local/Temp/moz-screenshot.png" alt="" />1024×768?) these layouts result in large empty spaces on the sides of the webpage, leaving the web browser looking rather lonely.</p>
<p><a href="http://aric.info/blog/wp-content/uploads/2010/03/webbrowser.jpg"><img class="size-medium wp-image-32  alignleft" title="lonely webbrowser" src="http://aric.info/blog/wp-content/uploads/2010/03/webbrowser-300x169.jpg" alt="lonely" width="180" height="101" /></a> =&gt; <a href="http://aric.info/blog/wp-content/uploads/2010/03/webbrowser2.jpg"><img class="size-medium wp-image-34" title="webbrowser2" src="http://aric.info/blog/wp-content/uploads/2010/03/webbrowser2-300x169.jpg" alt="Resized browser" width="180" height="101" /></a></p>
<p>Here are a few javascript links which will resize the width of the browser window and center the position of it.</p>
<p>In firefox: right click on the link &gt; &#8216;Bookmark This Link&#8217;</p>
<p><a title="Resize window to 1024" href="javascript: var x=1024; window.resizeTo(x,screen.availHeight); window.moveTo((screen.width-x)/2,0);">Resize window to 1024</a> =&gt; 1024 x 768<br />
<a title="Resize window to 1280" href="javascript: var x=1280; window.resizeTo(x,screen.availHeight); window.moveTo((screen.width-x)/2,0);">Resize window to 1280</a> =&gt; 1280 x 800<br />
<a title="Resize window to 1440" href="javascript: var x=1440; window.resizeTo(x,screen.availHeight); window.moveTo((screen.width-x)/2,0);">Resize window to 1440</a> =&gt; 1440 x 900<br />
<a title="Resize window to 1680" href="javascript: var x=1680; window.resizeTo(x,screen.availHeight); window.moveTo((screen.width-x)/2,0);">Resize window to 1680</a> =&gt; 1680 x 1050</p>
<p>If you wish to modify the javascript: <a href="javascript: alert('Height: '+window.innerWidth+'   Width: '+window.innerHeight+'  Position: '+window.screenX+'x'+window.screenY);">Get current height, width and position.</a></p>
<p>Edit: Just noticed there is <a title="Firesizer" href="https://addons.mozilla.org/en-US/firefox/addon/5792" target="_blank">an addon for firefox</a> to do similar.</p>
]]></content:encoded>
			<wfw:commentRss>http://aric.info/tweaks/quickly-resize-browser-window/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

