<?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>BlogSpot</title>
	<atom:link href="http://www.grewe.ca/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.grewe.ca</link>
	<description>&#34;Hello, World!&#34;</description>
	<lastBuildDate>Wed, 09 May 2012 08:00:38 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>bf3stats API Call Example</title>
		<link>http://www.grewe.ca/bf3stats-api-call-example/</link>
		<comments>http://www.grewe.ca/bf3stats-api-call-example/#comments</comments>
		<pubDate>Mon, 26 Mar 2012 19:37:47 +0000</pubDate>
		<dc:creator>Sebastian</dc:creator>
				<category><![CDATA[bf3stats]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.grewe.ca/?p=123</guid>
		<description><![CDATA[As I have seen a couple of google searches hitting my page looking for some easy bf3stats API example here some code. It is pretty much the same in my bf3stats page and it gives you an idea how easy &#8230; <a href="http://www.grewe.ca/bf3stats-api-call-example/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As I have seen a couple of google searches hitting my page looking for some easy bf3stats API example here some code. It is pretty much the same in my bf3stats page and it gives you an idea how easy it is to fetch the data from their API.</p>
<pre class="brush: php; title: Code; notranslate">
 $postdata['players'] = json_encode($players); // Player names in an array
 $postdata['opt'] = json_encode($options); // Various options described on the bf3stats API page

$c = curl_init('http://api.bf3stats.com/pc/playerlist/');
 curl_setopt($c, CURLOPT_HEADER, false);
 curl_setopt($c, CURLOPT_POST, true);
 curl_setopt($c, CURLOPT_USERAGENT, 'BF3StatsAPI/0.1');
 curl_setopt($c, CURLOPT_HTTPHEADER, array('Expect:'));
 curl_setopt($c, CURLOPT_RETURNTRANSFER, true);
 curl_setopt($c, CURLOPT_POSTFIELDS, $postdata);
 $data = curl_exec($c); // Holds you result as an array
 $statuscode = curl_getinfo($c, CURLINFO_HTTP_CODE);
 $errormsg = curl_error($c);
 curl_close($c);
</pre>
<p>&nbsp;</p>
<p>Obviously this is just the CURL call without any error handling or additional checks. But that&#8217;s all there is to grabbing player data from the API. My page then uses all that data to come up with all the statistics you can see. For details refer to the bf3stats.class.php in the bf3stats project.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.grewe.ca/bf3stats-api-call-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bf3stats Version 0.0.8 Released</title>
		<link>http://www.grewe.ca/bf3stats-version-0-0-8-released/</link>
		<comments>http://www.grewe.ca/bf3stats-version-0-0-8-released/#comments</comments>
		<pubDate>Thu, 01 Mar 2012 09:01:16 +0000</pubDate>
		<dc:creator>Sebastian</dc:creator>
				<category><![CDATA[bf3stats]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.grewe.ca/?p=118</guid>
		<description><![CDATA[Another update to bf3stats. Please not that there were a lot of template changes in the past releases. If you are using a modified version please make sure to create a copy first before installing the updates. The configuration format &#8230; <a href="http://www.grewe.ca/bf3stats-version-0-0-8-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Another update to bf3stats. Please not that there were a lot of template changes in the past releases. If you are using a modified version please make sure to create a copy first before installing the updates. The configuration format has also changed a bit &#8211; make sure you mirror thoses changes into your own configuration.</p>
<p>Download the source on the <a href="http://www.grewe.ca/projects/bf3stats">bf3stats Page</a>.</p>
<p><strong>Version 0.0.8</strong></p>
<ul>
<li>bugfix for memcache config call during update</li>
<li>additional config variable used in update process outside cronjob</li>
<li>moved forced update to its own page</li>
<li>cronjob updated to use proper configuration variables</li>
<li>cronjob updated to store a list of already updated players in the past 60 minutes to conserve update slots</li>
<li>removed darkpro template and files to avoid confusion</li>
<li>made bf3stats the default template</li>
<li>renamed config for memcache to cache to avoid confusion</li>
</ul>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.grewe.ca/bf3stats-version-0-0-8-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Battlefield 3 &#8211; Upcoming Update</title>
		<link>http://www.grewe.ca/battlefield-3-upcoming-update/</link>
		<comments>http://www.grewe.ca/battlefield-3-upcoming-update/#comments</comments>
		<pubDate>Thu, 01 Mar 2012 07:19:28 +0000</pubDate>
		<dc:creator>Sebastian</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Bf3]]></category>
		<category><![CDATA[update]]></category>

		<guid isPermaLink="false">http://www.grewe.ca/?p=114</guid>
		<description><![CDATA[We already knew for a while that DICE is working on an update for Battlefield 3. For those wondering why this is taking so long: Apparently they decided to make it a large one this time fixing a lot of &#8230; <a href="http://www.grewe.ca/battlefield-3-upcoming-update/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We already knew for a while that DICE is working on an update for Battlefield 3. For those wondering why this is taking so long: Apparently they decided to make it a large one this time fixing a lot of issues the community has been complaining about. It seems that DICE listens to the rants. See the full list of confirmed fixes in their change log here:</p>
<p><a href="http://t.co/vsQpXG9d">Battlefield 3 Changelog</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.grewe.ca/battlefield-3-upcoming-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Battlefield 3 DLC in playtesting at DICE</title>
		<link>http://www.grewe.ca/battlefield-3-dlc-in-playtesting-at-dice/</link>
		<comments>http://www.grewe.ca/battlefield-3-dlc-in-playtesting-at-dice/#comments</comments>
		<pubDate>Thu, 01 Mar 2012 07:16:28 +0000</pubDate>
		<dc:creator>Sebastian</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[Bf3]]></category>
		<category><![CDATA[DLC]]></category>

		<guid isPermaLink="false">http://www.grewe.ca/?p=112</guid>
		<description><![CDATA[Apparently DICE is doing some internal play testing on the upcoming (but yet unannounced) DLC for Battlefield 3: http://t.co/SF93n1km This is great news! Hopefully they will follow their earlier DLCs and make them worth it. I would think that play &#8230; <a href="http://www.grewe.ca/battlefield-3-dlc-in-playtesting-at-dice/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Apparently DICE is doing some internal play testing on the upcoming (but yet unannounced) DLC for Battlefield 3:</p>
<p>http://t.co/SF93n1km</p>
<p>This is great news! Hopefully they will follow their earlier DLCs and make them worth it. I would think that play testing a DLC means a larger amount of content to be verified for release.</p>
<p>Defiantly looking forward to it! Thanks to BF3 Blog for the heads up.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.grewe.ca/battlefield-3-dlc-in-playtesting-at-dice/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mad World Entertainment using bf3stats</title>
		<link>http://www.grewe.ca/mad-world-entertainment-using-bf3stats/</link>
		<comments>http://www.grewe.ca/mad-world-entertainment-using-bf3stats/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 13:36:47 +0000</pubDate>
		<dc:creator>Sebastian</dc:creator>
				<category><![CDATA[bf3stats]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.grewe.ca/?p=110</guid>
		<description><![CDATA[MWE is now using bf3stats to track their users! Thanks for the the support of bf3stats. I added you to the list of active users!]]></description>
			<content:encoded><![CDATA[<p>MWE is now using bf3stats to track their users! Thanks for the the support of bf3stats. I added you to the list of active users!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.grewe.ca/mad-world-entertainment-using-bf3stats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bf3stats Version 0.0.7 Released</title>
		<link>http://www.grewe.ca/bf3stats-version-0-0-7-released/</link>
		<comments>http://www.grewe.ca/bf3stats-version-0-0-7-released/#comments</comments>
		<pubDate>Wed, 25 Jan 2012 08:37:10 +0000</pubDate>
		<dc:creator>Sebastian</dc:creator>
				<category><![CDATA[bf3stats]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.grewe.ca/?p=107</guid>
		<description><![CDATA[Hey readers, I released a new version of bf3stats including a new popup for Accuracy and disabling memcache by default in the configuration (since it&#8217;s not often used on shared hosts). Getting close to a final version with only a &#8230; <a href="http://www.grewe.ca/bf3stats-version-0-0-7-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hey readers,</p>
<p>I released a new version of bf3stats including a new popup for Accuracy and disabling memcache by default in the configuration (since it&#8217;s not often used on shared hosts).</p>
<p>Getting close to a final version with only a few things left to do to meet my roadmap.</p>
<p><strong>Changelog</strong></p>
<ul>
<li>disable memcache by default</li>
<li>only enable smarty cache when memcache is disabled</li>
<li>disable smarty cache by default if memcache is not used</li>
<li>split up the statistics on their own templates, including them on the default template for home</li>
<li>added accuracy popup to show top 10 accuarcy for weapons</li>
<li>moved best ribbon and medal count to best ribbon name line</li>
</ul>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.grewe.ca/bf3stats-version-0-0-7-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bf3stats Version 0.0.6 Released</title>
		<link>http://www.grewe.ca/bf3stats-version-0-0-6-released/</link>
		<comments>http://www.grewe.ca/bf3stats-version-0-0-6-released/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 12:26:34 +0000</pubDate>
		<dc:creator>Sebastian</dc:creator>
				<category><![CDATA[bf3stats]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.grewe.ca/?p=101</guid>
		<description><![CDATA[Hey interested readers, I just released bf3stats Version 0.0.6. It includes some updates to the updatePlayers.php cronjob and a couple of template tweaks. See changelog for details. Changelog Version 0.0.6 removed debug output from updatePlayers.php cronjob only update players that were &#8230; <a href="http://www.grewe.ca/bf3stats-version-0-0-6-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Hey interested readers,</p>
<p>I just released bf3stats Version 0.0.6. It includes some updates to the updatePlayers.php cronjob and a couple of template tweaks. See changelog for details.</p>
<p><strong>Changelog </strong><strong>Version 0.0.6</strong></p>
<ul>
<li>removed debug output from updatePlayers.php cronjob</li>
<li>only update players that were not updated &gt; 2hrs</li>
<li>moved Kits from Score to Kit popup</li>
<li>removed Main Kit name from Kit popup and only show the icon instead</li>
<li>re-aligned Kills popup</li>
<li>merged MVP tables together into one table</li>
<li>removed unique medal and ribbon counts from popup and renamed Progress to Unique Progress</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.grewe.ca/bf3stats-version-0-0-6-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ALT+F4 Platoon now using bf3stats</title>
		<link>http://www.grewe.ca/altf4-platoon-now-using-bf3stats/</link>
		<comments>http://www.grewe.ca/altf4-platoon-now-using-bf3stats/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 16:28:11 +0000</pubDate>
		<dc:creator>Sebastian</dc:creator>
				<category><![CDATA[bf3stats]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.grewe.ca/?p=93</guid>
		<description><![CDATA[I am pleased to announce the first platoon using the bf3stats player list! Check them out at http://hang-over.org/bf3stats/ Thank you for your support in creating this site as you supplied most ideas of what stats to add. Hope you will enjoy &#8230; <a href="http://www.grewe.ca/altf4-platoon-now-using-bf3stats/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I am pleased to announce the first platoon using the bf3stats player list!</p>
<p>Check them out at <a href="http://hang-over.org/bf3stats/">http://hang-over.org/bf3stats/</a></p>
<p>Thank you for your support in creating this site as you supplied most ideas of what stats to add. Hope you will enjoy the tool!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.grewe.ca/altf4-platoon-now-using-bf3stats/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bf3stats Version 0.0.5 Released</title>
		<link>http://www.grewe.ca/bf3stats-version-0-0-5-released/</link>
		<comments>http://www.grewe.ca/bf3stats-version-0-0-5-released/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 17:46:21 +0000</pubDate>
		<dc:creator>Sebastian</dc:creator>
				<category><![CDATA[bf3stats]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[battlefield 3]]></category>
		<category><![CDATA[bf3stats API]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[players]]></category>
		<category><![CDATA[statistics]]></category>

		<guid isPermaLink="false">http://www.grewe.ca/?p=82</guid>
		<description><![CDATA[Just minutes after my 0.0.4 release I had some reports that the % of total scores for ground and air vehicles didn&#8217;t work as well as issues on the &#8220;Compare&#8221; page for players. These issues have both been address. I &#8230; <a href="http://www.grewe.ca/bf3stats-version-0-0-5-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Just minutes after my 0.0.4 release I had some reports that the % of total scores for ground and air vehicles didn&#8217;t work as well as issues on the &#8220;Compare&#8221; page for players.</p>
<p>These issues have both been address. I am sorry for the inconvenience this double release may have caused. I will make sure to test things better in the future.</p>
<p><strong>Changelog</strong></p>
<p><strong>Version 0.0.5</strong></p>
<ul>
<li>Bugfix: Wrong player list due to configuration changes on compare page</li>
<li>Bugfix: % of Total score was not displayed for ground and air vehicles</li>
</ul>
<p>Download: <a href="http://www.grewe.ca/projects/bf3stats/">http://www.grewe.ca/projects/bf3stats/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.grewe.ca/bf3stats-version-0-0-5-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>bf3stats Version 0.0.4 Released</title>
		<link>http://www.grewe.ca/bf3stats-version-0-0-4-released/</link>
		<comments>http://www.grewe.ca/bf3stats-version-0-0-4-released/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 17:25:37 +0000</pubDate>
		<dc:creator>Sebastian</dc:creator>
				<category><![CDATA[bf3stats]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[battlefield 3]]></category>
		<category><![CDATA[bf3stats API]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[players]]></category>
		<category><![CDATA[statistics]]></category>

		<guid isPermaLink="false">http://www.grewe.ca/?p=75</guid>
		<description><![CDATA[Another release of bf3stats adding more statistics and a new configuration option for players and a custom cache index name for shared memcache instances. Players can now be assigned a &#8220;bought&#8221; variable that tells the stats parser to figure out &#8230; <a href="http://www.grewe.ca/bf3stats-version-0-0-4-released/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Another release of bf3stats adding more statistics and a new configuration option for players and a custom cache index name for shared memcache instances.</p>
<p>Players can now be assigned a &#8220;bought&#8221; variable that tells the stats parser to figure out the hours per day since the user bought the game. This is optional and backwards compatible to your old configuration.</p>
<p>Also added a new cache index so users with shared memcaches don&#8217;t override each others statistics upon updates. File based caching is not affected by this but the key is still required. Please update your configuration accordingly using the supplied configuration as an example.</p>
<p><strong>Changelog</strong></p>
<ul>
<li>Added custom cache index</li>
<li>Added per player configuration for bought date</li>
<li>Added playtime per 50 Euro spent</li>
<li>Added playtime since release date</li>
<li>Added playtime since bought [Optional]</li>
<li>Added Main Kit used</li>
<li>Added best weapon and vehicle under kills popup</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.grewe.ca/bf3stats-version-0-0-4-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

