<?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>ActiveSPLIT.com</title>
	<atom:link href="http://www.activesplit.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.activesplit.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Tue, 25 May 2010 07:36:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Move Wordpress to a new domain / location</title>
		<link>http://www.activesplit.com/move-wordpress-to-a-new-domain-location/</link>
		<comments>http://www.activesplit.com/move-wordpress-to-a-new-domain-location/#comments</comments>
		<pubDate>Mon, 24 May 2010 22:25:51 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[move wordpress]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[wp move]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=209</guid>
		<description><![CDATA[
How to move Wordpress to a new location in few steps.
- move files, addapt .htaccess, wp-config.php if needed
- backup database
- run the following queries (replace old_url.tld, new_url.tld with actual data)
&#160;
UPDATE wp_options SET option_value = replace(option_value, 'http://www.old_url.tld', 'http://www.new_url.tld') WHERE option_name = 'home' OR option_name = 'siteurl';
UPDATE wp_posts SET guid = replace(guid, 'http://www.old_url.tld','http://www.new_url.tld');
UPDATE wp_posts SET post_content = replace(post_content, [...]]]></description>
		<wfw:commentRss>http://www.activesplit.com/move-wordpress-to-a-new-domain-location/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Qmail &#8211; Enable/Disable ClamAV</title>
		<link>http://www.activesplit.com/qmail-enable-disable-clamav/</link>
		<comments>http://www.activesplit.com/qmail-enable-disable-clamav/#comments</comments>
		<pubDate>Mon, 19 Apr 2010 11:16:25 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=207</guid>
		<description><![CDATA[
The ClamAV scanning feature can be disabled in the qmail&#8217;s simcontrol configuration file. This will not disable the clamav daemon but will disable active scanning.
edit: /var/qmail/control/simcontrol
there should be text like this:
:clam=yes,spam=yes,spam_passthru=yes,attach=.vbs:.lnk:.scr:.wsh:.hta:.pif
what we need to do is to replace clam=yes with clam=no. If you don&#8217;t have this text insert it.
Next we need to run /var/qmail/bin/simscanmk to [...]]]></description>
		<wfw:commentRss>http://www.activesplit.com/qmail-enable-disable-clamav/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>qmail &amp; vpopmail &#8211; how to add domains and users</title>
		<link>http://www.activesplit.com/qmail-vpopmail-how-to-add-domains-and-users/</link>
		<comments>http://www.activesplit.com/qmail-vpopmail-how-to-add-domains-and-users/#comments</comments>
		<pubDate>Thu, 15 Apr 2010 14:42:51 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=204</guid>
		<description><![CDATA[
Using vpopmail you can easily add domains and users to your qmail configuration.
To add a domain:
$ vadddomain  domainname.tld
To remove a domain and all its mailboxes:
$ vdeldomain domainname.tld
To add a user mailbox on domainname.tld:
$ vadduser username@domainname.tld  userpassword
To remove a mailbox on domainname.tld:
$ vdeluser username@domainnaime.tld:
You can find more information on the Vpopmail Wiki Page.
]]></description>
		<wfw:commentRss>http://www.activesplit.com/qmail-vpopmail-how-to-add-domains-and-users/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL &#8211; Get the Top N of a Group</title>
		<link>http://www.activesplit.com/mysql-get-the-top-n-of-a-group/</link>
		<comments>http://www.activesplit.com/mysql-get-the-top-n-of-a-group/#comments</comments>
		<pubDate>Fri, 26 Mar 2010 09:43:08 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[group by]]></category>
		<category><![CDATA[having]]></category>
		<category><![CDATA[limit]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysql limit restriction]]></category>
		<category><![CDATA[query]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[top n]]></category>
		<category><![CDATA[top n of group]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=198</guid>
		<description><![CDATA[
Getting Top N of a group would be very easy if there just wasn&#8217;t that &#8216;LIMIT &#38; IN/ALL/ANY/SOME subquery&#8217; restriction. But there&#8217;s always some way around. Thx to Jon Armstrong from A little Noise for the code hint.

MYSQL table 'measurements'
&#124; Id &#124; Freq &#124; Level &#124; DateM
## Gets the last 2 measurements for each frequency
SELECT [...]]]></description>
		<wfw:commentRss>http://www.activesplit.com/mysql-get-the-top-n-of-a-group/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Linux- Recursively change permissions on files or directories only</title>
		<link>http://www.activesplit.com/linux-recursively-change-permissions-on-files-or-directories-only/</link>
		<comments>http://www.activesplit.com/linux-recursively-change-permissions-on-files-or-directories-only/#comments</comments>
		<pubDate>Thu, 25 Mar 2010 20:33:44 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[Unix/Linux]]></category>
		<category><![CDATA[0644]]></category>
		<category><![CDATA[0755]]></category>
		<category><![CDATA[chmod]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[file permissions]]></category>
		<category><![CDATA[folder permissions]]></category>
		<category><![CDATA[linux permissions]]></category>
		<category><![CDATA[permissions]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=190</guid>
		<description><![CDATA[
If you wondered how to change permissions recursively on files or folders only, here is the how to using the find command.
Change permissions recursively to directories only:
find /path/to/folder    -type d    -exec  chmod 0755   {}   \;
Change permissions recursively to files only:
find /path/to/folder    -type f    -exec  chmod 0644   {}   [...]]]></description>
		<wfw:commentRss>http://www.activesplit.com/linux-recursively-change-permissions-on-files-or-directories-only/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apache .htaccess &#8211; Allow / Deny access from certain IPs</title>
		<link>http://www.activesplit.com/apache-htaccess-allow-deny-access-from-certain-ips/</link>
		<comments>http://www.activesplit.com/apache-htaccess-allow-deny-access-from-certain-ips/#comments</comments>
		<pubDate>Mon, 01 Mar 2010 22:02:20 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[Unix/Linux]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[allow]]></category>
		<category><![CDATA[allow access by ip]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[deny]]></category>
		<category><![CDATA[deny access by ip]]></category>
		<category><![CDATA[htaccess]]></category>
		<category><![CDATA[ip access]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=187</guid>
		<description><![CDATA[
If  your website is under contruction and you want to allow access just to certain IP numbers, placing the following code in the .htaccess  file, in the website root directory, you can block access to everyone except the IP numbers you specify.
order deny,allow
deny from all
allow from 76.33.193.98
allow from 84.23.122.204
allow from 93.34.133.203
If you wish to deny access [...]]]></description>
		<wfw:commentRss>http://www.activesplit.com/apache-htaccess-allow-deny-access-from-certain-ips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Fabulous Logic Analyzer &#8211; Problems during port initialization</title>
		<link>http://www.activesplit.com/the-fabulous-logic-analyzer-problems-during-port-initialization/</link>
		<comments>http://www.activesplit.com/the-fabulous-logic-analyzer-problems-during-port-initialization/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 19:02:47 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[Electronics]]></category>
		<category><![CDATA[Microcontroller]]></category>
		<category><![CDATA[logic analyzer]]></category>
		<category><![CDATA[lpt]]></category>
		<category><![CDATA[parallel port]]></category>
		<category><![CDATA[parallel port initialization problem]]></category>
		<category><![CDATA[parallel port problem]]></category>
		<category><![CDATA[tfla]]></category>
		<category><![CDATA[the fabulous logic analyzer]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=183</guid>
		<description><![CDATA[
&#8220;TFLA-01 is a simple logic analyzer for the PC.  This one consists of a simple schematic which is attached on the PCs parallel port (a real parallel port is highly recommended, not a USB adapter) and which can analyse H and L levels of 8 inputs. On the PC, there&#8217;s running a graphical program which [...]]]></description>
		<wfw:commentRss>http://www.activesplit.com/the-fabulous-logic-analyzer-problems-during-port-initialization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Expand a Flash movie in height and width by 100%</title>
		<link>http://www.activesplit.com/expand-a-flash-movie-in-height-and-width-by-100/</link>
		<comments>http://www.activesplit.com/expand-a-flash-movie-in-height-and-width-by-100/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 20:00:34 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[Web]]></category>
		<category><![CDATA[100% flash]]></category>
		<category><![CDATA[expand]]></category>
		<category><![CDATA[expand flash]]></category>
		<category><![CDATA[flash]]></category>
		<category><![CDATA[flash movie]]></category>
		<category><![CDATA[full size]]></category>
		<category><![CDATA[full size flash]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=176</guid>
		<description><![CDATA[
To expand a flash movie (.swf) by 100%  you have to set its height and width to 100%. But that&#8217;s not enough. The parent container the movie is sitting in needs to be 100% w/h too. By default all DIVs are 100% wide but they don&#8217;t expand 100% in height. To accomplish this set the [...]]]></description>
		<wfw:commentRss>http://www.activesplit.com/expand-a-flash-movie-in-height-and-width-by-100/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>My Garmin Forerunner 305 doesn&#8217;t power on &#8211; It&#8217;s just DEAD!  The Solutions.</title>
		<link>http://www.activesplit.com/my-garmin-forerunner-305-doesnt-power-on-its-just-dead-solutions/</link>
		<comments>http://www.activesplit.com/my-garmin-forerunner-305-doesnt-power-on-its-just-dead-solutions/#comments</comments>
		<pubDate>Mon, 18 Jan 2010 12:51:28 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[Sports]]></category>
		<category><![CDATA[biking]]></category>
		<category><![CDATA[cycling]]></category>
		<category><![CDATA[firmware]]></category>
		<category><![CDATA[forerunner]]></category>
		<category><![CDATA[forerunner dead]]></category>
		<category><![CDATA[forerunner problem]]></category>
		<category><![CDATA[garmin]]></category>
		<category><![CDATA[garmin dead]]></category>
		<category><![CDATA[garmin doesnt power on]]></category>
		<category><![CDATA[garmin forerunner 305]]></category>
		<category><![CDATA[garmin forerunner freeze]]></category>
		<category><![CDATA[garmin forerunner frozen]]></category>
		<category><![CDATA[garmin forerunner no life]]></category>
		<category><![CDATA[hard reset]]></category>
		<category><![CDATA[running]]></category>
		<category><![CDATA[soft reset]]></category>
		<category><![CDATA[upgrade]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=152</guid>
		<description><![CDATA[
If you experienced the same problem as I did and your Garmin Forerunner 305 just doesn&#8217;t turn on then try one of the steps i describe below to bring it back to life. Beside not responding to any buttons the computer doesnt recognize it either when connected through the USB interface.
I&#8217;ll present you with a [...]]]></description>
		<wfw:commentRss>http://www.activesplit.com/my-garmin-forerunner-305-doesnt-power-on-its-just-dead-solutions/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Wordpress &#8211; Weird characters after wordpress upgrade</title>
		<link>http://www.activesplit.com/wordpress-weird-characters-after-wordpress-upgrade/</link>
		<comments>http://www.activesplit.com/wordpress-weird-characters-after-wordpress-upgrade/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 21:02:26 +0000</pubDate>
		<dc:creator>Nik</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[character]]></category>
		<category><![CDATA[charset]]></category>
		<category><![CDATA[collation]]></category>
		<category><![CDATA[encoding]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[strange]]></category>
		<category><![CDATA[unicode]]></category>
		<category><![CDATA[upgrage]]></category>
		<category><![CDATA[utf]]></category>
		<category><![CDATA[utf-8]]></category>
		<category><![CDATA[utf8]]></category>
		<category><![CDATA[weird]]></category>
		<category><![CDATA[wordpress character update]]></category>

		<guid isPermaLink="false">http://www.activesplit.com/?p=147</guid>
		<description><![CDATA[
If you see weird characters after upgrading your wordpress version, the reason for that might be wrong character encodings.
1. Easy solution:
- open wp-config.php for edit.
- make sure you have empty values for  define(’DB_CHARSET’, &#8221;); and define(&#8216;DB_COLLATE&#8217;, &#8221;);
2. Convert all tables to UTF-8
- follow these steps. not tested yet!
]]></description>
		<wfw:commentRss>http://www.activesplit.com/wordpress-weird-characters-after-wordpress-upgrade/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
