<?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>Poppy ramblings</title>
	<atom:link href="http://trackmypop.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://trackmypop.com/blog</link>
	<description>News about trackmypop.com and other random musings</description>
	<lastBuildDate>Sat, 24 Dec 2011 14:00:59 +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>Neat find/grep trick</title>
		<link>http://trackmypop.com/blog/2011/09/22/neat-findgrep-trick/</link>
		<comments>http://trackmypop.com/blog/2011/09/22/neat-findgrep-trick/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 11:47:50 +0000</pubDate>
		<dc:creator>herbcso</dc:creator>
				<category><![CDATA[random nifty stuff]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[find]]></category>
		<category><![CDATA[grep]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[unix]]></category>

		<guid isPermaLink="false">http://trackmypop.com/blog/?p=70</guid>
		<description><![CDATA[So for the longest time I was always bothered by the fact that I couldn&#8217;t grep for files of a particular name that were buried several levels deep. For example, if you wanted to do grep -r nifty.java.property *.properties , then unless you had a *.properties file in your current directory, grep would assume that [...]]]></description>
			<content:encoded><![CDATA[<p>So for the longest time I was always bothered by the fact that I couldn&#8217;t grep for files of a particular name that were buried several levels deep. For example, if you wanted to do <code>grep -r nifty.java.property *.properties</code></p>
<p>, then unless you had a *.properties file in your current directory, grep would assume that there are no other matches lower down in the structure, so you&#8217;d find nothing. Hmph.</p>
<p>So of course, find comes to the rescue. You can run <code>find . -name *.properties -exec grep nifty.java.property {} \;</code></p>
<p>and that finds all your matches &#8211; with one problem: this doesn&#8217;t tell you <em>which file</em> it found the match in, so that&#8217;s pretty useless as it stands (in any case, remember to escape the ; with \ if you run this from the shell to prevent your shell from interpreting the ; as a command separator and not passing it to find).</p>
<p>So, there are a couple of solutions to this.</p>
<ul></ul>
<ul>
<li><code>find . -name *.properties -exec grep nifty.java.property /dev/null {} \;</code><br />
<br clear="none"></br>
</li>
<p>
</ul>
<p>The reason why this works: grep normally only shows the file names in which it matched a string if it has multiple files to process. Since the find command launches one grep per file name matched when it is ended with ; (in this case \;, otherwise the shell would interpret it instead of it being passed to find), grep assumes which file name you just called it with and therefore doesn&#8217;t spit out the file name.</p>
<p>So, adding the /dev/null means another file to be searched (which is always going to return 0 results), therefore grep decides it needs to show the file name, which is really cool, because otherwise find gives you no clue as to which file it executed grep for. You could of course pass -print to find, but that gives you every single file name matched and would be totally useless as you would potentially drown in matches.</p>
<p>This is probably the most portable option since it does not rely on any special options for grep or find.</p>
<ul></ul>
<ul>
<li><code>find . -name *.properties -exec grep nifty.java.property {} +</code><br />
<br clear="none"></br>
</li>
<p>
</ul>
<p>For the longest time I totally missed that most (if not all) find versions offer the option of ending the command with +. This has the effect of passing as many paths as will fit as an argument, i.e. we&#8217;re back to grep having multiple files to match and it prints the path name again. Neat!</p>
<ul></ul>
<ul>
<li><code>find . -name *.properties -exec grep -H nifty.java.property {} \;</code><br />
<br clear="none"></br>
</li>
<p>
</ul>
<p>Some versions of grep offer the -H option, which forces grep to act as if it was matching multiple files and it prints out the file name (with full path) once again.</p>
<p>So there you have it &#8211; three methods of getting the results you need. Happy grepping! ;]</p>
<p>PS: If find barfs on a whole bunch of &#8220;permission denied&#8221;&#8216;s and spews out a bunch of extra stuff that prevents you from easily seeing the results you&#8217;re interested in, remember that you can add a <code>2> /dev/null</code></p>
<p>to redirect stderr to that great bit-bucket in the sky and get rid of all that annoying stuff.</p>
]]></content:encoded>
			<wfw:commentRss>http://trackmypop.com/blog/2011/09/22/neat-findgrep-trick/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Samsung Galaxy S II Epic 4G Touch</title>
		<link>http://trackmypop.com/blog/2011/09/18/samsung-galaxy-s-ii-epic-4g-touch/</link>
		<comments>http://trackmypop.com/blog/2011/09/18/samsung-galaxy-s-ii-epic-4g-touch/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 23:02:54 +0000</pubDate>
		<dc:creator>herbcso</dc:creator>
				<category><![CDATA[android]]></category>
		<category><![CDATA[silly]]></category>
		<category><![CDATA[silly product name]]></category>

		<guid isPermaLink="false">http://trackmypop.com/blog/?p=68</guid>
		<description><![CDATA[Longest product name EVER!? Seriously people, who wants to type all that? Seesh! Marketing&#8230; pht!]]></description>
			<content:encoded><![CDATA[<p>Longest product name EVER!? Seriously people, who wants to type all that? Seesh! Marketing&#8230; pht!</p>
]]></content:encoded>
			<wfw:commentRss>http://trackmypop.com/blog/2011/09/18/samsung-galaxy-s-ii-epic-4g-touch/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Appropriate name for an attorney&#8217;s office</title>
		<link>http://trackmypop.com/blog/2010/10/20/appropriate-name-for-an-attorneys-office/</link>
		<comments>http://trackmypop.com/blog/2010/10/20/appropriate-name-for-an-attorneys-office/#comments</comments>
		<pubDate>Wed, 20 Oct 2010 21:41:27 +0000</pubDate>
		<dc:creator>herbcso</dc:creator>
				<category><![CDATA[random nifty stuff]]></category>
		<category><![CDATA[Funny]]></category>

		<guid isPermaLink="false">http://trackmypop.com/blog/2010/10/20/appropriate-name-for-an-attorneys-office/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://trackmypop.com/blog/wp-content/uploads/2010/10/BickersBickers.png"><img src="http://trackmypop.com/blog/wp-content/uploads/2010/10/BickersBickers.png" alt="" title="Bickers&amp;Bickers" width="257" height="143" class="alignnone size-full wp-image-65" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://trackmypop.com/blog/2010/10/20/appropriate-name-for-an-attorneys-office/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Take back your Win-Space!!!</title>
		<link>http://trackmypop.com/blog/2010/10/09/take-back-your-win-space/</link>
		<comments>http://trackmypop.com/blog/2010/10/09/take-back-your-win-space/#comments</comments>
		<pubDate>Sat, 09 Oct 2010 20:29:07 +0000</pubDate>
		<dc:creator>herbcso</dc:creator>
				<category><![CDATA[random nifty stuff]]></category>
		<category><![CDATA[autohotkey]]></category>
		<category><![CDATA[hotkey]]></category>
		<category><![CDATA[launchy]]></category>
		<category><![CDATA[shortcut]]></category>
		<category><![CDATA[useful]]></category>

		<guid isPermaLink="false">http://trackmypop.com/blog/?p=54</guid>
		<description><![CDATA[So ever since I installed Windows 7, it bugged the hell out of me that I couldn&#8217;t use my beloved Win-Space hotkey anymore for my equally-beloved Launchy. That is, Until I found this post. Once again, the inimitable AutoHotKey comes charging in on its ugly white horse (the language is a bit of a pain [...]]]></description>
			<content:encoded><![CDATA[<p>So ever since I installed Windows 7, it bugged the hell out of me that I couldn&#8217;t use my beloved Win-Space hotkey anymore for my equally-beloved <a href="http://www.launchy.net/">Launchy</a>.</p>
<p>That is, Until I found <a href="http://www.msfn.org/board/topic/140220-disable-winspace-hotkey/">this</a> post. Once again, the inimitable <a href="http://www.autohotkey.com/">AutoHotKey</a> comes charging in on its ugly white horse (the language is a bit of a pain ;] ) to the rescue!</p>
<p>Simply run a script as follows:</p>
<p><code>#space::SendInput !{Space}</code></p>
<p>Now put a link in your Start menu (which if you&#8217;re like me you spend a bit of time hunting around for in Windows 7 &#8211; you can find it under C:\Users\&lt;username&gt;\AppData\Roaming\Microsoft\Windows\Start Menu (seriously!? can you make this stuff <em>harder</em> to find please, Microsoft!?) and every time you boot Windows, your Win-Space with the IMHO useless &#8220;desktop peek&#8221; functionality is overridden to send an Alt-Space hotkey instead, which if you configure Launchy to listen for that, will bring up its sweet goodness, just like it used to! ;]</p>
<p>Enjoy &#8211; I know I will!</p>
]]></content:encoded>
			<wfw:commentRss>http://trackmypop.com/blog/2010/10/09/take-back-your-win-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SpongeBob SquarePants in Buckaroo Banzai!?</title>
		<link>http://trackmypop.com/blog/2010/09/07/spongebob-squarepants-in-buckaroo-banzai/</link>
		<comments>http://trackmypop.com/blog/2010/09/07/spongebob-squarepants-in-buckaroo-banzai/#comments</comments>
		<pubDate>Tue, 07 Sep 2010 17:19:17 +0000</pubDate>
		<dc:creator>herbcso</dc:creator>
				<category><![CDATA[random nifty stuff]]></category>
		<category><![CDATA[8th dimension]]></category>
		<category><![CDATA[Buckaroo Banzai]]></category>
		<category><![CDATA[concidence]]></category>
		<category><![CDATA[SpongeBob]]></category>
		<category><![CDATA[SquarePants]]></category>
		<category><![CDATA[weird]]></category>

		<guid isPermaLink="false">http://trackmypop.com/blog/?p=44</guid>
		<description><![CDATA[So I was watching Buckaroo Banzai again after first having seen it way back when in college in the &#8217;90s and I&#8217;m sitting through the opening credits when the following frame catches my attention (grabbed from 2m37s into the movie as it plays on streaming Netflix right now): Wait! What was that? That looks like&#8230; [...]]]></description>
			<content:encoded><![CDATA[<p>So I was watching <a href="http://www.imdb.com/title/tt0086856/">Buckaroo Banzai</a> again after first having seen it way back when in college in the &#8217;90s and I&#8217;m sitting through the opening credits when the following frame catches my attention (grabbed from 2m37s into the movie as it plays on streaming Netflix right now):</p>
<p><a href="http://trackmypop.com/blog/wp-content/uploads/2010/09/BuckarooBanzaiSpngeBobSmallFrame.png"><img src="http://trackmypop.com/blog/wp-content/uploads/2010/09/BuckarooBanzaiSpngeBobSmallFrame-300x127.png" alt="Buckaroo Banzai SpongeBob small frame" title="Buckaroo Banzai SpongeBob small frame" width="300" height="127" class="alignnone size-medium wp-image-45" /></a></p>
<p>Wait! What was that? That looks like&#8230; nah, it can&#8217;t be! Or is it? Damn me to hell and back, that does look an awful lot like <a href="http://spongebob.nick.com/">SpongeBob SquarePants</a> &#8211; what&#8217;s he doing in <a href="http://www.imdb.com/title/tt0086856/">&#8220;The Adventures of Buckaroo Banzai Across the 8th Dimension&#8221;</a>!? Here&#8217;s a closer look:</p>
<p><a href="http://trackmypop.com/blog/wp-content/uploads/2010/09/SpongBobCloseup.png"><img src="http://trackmypop.com/blog/wp-content/uploads/2010/09/SpongBobCloseup.png" alt="SpongBob closeup" title="SpongBob closeup" width="155" height="182" class="alignnone size-full wp-image-46" /></a></p>
<p>Wow! Looks just like him, don&#8217;t you think?</p>
<p><a href="http://trackmypop.com/blog/wp-content/uploads/2010/09/SpongeBobReal.png"><img src="http://trackmypop.com/blog/wp-content/uploads/2010/09/SpongeBobReal.png" alt="SpongeBob SquarePants current" title="SpongeBob SquarePants current" width="200" height="201" class="alignnone size-full wp-image-47" /></a></p>
<p>What can I say except: wow!</p>
]]></content:encoded>
			<wfw:commentRss>http://trackmypop.com/blog/2010/09/07/spongebob-squarepants-in-buckaroo-banzai/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>My desk, post 4am programming orgy</title>
		<link>http://trackmypop.com/blog/2010/08/27/my-desk-post-4am-programming-orgy/</link>
		<comments>http://trackmypop.com/blog/2010/08/27/my-desk-post-4am-programming-orgy/#comments</comments>
		<pubDate>Fri, 27 Aug 2010 19:58:29 +0000</pubDate>
		<dc:creator>herbcso</dc:creator>
				<category><![CDATA[random nifty stuff]]></category>
		<category><![CDATA[Fun]]></category>

		<guid isPermaLink="false">http://trackmypop.com/blog/2010/08/27/my-desk-post-4am-programming-orgy/</guid>
		<description><![CDATA[&#8217;nuff said&#8230; ;]]]></description>
			<content:encoded><![CDATA[<p><img style="display:block;margin-right:auto;margin-left:auto;" alt="image" src="http://trackmypop.com/blog/wp-content/uploads/2010/08/wpid-2010-08-27_15-57-10_121.jpg" /></p>
<p>&#8217;nuff said&#8230; ;]</p>
]]></content:encoded>
			<wfw:commentRss>http://trackmypop.com/blog/2010/08/27/my-desk-post-4am-programming-orgy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DVD burner complexities</title>
		<link>http://trackmypop.com/blog/2010/08/03/dvd-burner-complexities/</link>
		<comments>http://trackmypop.com/blog/2010/08/03/dvd-burner-complexities/#comments</comments>
		<pubDate>Wed, 04 Aug 2010 04:14:17 +0000</pubDate>
		<dc:creator>herbcso</dc:creator>
				<category><![CDATA[random nifty stuff]]></category>
		<category><![CDATA[burner]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[DVD]]></category>
		<category><![CDATA[hardware]]></category>
		<category><![CDATA[musings]]></category>

		<guid isPermaLink="false">http://trackmypop.com/blog/2010/08/03/dvd-burner-complexities/</guid>
		<description><![CDATA[So I took apart my DVD burner today &#8211; no worries, it was already broken&#8230; ;] I have to say, I was simply astounded at the complexity of the mechanism. I mean, sure, I knew that it was complex, but the intricacies of the mechanism floored me. I had no idea that such am everyday [...]]]></description>
			<content:encoded><![CDATA[<p>So I took apart my DVD burner today &#8211; no worries, it was already broken&#8230; ;]</p>
<p>I have to say, I was simply astounded at the complexity of the mechanism. I mean, sure, I knew that it was complex, but the intricacies of the mechanism floored me. I had no idea that such am everyday item possessed such engineering beauty!</p>
<p>First of all came the tray mechanism with all of its plastic-geared beauty&#8230; Well, maybe that bit wasn&#8217;t so beautiful after all&#8230; ;] However the worm gear drive and stepper motor was pretty cool.</p>
<p>The direct drive CD spinning motor was pretty cool, too &#8211; at least I think it is when you think about how fast it had to spin that little plastic platter.</p>
<p>The real marvel of the thing comes in the read-write head, however. That is a precision-cast little bit of aluminium (to keep it light) that is machined to some apparently pretty tight tolerances to keep the optical path accurate. This is wrapped in a miniature 3D circuit board whose equal I have yet to see elsewhere, including laptop designs. These were little bits of board connect with filigree ribbon (I hesitate to call them &#8220;cables&#8221;) that wrapped around all sides of the aluminium substructure.</p>
<p>Not stopping there, we have a wonderfully complex optical path that includes the laser diode, a detector and the lens that is suspended on the teeniest imaginable copper springs which also service as current-carrying conduits that energize the circuit boards on either side of the lens. These  circuits create electric loops which then help to drive it up and down inside the strong magnetic field generated by the two tiny rare-earth magnets on either side.</p>
<p>All in all a complete engineering marvel that I picked up for a measly $40.</p>
<p>I think I&#8217;m beginning to understand why these things cost over $1,000 at inception&#8230; ;]</p>
]]></content:encoded>
			<wfw:commentRss>http://trackmypop.com/blog/2010/08/03/dvd-burner-complexities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yeah, the C64 is coming back! ;]</title>
		<link>http://trackmypop.com/blog/2010/06/20/yeah-the-c64-is-coming-back/</link>
		<comments>http://trackmypop.com/blog/2010/06/20/yeah-the-c64-is-coming-back/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 17:43:11 +0000</pubDate>
		<dc:creator>herbcso</dc:creator>
				<category><![CDATA[random nifty stuff]]></category>
		<category><![CDATA[c64]]></category>
		<category><![CDATA[computers]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[equipment]]></category>
		<category><![CDATA[gadgets]]></category>

		<guid isPermaLink="false">http://trackmypop.com/blog/?p=37</guid>
		<description><![CDATA[This is kinda cool. It&#8217;s a new C64 (this time a 64-bit full Wintel computer) in the same form factor as the old C64. Not sure how practical it&#8217;ll be, especially with the keyboard being kind of thick, but it makes me go all nostalgic inside.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.commodoreusa.net/Commodore_Phoenix_computer.html">This</a> is kinda cool. It&#8217;s a new C64 (this time a 64-bit full Wintel computer) in the same form factor as the old C64. Not sure how practical it&#8217;ll be, especially with the keyboard being kind of thick, but it makes me go all nostalgic inside.</p>
<p><img alt="" src="http://www.commodoreusa.net/i//9100_2-1.jpg" title="The new C64" class="alignnone" width="400" height="230" /></p>
]]></content:encoded>
			<wfw:commentRss>http://trackmypop.com/blog/2010/06/20/yeah-the-c64-is-coming-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Whoa!</title>
		<link>http://trackmypop.com/blog/2010/06/18/whoa/</link>
		<comments>http://trackmypop.com/blog/2010/06/18/whoa/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 01:32:09 +0000</pubDate>
		<dc:creator>herbcso</dc:creator>
				<category><![CDATA[random nifty stuff]]></category>
		<category><![CDATA[cool]]></category>
		<category><![CDATA[image processing]]></category>
		<category><![CDATA[mathematica]]></category>

		<guid isPermaLink="false">http://trackmypop.com/blog/?p=32</guid>
		<description><![CDATA[Wow &#8211; this is like cool beyond words! I kinda want a copy of Mathematica 7 now&#8230; ;] (click the image to read the blog post explaining the neat image processing capabilities of Mathematica 7). OK, yeah, I&#8217;m a huge nerd &#8211; what&#8217;s your point? ;]]]></description>
			<content:encoded><![CDATA[<p>Wow &#8211; this is like cool beyond words! I kinda want a copy of Mathematica 7 now&#8230; ;] (click the image to read the blog post explaining the neat image processing capabilities of Mathematica 7).</p>
<p><a href="http://blog.wolfram.com/2008/12/01/the-incredible-convenience-of-mathematica-image-processing/"><div class="wp-caption alignnone" style="width: 511px"><img alt="Image processing in Mathematica" src="http://blog.wolfram.com/data/uploads/2008/11/imageprocessing23.jpg" title="Blue Geese" width="400" height="340" /><p class="wp-caption-text">Image processing in Mathematica</p></div></a></p>
<p>OK, yeah, I&#8217;m a huge nerd &#8211; what&#8217;s your point? ;]</p>
]]></content:encoded>
			<wfw:commentRss>http://trackmypop.com/blog/2010/06/18/whoa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>CakePHP and XDebug</title>
		<link>http://trackmypop.com/blog/2010/05/30/cakephp-and-xdebug/</link>
		<comments>http://trackmypop.com/blog/2010/05/30/cakephp-and-xdebug/#comments</comments>
		<pubDate>Sun, 30 May 2010 18:44:19 +0000</pubDate>
		<dc:creator>herbcso</dc:creator>
				<category><![CDATA[cakephp]]></category>
		<category><![CDATA[frameworks]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[debugger]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[xdebug]]></category>

		<guid isPermaLink="false">http://trackmypop.com/blog/?p=26</guid>
		<description><![CDATA[So this is not going to come as much of a shock to people experienced with CakePHP, but I&#8217;m just learning now and liking what I&#8217;m seeing. CakePHP 1.3 has a really nice set of conventions to work against and provides a seemingly pretty good scaffold for most typical webapps, so I&#8217;m thinking I&#8217;ll be [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cakephp.org/" target="_new"><img border="0" src="http://trackmypop.com/blog/wp-content/uploads/2010/05/cakephp.png" alt="CakePHP Logo" title="cakephp" width="20" height="20" class="alignnone size-full wp-image-29" /></a>So this is not going to come as much of a shock to people experienced with CakePHP, but I&#8217;m just learning now and liking what I&#8217;m seeing. CakePHP 1.3 has a really nice set of conventions to work against and provides a seemingly pretty good scaffold for most typical webapps, so I&#8217;m thinking I&#8217;ll be making some more progress with that. Questions I still need to resolve include:</p>
<ol>
<li>Does it support jQuery easily enough (CakePHP uses Prototype/Scriptaculous as its default framework, but has provisions for using others)</li>
<li>Is the Ajax-y goodness baked in enough?</li>
<li>Will it really be flexible enough to accomodate my needs?</li>
</ol>
<p>AS part of this I also ended up installing Xdebug, since that&#8217;s the default debugger for CakePHP. I must admit, the things I really like about it so far are:</p>
<ol>
<li>Ease of install (instructions <a href="http://www.xdebug.org/docs/install">here</a> got me up and running and a couple of tweaks to my Eclipse PDT setup (which supports Xdebug out of the box &#8211; nice!) found <a href="http://devzone.zend.com/article/2930">here</a> and <a href="https://aptanastudio.tenderapp.com/discussions/problems/1168-xdebug-no-stop-at-breakpoint">here</a> got me the rest of the way). The <a href="http://www.xdebug.org/find-binary.php">tailored install instructions</a> that analyze your php.ini, provide the correct download and customized install instructions is the coolest thing for a newb like me to get up and running quickly! ;]</li>
<li>Code coverage analyzer! I&#8217;m not sure if Zend Debug is able to do the same thing, but that&#8217;s way cool!</li>
</ol>
<p>All in all, looks like I&#8217;ve found me a framework I can be happy with &#8211; finally! ;]</p>
]]></content:encoded>
			<wfw:commentRss>http://trackmypop.com/blog/2010/05/30/cakephp-and-xdebug/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

