<?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>acloudtree &#187; 106</title>
	<atom:link href="http://www.acloudtree.com/tag/106/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.acloudtree.com</link>
	<description>Programming, Computers, Writing, Economics, and Life</description>
	<lastBuildDate>Sat, 10 Jul 2010 02:00:35 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>(Nerd) Logitec MX Mouse &amp; Snow Leopard 10.6 functionality</title>
		<link>http://www.acloudtree.com/nerd-logitec-mx-functionality-under-snow-leopard-106/</link>
		<comments>http://www.acloudtree.com/nerd-logitec-mx-functionality-under-snow-leopard-106/#comments</comments>
		<pubDate>Tue, 01 Sep 2009 18:04:35 +0000</pubDate>
		<dc:creator>jared.folkins</dc:creator>
				<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[106]]></category>
		<category><![CDATA[leopard]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[Logitech]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[Mouse]]></category>
		<category><![CDATA[Mx]]></category>
		<category><![CDATA[OS]]></category>
		<category><![CDATA[Snow]]></category>
		<category><![CDATA[symbolic]]></category>
		<category><![CDATA[X]]></category>

		<guid isPermaLink="false">http://www.acloudtree.com/nerd-logitec-mx-functionality-under-snow-leopard-106/</guid>
		<description><![CDATA[For hard core geeks out there, nothing is more important than peripherals. Having a solid setup makes life a lot easier when your livelihood is working on the computer day in and day out.
Keyboard = link
Mouse = link
Recently we have been testing the new and (Not Really) improved Mac operating system. I use my mouse [...]]]></description>
			<content:encoded><![CDATA[<p>For hard core geeks out there, nothing is more important than peripherals. Having a solid setup makes life a lot easier when your livelihood is working on the computer day in and day out.</p>
<p>Keyboard = <a href="http://www.amazon.com/Microsoft-Natural-Ergo-Keyboard-4000/dp/B000A6PPOK/ref=sr_1_1?ie=UTF8&amp;s=electronics&amp;qid=1251827907&amp;sr=1-1" title="Keyboard">link</a></p>
<p>Mouse = <a href="http://www.amazon.com/Logitech-Revolution-Cordless-Laser-Mouse/dp/B000HCT12O/ref=sr_1_1?ie=UTF8&amp;s=electronics&amp;qid=1251827946&amp;sr=1-1" title="Mouse">link</a></p>
<p>Recently we have been testing the new and (Not Really) improved Mac operating system. I use my mouse to bounce in between virtual desktops by assigning several of my mouse buttons to the applications &#8216;Spaces.app&#8217; and &#8216;Expose.app&#8217;. After upgrading to 10.6 (Snow Leopard) those features ended up broken. The reason is that Snow Leopard moved the applications &#8216;Spaces.app&#8217; and &#8216;Expose.app&#8217; into the &#8216;Utilities&#8217; directory. The good news is that the fix is simple, all you have to to is create a couple of Symbolic links.</p>
<p>This is assuming you have the Logitech software installed for the mac.</p>
<p>1) Open the application &#8216;Terminal&#8217;</p>
<p>2) From the command line, run the following commands. You may be prompted for your password.</p>
<p><code><br />
sudo ln -s /Applications/Utilities/Spaces.app /Applications/Spaces.app<br />
</code></p>
<p><code><br />
sudo ln -s /Applications/Utilities/Expose.app /Applications/Expose.app<br />
</code></p>
<p>And that should do it!</p>
<p>You may need to reassign your mouse buttons again in;<br />
&#8216;System Preferences&#8217;-&gt;&#8217;Logitech Control Center&#8217;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.acloudtree.com/nerd-logitec-mx-functionality-under-snow-leopard-106/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beginning Cakephp &#8211; Errata : Pg 106</title>
		<link>http://www.acloudtree.com/beginning-cakephp-errata-pg-106/</link>
		<comments>http://www.acloudtree.com/beginning-cakephp-errata-pg-106/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 00:17:56 +0000</pubDate>
		<dc:creator>jared.folkins</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[cakephp]]></category>
		<category><![CDATA[106]]></category>
		<category><![CDATA[beginning cakephp]]></category>
		<category><![CDATA[errata]]></category>
		<category><![CDATA[findByYear]]></category>

		<guid isPermaLink="false">http://www.acloudtree.com/?p=44</guid>
		<description><![CDATA[The findByYear() function is messed up in the book. Thought I would post the correction to remind myself.
Correct!


function findByYear($year=null) {
	$date = $year.'-01-01 00:00:00';
	$end_date = $year.'-12-31 23:59:59';
	return $this-&#62;find('all',
		array(
			'conditions' =&#62;
			array(
				'DATE(Post.date) &#62;' =&#62; $date,
				'DATE(Post.date) &#60;' =&#62; $end_date
			)
		 )
	);
}


Incorrect!


function findByYear($year=null) {
	$date = $year.'-01-01 00:00:00';
	$end_date = $year.'-12-31 23:59:59';
	return $this-&#62;find('all',
		array(
			'conditions' =&#62;
			array(
				'DATE(Post.date)' =&#62; '&#62;'.$date,
				'DATE(Post.date)' =&#62; '&#60;'.$end_date
			)
		)
	);
}


]]></description>
			<content:encoded><![CDATA[<p>The findByYear() function is messed up in the book. Thought I would post the correction to remind myself.</p>
<p>Correct!<br />
<code></p>
<pre>
function findByYear($year=null) {
	$date = $year.'-01-01 00:00:00';
	$end_date = $year.'-12-31 23:59:59';
	return $this-&gt;find('all',
		array(
			'conditions' =&gt;
			array(
				'DATE(Post.date) &gt;' =&gt; $date,
				'DATE(Post.date) &lt;' =&gt; $end_date
			)
		 )
	);
}
</pre>
<p></code><br />
Incorrect!<br />
<code></p>
<pre>
function findByYear($year=null) {
	$date = $year.'-01-01 00:00:00';
	$end_date = $year.'-12-31 23:59:59';
	return $this-&gt;find('all',
		array(
			'conditions' =&gt;
			array(
				'DATE(Post.date)' =&gt; '&gt;'.$date,
				'DATE(Post.date)' =&gt; '&lt;'.$end_date
			)
		)
	);
}
</pre>
<p></code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.acloudtree.com/beginning-cakephp-errata-pg-106/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
