<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/wordpress-mu-1.2.5" -->
<rss version="2.0" 
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments for sunhwan</title>
	<link>http://wp.omeeza.com/sunhwan</link>
	<description>Just another wp.omeeza.com weblog</description>
	<pubDate>Fri, 30 Jul 2010 00:53:36 +0000</pubDate>
	<generator>http://wordpress.org/?v=wordpress-mu-1.2.5</generator>

	<item>
		<title>Comment on ffmpeg tips by BrazilianBoy</title>
		<link>http://wp.omeeza.com/sunhwan/2007/07/07/ffmpeg-tips/#comment-83</link>
		<dc:creator>BrazilianBoy</dc:creator>
		<pubDate>Sat, 03 Nov 2007 20:11:17 +0000</pubDate>
		<guid>http://wp.omeeza.com/sunhwan/2007/07/07/ffmpeg-tips/#comment-83</guid>
		<description>&lt;p&gt;Dude.. where can i found the ffmpeg.exe with suport at -vframe parameter ?...&lt;/p&gt;

&lt;p&gt;if possible, can you send it to me ?.... i am running M$ XP&lt;/p&gt;

&lt;p&gt;thank for your suport.&lt;/p&gt;

&lt;p&gt;Hugs&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Dude.. where can i found the ffmpeg.exe with suport at -vframe parameter ?&#8230;</p>

<p>if possible, can you send it to me ?&#8230;. i am running M$ XP</p>

<p>thank for your suport.</p>

<p>Hugs</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Symfony in Mac with MAMP by Simon Plenderleith</title>
		<link>http://wp.omeeza.com/sunhwan/2007/07/12/installing-symfony-in-mac-with-xampp/#comment-57</link>
		<dc:creator>Simon Plenderleith</dc:creator>
		<pubDate>Sat, 20 Oct 2007 10:25:55 +0000</pubDate>
		<guid>http://wp.omeeza.com/sunhwan/2007/07/12/installing-symfony-in-mac-with-xampp/#comment-57</guid>
		<description>&lt;p&gt;Thanks for that, helped me get things sorted with Symfony CLI :D&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks for that, helped me get things sorted with Symfony CLI <img src='http://wp.omeeza.com/sunhwan/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Symfony in Mac with MAMP by Wahoo</title>
		<link>http://wp.omeeza.com/sunhwan/2007/07/12/installing-symfony-in-mac-with-xampp/#comment-37</link>
		<dc:creator>Wahoo</dc:creator>
		<pubDate>Sat, 06 Oct 2007 15:28:35 +0000</pubDate>
		<guid>http://wp.omeeza.com/sunhwan/2007/07/12/installing-symfony-in-mac-with-xampp/#comment-37</guid>
		<description>&lt;p&gt;Thank you for sharing!&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thank you for sharing!</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Accessing Database in Unit Test with sfDoctrine by Kaizenlog » Database 30/07/2007</title>
		<link>http://wp.omeeza.com/sunhwan/2007/07/30/accessing-database-in-unit-test-with-sfdoctrine/#comment-31</link>
		<dc:creator>Kaizenlog » Database 30/07/2007</dc:creator>
		<pubDate>Fri, 28 Sep 2007 03:15:20 +0000</pubDate>
		<guid>http://wp.omeeza.com/sunhwan/2007/07/30/accessing-database-in-unit-test-with-sfdoctrine/#comment-31</guid>
		<description>&lt;p&gt;[...] Accessing Database in Unit Test with sfDoctrine By sunhwan  After made autoloading sfDoctrine available last week, I was thinking accessing database or pretending it (for test purpose) is surely easy. However, it wasn&#8217;t easy at all. So, here is the record of my struggle and, hopefully, &#8230; sunhwan - http://wp.omeeza.com/sunhwan [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[&#8230;] Accessing Database in Unit Test with sfDoctrine By sunhwan  After made autoloading sfDoctrine available last week, I was thinking accessing database or pretending it (for test purpose) is surely easy. However, it wasn&#8217;t easy at all. So, here is the record of my struggle and, hopefully, &#8230; sunhwan - <a href="http://wp.omeeza.com/sunhwan" rel="nofollow">http://wp.omeeza.com/sunhwan</a> [&#8230;]</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Accessing Database in Unit Test with sfDoctrine by Jonathan Ding</title>
		<link>http://wp.omeeza.com/sunhwan/2007/07/30/accessing-database-in-unit-test-with-sfdoctrine/#comment-29</link>
		<dc:creator>Jonathan Ding</dc:creator>
		<pubDate>Thu, 27 Sep 2007 05:57:17 +0000</pubDate>
		<guid>http://wp.omeeza.com/sunhwan/2007/07/30/accessing-database-in-unit-test-with-sfdoctrine/#comment-29</guid>
		<description>&lt;p&gt;Your article looks good. And I find the solution you want, as below.
