<?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>My Science Is Better &#187; ubuntu</title>
	<atom:link href="http://www.myscienceisbetter.info/category/ubuntu/feed" rel="self" type="application/rss+xml" />
	<link>http://www.myscienceisbetter.info</link>
	<description></description>
	<lastBuildDate>Sat, 20 Mar 2010 16:16:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Setting up Xdebug with Zend Server on Linux</title>
		<link>http://www.myscienceisbetter.info/setting-up-xdebug-with-zend-server-on-linux.html</link>
		<comments>http://www.myscienceisbetter.info/setting-up-xdebug-with-zend-server-on-linux.html#comments</comments>
		<pubDate>Tue, 02 Feb 2010 16:06:20 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[xdebug]]></category>
		<category><![CDATA[zend server]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=134</guid>
		<description><![CDATA[Since our team work on different operating system, we switched for custom apache/php/mysql installs to Zend Server. Before everyone was using something different (the guys on windows were using XAMP, WAMP, on ubuntu i was using the packages in the repo and on the server we're using apache from cPanel) and applications were behaving a [...]]]></description>
			<content:encoded><![CDATA[<p>Since our team work on different operating system, we switched for custom apache/php/mysql installs to Zend Server. Before everyone was using something different (the guys on windows were using XAMP, WAMP, on ubuntu i was using the packages in the repo and on the server we're using apache from cPanel) and applications were behaving a differently according to the default settings for all those platforms.</p>
<p>So we decided to install Zend Server  CE as it has more or less the same settings over different platforms.  I've had some bad experiences installing ZSCE on a system that already had apache installed via apt, but after a clear install of Karmic, ZF was running like a charm. The install process described in the <a href="http://files.zend.com/help/Zend-Server-Community-Edition/deb_installation.htm">online documentation</a> works great.</p>
<p>After install is done, make sure to symlink php, pecl, pear and phpize so you can access them system  wide:</p>
<pre class="brush: bash;">
sudo ln -s /usr/local/zend/bin/zendctl.sh /usr/sbin/zendctl
sudo ln -s /usr/local/zend/bin/pear /usr/sbin/pear
sudo ln -s /usr/local/zend/bin/pecl /usr/sbin/pecl
sudo ln -s /usr/local/zend/bin/php /usr/sbin/php
sudo ln -s /usr/local/zend/bin/phpize /usr/sbin/phpize
</pre>
<p>At this point you should be able to run php -i in terminal and the phpinfo will be displayed.</p>
<p>Next step is to install xdebug via pecl by running: </p>
<pre class="brush: bash;">sudo pecl install xdebug</pre>
<p>If all went well you should have the xdebug library located at /usr/local/zend/lib/php_extensions/xdebug.so . If you don't have it there, then something went wrong and you should NOT continue reading. This issue must be sorted first.</p>
<p>Next you need to comment out the 1st line of /usr/local/zend/etc/conf.d/debugger.ini so it looks like this:</p>
<pre class="brush: bash;">
#open editor
gksu gedit /usr/local/zend/etc/conf.d/debugger.ini

# this is how the 1st two lines should look afterwards
; register the extension to be loaded by Zend Extension Manager
;zend_extension_manager.dir.debugger=/usr/local/zend/lib/debugger
</pre>
<p>Xdebug needs to be loaded before Zend Extension Manager, that's why you need to add the following line just on top of the /usr/local/zend/etc/ext.d/extension_manager.ini</p>
<pre class="brush: bash;">
#open the editor
gksu gedit /usr/local/zend/etc/ext.d/extension_manager.ini

#add this line on 1st line:
zend_extension=/usr/local/zend/lib/php_extensions/xdebug.so

#save the file
</pre>
<p>Restart zend server by running:</p>
<pre class="brush: bash;">
sudo /etc/init.d/zend-server restart
</pre>
<p>You can check if xdebug is working like so:</p>
<pre class="brush: bash;">
php -i |grep xdebug
</pre>
<p>The output should be something similar to this:</p>
<pre class="brush: bash;">
xdebug
xdebug support =&gt; enabled
xdebug.auto_trace =&gt; Off =&gt; Off
xdebug.collect_includes =&gt; On =&gt; On
xdebug.collect_params =&gt; 0 =&gt; 0
xdebug.collect_return =&gt; Off =&gt; Off
xdebug.collect_vars =&gt; Off =&gt; Off
xdebug.default_enable =&gt; On =&gt; On
xdebug.dump.COOKIE =&gt; no value =&gt; no value
xdebug.dump.ENV =&gt; no value =&gt; no value
xdebug.dump.FILES =&gt; no value =&gt; no value
xdebug.dump.GET =&gt; no value =&gt; no value
xdebug.dump.POST =&gt; no value =&gt; no value
xdebug.dump.REQUEST =&gt; no value =&gt; no value
xdebug.dump.SERVER =&gt; no value =&gt; no value
xdebug.dump.SESSION =&gt; no value =&gt; no value
xdebug.dump_globals =&gt; On =&gt; On
xdebug.dump_once =&gt; On =&gt; On
xdebug.dump_undefined =&gt; Off =&gt; Off
xdebug.extended_info =&gt; On =&gt; On
xdebug.idekey =&gt; mimir =&gt; no value
xdebug.manual_url =&gt; http://www.php.net =&gt; http://www.php.net
xdebug.max_nesting_level =&gt; 100 =&gt; 100
xdebug.profiler_aggregate =&gt; Off =&gt; Off
xdebug.profiler_append =&gt; Off =&gt; Off
xdebug.profiler_enable =&gt; Off =&gt; Off
xdebug.profiler_enable_trigger =&gt; Off =&gt; Off
xdebug.profiler_output_dir =&gt; /tmp =&gt; /tmp
xdebug.profiler_output_name =&gt; cachegrind.out.%p =&gt; cachegrind.out.%p
xdebug.remote_autostart =&gt; Off =&gt; Off
xdebug.remote_enable =&gt; Off =&gt; Off
xdebug.remote_handler =&gt; dbgp =&gt; dbgp
xdebug.remote_host =&gt; localhost =&gt; localhost
xdebug.remote_log =&gt; no value =&gt; no value
xdebug.remote_mode =&gt; req =&gt; req
xdebug.remote_port =&gt; 9000 =&gt; 9000
xdebug.show_exception_trace =&gt; Off =&gt; Off
xdebug.show_local_vars =&gt; Off =&gt; Off
xdebug.show_mem_delta =&gt; Off =&gt; Off
xdebug.trace_format =&gt; 0 =&gt; 0
xdebug.trace_options =&gt; 0 =&gt; 0
xdebug.trace_output_dir =&gt; /tmp =&gt; /tmp
xdebug.trace_output_name =&gt; trace.%c =&gt; trace.%c
xdebug.var_display_max_children =&gt; 128 =&gt; 128
xdebug.var_display_max_data =&gt; 512 =&gt; 512
xdebug.var_display_max_depth =&gt; 3 =&gt; 3
</pre>
<p>Note the xdebug support => enabled on line 2.</p>
<p>Hope that helps <img src='http://www.myscienceisbetter.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/setting-up-xdebug-with-zend-server-on-linux.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Setup ZF using svn externals</title>
		<link>http://www.myscienceisbetter.info/setup-zf-using-svn-externals.html</link>
		<comments>http://www.myscienceisbetter.info/setup-zf-using-svn-externals.html#comments</comments>
		<pubDate>Tue, 19 Jan 2010 10:33:23 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[subversion]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[zend framework]]></category>
		<category><![CDATA[svn:externals]]></category>
		<category><![CDATA[zf]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=131</guid>
		<description><![CDATA[After you create a project with zf tool, put it on SVN, you might want to include inside /library the ZF, but you want to have the bleeding edge all the time. You can include it as a svn external like this:

cd library/
svn propset svn:externals 'Zend http://framework.zend.com/svn/framework/standard/trunk/library/Zend/' .

Next time when you run svn up, your [...]]]></description>
			<content:encoded><![CDATA[<p>After you create a project with zf tool, put it on SVN, you might want to include inside /library the ZF, but you want to have the bleeding edge all the time. You can include it as a svn external like this:</p>
<pre class="brush: bash;">
cd library/
svn propset svn:externals 'Zend http://framework.zend.com/svn/framework/standard/trunk/library/Zend/' .
</pre>
<p>Next time when you run svn up, your project will fetch the latest ZF from it's repo.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/setup-zf-using-svn-externals.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove .svn folders recursively</title>
		<link>http://www.myscienceisbetter.info/remove-svn-folders-recursively.html</link>
		<comments>http://www.myscienceisbetter.info/remove-svn-folders-recursively.html#comments</comments>
		<pubDate>Tue, 19 Jan 2010 10:10:25 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=129</guid>
		<description><![CDATA[I know that you have to use svn export in order to get a copy of the repo without the .svn folders inside, but sometimes you have to work with what you have, a checkout of a repo with .svn folders. And you want them removed.
After googling a bit i found a great way to [...]]]></description>
			<content:encoded><![CDATA[<p>I know that you have to use svn export in order to get a copy of the repo without the .svn folders inside, but sometimes you have to work with what you have, a checkout of a repo with .svn folders. And you want them removed.</p>
<p>After googling a bit i found a great way to <a title="Recursively remove .svn folders" href="http://www.myscienceisbetter.info/remove-svn-folders-recursively.htm">recursively remove .svn folders</a>. Just type the following while in the root of your checkout:</p>
<pre class="brush: bash;">rm -rf `find . -type d -name .svn`</pre>
<p>This tip was found on http://www.anyexample.com/linux_bsd/bash/recursively_delete__svn_directories.xml</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/remove-svn-folders-recursively.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Enable ls color support</title>
		<link>http://www.myscienceisbetter.info/enable-ls-color-support.html</link>
		<comments>http://www.myscienceisbetter.info/enable-ls-color-support.html#comments</comments>
		<pubDate>Fri, 08 Jan 2010 10:51:59 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[.bashrc]]></category>
		<category><![CDATA[bash]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=127</guid>
		<description><![CDATA[By default i like to use the Green on Black color scheme with my terminals. When i enable the theme though, ls loses somehow the ability to show files in colors. The trick to enable the feature is simple. One just has to run ls like this:
ls --color=auto
Unfortunately this won't stick, and it'a a bit [...]]]></description>
			<content:encoded><![CDATA[<p>By default i like to use the Green on Black color scheme with my terminals. When i enable the theme though, ls loses somehow the ability to show files in colors. The trick to enable the feature is simple. One just has to run ls like this:</p>
<pre class="brush: bash;">ls --color=auto</pre>
<p>Unfortunately this won't stick, and it'a a bit of a drag to always add the --color=auto part. To solve this, one has to create an alias to ls to point to ls --color=auto. You can do this by adding the following to ~/.bashrc</p>
<pre class="brush: bash;">
# enable color support of ls and also add handy aliases
if [ &quot;$TERM&quot; != &quot;dumb&quot; ]; then
    eval &quot;`dircolors -b`&quot;
    alias ls='ls --color=auto'
fi
</pre>
<p>Tada!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/enable-ls-color-support.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ailurus project</title>
		<link>http://www.myscienceisbetter.info/ailurus-project.html</link>
		<comments>http://www.myscienceisbetter.info/ailurus-project.html#comments</comments>
		<pubDate>Fri, 08 Jan 2010 09:05:47 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[ailurus]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=124</guid>
		<description><![CDATA[I've been contacted a few days ago by Homer Xing from Ailurus project.
He's notified me about the addition of the script to install native flash player 64bit on ubuntu in the Ailurus project. I was thrilled. Since then Homer even built a version of the script to work on Fedora (which is now on this [...]]]></description>
			<content:encoded><![CDATA[<p>I've been contacted a few days ago by Homer Xing from <a title="Ailurus Project" href="http://code.google.com/p/ailurus/">Ailurus project</a>.</p>
<p>He's notified me about the addition of the script to <a title="Install native flash player 64bit on linux" href="http://www.myscienceisbetter.info/install-native-64bit-flash-player-10-on-linux.html">install native flash player 64bit on ubuntu</a> in the <a title="Ailurus Project" href="http://code.google.com/p/ailurus/">Ailurus project</a>. I was thrilled. Since then Homer even built a version of the script to work on Fedora (which is now on this site also available) and we got in touch over IM.</p>
<p>I think <a title="Ailurus Project" href="http://code.google.com/p/ailurus/">Ailurus</a> is an amazing project. Hardcore Linux users might not see why it's important to have projects like these, but someone new to linux will appreciate it. I can't stress enough how hard the Linux world seems to old windows users. It's not a matter of Linux being hard to learn, but more of windows being hard to forget. With tools like Ailurus that make installing applications a snap, i think the transition is made much easier.</p>
<p>Looking forward for future releases!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/ailurus-project.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SVN Ignore all files inside a folder</title>
		<link>http://www.myscienceisbetter.info/svn-ignore-all-files-inside-a-folder.html</link>
		<comments>http://www.myscienceisbetter.info/svn-ignore-all-files-inside-a-folder.html#comments</comments>
		<pubDate>Tue, 22 Dec 2009 17:50:39 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[subversion]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[svn ignore]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=120</guid>
		<description><![CDATA[If you want to ignore certain file types inside a folder on SVN it's pretty easy:

svn propset svn:ignore &#34;*.tgz&#34; backup

It's a bit more complicated if you want to ignore everything inside a folder (be it files or folders). If you have a structure as the following: 

/public/media
/public/media/member
/public/media/member/artist
/public/media/member/fan
/public/media/member/label

and you want to ignore everything inside public/media, just [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to ignore certain file types inside a folder on SVN it's pretty easy:</p>
<pre class="brush: bash;">
svn propset svn:ignore &quot;*.tgz&quot; backup
</pre>
<p>It's a bit more complicated if you want to ignore everything inside a folder (be it files or folders). If you have a structure as the following: </p>
<pre class="brush: bash;">
/public/media
/public/media/member
/public/media/member/artist
/public/media/member/fan
/public/media/member/label
</pre>
<p>and you want to ignore everything inside public/media, just do:</p>
<pre class="brush: bash;">
svn propset svn:ignore &quot;*&quot; public/media/
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/svn-ignore-all-files-inside-a-folder.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Repair Perl Locale Errors on Ubuntu Server</title>
		<link>http://www.myscienceisbetter.info/repair-perl-locale-errors-on-ubuntu-server.html</link>
		<comments>http://www.myscienceisbetter.info/repair-perl-locale-errors-on-ubuntu-server.html#comments</comments>
		<pubDate>Wed, 09 Dec 2009 10:47:28 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[perl locale]]></category>
		<category><![CDATA[ubuntu server]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=112</guid>
		<description><![CDATA[Installed Ubuntu Server Karmic just fine and noticed this perl error on the first "apt-get upgrade" i ran.

perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = &#34;en_US&#34;,
	LC_CTYPE = &#34;en_US.UTF-8&#34;,
	LANG = &#34;en_US.UTF-8&#34;
    are supported and installed on your system.
perl: warning: Falling back to the standard locale (&#34;C&#34;).
locale: [...]]]></description>
			<content:encoded><![CDATA[<p>Installed Ubuntu Server Karmic just fine and noticed this perl error on the first "apt-get upgrade" i ran.</p>
<pre class="brush: bash;">
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
	LANGUAGE = (unset),
	LC_ALL = &quot;en_US&quot;,
	LC_CTYPE = &quot;en_US.UTF-8&quot;,
	LANG = &quot;en_US.UTF-8&quot;
    are supported and installed on your system.
perl: warning: Falling back to the standard locale (&quot;C&quot;).
locale: Cannot set LC_CTYPE to default locale: No such file or directory
locale: Cannot set LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
</pre>
<p>After a bit of looking around on the internets i found out the solution:</p>
<pre class="brush: bash;">
sudo apt-get install language-pack-en-base
sudo dpkg-reconfigure locales
</pre>
<p>That's it <img src='http://www.myscienceisbetter.info/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/repair-perl-locale-errors-on-ubuntu-server.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Video working with Logitech QuickCam Communicate STX on Linux 64bit</title>
		<link>http://www.myscienceisbetter.info/video-working-with-logitech-quickcam-communicate-stx-on-linux-64bit.html</link>
		<comments>http://www.myscienceisbetter.info/video-working-with-logitech-quickcam-communicate-stx-on-linux-64bit.html#comments</comments>
		<pubDate>Thu, 12 Nov 2009 13:14:56 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[64bit]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[logitech quickcam]]></category>
		<category><![CDATA[skype]]></category>
		<category><![CDATA[webcam]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=107</guid>
		<description><![CDATA[I have a 046d:08d7 Logitech, Inc. QuickCam Communicate STX that works perfectly well with all the native linux applications (ekiga, cheese, empathy) and even with the Flash Player powered TokBox, but it does not work with Skype.
After a bit of digging I've found out how to make Skype detect the video input from my Webcam. [...]]]></description>
			<content:encoded><![CDATA[<p>I have a 046d:08d7 Logitech, Inc. QuickCam Communicate STX that works perfectly well with all the native linux applications (ekiga, cheese, empathy) and even with the Flash Player powered TokBox, but it does not work with Skype.</p>
<p>After a bit of digging I've found out how to make Skype detect the video input from my Webcam. The secret is to preload the v4l1compat.so library as shown on the <a href="https://help.ubuntu.com/community/Webcam">Ubuntu Wiki</a>:</p>
<pre class="brush: bash;">
bash -c 'LD_PRELOAD=/usr/lib/libv4l/v4l1compat.so skype'
</pre>
<p>That does the trick for 32bit systems, and since there isn't a native Skype version for 64bit</p>
<pre class="brush: bash;">
mimir@orion:~$ file /usr/bin/skype
/usr/bin/skype: ELF 32-bit LSB executable, Intel 80386, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.8, stripped
</pre>
<p>we need to tell skype to preload the 32bit version of the library like so:</p>
<pre class="brush: bash;">
bash -c 'LD_PRELOAD=/usr/lib32/libv4l/v4l1compat.so skype'
</pre>
<p>Now video works perfectly using Skype 2.1.0.47 under Ubuntu 9.10 64bit</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/video-working-with-logitech-quickcam-communicate-stx-on-linux-64bit.html/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Listen to Windows Media Player Feeds on Linux and Mac</title>
		<link>http://www.myscienceisbetter.info/listen-to-windows-media-player-feeds-on-linux-and-mac.html</link>
		<comments>http://www.myscienceisbetter.info/listen-to-windows-media-player-feeds-on-linux-and-mac.html#comments</comments>
		<pubDate>Mon, 12 Oct 2009 10:58:39 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=104</guid>
		<description><![CDATA[If you want to listed to an audio/video feed while you're running Linux or Mac is a bit ridiculous for a site to suggest you to install WMP (windows media player). There is one solution tho. Open the feed and it should get a windows that is expecting you to play the feed with WMP. [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to listed to an audio/video feed while you're running Linux or Mac is a bit ridiculous for a site to suggest you to install WMP (windows media player). There is one solution tho. Open the feed and it should get a windows that is expecting you to play the feed with WMP. View the source code of that page and you should find the URL of the feed.</p>
<p>You can play the feed easily on Linux or Mac using VLC. Just open a terminal an type:</p>
<pre class="brush: bash;">vlc feed_url_here</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/listen-to-windows-media-player-feeds-on-linux-and-mac.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Install Zend Framework and Zend_Tool using PEAR on Ubuntu</title>
		<link>http://www.myscienceisbetter.info/install-zend-framework-and-zend_tool-using-pear-on-ubuntu.html</link>
		<comments>http://www.myscienceisbetter.info/install-zend-framework-and-zend_tool-using-pear-on-ubuntu.html#comments</comments>
		<pubDate>Tue, 22 Sep 2009 08:46:57 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[php]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[zend framework]]></category>
		<category><![CDATA[zend_tool]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=87</guid>
		<description><![CDATA[I work every day with Zend Framework and the easiest way i find to install it is by using the PEAR packages offered by the betta channel ZF Campus
Here is what you have to do install Zend Framework and Zend_Tool using PEAR on Ubuntu:

sudo pear channel-discover pear.zfcampus.org
sudo pear install zfcampus/zf
# for some reason the installer [...]]]></description>
			<content:encoded><![CDATA[<p>I work every day with <a title="Zend Framework" href="http://www.myscienceisbetter.info/category/zend-framework">Zend Framework</a> and the easiest way i find to install it is by using the PEAR packages offered by the betta channel <a title="ZF Campus" href="http://pear.zfcampus.org/" target="_blank">ZF Campus</a></p>
<p>Here is what you have to do install <a title="Install Zend Framework and Zend_Tool using PEAR on Ubuntu" href="http://www.myscienceisbetter.info/install-zend-framework-and-zend_tool-using-pear-on-ubuntu.html">Zend Framework and Zend_Tool using PEAR on Ubuntu</a>:</p>
<pre class="brush: bash;">
sudo pear channel-discover pear.zfcampus.org
sudo pear install zfcampus/zf
# for some reason the installer does not correctly link the zf.php and Zend_Tool won't work
# so we need to setup a symlink
sudo ln -s /usr/share/php/zf.php /usr/bin/zf.php
</pre>
<p>That's it! You can now test your install:</p>
<pre class="brush: bash;">
zf show version
</pre>
<p>In my care the output was this one:</p>
<pre class="brush: bash;">
mimir@orion:~$ zf show version
Zend Framework Version: 1.9.2
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/install-zend-framework-and-zend_tool-using-pear-on-ubuntu.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
