<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet href="http://feeds.mirthlab.com/~d/styles/rss2full.xsl" type="text/xsl" media="screen"?><?xml-stylesheet href="http://feeds.mirthlab.com/~d/styles/itemcontent.css" type="text/css" media="screen"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>MirthLab</title>
	
	<link>http://blog.mirthlab.com</link>
	<description>fortune favors the bold</description>
	<pubDate>Tue, 18 Nov 2008 22:31:11 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.3</generator>
	<language>en</language>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.mirthlab.com/mirthlab" type="application/rss+xml" /><item>
		<title>Simple Symfony Login Form Example</title>
		<link>http://feeds.mirthlab.com/~r/mirthlab/~3/457693142/</link>
		<comments>http://blog.mirthlab.com/2008/11/18/simple-symfony-login-form-example/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 22:25:46 +0000</pubDate>
		<dc:creator>Mark Quezada</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[forms]]></category>

		<category><![CDATA[symfony]]></category>

		<category><![CDATA[symfony 1.2]]></category>

		<guid isPermaLink="false">http://blog.mirthlab.com/?p=151</guid>
		<description><![CDATA[There are times when I just need a simple login form that checks for a certain username and password combination in order to lockdown a backend administration interface. The new sfForm sub-framework in Symfony 1.1/1.2 makes it really easy to reuse a Form class for this. Here&#8217;s an example:

&#60;?php

class LoginForm extends sfForm
{
  public function [...]]]></description>
			<content:encoded><![CDATA[<p>There are times when I just need a simple login form that checks for a certain username and password combination in order to lockdown a backend administration interface. The new sfForm sub-framework in Symfony 1.1/1.2 makes it really easy to reuse a Form class for this. Here&#8217;s an example:</p>

<pre><code>&lt;?php

class LoginForm extends sfForm
{
  public function configure()
  {
    $this-&gt;setWidgets(array(
      'username' =&gt; new sfWidgetFormInput(), 
      'password' =&gt; new sfWidgetFormInputPassword() 
    ));

    $this-&gt;widgetSchema-&gt;setNameFormat('login[%s]');

    $this-&gt;setValidators(array(
      'username' =&gt; new sfValidatorChoice(array('required' =&gt; true, 'choices' =&gt; array('admin'))), 
      'password' =&gt; new sfValidatorChoice(array('required' =&gt; true, 'choices' =&gt; array('some_password')))
    ));
  }
}
</code></pre>

<p>The key here is using <code>sfValidatorChoice</code> to ensure that the input matches some predefined keys (&#8220;admin&#8221; and &#8220;some_password&#8221; in this case).</p>

<p>For completeness, here&#8217;s the action file:</p>

<pre><code>&lt;?php

class authActions extends sfActions
{
  public function executeLogin(sfWebRequest $request)
  {
    $this-&gt;form = new LoginForm();

    if ($request-&gt;isMethod('post'))
    {
      $this-&gt;form-&gt;bind($request-&gt;getParameter('login'));
      if ($this-&gt;form-&gt;isValid())
      {
        // authenticate user and redirect them
        $this-&gt;getUser()-&gt;setAuthenticated(true);
        $this-&gt;getUser()-&gt;addCredential('user');
        $this-&gt;redirect('home/index');
      }
    }
  }

  public function executeLogout()
  {
    $this-&gt;getUser()-&gt;clearCredentials();
    $this-&gt;getUser()-&gt;setAuthenticated(false);
    $this-&gt;redirect('@homepage');
  }
}
</code></pre>

<p>And the template file <code>loginSuccess.php</code>:</p>

<pre><code>&lt;form action="&lt;?php echo url_for('auth/login') ?&gt;" method="POST"&gt;
  &lt;table&gt;
    &lt;?php echo $form ?&gt;
    &lt;tr&gt;
      &lt;td colspan="2"&gt;
        &lt;input type="submit" /&gt;
      &lt;/td&gt;
    &lt;/tr&gt;
  &lt;/table&gt;
&lt;/form&gt;
</code></pre>

<p>And of course, you&#8217;ll want to turn on security for the application in <code>security.yml</code>:</p>

<pre><code>default:
  is_secure: on
  credentials: user
</code></pre>

<p><a href="http://feeds.mirthlab.com/~a/mirthlab?a=wAvyGs"><img src="http://feeds.mirthlab.com/~a/mirthlab?i=wAvyGs" border="0"></img></a></p><img src="http://feeds.mirthlab.com/~r/mirthlab/~4/457693142" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.mirthlab.com/2008/11/18/simple-symfony-login-form-example/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.mirthlab.com/2008/11/18/simple-symfony-login-form-example/</feedburner:origLink></item>
		<item>
		<title>Leveraging the OnChange Event of Inputs with jQuery</title>
		<link>http://feeds.mirthlab.com/~r/mirthlab/~3/457662666/</link>
		<comments>http://blog.mirthlab.com/2008/11/18/leveraging-the-onchange-event-of-inputs-with-jquery/#comments</comments>
		<pubDate>Tue, 18 Nov 2008 21:51:19 +0000</pubDate>
		<dc:creator>Mark Quezada</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[events]]></category>

		<category><![CDATA[jquery]]></category>

		<guid isPermaLink="false">http://blog.mirthlab.com/?p=149</guid>
		<description><![CDATA[This may be obvious, but it&#8217;s something that&#8217;s easily overlooked. Text inputs, like select fields, have an onChange handler that can be leveraged to detect when a field has been (you guessed it&#8230;) changed. This may not seem like a big deal, but it really helps when, for example, you&#8217;re trying to keep track of [...]]]></description>
			<content:encoded><![CDATA[<p>This may be obvious, but it&#8217;s something that&#8217;s easily overlooked. Text inputs, like select fields, have an <code>onChange</code> handler that can be leveraged to detect when a field has been (you guessed it&#8230;) changed. This may not seem like a big deal, but it really helps when, for example, you&#8217;re trying to keep track of which text fields on a page have been updated so you can save them to a database via ajax.</p>

<p>Here&#8217;s a nice, simple method to easily detect (and save) inputs that have been modified by leveraging the <code>onChange</code> method of inputs via jQuery:</p>

<pre><code>$(":input").change(function() {
    // save the field's new value
    $.post("save_data.php", { field: $(this).attr('id'), value: $(this).val() });
    }
);
</code></pre>

<p>&#8230; the nice thing about this method is that you don&#8217;t have to track previous and new values since this method will only get triggered if the data has been altered in the textbox. Obviously, this is just an example, but it should serve as a good primer for what&#8217;s possible.</p>

<p>(Via <a href="http://www.bennadel.com/index.cfm?dax=blog:1401.view">Ben Nadel</a>)`</p>

<p><a href="http://feeds.mirthlab.com/~a/mirthlab?a=AEppiM"><img src="http://feeds.mirthlab.com/~a/mirthlab?i=AEppiM" border="0"></img></a></p><img src="http://feeds.mirthlab.com/~r/mirthlab/~4/457662666" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.mirthlab.com/2008/11/18/leveraging-the-onchange-event-of-inputs-with-jquery/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.mirthlab.com/2008/11/18/leveraging-the-onchange-event-of-inputs-with-jquery/</feedburner:origLink></item>
		<item>
		<title>Rescuing Under-Appreciated Blogs</title>
		<link>http://feeds.mirthlab.com/~r/mirthlab/~3/455190197/</link>
		<comments>http://blog.mirthlab.com/2008/11/16/rescuing-under-appreciated-blogs/#comments</comments>
		<pubDate>Sun, 16 Nov 2008 19:35:39 +0000</pubDate>
		<dc:creator>Mark Quezada</dc:creator>
		
		<category><![CDATA[Links]]></category>

		<category><![CDATA[blogging]]></category>

		<guid isPermaLink="false">http://blog.mirthlab.com/?p=147</guid>
		<description><![CDATA[Chuck Westbrook has an interesting idea to end the &#8220;tragedy of under-appreciated blogs&#8221;:


  
  Gather some nice bloggers who believe in helping good content rise. The more the merrier. This becomes our group for the project.
  A good, lesser-known blog is chosen. Everyone in the group will read that blog for two [...]]]></description>
			<content:encoded><![CDATA[<p>Chuck Westbrook has an <a href="http://chuckwestbrook.com/great-content-no-readers/">interesting idea</a> to end the &#8220;tragedy of under-appreciated blogs&#8221;:</p>

<blockquote>
  <ol>
  <li>Gather some nice bloggers who believe in helping good content rise. The more the merrier. This becomes our group for the project.</li>
  <li>A good, lesser-known blog is chosen. Everyone in the group will read that blog for two weeks.</li>
  <li>At the end of the two weeks, the group moves to another blog to read.</li>
  </ol>
  
  <p>With scores of bloggers focused on a particular blog, the author should see many nice things happen over those two weeks, especially if the blog really is a hidden gem. This includes discussions, traffic, constructive criticism, encouragement, and connecting to some of the bloggers in the group. That author then joins the group and we move along and do it again.</p>
</blockquote>

<p>Sounds like an interesting idea, but with the sheer volume of blogs out there, will this really help? There&#8217;s also an inherent problem with this approach: many blogs cater to very niche interest groups (like for example, this blog). It would be hard to appreciate a good blog where you&#8217;re unfamiliar with the subject matter.</p>

<p>Regardless, sounds like a great idea for some blogs to get the exposure they need. </p>

<p><a href="http://feeds.mirthlab.com/~a/mirthlab?a=iCNjEn"><img src="http://feeds.mirthlab.com/~a/mirthlab?i=iCNjEn" border="0"></img></a></p><img src="http://feeds.mirthlab.com/~r/mirthlab/~4/455190197" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.mirthlab.com/2008/11/16/rescuing-under-appreciated-blogs/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.mirthlab.com/2008/11/16/rescuing-under-appreciated-blogs/</feedburner:origLink></item>
		<item>
		<title>Dynamically Adding and Removing TinyMCE Instances to a Page</title>
		<link>http://feeds.mirthlab.com/~r/mirthlab/~3/452636029/</link>
		<comments>http://blog.mirthlab.com/2008/11/13/dynamically-adding-and-removing-tinymce-instances-to-a-page/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 07:11:39 +0000</pubDate>
		<dc:creator>Mark Quezada</dc:creator>
		
		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[ajax]]></category>

		<category><![CDATA[javascript]]></category>

		<category><![CDATA[tinymce]]></category>

		<guid isPermaLink="false">http://blog.mirthlab.com/?p=143</guid>
		<description><![CDATA[TinyMCE is a pretty neat tool for adding some WYSIWYG editing features to standard HTML textarea and div tags. Out of the box it&#8217;s pretty easy to install and use, but I ran into some trouble trying to dynamically load and unload editor instances to a textarea that was injected into the DOM via Ajax. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://tinymce.moxiecode.com/">TinyMCE</a> is a pretty neat tool for adding some WYSIWYG editing features to standard HTML <code>textarea</code> and <code>div</code> tags. Out of the box it&#8217;s pretty easy to install and use, but I ran into some trouble trying to dynamically load and unload editor instances to a <code>textarea</code> that was injected into the DOM via Ajax. Turns out that I was trying to instantiate the editor instance before the <code>textarea</code> tag had been unhidden which caused TinyMCE to choke and die for some reason.</p>

<p>What follows is a quick overview on how to instantiate TinyMCE dynamically.</p>

<p>Once you&#8217;ve installed TinyMCE, in your main template you&#8217;ll want to create a base configuration for the TinyMCE instances you&#8217;ll be using:</p>

<pre><code>&lt;script type="text/javascript" charset="utf-8"&gt;
    tinyMCE.init({
        mode : "none",
        theme : "simple"
    });
&lt;/script&gt;
</code></pre>

<p>You&#8217;ll notice that we&#8217;re using the mode &#8220;none&#8221; here. This basically sets up TinyMCE without actually transforming any of the text fields on the page. This is the only thing that&#8217;s really important. You can of course use the advanced theme, but I&#8217;m using the simple theme for brevity.</p>

<p>At this point, you can do whatever you need to do in the DOM to add and remove text areas dynamically. To attach an instance of TinyMCE to a (dynamically loaded) text area, just do this after the insertion:</p>

<pre><code>tinyMCE.execCommand('mceAddControl', false, 'the_textareas_id_here');
</code></pre>

<p>&#8230; and if you&#8217;re going to remove that text area dynamically, do this before removing it:</p>

<pre><code>tinyMCE.execCommand('mceFocus', false, 'the_textareas_id_here');                    
tinyMCE.execCommand('mceRemoveControl', false, 'the_textareas_id_here');
</code></pre>

<p>I use the &#8220;mceFocus&#8221; command before removing the instance because I&#8217;ve read that without it IE will sometimes fail. Also, you can do something like this if you want to make sure the TinyMCE instance exists before trying to remove it:</p>

<pre><code>if (tinyMCE.getInstanceById('the_textareas_id_here'))
{
    tinyMCE.execCommand('mceFocus', false, 'the_textareas_id_here');                    
    tinyMCE.execCommand('mceRemoveControl', false, 'the_textareas_id_here');
}
</code></pre>

<p>Since TinyMCE doesn&#8217;t actually use the original <code>textarea</code> to do it&#8217;s magic, you&#8217;ll have to trigger a command to repopulate the original <code>textarea</code> tag with the modified contents before further manipulating the data:</p>

<pre><code>tinyMCE.triggerSave();
</code></pre>

<p>If it&#8217;s not completely obvious, the reason you have to jump through all these hoops is because TinyMCE does some interesting things in the background in order to make it look and feel like you&#8217;re using a real text editor. This involves some intricate DOM manipulation and hackery. </p>

<p>All in all, I&#8217;ve found that this method works very well in practice. Again, just be sure that the element you&#8217;re adding the TinyMCE instance to <strong>isn&#8217;t hidden</strong> in the DOM. For some reason this&#8217;ll kill TinyMCE and you&#8217;ll end up with a blank editor that doesn&#8217;t work. In FireFox this was often seen as the dreaded <code>t.win.document is null</code> error.</p>

<p><a href="http://feeds.mirthlab.com/~a/mirthlab?a=jGpR1A"><img src="http://feeds.mirthlab.com/~a/mirthlab?i=jGpR1A" border="0"></img></a></p><img src="http://feeds.mirthlab.com/~r/mirthlab/~4/452636029" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.mirthlab.com/2008/11/13/dynamically-adding-and-removing-tinymce-instances-to-a-page/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.mirthlab.com/2008/11/13/dynamically-adding-and-removing-tinymce-instances-to-a-page/</feedburner:origLink></item>
		<item>
		<title>Cocoa Toolkits and Resources</title>
		<link>http://feeds.mirthlab.com/~r/mirthlab/~3/452615883/</link>
		<comments>http://blog.mirthlab.com/2008/11/13/cocoa-toolkits-and-resources/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 06:33:03 +0000</pubDate>
		<dc:creator>Mark Quezada</dc:creator>
		
		<category><![CDATA[Links]]></category>

		<category><![CDATA[Mac Development]]></category>

		<category><![CDATA[cocoa]]></category>

		<category><![CDATA[mvc]]></category>

		<category><![CDATA[toolkit]]></category>

		<guid isPermaLink="false">http://blog.mirthlab.com/?p=141</guid>
		<description><![CDATA[I&#8217;ve been fooling around with Cocoa development over the last few months and I&#8217;m beginning to really love Objective-C. The syntax was a bit daunting at first, but the language seems really elegant once you figure it out. As my understanding of Cocoa and Objective-C increases I&#8217;ve been trying to compile a list of resources. [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been fooling around with Cocoa development over the last few months and I&#8217;m beginning to really love Objective-C. The syntax was a bit daunting at first, but the language seems really elegant once you figure it out. As my understanding of Cocoa and Objective-C increases I&#8217;ve been trying to compile a list of resources. There&#8217;s a wealth of really great example code out there if you know where to look.</p>

<p>A couple of new Cocoa Development toolkits have recently emerged which aim to ease development of common Cocoa development tasks:</p>

<p><a href="http://katidev.com/blog/ktuikit/">KTUIKit</a>:</p>

<blockquote>
  <p>The goal of the project is to provide solutions to three important issues in any Mac UI project:</p>
  
  <ul>
  <li>Layout</li>
  <li>Styling</li>
  <li>The MVC design pattern (specifically the V &#038; C parts)</li>
  </ul>
</blockquote>

<p>And also <a href="http://www.brandonwalkin.com/blog/2008/11/13/introducing-bwtoolkit/">BWToolkit</a>:</p>

<blockquote>
  <p>BWToolkit is a BSD licensed plugin for Interface Builder 3 that contains commonly used UI elements and other useful objects. Using these objects is as simple as dragging them from the library to your canvas or document window.</p>
</blockquote>

<p>Both toolkits come with an Interface Builder plugin to ease integration with your own projects.</p>

<p>Also, <a href="http://mattgemmell.com">Matt Gemmell</a> has an <a href="http://mattgemmell.com/source">excellent library of Cocoa Source code</a> online that you are free to use in your own projects.</p>

<p><a href="http://feeds.mirthlab.com/~a/mirthlab?a=k0fSDK"><img src="http://feeds.mirthlab.com/~a/mirthlab?i=k0fSDK" border="0"></img></a></p><img src="http://feeds.mirthlab.com/~r/mirthlab/~4/452615883" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.mirthlab.com/2008/11/13/cocoa-toolkits-and-resources/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.mirthlab.com/2008/11/13/cocoa-toolkits-and-resources/</feedburner:origLink></item>
		<item>
		<title>Macworld Reviews Things for iPhone</title>
		<link>http://feeds.mirthlab.com/~r/mirthlab/~3/452596918/</link>
		<comments>http://blog.mirthlab.com/2008/11/13/macworld-reviews-things-for-iphone/#comments</comments>
		<pubDate>Fri, 14 Nov 2008 06:03:35 +0000</pubDate>
		<dc:creator>Mark Quezada</dc:creator>
		
		<category><![CDATA[Links]]></category>

		<category><![CDATA[Mac]]></category>

		<category><![CDATA[gtd]]></category>

		<category><![CDATA[iphone]]></category>

		<category><![CDATA[things]]></category>

		<guid isPermaLink="false">http://blog.mirthlab.com/?p=139</guid>
		<description><![CDATA[Jason Snell reviews Things for iPhone:


  I’ve got to get my life under control. So much to do, so little time. I’ve tried lots of different ways to track to-dos, but none of them really stuck before I started using Cultured Code’s $10 Things.


As I&#8217;ve written previously, my experience has been much the same. [...]]]></description>
			<content:encoded><![CDATA[<p>Jason Snell <a href="http://www.macworld.com/article/136713/2008/11/things_iphone.html?lsrc=rss_weblogs_iphonecentral">reviews Things for iPhone</a>:</p>

<blockquote>
  <p>I’ve got to get my life under control. So much to do, so little time. I’ve tried lots of different ways to track to-dos, but none of them really stuck before I started using Cultured Code’s $10 Things.</p>
</blockquote>

<p>As I&#8217;ve <a href="/2008/08/16/omnifocus-its-not-you-its-me-really/">written previously</a>, my experience has been much the same. I actually <em>enjoy</em> using Things instead of simply seeing it as a necessary evil that keeps me organized. It&#8217;s there when you need it and disappears when you don&#8217;t.  My only minor peeve is that I often forget to sync my iPhone version of Things before leaving the house. This can be a little irritating, but hasn&#8217;t affected me <em>too</em> much as I tend to us the iPhone version to add new ToDo items to my inbox for later review. And if I&#8217;m expecting to use Things on the road, I tend to remember to sync right before I leave the house. It&#8217;s only those unexpected times that really make me wish Things did over-the-air syncing. </p>

<p>Overall though, I&#8217;m much happier with Things Desktop and Things Touch than I was using OmniFocus. Since, you know, <em>I actually use it</em>.</p>

<p><a href="http://feeds.mirthlab.com/~a/mirthlab?a=InT7mj"><img src="http://feeds.mirthlab.com/~a/mirthlab?i=InT7mj" border="0"></img></a></p><img src="http://feeds.mirthlab.com/~r/mirthlab/~4/452596918" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.mirthlab.com/2008/11/13/macworld-reviews-things-for-iphone/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.mirthlab.com/2008/11/13/macworld-reviews-things-for-iphone/</feedburner:origLink></item>
		<item>
		<title>Coda Updated to Version 1.6</title>
		<link>http://feeds.mirthlab.com/~r/mirthlab/~3/450481316/</link>
		<comments>http://blog.mirthlab.com/2008/11/11/coda-updated-to-version-16/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 08:53:23 +0000</pubDate>
		<dc:creator>Mark Quezada</dc:creator>
		
		<category><![CDATA[Links]]></category>

		<category><![CDATA[Mac]]></category>

		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[coda]]></category>

		<category><![CDATA[panic]]></category>

		<category><![CDATA[text editor]]></category>

		<guid isPermaLink="false">http://blog.mirthlab.com/?p=137</guid>
		<description><![CDATA[Coda 1.6 has been released. For a point release update to Panic&#8217;s &#8220;One-Window Web Development&#8221; tool, they sure packed in a lot of punch.

Check the release notes for what&#8217;s new and improved, but the new plugin architecture is by far the most impressive thing on that list. 

I&#8217;ve tried to use Coda several times but [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.panic.com/coda/">Coda 1.6</a> has been released. For a point release update to Panic&#8217;s &#8220;One-Window Web Development&#8221; tool, they sure packed in a lot of punch.</p>

<p>Check the <a href="http://www.panic.com/coda/releasenotes.html">release notes</a> for what&#8217;s new and improved, but the <a href="http://www.panic.com/coda/developer/howto/plugins.php">new plugin architecture</a> is by far the most impressive thing on that list. </p>

<p>I&#8217;ve tried to use Coda several times but I just can&#8217;t get into the overall feel of the program. It feels like just too much all crammed in to one program, but I tend to keep a watchful eye on its progress since I know the guys at Panic really sweat the details. The new plugin architecture is really impressive and I think it owes a lot to TextMate for inspiration at some basic level. Here&#8217;s hoping this helps gently nudge <a href="http://wiki.macromates.com/FAQ/TextMate2">TextMate 2</a> out the door&#8230;</p>

<p>(Via <a href="http://daringfireball.net/linked/2008/11/11/coda-16">Daring Fireball</a>.)</p>

<p><a href="http://feeds.mirthlab.com/~a/mirthlab?a=iMoszo"><img src="http://feeds.mirthlab.com/~a/mirthlab?i=iMoszo" border="0"></img></a></p><img src="http://feeds.mirthlab.com/~r/mirthlab/~4/450481316" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.mirthlab.com/2008/11/11/coda-updated-to-version-16/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.mirthlab.com/2008/11/11/coda-updated-to-version-16/</feedburner:origLink></item>
		<item>
		<title>Parallels 4.0 Released</title>
		<link>http://feeds.mirthlab.com/~r/mirthlab/~3/450453769/</link>
		<comments>http://blog.mirthlab.com/2008/11/11/parallels-40-released/#comments</comments>
		<pubDate>Wed, 12 Nov 2008 08:17:43 +0000</pubDate>
		<dc:creator>Mark Quezada</dc:creator>
		
		<category><![CDATA[Links]]></category>

		<category><![CDATA[Mac]]></category>

		<category><![CDATA[fusion]]></category>

		<category><![CDATA[parallels]]></category>

		<category><![CDATA[virtualization]]></category>

		<guid isPermaLink="false">http://blog.mirthlab.com/?p=135</guid>
		<description><![CDATA[Currently I use (and love) VMWare&#8217;s Fusion with a Windows guest OS to test Windows specific browser quirks. I used to use Parallels before purchasing Fusion and I still own a license for both. For me it was just a matter of preference&#8230; it just seemed like Fusion was more responsive and a little less [...]]]></description>
			<content:encoded><![CDATA[<p>Currently I use (and love) <a href="http://vmware.com/products/fusion/">VMWare&#8217;s Fusion</a> with a Windows guest OS to test Windows specific browser quirks. I used to use Parallels before purchasing Fusion and I still own a license for both. For me it was just a matter of preference&#8230; it just <em>seemed</em> like Fusion was more responsive and a little less buggy than Parallels at the time, so I stuck with it. Perhaps it&#8217;s time to revisit Parallels since they&#8217;re claiming that <a href="http://www.marketwatch.com/news/story/Parallels-Desktop-40-Mac-Offers/story.aspx?guid=%7B012A7E5A-5481-4482-B296-0472824F2013%7D">Parallels 4 promises a significant performance boost</a>:</p>

<blockquote>
  <p>This new version of the award-winning Parallels Desktop for Mac improves OS integration, performs up to 50% faster and incorporates a range of security, backup and power saving features to give Mac users a truly easy, fast and powerful desktop computing solution.</p>
</blockquote>

<p>(Via <a href="http://www.macrumors.com/2008/11/11/parallels-4-0-promises-significant-performance-improvements/">MacRumors</a>.)</p>

<p><a href="http://feeds.mirthlab.com/~a/mirthlab?a=62Usyf"><img src="http://feeds.mirthlab.com/~a/mirthlab?i=62Usyf" border="0"></img></a></p><img src="http://feeds.mirthlab.com/~r/mirthlab/~4/450453769" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.mirthlab.com/2008/11/11/parallels-40-released/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.mirthlab.com/2008/11/11/parallels-40-released/</feedburner:origLink></item>
		<item>
		<title>Symfony 1.2 Beta 2 Released</title>
		<link>http://feeds.mirthlab.com/~r/mirthlab/~3/448888425/</link>
		<comments>http://blog.mirthlab.com/2008/11/10/symfony-12-beta-2-released/#comments</comments>
		<pubDate>Mon, 10 Nov 2008 22:37:52 +0000</pubDate>
		<dc:creator>Mark Quezada</dc:creator>
		
		<category><![CDATA[Links]]></category>

		<category><![CDATA[News]]></category>

		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[beta]]></category>

		<category><![CDATA[doctrine]]></category>

		<category><![CDATA[symfony]]></category>

		<category><![CDATA[symfony 1.2]]></category>

		<guid isPermaLink="false">http://blog.mirthlab.com/?p=133</guid>
		<description><![CDATA[The second Beta of Symfony 1.2 has been released and adds support for the Doctrine Admin Generator:


  We are very happy to announce the symfony 1.2 beta 2 release, which now supports the admin generators for both Doctrine and Propel. No need to use Propel for sexy admin generator anymore.


This will also be the [...]]]></description>
			<content:encoded><![CDATA[<p>The second Beta of Symfony 1.2 has been released and adds support for the <a href="http://www.symfony-project.org/blog/2008/11/10/symfony-1-2-beta2-the-doctrine-admin-generator-is-here">Doctrine Admin Generator</a>:</p>

<blockquote>
  <p>We are very happy to announce the symfony 1.2 beta 2 release, which now supports the admin generators for both Doctrine and Propel. No need to use Propel for sexy admin generator anymore.</p>
</blockquote>

<p>This will also be the final Beta release before Symfony 1.2 stable is released.</p>

<p><a href="http://feeds.mirthlab.com/~a/mirthlab?a=EcBtB5"><img src="http://feeds.mirthlab.com/~a/mirthlab?i=EcBtB5" border="0"></img></a></p><img src="http://feeds.mirthlab.com/~r/mirthlab/~4/448888425" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.mirthlab.com/2008/11/10/symfony-12-beta-2-released/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.mirthlab.com/2008/11/10/symfony-12-beta-2-released/</feedburner:origLink></item>
		<item>
		<title>sfTaskExtraPlugin Released</title>
		<link>http://feeds.mirthlab.com/~r/mirthlab/~3/446774597/</link>
		<comments>http://blog.mirthlab.com/2008/11/08/sftaskextraplugin-released/#comments</comments>
		<pubDate>Sat, 08 Nov 2008 19:49:25 +0000</pubDate>
		<dc:creator>Mark Quezada</dc:creator>
		
		<category><![CDATA[Links]]></category>

		<category><![CDATA[Web Development]]></category>

		<category><![CDATA[symfony]]></category>

		<category><![CDATA[symfony 1.2]]></category>

		<category><![CDATA[tasks]]></category>

		<guid isPermaLink="false">http://blog.mirthlab.com/?p=131</guid>
		<description><![CDATA[Kris Wallsmith just released a new plugin that should aid the task of creating and bundling Symfony plugins:


  The sfTaskExtraPlugin is a plugin maintained by the symfony core team. It adds a number of useful tasks to your symfony command line to help streamline your workflow. This plugin is relatively young, so I will [...]]]></description>
			<content:encoded><![CDATA[<p>Kris Wallsmith <a href="http://www.symfony-project.org/blog/2008/11/08/additional-tasks-to-streamline-your-workflow">just released a new plugin</a> that should aid the task of creating and bundling Symfony plugins:</p>

<blockquote>
  <p>The sfTaskExtraPlugin is a plugin maintained by the symfony core team. It adds a number of useful tasks to your symfony command line to help streamline your workflow. This plugin is relatively young, so I will just be discussing those tasks that we&#8217;ll be using for today&#8217;s Plugin Developers Day. I should also note this plugin requires symfony 1.2.</p>
</blockquote>

<p><a href="http://feeds.mirthlab.com/~a/mirthlab?a=6byaMp"><img src="http://feeds.mirthlab.com/~a/mirthlab?i=6byaMp" border="0"></img></a></p><img src="http://feeds.mirthlab.com/~r/mirthlab/~4/446774597" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://blog.mirthlab.com/2008/11/08/sftaskextraplugin-released/feed/</wfw:commentRss>
		<feedburner:origLink>http://blog.mirthlab.com/2008/11/08/sftaskextraplugin-released/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic Page Served (once) in 2.388 seconds --><!-- Cached page served by WP-Cache -->
