<?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 We Eat Bricks :: Web Development Blog</title>
	<atom:link href="http://weeatbricks.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://weeatbricks.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Wed, 11 Aug 2010 17:55:12 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on On Courage by web designer manchester</title>
		<link>http://weeatbricks.com/2010/05/23/on-courage/comment-page-1/#comment-17486</link>
		<dc:creator>web designer manchester</dc:creator>
		<pubDate>Wed, 11 Aug 2010 17:55:12 +0000</pubDate>
		<guid isPermaLink="false">http://weeatbricks.com/?p=124#comment-17486</guid>
		<description>Hello. Very nice quote. I really liked it. It is now one of my favorites. Thanks. Have a nice day. Best Wishes :)</description>
		<content:encoded><![CDATA[<p>Hello. Very nice quote. I really liked it. It is now one of my favorites. Thanks. Have a nice day. Best Wishes <img src='http://weeatbricks.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Complety free Anti-Virus/Firewall/Anti-Spyware Software for WinXP by Sarah</title>
		<link>http://weeatbricks.com/2007/10/31/complety-free-anti-virusfirewallanti-spyware-software-for-winxp/comment-page-1/#comment-7139</link>
		<dc:creator>Sarah</dc:creator>
		<pubDate>Fri, 11 Sep 2009 15:04:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.weeatbricks.com/2007/10/31/complety-free-anti-virusfirewallanti-spyware-software-for-winxp/#comment-7139</guid>
		<description>I feel your pain.  Norton caused one of my computers to crash and burn.  It took weeks to reformat and install all of my programs.  Luckly I had a backup of the data, well most of it anyway.</description>
		<content:encoded><![CDATA[<p>I feel your pain.  Norton caused one of my computers to crash and burn.  It took weeks to reformat and install all of my programs.  Luckly I had a backup of the data, well most of it anyway.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Ireland is not working by Paul M. Watson</title>
		<link>http://weeatbricks.com/2009/04/05/ireland-is-not-working/comment-page-1/#comment-4446</link>
		<dc:creator>Paul M. Watson</dc:creator>
		<pubDate>Sun, 05 Apr 2009 18:10:04 +0000</pubDate>
		<guid isPermaLink="false">http://weeatbricks.com/?p=97#comment-4446</guid>
		<description>Not sure how #2 and #8 fit together. You use to work at the TSSG and, being a public body, many of us now have the pension levy. It took over €250 out of my last pay-cheque. That is a tax and, as you correctly state, makes me less able to spend money so rippling out into the larger economy.

I would love to get rid of the pension benefit all together, I don&#039;t want the bloody thing, but they say I can&#039;t opt-out.

The public sector should be as performance driven as the private sector, but remember that the government is the biggest employer in the land so any &quot;nail the public sector employees&quot; idea is going to hurt the private sector too as we stop buying things.

Totally agree that we need to be creating jobs (private and public) though.</description>
		<content:encoded><![CDATA[<p>Not sure how #2 and #8 fit together. You use to work at the TSSG and, being a public body, many of us now have the pension levy. It took over €250 out of my last pay-cheque. That is a tax and, as you correctly state, makes me less able to spend money so rippling out into the larger economy.</p>
<p>I would love to get rid of the pension benefit all together, I don&#8217;t want the bloody thing, but they say I can&#8217;t opt-out.</p>
<p>The public sector should be as performance driven as the private sector, but remember that the government is the biggest employer in the land so any &#8220;nail the public sector employees&#8221; idea is going to hurt the private sector too as we stop buying things.</p>
<p>Totally agree that we need to be creating jobs (private and public) though.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to use a Rails App with HTTPS by Christian</title>
		<link>http://weeatbricks.com/2007/10/31/how-to-use-a-rails-app-with-https/comment-page-1/#comment-3842</link>
		<dc:creator>Christian</dc:creator>
		<pubDate>Fri, 06 Mar 2009 20:16:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.weeatbricks.com/2007/10/31/how-to-use-a-rails-app-with-https/#comment-3842</guid>
		<description>Hi,
thanks for the tips. Proxying works for me. But now I want to proxy only requests to a special path. E.g. http://localhost should go to my document root but  http://localhost/c should go to my rails app running on port 3000.
My configuration looks like this:


    ServerAdmin christian@localhost
    DocumentRoot &quot;/Library/WebServer/Documents&quot;
    ServerName localhost
    ErrorLog &quot;/private/var/log/apache2/error_log&quot;
    TransferLog &quot;/private/var/log/apache2/access_log&quot;
    ProxyRequests On
   
     Order deny,allow
     Allow from all
   
    ProxyPass /c/ http://localhost:3000/
    ProxyPassReverse /c/ http://localhost:3000/


This is not working correctly. Surfing to http://localhost/c will open my rails app, but all images are gone and the link generated in my rails app are all missing the &#039;/c&#039;.

Any hints?

Best regards,

Christian</description>
		<content:encoded><![CDATA[<p>Hi,<br />
thanks for the tips. Proxying works for me. But now I want to proxy only requests to a special path. E.g. <a href="http://localhost" rel="nofollow">http://localhost</a> should go to my document root but  <a href="http://localhost/c" rel="nofollow">http://localhost/c</a> should go to my rails app running on port 3000.<br />
My configuration looks like this:</p>
<p>    ServerAdmin christian@localhost<br />
    DocumentRoot &#8220;/Library/WebServer/Documents&#8221;<br />
    ServerName localhost<br />
    ErrorLog &#8220;/private/var/log/apache2/error_log&#8221;<br />
    TransferLog &#8220;/private/var/log/apache2/access_log&#8221;<br />
    ProxyRequests On</p>
<p>     Order deny,allow<br />
     Allow from all</p>
<p>    ProxyPass /c/ <a href="http://localhost:3000/" rel="nofollow">http://localhost:3000/</a><br />
    ProxyPassReverse /c/ <a href="http://localhost:3000/" rel="nofollow">http://localhost:3000/</a></p>
<p>This is not working correctly. Surfing to <a href="http://localhost/c" rel="nofollow">http://localhost/c</a> will open my rails app, but all images are gone and the link generated in my rails app are all missing the &#8216;/c&#8217;.</p>
<p>Any hints?</p>
<p>Best regards,</p>
<p>Christian</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New wordpress plugin for creating a drop down navigation menu using JQuery by DDD</title>
		<link>http://weeatbricks.com/2008/01/07/new-wordpress-plugin-for-creating-a-drop-down-navigation-menu-using-jquery/comment-page-2/#comment-3803</link>
		<dc:creator>DDD</dc:creator>
		<pubDate>Wed, 04 Mar 2009 18:13:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.weeatbricks.com/2008/01/07/new-wordpress-plugin-for-creating-a-drop-down-navigation-menu-using-jquery/#comment-3803</guid>
		<description>Hi!

Does anybody know how to make it work in WP 2.7 or where I can find an alternative? The problem is that the sub-categories do not unfold in WP 2.7, see http://www.utrikesperspektiv.se.</description>
		<content:encoded><![CDATA[<p>Hi!</p>
<p>Does anybody know how to make it work in WP 2.7 or where I can find an alternative? The problem is that the sub-categories do not unfold in WP 2.7, see <a href="http://www.utrikesperspektiv.se." rel="nofollow">http://www.utrikesperspektiv.se.</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New wordpress plugin for creating a drop down navigation menu using JQuery by WPCult</title>
		<link>http://weeatbricks.com/2008/01/07/new-wordpress-plugin-for-creating-a-drop-down-navigation-menu-using-jquery/comment-page-2/#comment-3496</link>
		<dc:creator>WPCult</dc:creator>
		<pubDate>Thu, 12 Feb 2009 20:31:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.weeatbricks.com/2008/01/07/new-wordpress-plugin-for-creating-a-drop-down-navigation-menu-using-jquery/#comment-3496</guid>
		<description>Seems not to work with jQuery 1.2.6</description>
		<content:encoded><![CDATA[<p>Seems not to work with jQuery 1.2.6</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 5 Wordpress Plugins to increase traffic to your blog by 800 ready java scripts</title>
		<link>http://weeatbricks.com/2007/12/18/5-wordpress-plugins-to-increase-traffic-to-your-blog/comment-page-1/#comment-3460</link>
		<dc:creator>800 ready java scripts</dc:creator>
		<pubDate>Mon, 09 Feb 2009 18:04:38 +0000</pubDate>
		<guid isPermaLink="false">http://www.weeatbricks.com/2007/12/18/5-wordpress-plugins-to-increase-traffic-to-your-blog/#comment-3460</guid>
		<description>I love all in one and google sitemap...it&#039;s great</description>
		<content:encoded><![CDATA[<p>I love all in one and google sitemap&#8230;it&#8217;s great</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on OSTicket/eTicket mod for generating helpdesk reports and stats by Paul</title>
		<link>http://weeatbricks.com/2007/06/20/osticketeticket-mod-for-generating-helpdesk-reports-and-stats/comment-page-1/#comment-3223</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Sat, 24 Jan 2009 15:11:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.weeatbricks.com/?p=28#comment-3223</guid>
		<description>Hi

Could really use this for our new osTicket helpdesk but when I follow the download link (to sourceforge) I get

A new Tracker is available. Try it out.

    * SF.net
    * Error

Error

ERROR

Can you help me get a copy?

Cheers
Paul</description>
		<content:encoded><![CDATA[<p>Hi</p>
<p>Could really use this for our new osTicket helpdesk but when I follow the download link (to sourceforge) I get</p>
<p>A new Tracker is available. Try it out.</p>
<p>    * SF.net<br />
    * Error</p>
<p>Error</p>
<p>ERROR</p>
<p>Can you help me get a copy?</p>
<p>Cheers<br />
Paul</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on New wordpress plugin for creating a drop down navigation menu using JQuery by Simon</title>
		<link>http://weeatbricks.com/2008/01/07/new-wordpress-plugin-for-creating-a-drop-down-navigation-menu-using-jquery/comment-page-2/#comment-3098</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Fri, 16 Jan 2009 19:48:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.weeatbricks.com/2008/01/07/new-wordpress-plugin-for-creating-a-drop-down-navigation-menu-using-jquery/#comment-3098</guid>
		<description>Hey There, 
  I am using you plug-in for a web site I&#039;m currently working on. The drop down menu works just fine. However, which ever page the use user is currently on a duplicate of the navigation item appears directly below it. I was just wondering if you had any suggestions or if you have ran into this problem before

Thanks
   Simon</description>
		<content:encoded><![CDATA[<p>Hey There,<br />
  I am using you plug-in for a web site I&#8217;m currently working on. The drop down menu works just fine. However, which ever page the use user is currently on a duplicate of the navigation item appears directly below it. I was just wondering if you had any suggestions or if you have ran into this problem before</p>
<p>Thanks<br />
   Simon</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to use a Rails App with HTTPS by Eric</title>
		<link>http://weeatbricks.com/2007/10/31/how-to-use-a-rails-app-with-https/comment-page-1/#comment-3083</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Fri, 16 Jan 2009 01:19:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.weeatbricks.com/2007/10/31/how-to-use-a-rails-app-with-https/#comment-3083</guid>
		<description>It would depend on your certificate.  Some certificates only authenticate a specific domain, while others allow for subdomains.</description>
		<content:encoded><![CDATA[<p>It would depend on your certificate.  Some certificates only authenticate a specific domain, while others allow for subdomains.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