The major idea is that you should initialize the sfContext to get all dynamic stuff get created, while simple include the config.php to get all static settings correct.&lt;/p&gt;

&lt;p&gt;== the code ==
require_once(dirname(&lt;strong&gt;FILE&lt;/strong&gt;).'/../bootstrap/unit.php');&lt;/p&gt;

&lt;p&gt;define('SF_ROOT_DIR',    realpath(dirname(&lt;strong&gt;FILE&lt;/strong&gt;).'/..'));
define('SF_APP',         'frontend');&lt;/p&gt;

&lt;p&gt;// load the compiled Doctrine library
require_once(SF_ROOT_DIR.DIRECTORY_SEPARATOR.'lib'.DIRECTORY_SEPARATOR.'Doctrine.compiled.php');&lt;/p&gt;

&lt;p&gt;// it will configure the system, including autoload
require_once(SF_ROOT_DIR.DIRECTORY_SEPARATOR.'apps'.DIRECTORY_SEPARATOR.SF_APP.DIRECTORY_SEPARATOR.'config'.DIRECTORY_SEPARATOR.'config.php');&lt;/p&gt;

&lt;p&gt;// This initializes the context, it will initialize the database for you
sfContext::getInstance();&lt;/p&gt;

&lt;p&gt;$t = new lime_test(1, new lime_output_color())
// your tests ...&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Your article looks good. And I find the solution you want, as below.
The major idea is that you should initialize the sfContext to get all dynamic stuff get created, while simple include the config.php to get all static settings correct.</p>

