<?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>Dave Blakey</title>
	<atom:link href="http://blakey.co/feed/" rel="self" type="application/rss+xml" />
	<link>http://blakey.co</link>
	<description>Startups, games, code</description>
	<lastBuildDate>Tue, 08 Jul 2014 09:46:53 +0000</lastBuildDate>
	<language>en</language>
		<sy:updatePeriod>hourly</sy:updatePeriod>
		<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='blakey.co' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Dave Blakey</title>
		<link>http://blakey.co</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://blakey.co/osd.xml" title="Dave Blakey" />
	<atom:link rel='hub' href='http://blakey.co/?pushpress=hub'/>
	<item>
		<title>Getting input from stdin during composer installation</title>
		<link>http://blakey.co/2014/07/03/getting-input-from-stdin-during-composer-installation/</link>
		<comments>http://blakey.co/2014/07/03/getting-input-from-stdin-during-composer-installation/#comments</comments>
		<pubDate>Thu, 03 Jul 2014 07:06:32 +0000</pubDate>
		<dc:creator><![CDATA[dave]]></dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[composer]]></category>
		<category><![CDATA[json]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blakey.co/?p=91</guid>
		<description><![CDATA[By adding a &#8220;post-install-cmd&#8221; option to your scripts section of composer.json you can setup commands to run after &#8220;composer install&#8221;, however, these won&#8217;t wait for input if you want to collect something (like a username) in a php script. You can have the exact same effect though by calling the function like so &#8211; "post-install-cmd": [ [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blakey.co&#038;blog=39637182&#038;post=91&#038;subd=fxdb&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://blakey.co/2014/07/03/getting-input-from-stdin-during-composer-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/27e905e6bd18e6323a9db4c906c3ba84?s=96&#38;d=retro&#38;r=G" medium="image">
			<media:title type="html">daveblakey</media:title>
		</media:content>
	</item>
		<item>
		<title>Laravel redirect HTTP to HTTPS</title>
		<link>http://blakey.co/2014/05/08/laravel-redirect-http-to-https/</link>
		<comments>http://blakey.co/2014/05/08/laravel-redirect-http-to-https/#comments</comments>
		<pubDate>Thu, 08 May 2014 12:51:12 +0000</pubDate>
		<dc:creator><![CDATA[dave]]></dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[laravel]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://blakey.co/?p=76</guid>
		<description><![CDATA[Add this to your filters.php to automatically redirect HTTP traffic to HTTPS on your Laravel install. App::before(function($request) { if( ! Request::secure()) { return Redirect::secure(Request::getRequestUri()); } });<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blakey.co&#038;blog=39637182&#038;post=76&#038;subd=fxdb&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://blakey.co/2014/05/08/laravel-redirect-http-to-https/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>-26.097476 28.053033</georss:point>
		<geo:lat>-26.097476</geo:lat>
		<geo:long>28.053033</geo:long>
		<media:content url="http://2.gravatar.com/avatar/27e905e6bd18e6323a9db4c906c3ba84?s=96&#38;d=retro&#38;r=G" medium="image">
			<media:title type="html">daveblakey</media:title>
		</media:content>
	</item>
		<item>
		<title>Disable all browser page caching in Laravel</title>
		<link>http://blakey.co/2014/05/08/disable-all-browser-page-caching-in-laravel/</link>
		<comments>http://blakey.co/2014/05/08/disable-all-browser-page-caching-in-laravel/#comments</comments>
		<pubDate>Thu, 08 May 2014 12:48:43 +0000</pubDate>
		<dc:creator><![CDATA[dave]]></dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[cache]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[laravel]]></category>

		<guid isPermaLink="false">http://blakey.co/?p=74</guid>
		<description><![CDATA[Sometimes you don&#8217;t want to allow any content coming out of Laravel to be cached. The easiest way of doing this is a filter to send no cache headers. Add this snippet to the bottom of your filters.php file. Route::filter('after', function($response) { // No caching for pages $response-&#62;header("Pragma", "no-cache"); $response-&#62;header("Cache-Control", "no-store, no-cache, must-revalidate, max-age=0"); });<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blakey.co&#038;blog=39637182&#038;post=74&#038;subd=fxdb&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://blakey.co/2014/05/08/disable-all-browser-page-caching-in-laravel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>-26.097476 28.053033</georss:point>
		<geo:lat>-26.097476</geo:lat>
		<geo:long>28.053033</geo:long>
		<media:content url="http://2.gravatar.com/avatar/27e905e6bd18e6323a9db4c906c3ba84?s=96&#38;d=retro&#38;r=G" medium="image">
			<media:title type="html">daveblakey</media:title>
		</media:content>
	</item>
		<item>
		<title>HAProxy SSL cipher list</title>
		<link>http://blakey.co/2014/05/08/haproxy-ssl-cipher-list/</link>
		<comments>http://blakey.co/2014/05/08/haproxy-ssl-cipher-list/#comments</comments>
		<pubDate>Thu, 08 May 2014 12:19:50 +0000</pubDate>
		<dc:creator><![CDATA[dave]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[cipher]]></category>
		<category><![CDATA[haproxy]]></category>
		<category><![CDATA[ssl]]></category>

		<guid isPermaLink="false">http://blakey.co/?p=71</guid>
		<description><![CDATA[This is the haproxy cipher list Snapt is most likely going to roll out next: ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-RC4-SHA:ECDHE-RSA-RC4-SHA:ECDH-ECDSA-RC4-SHA:ECDH-RSA-RC4-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA:RC4-SHA If you are using haproxy for SSL termination it&#8217;s a good idea to manually specify a cipher list to prevent attacks like BEAST, or other protocol weaknesses.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blakey.co&#038;blog=39637182&#038;post=71&#038;subd=fxdb&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://blakey.co/2014/05/08/haproxy-ssl-cipher-list/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>-26.097476 28.053033</georss:point>
		<geo:lat>-26.097476</geo:lat>
		<geo:long>28.053033</geo:long>
		<media:content url="http://2.gravatar.com/avatar/27e905e6bd18e6323a9db4c906c3ba84?s=96&#38;d=retro&#38;r=G" medium="image">
			<media:title type="html">daveblakey</media:title>
		</media:content>
	</item>
		<item>
		<title>Show signs on PHP numbers</title>
		<link>http://blakey.co/2014/05/05/show-signs-on-php-numbers/</link>
		<comments>http://blakey.co/2014/05/05/show-signs-on-php-numbers/#comments</comments>
		<pubDate>Mon, 05 May 2014 15:10:24 +0000</pubDate>
		<dc:creator><![CDATA[dave]]></dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[sign]]></category>

		<guid isPermaLink="false">http://blakey.co/?p=68</guid>
		<description><![CDATA[PHP automatically shows a negative sign for negative numbers but getting it to show a positive sign (e.g. when you are showing growth/loss) can be a mess of if statements. Rather, use this &#8212; sprintf("%+d", $number); You&#8217;ll then get +1234 instead of just 1234.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blakey.co&#038;blog=39637182&#038;post=68&#038;subd=fxdb&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://blakey.co/2014/05/05/show-signs-on-php-numbers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>-26.097476 28.053033</georss:point>
		<geo:lat>-26.097476</geo:lat>
		<geo:long>28.053033</geo:long>
		<media:content url="http://2.gravatar.com/avatar/27e905e6bd18e6323a9db4c906c3ba84?s=96&#38;d=retro&#38;r=G" medium="image">
			<media:title type="html">daveblakey</media:title>
		</media:content>
	</item>
		<item>
		<title>Reddit MMO Popularity Tracker</title>
		<link>http://blakey.co/2014/04/24/reddit-mmo-popularity-tracker/</link>
		<comments>http://blakey.co/2014/04/24/reddit-mmo-popularity-tracker/#comments</comments>
		<pubDate>Thu, 24 Apr 2014 19:48:59 +0000</pubDate>
		<dc:creator><![CDATA[dave]]></dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[mmo]]></category>
		<category><![CDATA[open]]></category>
		<category><![CDATA[reddit]]></category>
		<category><![CDATA[source]]></category>

		<guid isPermaLink="false">http://blakey.co/?p=65</guid>
		<description><![CDATA[Started playing around with this a bit tonight to try gauge the popularity of mmo&#8217;s by using subreddit user counts. Will open source it once I&#8217;m done. http://mmo.blakey.co/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blakey.co&#038;blog=39637182&#038;post=65&#038;subd=fxdb&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://blakey.co/2014/04/24/reddit-mmo-popularity-tracker/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>-26.097476 28.053033</georss:point>
		<geo:lat>-26.097476</geo:lat>
		<geo:long>28.053033</geo:long>
		<media:content url="http://2.gravatar.com/avatar/27e905e6bd18e6323a9db4c906c3ba84?s=96&#38;d=retro&#38;r=G" medium="image">
			<media:title type="html">daveblakey</media:title>
		</media:content>
	</item>
		<item>
		<title>HAProxy REST API</title>
		<link>http://blakey.co/2014/04/10/haproxy-rest-api/</link>
		<comments>http://blakey.co/2014/04/10/haproxy-rest-api/#comments</comments>
		<pubDate>Thu, 10 Apr 2014 18:58:50 +0000</pubDate>
		<dc:creator><![CDATA[dave]]></dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[haproxy]]></category>
		<category><![CDATA[snapt]]></category>

		<guid isPermaLink="false">http://blakey.co/?p=59</guid>
		<description><![CDATA[I&#8217;ve been working on Snapr, an open source API for getting stats and sending commands via REST to haproxy.<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blakey.co&#038;blog=39637182&#038;post=59&#038;subd=fxdb&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://blakey.co/2014/04/10/haproxy-rest-api/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>-26.097476 28.053033</georss:point>
		<geo:lat>-26.097476</geo:lat>
		<geo:long>28.053033</geo:long>
		<media:content url="http://2.gravatar.com/avatar/27e905e6bd18e6323a9db4c906c3ba84?s=96&#38;d=retro&#38;r=G" medium="image">
			<media:title type="html">daveblakey</media:title>
		</media:content>
	</item>
		<item>
		<title>Snapt forums go live</title>
		<link>http://blakey.co/2014/04/01/snapt-forums-go-live/</link>
		<comments>http://blakey.co/2014/04/01/snapt-forums-go-live/#comments</comments>
		<pubDate>Tue, 01 Apr 2014 10:02:21 +0000</pubDate>
		<dc:creator><![CDATA[dave]]></dc:creator>
				<category><![CDATA[Misc]]></category>
		<category><![CDATA[snapt]]></category>

		<guid isPermaLink="false">http://blakey.co/?p=56</guid>
		<description><![CDATA[Our new forums just went live and they look great :) If you&#8217;re a Snapt user come register &#8211; http://community.snapt.net/<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blakey.co&#038;blog=39637182&#038;post=56&#038;subd=fxdb&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://blakey.co/2014/04/01/snapt-forums-go-live/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>-26.097476 28.053033</georss:point>
		<geo:lat>-26.097476</geo:lat>
		<geo:long>28.053033</geo:long>
		<media:content url="http://2.gravatar.com/avatar/27e905e6bd18e6323a9db4c906c3ba84?s=96&#38;d=retro&#38;r=G" medium="image">
			<media:title type="html">daveblakey</media:title>
		</media:content>
	</item>
		<item>
		<title>AJAX modals with Bootstrap 3</title>
		<link>http://blakey.co/2014/03/31/ajax-modals-with-bootstrap-3/</link>
		<comments>http://blakey.co/2014/03/31/ajax-modals-with-bootstrap-3/#comments</comments>
		<pubDate>Mon, 31 Mar 2014 08:23:06 +0000</pubDate>
		<dc:creator><![CDATA[dave]]></dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[bootstrap]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[modal]]></category>

		<guid isPermaLink="false">http://blakey.co/?p=52</guid>
		<description><![CDATA[Bootstrap 3 provides support for loading content into a modal via ajax. Like so &#8211; &#60;button href="remotePage.php" data-toggle="modal" data-target="#myModal"&#62;Fetch&#60;/button&#62; However, one annoyance is that once it loads a page you can no longer request a different page &#8211; the request to /remotePage.php won&#8217;t be sent again. This is a problem if you have various buttons [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blakey.co&#038;blog=39637182&#038;post=52&#038;subd=fxdb&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://blakey.co/2014/03/31/ajax-modals-with-bootstrap-3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<georss:point>-26.097476 28.053033</georss:point>
		<geo:lat>-26.097476</geo:lat>
		<geo:long>28.053033</geo:long>
		<media:content url="http://2.gravatar.com/avatar/27e905e6bd18e6323a9db4c906c3ba84?s=96&#38;d=retro&#38;r=G" medium="image">
			<media:title type="html">daveblakey</media:title>
		</media:content>
	</item>
		<item>
		<title>Ultimate do &#8220;not cache this page&#8221; for PHP</title>
		<link>http://blakey.co/2014/03/27/ultimate-do-not-cache-this-page-for-php/</link>
		<comments>http://blakey.co/2014/03/27/ultimate-do-not-cache-this-page-for-php/#comments</comments>
		<pubDate>Thu, 27 Mar 2014 10:33:09 +0000</pubDate>
		<dc:creator><![CDATA[dave]]></dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[expires]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://blakey.co/?p=48</guid>
		<description><![CDATA[Below is the ultimate set of headers to send from PHP to ensure a page is not cached &#8212; header("Expires: Tue, 01 Jan 2000 00:00:00 GMT"); header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0"); header("Cache-Control: post-check=0, pre-check=0", false); header("Pragma: no-cache");<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=blakey.co&#038;blog=39637182&#038;post=48&#038;subd=fxdb&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
		<wfw:commentRss>http://blakey.co/2014/03/27/ultimate-do-not-cache-this-page-for-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<georss:point>-26.097476 28.053033</georss:point>
		<geo:lat>-26.097476</geo:lat>
		<geo:long>28.053033</geo:long>
		<media:content url="http://2.gravatar.com/avatar/27e905e6bd18e6323a9db4c906c3ba84?s=96&#38;d=retro&#38;r=G" medium="image">
			<media:title type="html">daveblakey</media:title>
		</media:content>
	</item>
	</channel>
</rss>
