<?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>mike.eire.ca &#187; Technology</title>
	<atom:link href="http://mike.eire.ca/category/tech/feed/" rel="self" type="application/rss+xml" />
	<link>http://mike.eire.ca</link>
	<description></description>
	<lastBuildDate>Fri, 03 Feb 2012 23:09:17 +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>Sending Asterisk 1.8 voicemails to multiple emails</title>
		<link>http://mike.eire.ca/2012/02/03/asterisk-1-8-vm-multiple-emails/</link>
		<comments>http://mike.eire.ca/2012/02/03/asterisk-1-8-vm-multiple-emails/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 23:08:21 +0000</pubDate>
		<dc:creator>Mike (owner)</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Telephony]]></category>
		<category><![CDATA[asterisk]]></category>
		<category><![CDATA[notifications]]></category>
		<category><![CDATA[voicemail]]></category>

		<guid isPermaLink="false">http://mike.eire.ca/?p=361</guid>
		<description><![CDATA[Here is the difficult way to send Asterisk 1.8 voicemail notifications to more than one address. The easy way is to define a sendmail alias on your system. However, if you want to allow management of emails through a GUI like FreePBX, that won&#8217;t do much good for you. Disclaimer: I am not a C [...]]]></description>
		<wfw:commentRss>http://mike.eire.ca/2012/02/03/asterisk-1-8-vm-multiple-emails/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Compiling SOM_PAK in Mac OS X 10.7 Lion</title>
		<link>http://mike.eire.ca/2012/02/02/compiling-som_pak-on-mac/</link>
		<comments>http://mike.eire.ca/2012/02/02/compiling-som_pak-on-mac/#comments</comments>
		<pubDate>Thu, 02 Feb 2012 20:44:39 +0000</pubDate>
		<dc:creator>Mike (owner)</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[compile]]></category>
		<category><![CDATA[lion]]></category>
		<category><![CDATA[os x]]></category>
		<category><![CDATA[som_pak]]></category>

		<guid isPermaLink="false">http://mike.eire.ca/?p=346</guid>
		<description><![CDATA[If you want to create some self-organizing maps on a Mac you&#8217;re going to need to compile some source code yourself. Assuming you have Apple&#8217;s Developer Tools installed, it should be fairly painless. cd ~/Downloads wget http://www.cis.hut.fi/research/som_pak/som_pak-3.1.tar tar xvf som_pak-3.1.tar wget http://mike.eire.ca/wp-content/uploads/2012/02/som_pak.txt patch -bp0 &#60; som_pak.txt cd som_pak-3.1 make -f makefile.unix That&#8217;s it. You should [...]]]></description>
		<wfw:commentRss>http://mike.eire.ca/2012/02/02/compiling-som_pak-on-mac/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moving a Subversion repository</title>
		<link>http://mike.eire.ca/2012/01/05/moving-a-subversion-repository/</link>
		<comments>http://mike.eire.ca/2012/01/05/moving-a-subversion-repository/#comments</comments>
		<pubDate>Thu, 05 Jan 2012 18:09:29 +0000</pubDate>
		<dc:creator>Mike (owner)</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://mike.eire.ca/?p=328</guid>
		<description><![CDATA[From one server to another, no need for file transfers or anything like that. Do this on the new server. mkdir /foo/bar/new svnadmin create /foo/bar/new ssh root@old.host "svnadmin dump /foo/bar/old" &#124; svnadmin load /foo/bar/new On your working copies you&#8217;ll need to say where the new repository location is: svn switch --relocate https://old.host/svn https://new.host/svn /path/to/working/copy]]></description>
		<wfw:commentRss>http://mike.eire.ca/2012/01/05/moving-a-subversion-repository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sending Asterisk 1.4 voicemails to multiple emails</title>
		<link>http://mike.eire.ca/2011/08/16/asterisk-vm-multiple-addresses/</link>
		<comments>http://mike.eire.ca/2011/08/16/asterisk-vm-multiple-addresses/#comments</comments>
		<pubDate>Wed, 17 Aug 2011 04:38:05 +0000</pubDate>
		<dc:creator>Mike (owner)</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Telephony]]></category>
		<category><![CDATA[asterisk]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[notifications]]></category>
		<category><![CDATA[voicemail]]></category>

		<guid isPermaLink="false">http://mike.eire.ca/?p=323</guid>
		<description><![CDATA[Here&#8217;s the complicated way to get Asterisk sending voicemail notifications to multiple email addresses. (The easy way? Use group mailboxes and/or sendmail aliases.) Once this modified module is compiled and installed, multiple addresses in voicemail.conf can be separated by a pipe character. You can apply the patch and rebuild Asterisk as usual, or just build [...]]]></description>
		<wfw:commentRss>http://mike.eire.ca/2011/08/16/asterisk-vm-multiple-addresses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building Firefox on Mac OS X 10.7 Lion</title>
		<link>http://mike.eire.ca/2011/07/24/building-firefox-on-mac-os-x-10-7-lion/</link>
		<comments>http://mike.eire.ca/2011/07/24/building-firefox-on-mac-os-x-10-7-lion/#comments</comments>
		<pubDate>Mon, 25 Jul 2011 01:38:34 +0000</pubDate>
		<dc:creator>Mike (owner)</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[10.7]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[lion]]></category>

		<guid isPermaLink="false">http://mike.eire.ca/?p=308</guid>
		<description><![CDATA[A couple of changes needed at the time of writing from the usual build requirements. If you haven&#8217;t done it already, MacPorts and all ports must be completely uninstalled and then re-installed to support the new operating system. The glib1 port must be installed using MacPorts. It provides the glib-config script, which raises an error [...]]]></description>
		<wfw:commentRss>http://mike.eire.ca/2011/07/24/building-firefox-on-mac-os-x-10-7-lion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change default MySQL password on Ubuntu</title>
		<link>http://mike.eire.ca/2011/03/25/ubuntu-mysql-password/</link>
		<comments>http://mike.eire.ca/2011/03/25/ubuntu-mysql-password/#comments</comments>
		<pubDate>Fri, 25 Mar 2011 23:47:14 +0000</pubDate>
		<dc:creator>Mike (owner)</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[default password]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://mike.eire.ca/?p=303</guid>
		<description><![CDATA[When you install the MySQL package on Ubuntu Linux, it does not come with a blank password, as most packages and installations do. The package is set up so you can change the password like so: sudo dpkg-reconfigure mysql-server-5.1 The top Google hits recommend stopping the service, restarting MySQL with privileges disabled, etc. This is [...]]]></description>
		<wfw:commentRss>http://mike.eire.ca/2011/03/25/ubuntu-mysql-password/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A2Billing authentication of forwarded calls</title>
		<link>http://mike.eire.ca/2010/12/22/a2billing-authentication-of-forwarded-calls/</link>
		<comments>http://mike.eire.ca/2010/12/22/a2billing-authentication-of-forwarded-calls/#comments</comments>
		<pubDate>Wed, 22 Dec 2010 16:45:31 +0000</pubDate>
		<dc:creator>Mike (owner)</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Telephony]]></category>
		<category><![CDATA[a2billing]]></category>
		<category><![CDATA[asterisk]]></category>
		<category><![CDATA[authentication]]></category>
		<category><![CDATA[billing]]></category>
		<category><![CDATA[forwarding]]></category>
		<category><![CDATA[freepbx]]></category>

		<guid isPermaLink="false">http://mike.eire.ca/?p=289</guid>
		<description><![CDATA[So let me guess. You&#8217;re using A2Billing on FreePBX – I don&#8217;t know how TrixBox or AsteriskNOW work, but the concept is the same – and whenever you forward a phone to an outside number it doesn&#8217;t work. Callers get prompted with &#8220;Please enter the complete PIN number&#8221; instead of having the call completed. What&#8217;s [...]]]></description>
		<wfw:commentRss>http://mike.eire.ca/2010/12/22/a2billing-authentication-of-forwarded-calls/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>FreePBX hangs at login</title>
		<link>http://mike.eire.ca/2010/12/10/freepbx-hangs-at-login/</link>
		<comments>http://mike.eire.ca/2010/12/10/freepbx-hangs-at-login/#comments</comments>
		<pubDate>Sat, 11 Dec 2010 00:14:43 +0000</pubDate>
		<dc:creator>Mike (owner)</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[Telephony]]></category>
		<category><![CDATA[asterisk]]></category>
		<category><![CDATA[freepbx]]></category>

		<guid isPermaLink="false">http://mike.eire.ca/?p=286</guid>
		<description><![CDATA[Have you ever clicked on your FreePBX link, get prompted for a password, and then sit staring at your browser &#8220;connecting to&#8230;&#8221; your server forever? Restarting Apache doesn&#8217;t work, restarting MySQL doesn&#8217;t work, even restarting Asterisk doesn&#8217;t work. Meanwhile everything else is running just fine, but you need to restart the entire server before FreePBX [...]]]></description>
		<wfw:commentRss>http://mike.eire.ca/2010/12/10/freepbx-hangs-at-login/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setting NAS ID on pfSense</title>
		<link>http://mike.eire.ca/2010/08/25/setting-nas-id-on-pfsense/</link>
		<comments>http://mike.eire.ca/2010/08/25/setting-nas-id-on-pfsense/#comments</comments>
		<pubDate>Wed, 25 Aug 2010 21:39:01 +0000</pubDate>
		<dc:creator>Mike (owner)</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[pfsense]]></category>
		<category><![CDATA[radius]]></category>

		<guid isPermaLink="false">http://mike.eire.ca/?p=273</guid>
		<description><![CDATA[pfSense has a captive portal option that allows RADIUS authentication. However, it doesn&#8217;t include the option to set the NAS ID of your firewall, instead creating something automatically based on the hostname. Apply these changes (against 1.2.3-RELEASE) to enable a custom NAS ID. --- /etc/inc/captiveportal.inc +++ ~/captiveportal.inc @@ -1066,11 +1066,17 @@ */ function getNasID&#40;&#41; &#123; [...]]]></description>
		<wfw:commentRss>http://mike.eire.ca/2010/08/25/setting-nas-id-on-pfsense/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using rrdtool with PHP</title>
		<link>http://mike.eire.ca/2010/03/28/using-rrdtool-with-php/</link>
		<comments>http://mike.eire.ca/2010/03/28/using-rrdtool-with-php/#comments</comments>
		<pubDate>Mon, 29 Mar 2010 03:46:05 +0000</pubDate>
		<dc:creator>Mike (owner)</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://mike.eire.ca/?p=257</guid>
		<description><![CDATA[The PHP interface to rrdtool hasn&#8217;t been updated in 5 years and appears to have been deprecated by the developer, who doesn&#8217;t provide any documentation for it. Fortunately, there&#8217;s no functionality in the extension, so it won&#8217;t go out of date as long as the rrdtool library on your system is up to date. I&#8217;ve [...]]]></description>
		<wfw:commentRss>http://mike.eire.ca/2010/03/28/using-rrdtool-with-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy SVG grid</title>
		<link>http://mike.eire.ca/2010/02/25/easy-svg-grid/</link>
		<comments>http://mike.eire.ca/2010/02/25/easy-svg-grid/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 17:16:38 +0000</pubDate>
		<dc:creator>Mike (owner)</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[svg]]></category>

		<guid isPermaLink="false">http://mike.eire.ca/?p=247</guid>
		<description><![CDATA[I needed a grid in the background while I was debugging an SVG image I was creating, something like Photoshop&#8217;s transparency grid. Here&#8217;s what I did. &#60;svg xmlns=&#34;http://www.w3.org/2000/svg&#34; version=&#34;1.1&#34; width=&#34;200&#34; height=&#34;400&#34;&#62; &#60;defs&#62; &#60;pattern id=&#34;grid&#34; width=&#34;20&#34; height=&#34;20&#34; patternUnits=&#34;userSpaceOnUse&#34;&#62; &#60;rect fill=&#34;black&#34; x=&#34;0&#34; y=&#34;0&#34; width=&#34;10&#34; height=&#34;10&#34; opacity=&#34;0.1&#34;/&#62; &#60;rect fill=&#34;white&#34; x=&#34;10&#34; y=&#34;0&#34; width=&#34;10&#34; height=&#34;10&#34;/&#62; &#60;rect fill=&#34;black&#34; x=&#34;10&#34; y=&#34;10&#34; width=&#34;10&#34; [...]]]></description>
		<wfw:commentRss>http://mike.eire.ca/2010/02/25/easy-svg-grid/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The New CBC Radio 3</title>
		<link>http://mike.eire.ca/2009/10/14/radio3_greasemonkey/</link>
		<comments>http://mike.eire.ca/2009/10/14/radio3_greasemonkey/#comments</comments>
		<pubDate>Wed, 14 Oct 2009 18:53:11 +0000</pubDate>
		<dc:creator>Mike (owner)</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[CBC]]></category>
		<category><![CDATA[CBC Radio 3]]></category>
		<category><![CDATA[Greasemonkey]]></category>

		<guid isPermaLink="false">http://mike.eire.ca/?p=217</guid>
		<description><![CDATA[I often listen to CBC Radio 3 at work. Recently they updated their website; while it&#8217;s mostly a change for the better (yay, the player doesn&#8217;t stop updating!) there were a couple of things bugging me about it. With the old design, you always had access to the player and the main navigation, but now [...]]]></description>
		<wfw:commentRss>http://mike.eire.ca/2009/10/14/radio3_greasemonkey/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Building a 64-bit Firefox on the Mac</title>
		<link>http://mike.eire.ca/2009/10/11/building-a-64-bit-firefox-on-the-mac/</link>
		<comments>http://mike.eire.ca/2009/10/11/building-a-64-bit-firefox-on-the-mac/#comments</comments>
		<pubDate>Sun, 11 Oct 2009 18:11:15 +0000</pubDate>
		<dc:creator>Mike (owner)</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[64-bit]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[llvm]]></category>
		<category><![CDATA[macports]]></category>
		<category><![CDATA[os x]]></category>

		<guid isPermaLink="false">http://mike.eire.ca/?p=210</guid>
		<description><![CDATA[With the release of Snow Leopard, Apple is really starting to push 64-bit programs. Firefox is working towards a 64-bit release but even though the bugs are all resolved, it won&#8217;t be shipping anytime soon. Here&#8217;s what I did to build a 64-bit LLVM version of Firefox. Important warnings follow the list! I had MacPorts [...]]]></description>
		<wfw:commentRss>http://mike.eire.ca/2009/10/11/building-a-64-bit-firefox-on-the-mac/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Installing Nagios with MacPorts</title>
		<link>http://mike.eire.ca/2009/08/17/installing-nagios-with-macports/</link>
		<comments>http://mike.eire.ca/2009/08/17/installing-nagios-with-macports/#comments</comments>
		<pubDate>Mon, 17 Aug 2009 17:14:37 +0000</pubDate>
		<dc:creator>Mike (owner)</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[macports]]></category>
		<category><![CDATA[nagios]]></category>

		<guid isPermaLink="false">http://mike.eire.ca/2009/08/17/installing-nagios-with-macports/</guid>
		<description><![CDATA[A few quick notes on steps I took when installing Nagios from MacPorts. Most of this is given to you during the install, but there are a few missing steps that I&#8217;ve added here.I didn&#8217;t end up using it, after the installation, but I&#8217;ve got a few notes from what little usage I did after [...]]]></description>
		<wfw:commentRss>http://mike.eire.ca/2009/08/17/installing-nagios-with-macports/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>MacPorts upgrade to mysqlnd</title>
		<link>http://mike.eire.ca/2009/08/07/macports-upgrade-to-mysqlnd/</link>
		<comments>http://mike.eire.ca/2009/08/07/macports-upgrade-to-mysqlnd/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 18:33:22 +0000</pubDate>
		<dc:creator>Mike (owner)</dc:creator>
				<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://mike.eire.ca/2009/08/07/macports-upgrade-to-mysqlnd/</guid>
		<description><![CDATA[I recently upgraded my MacPorts-based PHP install to 5.3 and thought I&#8217;d try out this new mysqlnd client library. So I did this: sudo port -f uninstall php5 sudo port install php5 +apache2+macports_snmp+mysqlnd+pear All appeared to work fine, but trying to connect to my database server from PHP gave me an error: PHP Warning: mysqli::mysqli(): [...]]]></description>
		<wfw:commentRss>http://mike.eire.ca/2009/08/07/macports-upgrade-to-mysqlnd/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WhatsUp Gold mobile interface</title>
		<link>http://mike.eire.ca/2009/08/03/whatsup-gold-mobile-interface/</link>
		<comments>http://mike.eire.ca/2009/08/03/whatsup-gold-mobile-interface/#comments</comments>
		<pubDate>Mon, 03 Aug 2009 18:52:24 +0000</pubDate>
		<dc:creator>Mike (owner)</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[ipswitch]]></category>
		<category><![CDATA[mobile browsers]]></category>
		<category><![CDATA[mobile interface]]></category>
		<category><![CDATA[network monitoring]]></category>
		<category><![CDATA[whatsup gold]]></category>

		<guid isPermaLink="false">http://mike.eire.ca/2009/08/03/whatsup-gold-mobile-interface/</guid>
		<description><![CDATA[I created a mobile interface for this network monitoring software, and have made it available for download here. Below is a copy and paste from the original forum posting: Just like the title says, I&#8217;ve got a mobile interface available for Whats Up Gold. Unzip the files into a subfolder of the HTML folder &#8212; [...]]]></description>
		<wfw:commentRss>http://mike.eire.ca/2009/08/03/whatsup-gold-mobile-interface/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Working with HTTP_Request</title>
		<link>http://mike.eire.ca/2009/06/24/working-with-http_request/</link>
		<comments>http://mike.eire.ca/2009/06/24/working-with-http_request/#comments</comments>
		<pubDate>Wed, 24 Jun 2009 20:31:38 +0000</pubDate>
		<dc:creator>Mike (owner)</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[http_request]]></category>
		<category><![CDATA[pear]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://mike.eire.ca/?p=179</guid>
		<description><![CDATA[I needed to make a bit of sample code for someone the other day, demonstrating how to log into a website and collect data programatically from PHP. The HTTP_Request PEAR class works fairly well for this; HTTP_Request2 should be a big improvement when it&#8217;s finished, as the original is geared toward PHP 4&#8242;s abysmal object [...]]]></description>
		<wfw:commentRss>http://mike.eire.ca/2009/06/24/working-with-http_request/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Making valid CAPTCHAs</title>
		<link>http://mike.eire.ca/2009/04/13/making-valid-captchas/</link>
		<comments>http://mike.eire.ca/2009/04/13/making-valid-captchas/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 01:43:56 +0000</pubDate>
		<dc:creator>Mike (owner)</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[wordpress]]></category>
		<category><![CDATA[xhtml]]></category>

		<guid isPermaLink="false">http://m.eire.ca/?p=128</guid>
		<description><![CDATA[The WP-reCAPTCHA plugin is very helpful, providing a way to stop spam comments, and assisting electronic storage of old books. It has as a feature &#8220;XHTML compliance,&#8221; but at the price of requiring JavaScript from users. I think I can get both. In wp-recaptcha.php we find these lines: 440 441 442 443 444 445 446 [...]]]></description>
		<wfw:commentRss>http://mike.eire.ca/2009/04/13/making-valid-captchas/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Delete MediaWiki pages from the database</title>
		<link>http://mike.eire.ca/2008/12/30/delete-mediawiki-pages/</link>
		<comments>http://mike.eire.ca/2008/12/30/delete-mediawiki-pages/#comments</comments>
		<pubDate>Tue, 30 Dec 2008 21:16:27 +0000</pubDate>
		<dc:creator>Mike (owner)</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[mediawiki]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://m.eire.ca/?p=60</guid>
		<description><![CDATA[Deleting a page from the wiki doesn&#8217;t actually remove it, just hides it away. Here&#8217;s a procedure to permanently remove things from the database, and never ever see them again. DROP PROCEDURE IF EXISTS delete_page; DELIMITER // &#160; CREATE PROCEDURE delete_page&#40;IN page_id_var INT&#41; LANGUAGE SQL NOT DETERMINISTIC MODIFIES SQL DATA SQL SECURITY INVOKER COMMENT 'permanently [...]]]></description>
		<wfw:commentRss>http://mike.eire.ca/2008/12/30/delete-mediawiki-pages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>No route matches &#8220;&#8230;&#8221; with {:method=&gt;:get}</title>
		<link>http://mike.eire.ca/2008/11/26/no-route-matches-with-method-get/</link>
		<comments>http://mike.eire.ca/2008/11/26/no-route-matches-with-method-get/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 18:11:00 +0000</pubDate>
		<dc:creator>Mike (owner)</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>

		<guid isPermaLink="false">http://m.eire.ca/2008/11/26/no-route-matches-with-methodget/</guid>
		<description><![CDATA[I configured Ruby on Rails to run with Apache, because I&#8217;m not too worried about speed and didn&#8217;t want to mess with proxies. I also configured the app to run in a subdirectory, using Apache&#8217;s Alias directive to point to the app&#8217;s public directory. I&#8217;ll point out this is the first time I&#8217;ve ever looked [...]]]></description>
		<wfw:commentRss>http://mike.eire.ca/2008/11/26/no-route-matches-with-method-get/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

