<?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>Coming Full Circle &#187; Entrepeneurship</title>
	<atom:link href="http://www.jackpo.org/category/business/entrepeneurship/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jackpo.org</link>
	<description>"I dream of things that never were, and ask why not." - RFK</description>
	<lastBuildDate>Sat, 04 Feb 2012 18:02:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Installing Rails, Apache, MySQL and Passenger on Snow Leopard with MacPorts</title>
		<link>http://www.jackpo.org/2010/09/13/installing-rails-apache-mysql-and-passenger-on-snow-leopard-with-macports/</link>
		<comments>http://www.jackpo.org/2010/09/13/installing-rails-apache-mysql-and-passenger-on-snow-leopard-with-macports/#comments</comments>
		<pubDate>Mon, 13 Sep 2010 18:18:44 +0000</pubDate>
		<dc:creator>JackPo</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[Entrepeneurship]]></category>
		<category><![CDATA[apache]]></category>
		<category><![CDATA[macports]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[rails]]></category>
		<category><![CDATA[ruby]]></category>
		<category><![CDATA[Sean]]></category>

		<guid isPermaLink="false">http://www.jackpo.org/?p=408</guid>
		<description><![CDATA[Once in a while, I catch the startup bug due to people like Sean Burgess.  So this post is based on hours of frustration that I had from setting up multiple osx machines to deploy rails.  Much of this is for my own reference and borrows heavily from these sites and my own attempts on [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 15px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.jackpo.org%2F2010%2F09%2F13%2Finstalling-rails-apache-mysql-and-passenger-on-snow-leopard-with-macports%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.jackpo.org%2F2010%2F09%2F13%2Finstalling-rails-apache-mysql-and-passenger-on-snow-leopard-with-macports%2F&amp;source=jackpo&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>Once in a while, I catch the startup bug due to people like Sean Burgess.  So this post is based on hours of frustration that I had from setting up multiple osx machines to deploy rails.  Much of this is for my own reference and borrows heavily from these sites and my own attempts on 4 different macs:</p>
<ol>
<li><a href="http://www.frederico-araujo.com/2010/08/19/installing-rails-enviroment-on-snow-leopard-with-macports-mysql-and-modrails-passenger/">http://www.frederico-araujo.com/2010/08/19/installing-rails-enviroment-on-snow-leopard-with-macports-mysql-and-modrails-passenger/</a></li>
<li>http://2tbsp.com/content/install_apache_2_and_php_5_macports</li>
<li>https://trac.macports.org/wiki/howto/MAMP</li>
</ol>
<h3>1. Preparing System</h3>
<p>In general, just easiest to start from scratch if you haven&#8217;t used ports in a while (or have never used it).  Also make sure that web sharing is OFF under System Preferences as we are going to install the apache version from macports instead.</p>
<pre class="command">sudo rm -rf \
    /opt/local \
    /Applications/DarwinPorts \
    /Applications/MacPorts \
    /Library/LaunchDaemons/org.macports.* \
    /Library/Receipts/DarwinPorts*.pkg \
    /Library/Receipts/MacPorts*.pkg \
    /Library/StartupItems/DarwinPortsStartup \
    /Library/Tcl/darwinports1.0 \
    /Library/Tcl/macports1.0 \
    ~/.macports</pre>
<h4>1.1 Download and Install Xcode &amp; Macports</h4>
<p>http://developer.apple.com/technologies/xcode.html</p>
<p>Download Page: http://www.macports.org/install.php</p>
<h4>1.3.1 Update macports</h4>
<pre class="command">sudo port -v selfupdate
port upgrade outdated</pre>
<h3>2. Apache, php5, mysql &amp; PhpMyAdmin</h3>
<h4>2.1 Install Apache, php5, PhpMyAdmin and misc</h4>
<pre class="command">sudo port -v install phpmyadmin php5 php5-mysql apache2 mysql5-server mysql5 memcached libmemcached wget sqlite3 +apache2 +pear</pre>
<h4>2.2 Make apache, mysql autoload on startup</h4>
<pre class="command">sudo -u mysql mysql_install_db5
sudo launchctl load -w /Library/LaunchDaemons/org.macports.apache2.plist
sudo launchctl load -w /Library/LaunchDaemons/org.macports.mysql5.plist
sudo port load memcached</pre>
<h4>2.3 Activating PHP5</h4>
<pre class="command">cd /opt/local/apache2/modules
sudo /opt/local/apache2/bin/apxs -a -e -n "php5" libphp5.so</pre>
<h4>2.4 Add index.php to the dir_module directive</h4>
<p>Open /opt/local/apache2/conf/httpd.conf in your favorite text editor.</p>
<pre class="command">&lt;IfModule dir_module&gt;
    DirectoryIndex index.html index.php
&lt;/IfModule&gt;</pre>
<h4>2.5 Add mod_php and phpmyadmin</h4>
<p>Also, at the end of the httpd.conf file, add the following lines so that Apache includes the mod_php and phpmyadmin file</p>
<pre class="command">#Include PHP configurations
Include conf/extra/mod_php.conf</pre>
<pre class="command"># Local access to phpmyadmin installation
Include conf/extra/httpd-phpmyadmin.conf</pre>
<p>Set up your PHP configuration files</p>
<pre class="command">cd /opt/local/etc/php5
sudo cp php.ini-development php.ini</pre>
<p>Setup the MySQL default socket to use the CentOS MySQL socket location by editing php.ini</p>
<pre class="command">pdo_mysql.default_socket=/var/lib/mysql/mysql.sock
mysql.default_socket=/var/lib/mysql/mysql.sock</pre>
<h4>2.6 Building my.cnf and changing the MySQL default socket to conform to CentOS (optional)</h4>
<p>Open /opt/local/apache2/conf/httpd.conf in your favorite text editor.  Add a new mimetype so that Apache will direct files ending in .php to the PHP module for processing. Add the following within the  block. Without this, all you&#8217;ll see is the text of your PHP scripts</p>
<pre class="command">sudo cp /opt/local/share/mysql5/mysql/my-medium.cnf /etc/my.cnf
sudo mkdir /var/lib/mysql/
sudo chown -R _mysql:_mysql /var/lib/mysql</pre>
<p>Change the TWO lines in /etc/my.cnf that says</p>
<pre class="command">socket = /opt/local/var/run/mysql5/mysqld.sock</pre>
<p>to</p>
<pre class="command">socket = /var/lib/mysql/mysql.sock</pre>
<h4>2.7 Create the phpmyadmin configuration file</h4>
<p>create a file /opt/local/apache2/conf/extra/httpd-phpmyadmin.conf containing this text:</p>
<pre class="command">AliasMatch ^/phpmyadmin(?:/)?(/.*)?$ "/opt/local/www/phpmyadmin$1"

&lt;Directory "/opt/local/www/phpmyadmin"&gt;
  Options -Indexes
  AllowOverride None
  Order allow,deny
  Allow from all

  LanguagePriority en de es fr ja ko pt-br ru
  ForceLanguagePriority Prefer Fallback
&lt;/Directory&gt;</pre>
<h4>2.8 Setup aliases to control the two services</h4>
<pre class="command">sudo  ln -s /opt/local/apache2/bin/apachectl /usr/sbin/apache2
sudo ln -s /opt/local/share/mysql5/mysql/mysql.server /usr/sbin/mysql.server
sudo apache2 restart
sudo mysql.server restart</pre>
<h4>2.9 Setup the mysql root password</h4>
<p>Set the MySQL root password.  Where  is your new desired root password. You will be prompted for your existing password (&#8220;Enter password:&#8221;); since it’s empty, just press Return.</p>
<pre class="command">mysqladmin5 -u root -p password &lt;new-password&gt;</pre>
<p>Then log into the mysql connection and use these commands (replacing your root password of course) to update all the root accoutns</p>
<pre class="command">
<pre>
<pre>shell&gt; <strong><code>mysql -u root -p</code></strong>
mysql&gt; <strong><code>UPDATE mysql.user SET Password = PASSWORD('<em><code>newpwd</code></em>')</code></strong>
    -&gt;     <strong><code>WHERE User = 'root';</code></strong>
mysql&gt; <strong><code>FLUSH PRIVILEGES;</code></strong></pre>
</pre>
</pre>
<h4>2.10 Test the PHP server</h4>
<p>Make an index.php in /opt/local/apache2/htdocs and put the following in it:</p>
<pre class="command">&lt;?php
phpinfo();
?&gt;</pre>
<h4>2.11 Install and Test phpmyadmin</h4>
<p>First make these changes in /opt/local/www/phpmyadmin/config.inc.php</p>
<pre class="command">$cfg['blowfish_secret'] = WHATEVER YOU WANT THIS TO BE</pre>
<p>You should see quite a bit of information regarding your php installation.</p>
<h3>3. Ruby, Rubygems, Rails, other gems</h3>
<h4>3.1 Install Ruby from macports</h4>
<pre class="command">sudo port -v install ruby</pre>
<pre class="command">$ ruby -v
ruby 1.8.7 (2010-08-08 patchlevel 302) [x86_64-darwin10]</pre>
<h4>3.2 download rubygems from http://rubygems.org/pages/download</h4>
<pre class="command">cd /tmp
wget http://production.cf.rubygems.org/rubygems/rubygems-1.3.7.tgz
tar -xvf rubygems-1.3.7.tgz
cd rubygems-1.3.7
sudo ruby setup.rb</pre>
<h4>3.3 Install rails, rake, rspec etc.</h4>
<pre class="command">sudo gem install rake rails thin tzinfo capistrano ruby-debug rspec mysql sqlite3-ruby</pre>
<h3>4. ImageMagick, Rmagick and mini_magick (Optional)</h3>
<p>lets install ImageMagick with support for JPEG, TIFF, WMF, PDF, and PNG images, and for Postscript and TrueType fonts.</p>
<pre class="command">sudo port -v install tiff -macosx imagemagick +q8 +gs +wmf</pre>
<pre class="command">sudo gem install mini_magick rmagick</pre>
<p>Test rmagick</p>
<pre class="command">$ irb -rubygems -r RMagick
&gt;&gt; puts Magick::Long_version
This is RMagick 2.13.1 ($Date: 2009/12/20 02:33:33 $) Copyright (C) 2009 by Timothy P. Hunter
Built with ImageMagick 6.6.3-0 2010-08-19 Q8 http://www.imagemagick.org
Built for ruby 1.8.7
Web page: http://rmagick.rubyforge.org
Email: rmagick@rubyforge.org
=&gt; nil</pre>
<h3>5. Passenger</h3>
<h4>5.1 Install Passenger gem</h4>
<pre class="command">sudo gem install passenger</pre>
<h4>5.2 Check Passenger path</h4>
<pre class="command">passenger-config --root</pre>
<pre> -&gt; /opt/local/lib/ruby/gems/1.8/gems/passenger-2.2.15</pre>
<h4>5.3 Build passenger for apache</h4>
<p>and don&#8217;t worry about the other steps, we will cover them directly in the guide</p>
<p><span style="font-family: Consolas, Monaco, 'Courier New', Courier, monospace; line-height: 18px; font-size: 12px; white-space: pre;">sudo passenger-install-apache2-module</span></p>
<h4>5.4 Enable Passenger on apache:</h4>
<pre class="command"><span style="font-family: Georgia, 'Times New Roman', 'Bitstream Charter', Times, serif; line-height: 19px; white-space: normal; font-size: 13px;">create /etc/apache2/extra/httpd-passenger.conf and change wherever necessary for your directories.</span></pre>
<div class="wp_syntax">
<div class="code">
<pre class="apache" style="font-family: monospace;"><span style="color: #00007f;">LoadModule</span> passenger_module /opt/local/lib/ruby/gems/<span style="color: #ff0000;">1.8</span>/gems/passenger-2.2.15/ext/apache2/mod_passenger.so
PassengerRoot /opt/local/lib/ruby/gems/<span style="color: #ff0000;">1.8</span>/gems/passenger-2.2.15
PassengerRuby /opt/local/bin/ruby
PassengerMaxPoolSize <span style="color: #ff0000;">6</span>  <span style="color: #adadad; font-style: italic;"># maximum global rails servers</span>
PassengerMaxInstancesPerApp <span style="color: #ff0000;">2</span>  <span style="color: #adadad; font-style: italic;"># maximum rails servers per application</span>
RailsFrameworkSpawnerIdleTime <span style="color: #ff0000;">1800</span>
RailsAppSpawnerIdleTime <span style="color: #ff0000;">600</span>
PassengerPoolIdleTime <span style="color: #ff0000;">600</span>
PassengerMaxRequests <span style="color: #ff0000;">1000</span>  <span style="color: #adadad; font-style: italic;"># after 1000 requests will restart server, to skip memory leak <img src='http://www.jackpo.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </span>

<span style="color: #adadad; font-style: italic;"># Enabling NameBased Virtualhost</span>
<span style="color: #00007f;">NameVirtualHost</span> 127.0.0.1:<span style="color: #ff0000;">80</span>

<span style="color: #adadad; font-style: italic;"># my rails app virtual host 1</span>
&lt;<span style="color: #000000; font-weight: bold;">VirtualHost</span> 127.0.0.1:<span style="color: #ff0000;">80</span>&gt;
    <span style="color: #00007f;">ServerName</span> my-rails-app.local
    <span style="color: #00007f;">DocumentRoot</span> <span style="color: #7f007f;">"/Users/jackpo/rails/my-rails-app/public"</span> <span style="color: #adadad; font-style: italic;"># change this to match your folder</span>
    RailsEnv <span style="color: #7f007f;">"development"</span>
   &lt;<span style="color: #000000; font-weight: bold;">Directory</span> /Users/jackpo/rails/my-rails-app/public&gt;
        <span style="color: #adadad; font-style: italic;"># change this to match your folder</span>
        <span style="color: #adadad; font-style: italic;"># MultiViews must be turned off</span>
        <span style="color: #00007f;">Options</span> -MultiViews
        <span style="color: #00007f;">AllowOverride</span> <span style="color: #00007f;">All</span>
        <span style="color: #00007f;">Order</span> <span style="color: #00007f;">allow</span>,<span style="color: #00007f;">deny</span>
        <span style="color: #00007f;">Allow</span> <span style="color: #00007f;">from</span> <span style="color: #00007f;">all</span>
    &lt;/<span style="color: #000000; font-weight: bold;">Directory</span>&gt;
    <span style="color: #adadad; font-style: italic;"># logs are optional, change this to match your folder</span>
    <span style="color: #00007f;">CustomLog</span>  <span style="color: #7f007f;">"/Users/jackpo/rails/my-rails-app/log/access_log"</span> combined
    <span style="color: #00007f;">ErrorLog</span>   <span style="color: #7f007f;">"/Users/jackpo/rails/my-rails-app/log/error_log"</span>
&lt;/<span style="color: #000000; font-weight: bold;">VirtualHost</span>&gt;
<span style="color: #adadad;"><em>
</em></span></pre>
</div>
</div>
<h4>5.5 Enable Virtual host on apache:</h4>
<p>Edit /opt/local/apache2/conf/httpd.conf and add this new line at the bottom:</p>
<pre class="command"># Include Passenger ModRails config file
Include conf/extra/httpd-passenger.conf</pre>
<h4>5.6 Add your .local domain to /etc/hosts/</h4>
<p>edit /etc/hosts and Add this line to that file and change to the name of your choosen application</p>
<p>You might add as many as you want, each line for each that ServerName on your VirtualHost blocks</p>
<pre>127.0.0.1 my-rails-app.local
127.0.0.1 myapp-xyz.local</pre>
<h4>5.6  Restart Apache</h4>
<pre class="command">sudo apache2 restart</pre>
<h3>6. Final</h3>
<p>go to your browser and open the url of your application http://my-rails-app.local</p>
<p>If it works, congratulations.  If it didn&#8217;t.. uh.. try and google.  I maybe able to help, but I don&#8217;t have that much time!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jackpo.org/2010/09/13/installing-rails-apache-mysql-and-passenger-on-snow-leopard-with-macports/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Elevator Advertising on Campuses</title>
		<link>http://www.jackpo.org/2008/03/19/elevator-advertising-on-campuses/</link>
		<comments>http://www.jackpo.org/2008/03/19/elevator-advertising-on-campuses/#comments</comments>
		<pubDate>Wed, 19 Mar 2008 05:34:59 +0000</pubDate>
		<dc:creator>JackPo</dc:creator>
				<category><![CDATA[Columbia]]></category>
		<category><![CDATA[Entrepeneurship]]></category>
		<category><![CDATA[NextNY]]></category>
		<category><![CDATA[advertising]]></category>
		<category><![CDATA[anti-stealth]]></category>
		<category><![CDATA[Charlie O'Donnell]]></category>
		<category><![CDATA[elevators]]></category>

		<guid isPermaLink="false">http://www.jackpo.org/2008/03/19/elevator-advertising-on-campuses/</guid>
		<description><![CDATA[In the interest of anti-stealth, I&#8217;m going to publicly announce one of the for profit ventures that I am currently working on. Incidentally, what exactly happened to the NextNY anti-stealth movement? There was a lot of activity at the end of October, and then the whole movement seemingly collapsed. Anyway, a friend and I have [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 15px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.jackpo.org%2F2008%2F03%2F19%2Felevator-advertising-on-campuses%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.jackpo.org%2F2008%2F03%2F19%2Felevator-advertising-on-campuses%2F&amp;source=jackpo&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>In the interest of <a href="http://www.alleyinsider.com/2007/08/charlie-odonnel.html">anti-stealth</a>, I&#8217;m going to publicly announce one of the for profit ventures that I am currently working on.  Incidentally, what exactly happened to the <a href="http://www.nextny.org">NextNY</a> anti-stealth movement?  There was a lot of activity at the end of October, and then the whole movement seemingly collapsed.</p>
<p>Anyway, a friend and I have started exploring the idea of a new campus based venture.  Many of you who are students are probably familiar with the few awkward minutes that you spend every few hours in an elevator traveling to and from class.  While you are in the elevator, wouldn&#8217;t it be nice to have a nice LCD displaying current campus events that might be of interest to you, or perhaps an ad telling you about the discounted food at Chipotle down the block this week?  </p>
<p>Our idea is exactly that, we would like to create a network of LCDs in campus elevators that would stream both campus events as well as advertisements.  A well established player, <a href="http://www.captivate.com/">Captivate Network</a>, currently does this in the office building market.  We would like to stay away from office buildings at the moment, and focus purely on college campuses (Facebook vs LinkedIn analogy?).  </p>
<p><img src="http://www.captivate.com/images/home/homelogo.jpg" alt="Captivate Network" /></p>
<p>Since both of us are current Columbia students, in fact both BME PhD students, we have decided to use Columbia University as a pilot site.  I haven&#8217;t had time to put together a powerpoint presentation yet, but I will definitely post it in the next few days.  For now we are tackling several thorny issues:</p>
<ul>
<li>Is it even possible to do it in NY?  We are currently checking the New York Fire Code.  <em>Safety code for elevators and escalators : an American national standard by the American Society for Mechanical Engineers</em> will be our guide.  Looks like I won&#8217;t need sleeping pills tonight.</li>
<li>We have done some back of the envelope calculations to see whether the idea is sustainable and scalable.  If we intend to get more funding, we will have to produce a full financial projection.  The projection itself is of course of no great importance to either investors or us, since reality almost always deviate significantly from the projections.  Though it&#8217;s important to have one anyway, if nothing else than to show that due diligence was performed.</li>
<li>To start campus based businesses that depend so much on campus infrastructure, we are clearly going to need a faculty champion.  We have started approaching various members of the engineering faculty, the business school faculty, as well as Columbia&#8217;s <a href="http://www.stv.columbia.edu/">Science and Technology Ventures</a> group to begin soliciting feedback and buy-ins. We&#8217;ve had a lot of success getting people excited about the concept, but haven&#8217;t found a champion of the project yet.  If you know of a Columbia faculty who might be interested, please let me know!</li>
<li>I will also begin to approach NYU and CCNY about the idea as well, in case Columbia falls through as a pilot site.  </li>
<li>We will clearly need a powerpoint presentation down the line.  I&#8217;ll put up version 1.0 of the presentation in a few days.</li>
</ul>
<p>Since we are still very early in our planning stages, we are open to all suggestions and ideas.  Let me know if any of you have any feedback or have seen existing implementations on college campuses!  If you happen to be a college student / faculty, and are interested in joining our team, shoot me an email: mail @ jackpo dot org.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.jackpo.org/2008/03/19/elevator-advertising-on-campuses/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Bubble 2.0</title>
		<link>http://www.jackpo.org/2007/12/26/bubble-20/</link>
		<comments>http://www.jackpo.org/2007/12/26/bubble-20/#comments</comments>
		<pubDate>Wed, 26 Dec 2007 23:50:05 +0000</pubDate>
		<dc:creator>JackPo</dc:creator>
				<category><![CDATA[Entrepeneurship]]></category>
		<category><![CDATA[Startups]]></category>
		<category><![CDATA[Tech Crunch]]></category>

		<guid isPermaLink="false">http://www.jackpo.org/2007/12/26/bubble-20/</guid>
		<description><![CDATA[All of us in the startup community have been debating whether the bubble is once again upon us. It is my strong opinion that indeed it has Dmitry sent me this video when I told him I will be teaching Entrepreneurship next semester, check it out!]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 15px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.jackpo.org%2F2007%2F12%2F26%2Fbubble-20%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.jackpo.org%2F2007%2F12%2F26%2Fbubble-20%2F&amp;source=jackpo&amp;style=normal&amp;service=bit.ly&amp;b=2" height="61" width="50" /><br />
			</a>
		</div>
<p>All of us in the startup community have been debating whether the bubble is once again upon us.  It is my strong opinion that indeed it has <img src='http://www.jackpo.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Dmitry sent me this video when I told him I will be teaching Entrepreneurship next semester, check it out!</p>
<p><code><br />
<object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/I6IQ_FOCE6I&#038;rel=1"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/I6IQ_FOCE6I&#038;rel=1" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object><br />
</code></p>
]]></content:encoded>
			<wfw:commentRss>http://www.jackpo.org/2007/12/26/bubble-20/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

