<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for Andrew Vayanis</title>
	<atom:link href="http://www.vayanis.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vayanis.com</link>
	<description>... a little piece of my mind.</description>
	<lastBuildDate>Sun, 01 Apr 2012 03:15:51 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on Running 32-bit Apache Tomcat on a 64-bit system with JSVC by Andrew Vayanis</title>
		<link>http://www.vayanis.com/2010/02/10/running-32-bit-apache-tomcat-on-a-64-bit-system-with-jsvc/#comment-168</link>
		<dc:creator>Andrew Vayanis</dc:creator>
		<pubDate>Sun, 01 Apr 2012 03:15:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.vayanis.com/?p=45#comment-168</guid>
		<description>Patrick, I didn&#039;t go into the details in my post, but the reason my application consumed more memory after switching from 32-bit to 64-bit was due to the fact that now all pointers were now 64-bit references and therefore consumed more memory.

Switching back to a 32-bit JVM didn&#039;t allow me to allocate more memory, it just made my memory usage more efficient.

As a side note, I did some research a few months back and I believe there was an update that let the JVM use compressed, managed pointers to reduce the memory footprint of 64-bit applications.</description>
		<content:encoded><![CDATA[<p>Patrick, I didn&#8217;t go into the details in my post, but the reason my application consumed more memory after switching from 32-bit to 64-bit was due to the fact that now all pointers were now 64-bit references and therefore consumed more memory.</p>
<p>Switching back to a 32-bit JVM didn&#8217;t allow me to allocate more memory, it just made my memory usage more efficient.</p>
<p>As a side note, I did some research a few months back and I believe there was an update that let the JVM use compressed, managed pointers to reduce the memory footprint of 64-bit applications.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Intro to Zend Framework Routing by zend_beginner</title>
		<link>http://www.vayanis.com/2009/03/20/intro-to-zend-framework-routing/#comment-165</link>
		<dc:creator>zend_beginner</dc:creator>
		<pubDate>Wed, 14 Mar 2012 03:50:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.vayanis.com/?p=32#comment-165</guid>
		<description>I have a controller call User,

and I want to show his profile while

example.com/username1,
example.com/username2 
etc etc..

this will call Username -&gt; ShowProfile action

and other url are like
example.com/username1/status
example.com/username/photos

etc..

anyone know how to write the Router for this kind of feature n URL</description>
		<content:encoded><![CDATA[<p>I have a controller call User,</p>
<p>and I want to show his profile while</p>
<p>example.com/username1,<br />
example.com/username2<br />
etc etc..</p>
<p>this will call Username -&gt; ShowProfile action</p>
<p>and other url are like<br />
example.com/username1/status<br />
example.com/username/photos</p>
<p>etc..</p>
<p>anyone know how to write the Router for this kind of feature n URL</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Running 32-bit Apache Tomcat on a 64-bit system with JSVC by Patrick Campbell</title>
		<link>http://www.vayanis.com/2010/02/10/running-32-bit-apache-tomcat-on-a-64-bit-system-with-jsvc/#comment-164</link>
		<dc:creator>Patrick Campbell</dc:creator>
		<pubDate>Mon, 05 Mar 2012 16:27:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.vayanis.com/?p=45#comment-164</guid>
		<description>How much memory can you give Java/Tomcat now?</description>
		<content:encoded><![CDATA[<p>How much memory can you give Java/Tomcat now?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Intro to Zend Framework Routing by praveen</title>
		<link>http://www.vayanis.com/2009/03/20/intro-to-zend-framework-routing/#comment-163</link>
		<dc:creator>praveen</dc:creator>
		<pubDate>Thu, 09 Feb 2012 22:54:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.vayanis.com/?p=32#comment-163</guid>
		<description>&lt;a href=&quot;url(array(
	&#039;module&#039; =&gt; &#039;admin&#039;,
	&#039;controller&#039;=&gt;&#039;scorm&#039;,
	&#039;action&#039;=&gt;&#039;add&#039;), $name = null,true,true);?&gt;&quot;&gt;Scorm Add&lt;/a&gt;

		// Get Front Controller Instance
				$front = Zend_Controller_Front::getInstance();

				// Get Router
				$router = $front-&gt;getRouter();

				$route = new Zend_Controller_Router_Route(
				&#039;scormadd&#039;,
				array(
				&#039;module&#039;	=&gt;&#039;admin&#039;,
				&#039;controller&#039; =&gt; &#039;scorm&#039;,
				&#039;action&#039;     =&gt; &#039;add&#039;
				)
				);

				$router-&gt;addRoute(&#039;default&#039;, $route);

Can anyone help this URL() generate false url</description>
		<content:encoded><![CDATA[<p>&lt;a href=&quot;url(array(<br />
	&#8216;module&#8217; =&gt; &#8216;admin&#8217;,<br />
	&#8216;controller&#8217;=&gt;&#8217;scorm&#8217;,<br />
	&#8216;action&#8217;=&gt;&#8217;add&#8217;), $name = null,true,true);?&gt;&#8221;&gt;Scorm Add</p>
<p>		// Get Front Controller Instance<br />
				$front = Zend_Controller_Front::getInstance();</p>
<p>				// Get Router<br />
				$router = $front-&gt;getRouter();</p>
<p>				$route = new Zend_Controller_Router_Route(<br />
				&#8216;scormadd&#8217;,<br />
				array(<br />
				&#8216;module&#8217;	=&gt;&#8217;admin&#8217;,<br />
				&#8216;controller&#8217; =&gt; &#8216;scorm&#8217;,<br />
				&#8216;action&#8217;     =&gt; &#8216;add&#8217;<br />
				)<br />
				);</p>
<p>				$router-&gt;addRoute(&#8216;default&#8217;, $route);</p>
<p>Can anyone help this URL() generate false url</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Running 32-bit Apache Tomcat on a 64-bit system with JSVC by Site En Flash</title>
		<link>http://www.vayanis.com/2010/02/10/running-32-bit-apache-tomcat-on-a-64-bit-system-with-jsvc/#comment-160</link>
		<dc:creator>Site En Flash</dc:creator>
		<pubDate>Tue, 17 Jan 2012 18:59:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.vayanis.com/?p=45#comment-160</guid>
		<description>Hello very nice blog!! Guy .. Excellent .. Superb .. I&#039;ll bookmark your blog and take the feeds also?I am glad to search out so many helpful info right here within the publish, we need work out more strategies on this regard, thank you for sharing. . . . . .</description>
		<content:encoded><![CDATA[<p>Hello very nice blog!! Guy .. Excellent .. Superb .. I&#8217;ll bookmark your blog and take the feeds also?I am glad to search out so many helpful info right here within the publish, we need work out more strategies on this regard, thank you for sharing. . . . . .</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Zend_Form with Zend_Config by Andrew Vayanis</title>
		<link>http://www.vayanis.com/2008/03/17/using-zend_form-with-zend_config/#comment-148</link>
		<dc:creator>Andrew Vayanis</dc:creator>
		<pubDate>Tue, 11 Oct 2011 18:17:01 +0000</pubDate>
		<guid isPermaLink="false">http://www.vayanis.com/2008/03/17/using-zend_form-with-zend_config/#comment-148</guid>
		<description>@yao, what do you mean?</description>
		<content:encoded><![CDATA[<p>@yao, what do you mean?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Zend_Form with Zend_Config by yao</title>
		<link>http://www.vayanis.com/2008/03/17/using-zend_form-with-zend_config/#comment-144</link>
		<dc:creator>yao</dc:creator>
		<pubDate>Mon, 12 Sep 2011 10:16:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.vayanis.com/2008/03/17/using-zend_form-with-zend_config/#comment-144</guid>
		<description>Hi, thanks for the post, I&#039;m wondering how do I link css and jQuery with this config method?</description>
		<content:encoded><![CDATA[<p>Hi, thanks for the post, I&#8217;m wondering how do I link css and jQuery with this config method?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OS X 10.6 (Snow Leopard) – using MAMP/PECL to install PHP extensions by Andrew Vayanis</title>
		<link>http://www.vayanis.com/2010/05/19/os-x-10-6-snow-leopard-using-mamppecl-to-install-php-extensions/#comment-134</link>
		<dc:creator>Andrew Vayanis</dc:creator>
		<pubDate>Tue, 07 Jun 2011 00:23:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.vayanis.com/?p=88#comment-134</guid>
		<description>Either use an absolute path to your MAMP bin or change directories first.</description>
		<content:encoded><![CDATA[<p>Either use an absolute path to your MAMP bin or change directories first.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OS X 10.6 (Snow Leopard) – using MAMP/PECL to install PHP extensions by mori</title>
		<link>http://www.vayanis.com/2010/05/19/os-x-10-6-snow-leopard-using-mamppecl-to-install-php-extensions/#comment-132</link>
		<dc:creator>mori</dc:creator>
		<pubDate>Sun, 01 May 2011 18:02:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.vayanis.com/?p=88#comment-132</guid>
		<description>mori-mbp-17:~ mori$ CFLAGS=&quot;-arch i386&quot; ./pecl install
-bash: ./pecl: No such file or directory

Guess I got something essential wrong. But what?</description>
		<content:encoded><![CDATA[<p>mori-mbp-17:~ mori$ CFLAGS=&#8221;-arch i386&#8243; ./pecl install<br />
-bash: ./pecl: No such file or directory</p>
<p>Guess I got something essential wrong. But what?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Using Subversion with Network Drives in OS X by Yafiyogi</title>
		<link>http://www.vayanis.com/2008/05/04/using-subversion-with-network-drives-in-os-x/#comment-73</link>
		<dc:creator>Yafiyogi</dc:creator>
		<pubDate>Sun, 14 Nov 2010 18:17:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.vayanis.com/?p=33#comment-73</guid>
		<description>I have experience this can&#039;t get a lock problem when trying to access a repository on network drive via Samba.
My solution was to compile my own version of subversion.

I have posted my solution to the lock problem here http://stackoverflow.com/questions/2077130/settingup-scm-using-xcode-and-svn-subversion/4009994#4009994</description>
		<content:encoded><![CDATA[<p>I have experience this can&#8217;t get a lock problem when trying to access a repository on network drive via Samba.<br />
My solution was to compile my own version of subversion.</p>
<p>I have posted my solution to the lock problem here <a href="http://stackoverflow.com/questions/2077130/settingup-scm-using-xcode-and-svn-subversion/4009994#4009994" rel="nofollow">http://stackoverflow.com/questions/2077130/settingup-scm-using-xcode-and-svn-subversion/4009994#4009994</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>