<p>== the code ==
require_once(dirname(<strong>FILE</strong>).&#8217;/../bootstrap/unit.php&#8217;);</p>

<p>define(&#8217;SF_ROOT_DIR&#8217;,    realpath(dirname(<strong>FILE</strong>).&#8217;/..&#8217;));
define(&#8217;SF_APP&#8217;,         &#8216;frontend&#8217;);</p>

<p>// load the compiled Doctrine library
require_once(SF_ROOT_DIR.DIRECTORY_SEPARATOR.&#8217;lib&#8217;.DIRECTORY_SEPARATOR.&#8217;Doctrine.compiled.php&#8217;);</p>

<p>// it will configure the system, including autoload
require_once(SF_ROOT_DIR.DIRECTORY_SEPARATOR.&#8217;apps&#8217;.DIRECTORY_SEPARATOR.SF_APP.DIRECTORY_SEPARATOR.&#8217;config&#8217;.DIRECTORY_SEPARATOR.&#8217;config.php&#8217;);</p>

<p>// This initializes the context, it will initialize the database for you
sfContext::getInstance();</p>

<p>$t = new lime_test(1, new lime_output_color())
// your tests &#8230;</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Accessing Database in Unit Test with sfDoctrine by Jonathan Ding</title>
		<link>http://wp.omeeza.com/sunhwan/2007/07/30/accessing-database-in-unit-test-with-sfdoctrine/#comment-28</link>
		<dc:creator>Jonathan Ding</dc:creator>
		<pubDate>Thu, 27 Sep 2007 05:56:12 +0000</pubDate>
		<guid>http://wp.omeeza.com/sunhwan/2007/07/30/accessing-database-in-unit-test-with-sfdoctrine/#comment-28</guid>
		<description>&lt;p&gt;Your article looks good. And I find the solution you want, as below.
The major idea is that you should initialize the sfContext to get all dynamic stuff get created, while simple include the config.php to get all static settings correct.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Your article looks good. And I find the solution you want, as below.
The major idea is that you should initialize the sfContext to get all dynamic stuff get created, while simple include the config.php to get all static settings correct.</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Symfony in Mac with MAMP by Instalando Symfony en Mac OSX</title>
		<link>http://wp.omeeza.com/sunhwan/2007/07/12/installing-symfony-in-mac-with-xampp/#comment-24</link>
		<dc:creator>Instalando Symfony en Mac OSX</dc:creator>
		<pubDate>Mon, 24 Sep 2007 19:12:46 +0000</pubDate>
		<guid>http://wp.omeeza.com/sunhwan/2007/07/12/installing-symfony-in-mac-with-xampp/#comment-24</guid>
		<description>&lt;p&gt;[...] problema viene con Symfony. Intenté instalarlo tal como lo describen en esta web, pero, primero por mi inexperiencia con Mac, y después por diferentes errores enlazando [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[&#8230;] problema viene con Symfony. Intenté instalarlo tal como lo describen en esta web, pero, primero por mi inexperiencia con Mac, y después por diferentes errores enlazando [&#8230;]</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Symfony in Mac with MAMP by sunhwan</title>
		<link>http://wp.omeeza.com/sunhwan/2007/07/12/installing-symfony-in-mac-with-xampp/#comment-5</link>
		<dc:creator>sunhwan</dc:creator>
		<pubDate>Tue, 28 Aug 2007 15:41:35 +0000</pubDate>
		<guid>http://wp.omeeza.com/sunhwan/2007/07/12/installing-symfony-in-mac-with-xampp/#comment-5</guid>
		<description>&lt;p&gt;Thanks, Andy. You are right. I've changed the typo. Thanks again.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Thanks, Andy. You are right. I&#8217;ve changed the typo. Thanks again.</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Installing Symfony in Mac with MAMP by Andy</title>
		<link>http://wp.omeeza.com/sunhwan/2007/07/12/installing-symfony-in-mac-with-xampp/#comment-4</link>
		<dc:creator>Andy</dc:creator>
		<pubDate>Mon, 27 Aug 2007 07:32:02 +0000</pubDate>
		<guid>http://wp.omeeza.com/sunhwan/2007/07/12/installing-symfony-in-mac-with-xampp/#comment-4</guid>
		<description>&lt;p&gt;"Edit apache configuration file at /Applications/MAMP/conf/httpd.conf"&lt;/p&gt;

&lt;p&gt;For me I had to use /Applications/MAMP/conf/apache/httpd.conf&lt;/p&gt;

&lt;p&gt;Not sure if anybody else has that change as well.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>&#8220;Edit apache configuration file at /Applications/MAMP/conf/httpd.conf&#8221;</p>

<p>For me I had to use /Applications/MAMP/conf/apache/httpd.conf</p>

<p>Not sure if anybody else has that change as well.</p>]]></content:encoded>
	</item>
	<item>
		<title>Comment on Autoloading sfDoctrin in Symfony Testing Framework by sunhwan &#187; Accessing Database in Unit Test with sfDoctrine</title>
		<link>http://wp.omeeza.com/sunhwan/2007/07/18/testing-a-doctrine-model-in-symfony/#comment-3</link>
		<dc:creator>sunhwan &#187; Accessing Database in Unit Test with sfDoctrine</dc:creator>
		<pubDate>Sun, 29 Jul 2007 15:00:12 +0000</pubDate>
		<guid>http://wp.omeeza.com/sunhwan/2007/07/18/testing-a-doctrine-model-in-symfony/#comment-3</guid>
		<description>&lt;p&gt;[...] After made autoloading sfDoctrine available last week, I was thinking accessing database or pretending it (for test purpose) is surely easy. However, it [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[&#8230;] After made autoloading sfDoctrine available last week, I was thinking accessing database or pretending it (for test purpose) is surely easy. However, it [&#8230;]</p>]]></content:encoded>
	</item>
</channel>
</rss>
