<?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>TechnoGeeks &#187; Uncategorized</title>
	<atom:link href="http://techno-geeks.org/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://techno-geeks.org</link>
	<description>A fusion of technology, music, and geekyness.</description>
	<lastBuildDate>Sat, 04 Sep 2010 08:17:33 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Disabling Pulseaudio in Ubuntu 9.10</title>
		<link>http://techno-geeks.org/2010/05/disabling-pulseaudio-in-ubuntu-9-10/</link>
		<comments>http://techno-geeks.org/2010/05/disabling-pulseaudio-in-ubuntu-9-10/#comments</comments>
		<pubDate>Sun, 09 May 2010 17:03:13 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://techno-geeks.org/?p=464</guid>
		<description><![CDATA[I have been having a great deal of trouble with sound in World of Warcraft. I then found out after searching around that my issues were related with Pulseaudio. I found a useful forum post that gave perfect instructions on disabling pulseaudio from restarting automatically.

touch ~/.pulse-a11y-nostart
echo autospawn = no&#124;tee -a ~/.pulse/client.conf
killall pulseaudio

With pulseaudio killed sound [...]]]></description>
			<content:encoded><![CDATA[<p>I have been having a great deal of trouble with sound in World of Warcraft. I then found out after searching around that my issues were related with Pulseaudio. I found a useful <a href="http://audacity.238276.n2.nabble.com/How-to-disable-PulseAudio-on-Ubuntu-9-10-a-secret-method-td3962312.html">forum post</a> that gave perfect instructions on disabling pulseaudio from restarting automatically.</p>
<pre class="brush: bash;">
touch ~/.pulse-a11y-nostart
echo autospawn = no|tee -a ~/.pulse/client.conf
killall pulseaudio
</pre>
<p>With pulseaudio killed sound in WoW is flawless!</p>
]]></content:encoded>
			<wfw:commentRss>http://techno-geeks.org/2010/05/disabling-pulseaudio-in-ubuntu-9-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CakePHP SEO Plugin</title>
		<link>http://techno-geeks.org/2009/10/cakephp-seo-plugin/</link>
		<comments>http://techno-geeks.org/2009/10/cakephp-seo-plugin/#comments</comments>
		<pubDate>Sun, 25 Oct 2009 03:13:21 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://techno-geeks.org/?p=307</guid>
		<description><![CDATA[I just wanted to quickly announce our new SEO Plugin for CakePHP. It provides an easy way to add SEO friendly URLs, page titles, and META fields to your CakePHP applications.
Installation
1. Add the MySQL table.


CREATE TABLE IF NOT EXISTS `seo_seos` (
  `id` int(11) NOT NULL auto_increment,
  `related_model_id` int(11) NOT NULL,
  `related_model_name` varchar(255) [...]]]></description>
			<content:encoded><![CDATA[<p>I just wanted to quickly announce our new SEO Plugin for CakePHP. It provides an easy way to add SEO friendly URLs, page titles, and META fields to your CakePHP applications.</p>
<p><strong>Installation</strong></p>
<p>1. Add the MySQL table.</p>
<pre class="brush: sql;">

CREATE TABLE IF NOT EXISTS `seo_seos` (
  `id` int(11) NOT NULL auto_increment,
  `related_model_id` int(11) NOT NULL,
  `related_model_name` varchar(255) NOT NULL,
  `title` varchar(255) NOT NULL,
  `description` varchar(255) NOT NULL,
  `keywords` varchar(255) NOT NULL,
  `slug` varchar(255) NOT NULL,
  `created` datetime NOT NULL,
  `modified` datetime NOT NULL,
  PRIMARY KEY  (`id`),
  KEY `related_model_id` (`related_model_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1;
</pre>
<p>This table will hold the SEO metadata for each model record.</p>
<p>2. <a href="http://github.com/techno-geek/cakephp-seo-plugin">Download the code</a> and drop it in your /plugins directory. The code is readily available at <a href="http://github.com/techno-geek/cakephp-seo-plugin">GitHub</a>.</p>
<p>3. Add the fields to your forms</p>
<pre class="brush: php;">
	&lt;fieldset&gt;
		&lt;legend&gt;SEO&lt;/legend&gt;
	&lt;?php
		if ($this-&gt;action == 'admin_edit') {
			echo $form-&gt;input('Seo.id');
		}
		echo $form-&gt;input('Seo.slug');
		echo $form-&gt;input('Seo.title');
		echo $form-&gt;input('Seo.description');
		echo $form-&gt;input('Seo.keywords');
	?&gt;
	&lt;/fieldset&gt;
</pre>
<p>4. Add the preparation code to beforeRender() in AppController.</p>
<pre class="brush: php;">
	function beforeRender() {
		$this-&gt;SearchEngineOptimizer-&gt;prepare();
	}
</pre>
<p>5. Add Seo.Seo to your $actsAs array in desired models or AppModel. <strong>Warning: Seo.Seo MUST come BEFORE Containable.</strong></p>
<pre class="brush: php;">
var $actsAs = array('Seo.Seo', 'Containable');
</pre>
<p>6. Add Seo.SearchEngineOptimizer to your $components array in AppController.</p>
<pre class="brush: php;">
var $components = array('Auth', 'Seo.SearchEngineOptimizer');
</pre>
<p>7. Add $seo_for_layout to your /views/layouts/default.ctp (or whichever layout files you are using). It should look something like the following.</p>
<pre class="brush: php;">
	&lt;title&gt;
		&lt;?php echo $title_for_layout; ?&gt; :: &lt;?php echo Configure::read('website.general.name') . ' :: ' . Configure::read('Application.name'); ?&gt;
	&lt;/title&gt;
	&lt;?php echo $seo_for_layout; ?&gt;
</pre>
<p>8. Finally, add routes to make your URLs extra sexy. For example:</p>
<pre class="brush: php;">
Router::connect('/recipes/*', array('controller' =&gt; 'recipes', 'action' =&gt; 'view'));
</pre>
<p>This should allow you to hit: http://mydomain.example/recipes/my-recipe-slug</p>
<p>Enjoy! Please let me know what I did wrong and what I did right. Suggestions and critiques are always welcome!</p>
]]></content:encoded>
			<wfw:commentRss>http://techno-geeks.org/2009/10/cakephp-seo-plugin/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>CakePHP ECommerce Company Considers Opening Source Code</title>
		<link>http://techno-geeks.org/2009/10/cakephp-ecommerce-compan-considers-opening-source-code/</link>
		<comments>http://techno-geeks.org/2009/10/cakephp-ecommerce-compan-considers-opening-source-code/#comments</comments>
		<pubDate>Fri, 16 Oct 2009 16:24:11 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://techno-geeks.org/?p=299</guid>
		<description><![CDATA[Mocha Shopping Cart, the leader in CakePHP eCommerce, is currently considering the move to open source. We want to give back to the CakePHP community for all that they have given us. At this time, we are very new to the open source business model and trying to figure out how to make it work. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://mochashoppingcart.com">Mocha Shopping Cart</a>, the leader in CakePHP eCommerce, is currently considering the move to open source. We want to give back to the CakePHP community for all that they have given us. At this time, we are very new to the open source business model and trying to figure out how to make it work. First and foremost, we need to see some traffic and interest before such a decision would ever be made. If you have not had a chance to try <a href="http://mochashoppingcart.com">Mocha Shopping Cart</a> feel free to sign up for a<a href="http://bit.ly/2AP0aD"> FREE beta developer account</a> or a <a href="http://mochashoppingcart.com/pricing">FREE stable account</a> and let us know how you feel about it.</p>
<p>Stay tuned for more updates!</p>
]]></content:encoded>
			<wfw:commentRss>http://techno-geeks.org/2009/10/cakephp-ecommerce-compan-considers-opening-source-code/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>1-317-MR-GEEKY</title>
		<link>http://techno-geeks.org/2009/08/1-317-mr-geeky/</link>
		<comments>http://techno-geeks.org/2009/08/1-317-mr-geeky/#comments</comments>
		<pubDate>Fri, 07 Aug 2009 00:30:17 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://techno-geeks.org/?p=244</guid>
		<description><![CDATA[
Google Voice for the win!
]]></description>
			<content:encoded><![CDATA[<p><img alt="" src="https://gfx102.iprint.com/temp/2009080617/42/7459-10121642_1-31727401888.jpg" title="Google Voice" class="alignnone" width="343" height="208" /></p>
<p>Google Voice for the win!</p>
]]></content:encoded>
			<wfw:commentRss>http://techno-geeks.org/2009/08/1-317-mr-geeky/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CakePHP E-Commerce Solutions</title>
		<link>http://techno-geeks.org/2009/06/cakephp-e-commerce-solutions/</link>
		<comments>http://techno-geeks.org/2009/06/cakephp-e-commerce-solutions/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 22:37:39 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://techno-geeks.org/?p=209</guid>
		<description><![CDATA[I spent a little bit of time testing out two CakePHP e-commerce solutions that I found today: BakeSale and CakeCart. I installed the latest versions of each and attempted to play around as much as I could. BakeSale seems to be the more mature of the two, but I couldn&#8217;t get BakeSale to install. I [...]]]></description>
			<content:encoded><![CDATA[<p>I spent a little bit of time testing out two CakePHP e-commerce solutions that I found today: <a href="http://bakesalepro.com/">BakeSale</a> and <a href="http://code.google.com/p/cake-cart/">CakeCart</a>. I installed the latest versions of each and attempted to play around as much as I could. BakeSale seems to be the more mature of the two, but I couldn&#8217;t get BakeSale to install. I posted some on each of their forums with the issues I had while installing. So far I dont think either are a good solution for professional installations.</p>
<p><a href="http://forum.bakesalepro.com/viewtopic.php?pid=1383">My BakeSale Forums Post</a><br />
<a href="http://www.cakecart.org/forums/index.php?topic=7">My CakeCart Forums Post</a></p>
<p>The burning question: <strong>Does anyone know of a solid E-Commerce solution written in CakePHP?</strong></p>
<p>I am also looking for a forums solution as well. <strong>Please Comment!</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://techno-geeks.org/2009/06/cakephp-e-commerce-solutions/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Ulduar: Leethacks Want List</title>
		<link>http://techno-geeks.org/2009/04/ulduar-leethacks-want-list/</link>
		<comments>http://techno-geeks.org/2009/04/ulduar-leethacks-want-list/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 03:26:55 +0000</pubDate>
		<dc:creator>jesse</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://techno-geeks.org/?p=141</guid>
		<description><![CDATA[Ulduar is coming out tomorrow! w00t! I have spent the past 2-3 hours developing a want list. Here it is!
]]></description>
			<content:encoded><![CDATA[<p>Ulduar is coming out tomorrow! w00t! I have spent the past 2-3 hours developing a want list. <a href="http://techno-geeks.org/wp-content/uploads/2009/04/leethacks_bis.html">Here it is!</a></p>
]]></content:encoded>
			<wfw:commentRss>http://techno-geeks.org/2009/04/ulduar-leethacks-want-list/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
