<?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>nooblet.org</title>
	<atom:link href="http://www.nooblet.org/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nooblet.org/blog</link>
	<description>not just your average nub</description>
	<lastBuildDate>Sun, 29 Jan 2012 21:04:12 +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>Zabbix Unsupported Items Status</title>
		<link>http://www.nooblet.org/blog/2012/zabbix-unsupported-items-status/</link>
		<comments>http://www.nooblet.org/blog/2012/zabbix-unsupported-items-status/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 11:29:07 +0000</pubDate>
		<dc:creator>stalks</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[zabbix]]></category>

		<guid isPermaLink="false">http://www.nooblet.org/blog/?p=468</guid>
		<description><![CDATA[Following on from the zabbix status script, I have put togethor another script to list any unsupported items on agents. For an item to go unsupported, it usually means something is wrong with the agent, so I add this script to /etc/cron.hourly. The SQL query to get the list of unsupported items is, SELECT hosts.host [...]]]></description>
			<content:encoded><![CDATA[<p>Following on from the <a href="http://www.nooblet.org/blog/2011/zabbix-trigger-summary/" title="Zabbix Trigger Summary by Email">zabbix status script</a>, I have put togethor another script to list any unsupported items on agents.</p>
<p>For an item to go unsupported, it usually means something is wrong with the agent, so I add this script to /etc/cron.hourly.</p>
<p>The SQL query to get the list of unsupported items is,</p>
<blockquote><p><code>SELECT<br />
        hosts.host AS hostname,<br />
        items.description AS item,<br />
        items.key_ AS "key"<br />
FROM<br />
        items<br />
RIGHT JOIN<br />
        hosts ON items.hostid=hosts.hostid<br />
WHERE<br />
        items.status = 3;</code></p></blockquote>
<h3>Download</h3>
Note: There is a file embedded within this post, please visit this post to download the file.
]]></content:encoded>
			<wfw:commentRss>http://www.nooblet.org/blog/2012/zabbix-unsupported-items-status/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>backuppc: &#8220;failures that need attention&#8221; &#8212; remove entry</title>
		<link>http://www.nooblet.org/blog/2012/backuppc-failures-that-need-attention-remove-entry/</link>
		<comments>http://www.nooblet.org/blog/2012/backuppc-failures-that-need-attention-remove-entry/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 09:37:20 +0000</pubDate>
		<dc:creator>stalks</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[backuppc]]></category>

		<guid isPermaLink="false">http://www.nooblet.org/blog/?p=458</guid>
		<description><![CDATA[A backup failed so I disabled the host, but the status page still listed the failure. To delete this entry: Stop backuppc [ /etc/init.d/backuppc stop ] Search /var/lib/backuppc/log/status.pl for the failed host and delete the entry. Restart backuppc [ /etc/init.d/backuppc start ]]]></description>
			<content:encoded><![CDATA[<p>A backup failed so I disabled the host, but the status page still listed the failure.</p>
<p>To delete this entry:</p>
<blockquote><p>Stop backuppc [ /etc/init.d/backuppc stop ]<br />
Search /var/lib/backuppc/log/status.pl for the failed host and delete the entry.<br />
Restart backuppc [ /etc/init.d/backuppc start ]</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.nooblet.org/blog/2012/backuppc-failures-that-need-attention-remove-entry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>backuppc: Use of qw(&#8230;) as parentheses is deprecated</title>
		<link>http://www.nooblet.org/blog/2012/backuppc-use-of-qw-as-parentheses-is-deprecated/</link>
		<comments>http://www.nooblet.org/blog/2012/backuppc-use-of-qw-as-parentheses-is-deprecated/#comments</comments>
		<pubDate>Tue, 03 Jan 2012 08:50:55 +0000</pubDate>
		<dc:creator>stalks</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[backuppc]]></category>
		<category><![CDATA[perl]]></category>

		<guid isPermaLink="false">http://www.nooblet.org/blog/?p=456</guid>
		<description><![CDATA[If you upgrade Perl to 5.13.5 or beyond, backuppc will begin to spew this warning at every oppurtunity. Debian/wheezy currently has these warnings on startup and in backuppc logs. Debian bug #650522 suggests surrounding each use of qw(&#8230;) with rounded parenthesis: (qw(&#8230;)). There are a lot these used throughout backuppc, so I took a slightly [...]]]></description>
			<content:encoded><![CDATA[<p>If you upgrade Perl to 5.13.5 or beyond, backuppc will begin to spew this warning at every oppurtunity. Debian/wheezy currently has these warnings on startup and in backuppc logs.</p>
<p>Debian bug <a href="http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=650522" title="Debian bug report #650522" target="_blank">#650522</a> suggests surrounding each use of qw(&#8230;) with rounded parenthesis: (qw(&#8230;)). There are a lot these used throughout backuppc, so I took a slightly less ingenious but just as effective route.</p>
<p>By adding: &#8220;<code>no warnings 'deprecated';</code>&#8221; to the beginning of each file that uses qw(&#8230;), the warnings are suppressed. This change can be scripted by using the following one-liner:</p>
<blockquote><p><code>grep -ril 'qw(' /usr/share/backuppc/lib/BackupPC/|while read file; do sed -i "1i no warnings 'deprecated';" $file; done</code></p></blockquote>
<p>The location /usr/share/backuppc/lib/BackupPC/ is used on Debian/wheezy and may need adjusting for other distros.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nooblet.org/blog/2012/backuppc-use-of-qw-as-parentheses-is-deprecated/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zabbix Trigger Summary by Email</title>
		<link>http://www.nooblet.org/blog/2011/zabbix-trigger-summary/</link>
		<comments>http://www.nooblet.org/blog/2011/zabbix-trigger-summary/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 16:34:40 +0000</pubDate>
		<dc:creator>stalks</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[zabbix]]></category>

		<guid isPermaLink="false">http://www.nooblet.org/blog/?p=442</guid>
		<description><![CDATA[With quite a few flapping triggers on Zabbix I wanted to have a daily summary of active triggers. Following a few posts on the Zabbix forums I made a quick and dirty bash script. Download]]></description>
			<content:encoded><![CDATA[<p>With quite a few flapping triggers on Zabbix I wanted to have a daily summary of active triggers. Following a few posts on the Zabbix forums I made a quick and dirty bash script.</p>
<p><a rel="lightbox" href="/images/misc/wordpress/2011/zabbix-trigger-summary/image1.png"><img border="1" src="/images/misc/wordpress/2011/zabbix-trigger-summary/image1_small.png" alt="email example" /></a></p>
<h3>Download</h3>
Note: There is a file embedded within this post, please visit this post to download the file.
]]></content:encoded>
			<wfw:commentRss>http://www.nooblet.org/blog/2011/zabbix-trigger-summary/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Save space after installing Windows 7 Service Pack</title>
		<link>http://www.nooblet.org/blog/2011/save-space-after-installing-windows-7-service-pack/</link>
		<comments>http://www.nooblet.org/blog/2011/save-space-after-installing-windows-7-service-pack/#comments</comments>
		<pubDate>Sat, 26 Nov 2011 17:48:21 +0000</pubDate>
		<dc:creator>stalks</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.nooblet.org/blog/?p=437</guid>
		<description><![CDATA[After installing a service pack for Windows, some files are left behind so that you can uninstall the service pack. If you are sure you want to keep the service pack (most people are) you can save 2-3GB of space by removing these backup files. In an elevated command prompt, run the following command: DISM [...]]]></description>
			<content:encoded><![CDATA[<p>After installing a service pack for Windows, some files are left behind so that you can uninstall the service pack. If you are sure you want to keep the service pack (most people are) you can save 2-3GB of space by removing these backup files.</p>
<p>In an <a href="/blog/2011/elevated-command-prompt">elevated command prompt</a>, run the following command:</p>
<blockquote><p><code>DISM /online /cleanup-Image /spsuperseded</code></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.nooblet.org/blog/2011/save-space-after-installing-windows-7-service-pack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Elevated Command Prompt</title>
		<link>http://www.nooblet.org/blog/2011/elevated-command-prompt/</link>
		<comments>http://www.nooblet.org/blog/2011/elevated-command-prompt/#comments</comments>
		<pubDate>Sat, 26 Nov 2011 17:44:57 +0000</pubDate>
		<dc:creator>stalks</dc:creator>
				<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.nooblet.org/blog/?p=430</guid>
		<description><![CDATA[In order to get a command prompt with admin rights in Windows 7 or Vista, Click Start Menu Type &#8220;cmd&#8221; Press Alt+Enter or Click Start Menu Type &#8220;cmd&#8221; Right click &#8220;cmd.exe&#8221; Click &#8220;Run As Administrator&#8221;]]></description>
			<content:encoded><![CDATA[<p>In order to get a command prompt with admin rights in Windows 7 or Vista,</p>
<blockquote><ol>
<li>Click Start Menu</li>
<li>Type &#8220;cmd&#8221;</li>
<li>Press Alt+Enter</li>
</ol>
</blockquote>
<p>or</p>
<blockquote><ol>
<li>Click Start Menu</li>
<li>Type &#8220;cmd&#8221;</li>
<li>Right click &#8220;cmd.exe&#8221;</li>
<li>Click &#8220;Run As Administrator&#8221;</li>
</ol>
</blockquote>
<p><img src="/images/misc/wordpress/2011/elevated-command-prompt/start-menu.png" border="1"/></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nooblet.org/blog/2011/elevated-command-prompt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>RA3 ModSDK &#8211; BinaryAssetBuilder has stopped working</title>
		<link>http://www.nooblet.org/blog/2011/red-alert-3-modding-binaryassetbuilder-has-stopped-working/</link>
		<comments>http://www.nooblet.org/blog/2011/red-alert-3-modding-binaryassetbuilder-has-stopped-working/#comments</comments>
		<pubDate>Sun, 14 Aug 2011 00:28:46 +0000</pubDate>
		<dc:creator>stalks</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[BinaryAssetBuilder]]></category>
		<category><![CDATA[mod]]></category>
		<category><![CDATA[ra3]]></category>
		<category><![CDATA[red alert]]></category>
		<category><![CDATA[x64]]></category>

		<guid isPermaLink="false">http://www.nooblet.org/blog/?p=420</guid>
		<description><![CDATA[If you are using a 64-bit version of Windows 7 or Vista then the shipped version of BinaryAssetBuilder with the Red Alert 3 Mod SDK will crash when trying to build your RA3 mod. Nevermind. Here is a 64-bit friendly version. Download]]></description>
			<content:encoded><![CDATA[<p>If you are using a 64-bit version of Windows 7 or Vista then the shipped version of BinaryAssetBuilder with the Red Alert 3 Mod SDK will crash when trying to build your RA3 mod.</p>
<p>Nevermind. Here is a 64-bit friendly version.</p>
<h2>Download</h2>
Note: There is a file embedded within this post, please visit this post to download the file.
]]></content:encoded>
			<wfw:commentRss>http://www.nooblet.org/blog/2011/red-alert-3-modding-binaryassetbuilder-has-stopped-working/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Red Alert 3 &#8211; Black screen on starup</title>
		<link>http://www.nooblet.org/blog/2011/red-alert-3-black-screen-on-starup/</link>
		<comments>http://www.nooblet.org/blog/2011/red-alert-3-black-screen-on-starup/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 12:03:06 +0000</pubDate>
		<dc:creator>stalks</dc:creator>
				<category><![CDATA[Games]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[black]]></category>
		<category><![CDATA[red alert]]></category>

		<guid isPermaLink="false">http://www.nooblet.org/blog/?p=410</guid>
		<description><![CDATA[If you&#8217;ve just installed Red Alert 3 on Windows 7 then you may be presented with a simple black screen on startup, that just freezes there. Navigate to the Data folder, ie. C:\Program Files\Electronic Arts\Red Alert 3\Data Rename the Movies folder to &#8220;Movies.renamed&#8221; Start up the game Set your resolution to the same as your [...]]]></description>
			<content:encoded><![CDATA[<p>If you&#8217;ve just installed Red Alert 3 on Windows 7 then you may be presented with a simple black screen on startup, that just freezes there.</p>
<ol>
<li>Navigate to the Data folder, ie. C:\Program Files\Electronic Arts\Red Alert 3\Data</li>
<li>Rename the Movies folder to &#8220;Movies.renamed&#8221;</li>
<li>Start up the game</li>
<li>Set your resolution to the same as your desktop</li>
<li>Apply the settings and quit the game</li>
<li>Rename the Movies directory back to &#8220;Movies&#8221;</li>
<li>Start up the game and it should work</li>
</ol>
<p>YMMV.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nooblet.org/blog/2011/red-alert-3-black-screen-on-starup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Disable NTFS last access time</title>
		<link>http://www.nooblet.org/blog/2011/disable-ntfs-last-access-time/</link>
		<comments>http://www.nooblet.org/blog/2011/disable-ntfs-last-access-time/#comments</comments>
		<pubDate>Sat, 06 Aug 2011 15:14:17 +0000</pubDate>
		<dc:creator>stalks</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[ntfs]]></category>
		<category><![CDATA[registry]]></category>

		<guid isPermaLink="false">http://www.nooblet.org/blog/?p=406</guid>
		<description><![CDATA[Small increase in performance by having NTFS not note down the time of each file access. Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem] "NtfsDisableLastAccessUpdate"=dword:00000001 Download]]></description>
			<content:encoded><![CDATA[<p>Small increase in performance by having NTFS not note down the time of each file access.</p>
<blockquote><p><code>Windows Registry Editor Version 5.00</p>
<p>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\FileSystem]<br />
"NtfsDisableLastAccessUpdate"=dword:00000001</code></p></blockquote>
<h3>Download</h3>
Note: There is a file embedded within this post, please visit this post to download the file.
]]></content:encoded>
			<wfw:commentRss>http://www.nooblet.org/blog/2011/disable-ntfs-last-access-time/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Matching Microsoft Exchange with ieTab for Firefox</title>
		<link>http://www.nooblet.org/blog/2011/matching-microsoft-exchange-with-ietab-for-firefox/</link>
		<comments>http://www.nooblet.org/blog/2011/matching-microsoft-exchange-with-ietab-for-firefox/#comments</comments>
		<pubDate>Tue, 02 Aug 2011 11:35:40 +0000</pubDate>
		<dc:creator>stalks</dc:creator>
				<category><![CDATA[Other]]></category>
		<category><![CDATA[exchange]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[ietab]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://www.nooblet.org/blog/?p=404</guid>
		<description><![CDATA[The following regex matches Exchange url&#8217;s so that it uses Internet Explorer for Exchange. /^https?:\/\/[^\/]*\/([Ee](xchange&#124;xchweb)&#124;owa)(\/.*)*/]]></description>
			<content:encoded><![CDATA[<p>The following regex matches Exchange url&#8217;s so that it uses Internet Explorer for Exchange.<br />
<blockquote><code>/^https?:\/\/[^\/]*\/([Ee](xchange|xchweb)|owa)(\/.*)*/</code></p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.nooblet.org/blog/2011/matching-microsoft-exchange-with-ietab-for-firefox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

