<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Emisca Backports and Linux Blog</title>
	<atom:link href="http://emiscabpo.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://emiscabpo.wordpress.com</link>
	<description>Debian, packages, linux and fun...</description>
	<lastBuildDate>Fri, 11 Sep 2009 06:42:29 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='emiscabpo.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/92bb04cd8da43ac66bcf411a2d0c25da?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>Emisca Backports and Linux Blog</title>
		<link>http://emiscabpo.wordpress.com</link>
	</image>
			<item>
		<title>Ampache and AAC nero/apple tags track numbers</title>
		<link>http://emiscabpo.wordpress.com/2009/09/11/ampache-and-aac-neroapple-tags-track-numbers/</link>
		<comments>http://emiscabpo.wordpress.com/2009/09/11/ampache-and-aac-neroapple-tags-track-numbers/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 06:42:29 +0000</pubDate>
		<dc:creator>emiscabpo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ampache]]></category>
		<category><![CDATA[mp4]]></category>

		<guid isPermaLink="false">http://emiscabpo.wordpress.com/?p=29</guid>
		<description><![CDATA[I&#8217;ve installed ampache 3.5.1 on a machine, and I discovered that it cannot get track numbers from MP4/AAC files tagged by Nero AAC encoder o Apple encoder.
This issue can be solved by writing a script that uses faad to get the track number, and modifying some ampache code.
The scripts is:
$ cat /usr/local/bin/gettracknoaac.sh
#!/bin/bash

if [ -z "$1" [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emiscabpo.wordpress.com&blog=1866671&post=29&subd=emiscabpo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;ve installed ampache 3.5.1 on a machine, and I discovered that it cannot get track numbers from MP4/AAC files tagged by Nero AAC encoder o Apple encoder.</p>
<p>This issue can be solved by writing a script that uses faad to get the track number, and modifying some ampache code.</p>
<p>The scripts is:</p>
<pre>$ cat /usr/local/bin/gettracknoaac.sh
#!/bin/bash

if [ -z "$1" ]; then
 echo usage: $0 file
 exit
fi

faad -i "$1" 2&gt;&amp;1 |grep track: |cut -d\   -f2</pre>
<p>You need also to edit the file /usr/share/ampache/www/lib/class/vainfo.class.php (this is the ampache debian package path, please change it to match your installation). Locate the function getinfo and add before the line at the end of the function:</p>
<pre>unset($this-&gt;_raw);</pre>
<p>the code:</p>
<pre>if($this-&gt;tags['quicktime']['track']==0) {
 $this-&gt;tags['quicktime']['track']=exec('/usr/local/bin/gettracknoaac.sh '.escapeshellarg($this-&gt;filename).'',$retval);
 debug_event('getid3',$this-&gt;tags['quicktime']['track'],'5');
 }</pre>
<p>Enabling the debug log to level 5 on ampache you can see that it gets the track numbers from the mp4/aac files.</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/emiscabpo.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/emiscabpo.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/emiscabpo.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/emiscabpo.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/emiscabpo.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/emiscabpo.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/emiscabpo.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/emiscabpo.wordpress.com/29/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/emiscabpo.wordpress.com/29/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/emiscabpo.wordpress.com/29/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emiscabpo.wordpress.com&blog=1866671&post=29&subd=emiscabpo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://emiscabpo.wordpress.com/2009/09/11/ampache-and-aac-neroapple-tags-track-numbers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b47e2e2babcb277c722a04561c5254f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">emiscabpo</media:title>
		</media:content>
	</item>
		<item>
		<title>My madwifi module settings for eeepc atheros ar5025 wifi</title>
		<link>http://emiscabpo.wordpress.com/2009/09/11/my-madwifi-module-settings-for-eeepc-atheros-ar5025-wifi/</link>
		<comments>http://emiscabpo.wordpress.com/2009/09/11/my-madwifi-module-settings-for-eeepc-atheros-ar5025-wifi/#comments</comments>
		<pubDate>Fri, 11 Sep 2009 06:38:47 +0000</pubDate>
		<dc:creator>emiscabpo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://emiscabpo.wordpress.com/2009/09/11/my-madwifi-module-settings-for-eeepc-atheros-ar5025-wifi/</guid>
		<description><![CDATA[After some tuning I found that to get optimal wifi speed with the madwifi-free driver on my home I had to set:
options ath_pci hal_tpc=1 intmit=1 ratectl=amrr
Bye!
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emiscabpo.wordpress.com&blog=1866671&post=33&subd=emiscabpo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>After some tuning I found that to get optimal wifi speed with the madwifi-free driver on my home I had to set:<br />
options ath_pci hal_tpc=1 intmit=1 ratectl=amrr</p>
<p>Bye!</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/emiscabpo.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/emiscabpo.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/emiscabpo.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/emiscabpo.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/emiscabpo.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/emiscabpo.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/emiscabpo.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/emiscabpo.wordpress.com/33/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/emiscabpo.wordpress.com/33/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/emiscabpo.wordpress.com/33/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emiscabpo.wordpress.com&blog=1866671&post=33&subd=emiscabpo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://emiscabpo.wordpress.com/2009/09/11/my-madwifi-module-settings-for-eeepc-atheros-ar5025-wifi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b47e2e2babcb277c722a04561c5254f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">emiscabpo</media:title>
		</media:content>
	</item>
		<item>
		<title>Tivoli Directory Server init script for redhat</title>
		<link>http://emiscabpo.wordpress.com/2009/01/09/tivoli-directory-server-init-script-for-redhat/</link>
		<comments>http://emiscabpo.wordpress.com/2009/01/09/tivoli-directory-server-init-script-for-redhat/#comments</comments>
		<pubDate>Fri, 09 Jan 2009 09:36:10 +0000</pubDate>
		<dc:creator>emiscabpo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[directory server]]></category>
		<category><![CDATA[ibm]]></category>
		<category><![CDATA[tivoli]]></category>

		<guid isPermaLink="false">http://emiscabpo.wordpress.com/?p=26</guid>
		<description><![CDATA[Here is a very simple init script for IBM Tivoli Directory Server V. 6.0.
Bye!

#!/bin/bash
#
#       /etc/init.d/ibmslapd
#
#       IBM Tivoli init script
#       2009 - Emilio Scalise, &#60; emisca at rocketmail dot com &#62;
#
# chkconfig: 345 70 20
#
# description: IBM Tivoli [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emiscabpo.wordpress.com&blog=1866671&post=26&subd=emiscabpo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Here is a very simple init script for IBM Tivoli Directory Server V. 6.0.</p>
<p>Bye!</p>
<pre>
#!/bin/bash
#
#       /etc/init.d/ibmslapd
#
#       IBM Tivoli init script
#       2009 - Emilio Scalise, &lt; emisca at rocketmail dot com &gt;
#
# chkconfig: 345 70 20
#
# description: IBM Tivoli init script

# Source function library.
. /etc/init.d/functions

start() {
        echo -n "Starting ibmslapd: "
        daemon --check ibmslapd /opt/ibm/ldap/V6.0/sbin/slapd
        RETVAL=$?
        touch /var/lock/subsys/ibmslapd
        return $RETVAL
}

stop() {
        echo -n "Shutting down ibmslapd: "
        /opt/ibm/ldap/V6.0/sbin/slapd -k
        RETVAL=$?
        rm -f /var/lock/subsys/ibmslapd
        return $RETVAL
}

case "$1" in
    start)
        start
        ;;
    stop)
        stop
        ;;
    restart)
        stop
        start
        ;;
    *)
        echo "Usage: ibmslapd {start|stop|status|reload|restart[|probe]"
        exit 1
        ;;
esac
exit $?</pre>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/emiscabpo.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/emiscabpo.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/emiscabpo.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/emiscabpo.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/emiscabpo.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/emiscabpo.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/emiscabpo.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/emiscabpo.wordpress.com/26/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/emiscabpo.wordpress.com/26/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/emiscabpo.wordpress.com/26/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emiscabpo.wordpress.com&blog=1866671&post=26&subd=emiscabpo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://emiscabpo.wordpress.com/2009/01/09/tivoli-directory-server-init-script-for-redhat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b47e2e2babcb277c722a04561c5254f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">emiscabpo</media:title>
		</media:content>
	</item>
		<item>
		<title>repository upgrade.. pidgin 2.4.3</title>
		<link>http://emiscabpo.wordpress.com/2008/07/10/repository-upgrade-pidgin-243/</link>
		<comments>http://emiscabpo.wordpress.com/2008/07/10/repository-upgrade-pidgin-243/#comments</comments>
		<pubDate>Thu, 10 Jul 2008 15:08:51 +0000</pubDate>
		<dc:creator>emiscabpo</dc:creator>
				<category><![CDATA[backports]]></category>
		<category><![CDATA[debian]]></category>

		<guid isPermaLink="false">http://emiscabpo.wordpress.com/?p=20</guid>
		<description><![CDATA[Today I&#8217;ve backported and uploaded pidgin 2.4.3 from lenny.
Enjoy it  
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emiscabpo.wordpress.com&blog=1866671&post=20&subd=emiscabpo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Today I&#8217;ve backported and uploaded pidgin 2.4.3 from lenny.</p>
<p>Enjoy it <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/emiscabpo.wordpress.com/20/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/emiscabpo.wordpress.com/20/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/emiscabpo.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/emiscabpo.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/emiscabpo.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/emiscabpo.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/emiscabpo.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/emiscabpo.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/emiscabpo.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/emiscabpo.wordpress.com/20/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/emiscabpo.wordpress.com/20/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/emiscabpo.wordpress.com/20/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emiscabpo.wordpress.com&blog=1866671&post=20&subd=emiscabpo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://emiscabpo.wordpress.com/2008/07/10/repository-upgrade-pidgin-243/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b47e2e2babcb277c722a04561c5254f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">emiscabpo</media:title>
		</media:content>
	</item>
		<item>
		<title>lyx repository update</title>
		<link>http://emiscabpo.wordpress.com/2008/03/23/lyx-repository-update/</link>
		<comments>http://emiscabpo.wordpress.com/2008/03/23/lyx-repository-update/#comments</comments>
		<pubDate>Sun, 23 Mar 2008 14:18:12 +0000</pubDate>
		<dc:creator>emiscabpo</dc:creator>
				<category><![CDATA[backports]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[lyx]]></category>

		<guid isPermaLink="false">http://emiscabpo.wordpress.com/?p=19</guid>
		<description><![CDATA[I&#8217;ve uploaded the new lyx 1.5.4 compiled for Etch on i386 and amd64 architecture.
The lyx 1.4 repository was dropped due to disk space quota limitations. I think that lyx 1.5 is enough mature to replace the 1.4 branch completely. Please contact me if you need the old packages&#8230;.
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emiscabpo.wordpress.com&blog=1866671&post=19&subd=emiscabpo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;ve uploaded the new lyx 1.5.4 compiled for Etch on i386 and amd64 architecture.</p>
<p>The lyx 1.4 repository was dropped due to disk space quota limitations. I think that lyx 1.5 is enough mature to replace the 1.4 branch completely. Please contact me if you need the old packages&#8230;.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/emiscabpo.wordpress.com/19/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/emiscabpo.wordpress.com/19/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/emiscabpo.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/emiscabpo.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/emiscabpo.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/emiscabpo.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/emiscabpo.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/emiscabpo.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/emiscabpo.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/emiscabpo.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/emiscabpo.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/emiscabpo.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emiscabpo.wordpress.com&blog=1866671&post=19&subd=emiscabpo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://emiscabpo.wordpress.com/2008/03/23/lyx-repository-update/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b47e2e2babcb277c722a04561c5254f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">emiscabpo</media:title>
		</media:content>
	</item>
		<item>
		<title>zune-like black theme for KDE/QtCurve</title>
		<link>http://emiscabpo.wordpress.com/2008/03/11/zune-like-black-theme-for-kdeqtcurve/</link>
		<comments>http://emiscabpo.wordpress.com/2008/03/11/zune-like-black-theme-for-kdeqtcurve/#comments</comments>
		<pubDate>Tue, 11 Mar 2008 17:58:21 +0000</pubDate>
		<dc:creator>emiscabpo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[black]]></category>
		<category><![CDATA[kde theme]]></category>
		<category><![CDATA[zune]]></category>

		<guid isPermaLink="false">http://emiscabpo.wordpress.com/?p=18</guid>
		<description><![CDATA[I&#8217;ve made a black theme for kde using the QtCurve engine (you can use the qtcurve packages in the misc-backports repository..).
http://download.tuxfamily.org/emiscabpo/other/QtCurveZuneScreenshot-1.jpg
http://download.tuxfamily.org/emiscabpo/other/QtCurveZuneScreenshot-2.jpg 
http://download.tuxfamily.org/emiscabpo/other/QtCurveZuneKDE.tar.gz 
I&#8217;ve taken inspiration from the Micro$oft (oh my god&#8230;) Zune theme.. i liked it  
(http://go.microsoft.com/fwlink/?LinkID=75078)
Bye!
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emiscabpo.wordpress.com&blog=1866671&post=18&subd=emiscabpo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;ve made a black theme for kde using the QtCurve engine (you can use the qtcurve packages in the misc-backports repository..).</p>
<p><a href="http://download.tuxfamily.org/emiscabpo/other/QtCurveZuneScreenshot-1.jpg" target="_blank">http://download.tuxfamily.org/emiscabpo/other/QtCurveZuneScreenshot-1.jpg</a></p>
<p><a href="http://download.tuxfamily.org/emiscabpo/other/QtCurveZuneScreenshot-2.jpg" target="_blank">http://download.tuxfamily.org/emiscabpo/other/QtCurveZuneScreenshot-2.jpg </a></p>
<p><a href="http://download.tuxfamily.org/emiscabpo/other/QtCurveZuneKDE.tar.gz" target="_blank">http://download.tuxfamily.org/emiscabpo/other/QtCurveZuneKDE.tar.gz </a></p>
<p>I&#8217;ve taken inspiration from the Micro$oft (oh my god&#8230;) Zune theme.. i liked it <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>(<a href="http://go.microsoft.com/fwlink/?LinkID=75078" target="_blank">http://go.microsoft.com/fwlink/?LinkID=75078</a>)</p>
<p>Bye!</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/emiscabpo.wordpress.com/18/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/emiscabpo.wordpress.com/18/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/emiscabpo.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/emiscabpo.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/emiscabpo.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/emiscabpo.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/emiscabpo.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/emiscabpo.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/emiscabpo.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/emiscabpo.wordpress.com/18/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/emiscabpo.wordpress.com/18/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/emiscabpo.wordpress.com/18/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emiscabpo.wordpress.com&blog=1866671&post=18&subd=emiscabpo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://emiscabpo.wordpress.com/2008/03/11/zune-like-black-theme-for-kdeqtcurve/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b47e2e2babcb277c722a04561c5254f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">emiscabpo</media:title>
		</media:content>
	</item>
		<item>
		<title>lyx 1.5.x and 1.4.5 backports</title>
		<link>http://emiscabpo.wordpress.com/2008/01/19/lyx-15x-and-145-backports/</link>
		<comments>http://emiscabpo.wordpress.com/2008/01/19/lyx-15x-and-145-backports/#comments</comments>
		<pubDate>Sat, 19 Jan 2008 22:22:58 +0000</pubDate>
		<dc:creator>emiscabpo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://emiscabpo.wordpress.com/2008/01/19/lyx-15x-and-145-backports/</guid>
		<description><![CDATA[You can find here lyx 1.5.3:
 deb http://download.tuxfamily.org/emiscabpo/lyx15-bpo ./
and here it is the 1.4.5 version (for the ones who want to stick with the 1.4.x version:
 deb http://download.tuxfamily.org/emiscabpo/lyx14-bpo ./
These repositories contain a backported libboost 1.34 library, that could be installed alongside the 1.33 version. Please note that the libboost-dev package of the 1.34 version overrides [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emiscabpo.wordpress.com&blog=1866671&post=17&subd=emiscabpo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>You can find here lyx 1.5.3:</p>
<p><code> deb http://download.tuxfamily.org/emiscabpo/lyx15-bpo ./</code></p>
<p>and here it is the 1.4.5 version (for the ones who want to stick with the 1.4.x version:</p>
<p><code> deb http://download.tuxfamily.org/emiscabpo/lyx14-bpo ./</code></p>
<p>These repositories contain a backported libboost 1.34 library, that could be installed alongside the 1.33 version. Please note that the libboost-dev package of the 1.34 version overrides the libboost 1.33 one in apt.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/emiscabpo.wordpress.com/17/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/emiscabpo.wordpress.com/17/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/emiscabpo.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/emiscabpo.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/emiscabpo.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/emiscabpo.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/emiscabpo.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/emiscabpo.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/emiscabpo.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/emiscabpo.wordpress.com/17/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/emiscabpo.wordpress.com/17/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/emiscabpo.wordpress.com/17/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emiscabpo.wordpress.com&blog=1866671&post=17&subd=emiscabpo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://emiscabpo.wordpress.com/2008/01/19/lyx-15x-and-145-backports/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b47e2e2babcb277c722a04561c5254f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">emiscabpo</media:title>
		</media:content>
	</item>
		<item>
		<title>new compiz-fusion backport repository</title>
		<link>http://emiscabpo.wordpress.com/2008/01/19/new-compiz-fusion-backport-repository/</link>
		<comments>http://emiscabpo.wordpress.com/2008/01/19/new-compiz-fusion-backport-repository/#comments</comments>
		<pubDate>Sat, 19 Jan 2008 22:18:44 +0000</pubDate>
		<dc:creator>emiscabpo</dc:creator>
				<category><![CDATA[backports]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[compiz]]></category>
		<category><![CDATA[compiz fusion]]></category>
		<category><![CDATA[etch]]></category>

		<guid isPermaLink="false">http://emiscabpo.wordpress.com/2008/01/19/new-compiz-fusion-backport-repository/</guid>
		<description><![CDATA[I have made another repo for compiz fusion, using the official source packages that now, thanks to Sean Finney, are in debian Sid.
This is the apt line:
 deb http://download.tuxfamily.org/emiscabpo/compiz-debian-backport ./
Maybe some of you have seen that this repo was here for a while, but I preferred to test a bit those packages waiting that there [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emiscabpo.wordpress.com&blog=1866671&post=16&subd=emiscabpo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I have made another repo for compiz fusion, using the official source packages that now, thanks to Sean Finney, are in debian Sid.</p>
<p>This is the apt line:</p>
<p><code> deb http://download.tuxfamily.org/emiscabpo/compiz-debian-backport ./</code></p>
<p>Maybe some of you have seen that this repo was here for a while, but I preferred to test a bit those packages waiting that there are in an usable state.</p>
<p>Note that you must completely remove the packages from my old repo before using these packages to avoid problems.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/emiscabpo.wordpress.com/16/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/emiscabpo.wordpress.com/16/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/emiscabpo.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/emiscabpo.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/emiscabpo.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/emiscabpo.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/emiscabpo.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/emiscabpo.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/emiscabpo.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/emiscabpo.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/emiscabpo.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/emiscabpo.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emiscabpo.wordpress.com&blog=1866671&post=16&subd=emiscabpo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://emiscabpo.wordpress.com/2008/01/19/new-compiz-fusion-backport-repository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b47e2e2babcb277c722a04561c5254f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">emiscabpo</media:title>
		</media:content>
	</item>
		<item>
		<title>amarok 1.4.8 + newer ipod support (nano 3g, classic, touch..)</title>
		<link>http://emiscabpo.wordpress.com/2007/12/28/amarok-148-newer-ipod-support-nano-3g-classic-touch/</link>
		<comments>http://emiscabpo.wordpress.com/2007/12/28/amarok-148-newer-ipod-support-nano-3g-classic-touch/#comments</comments>
		<pubDate>Fri, 28 Dec 2007 17:07:01 +0000</pubDate>
		<dc:creator>emiscabpo</dc:creator>
				<category><![CDATA[backports]]></category>
		<category><![CDATA[debian]]></category>

		<guid isPermaLink="false">http://emiscabpo.wordpress.com/2007/12/28/amarok-148-newer-ipod-support-nano-3g-classic-touch/</guid>
		<description><![CDATA[In the misc-backports repository you could find many new backported packages.
I&#8217;ve backported amarok 1.4.8, libgpod 0.6.0 and gtkpod-aac 0.99.12 (from debian-multimedia).
 Now I must fight to get my new nano 3g ipod work&#8230;&#8230;&#8230;..
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emiscabpo.wordpress.com&blog=1866671&post=15&subd=emiscabpo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>In the misc-backports repository you could find many new backported packages.</p>
<p>I&#8217;ve backported amarok 1.4.8, libgpod 0.6.0 and gtkpod-aac 0.99.12 (from debian-multimedia).</p>
<p> Now I must fight to get my new nano 3g ipod work&#8230;&#8230;&#8230;..</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/emiscabpo.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/emiscabpo.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/emiscabpo.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/emiscabpo.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/emiscabpo.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/emiscabpo.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/emiscabpo.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/emiscabpo.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/emiscabpo.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/emiscabpo.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/emiscabpo.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/emiscabpo.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emiscabpo.wordpress.com&blog=1866671&post=15&subd=emiscabpo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://emiscabpo.wordpress.com/2007/12/28/amarok-148-newer-ipod-support-nano-3g-classic-touch/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b47e2e2babcb277c722a04561c5254f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">emiscabpo</media:title>
		</media:content>
	</item>
		<item>
		<title>updated compiz 0.6.2 uploaded&#8230;</title>
		<link>http://emiscabpo.wordpress.com/2007/10/23/updated-compiz-062-uploaded/</link>
		<comments>http://emiscabpo.wordpress.com/2007/10/23/updated-compiz-062-uploaded/#comments</comments>
		<pubDate>Tue, 23 Oct 2007 15:44:00 +0000</pubDate>
		<dc:creator>emiscabpo</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[backports]]></category>
		<category><![CDATA[compiz]]></category>
		<category><![CDATA[debian]]></category>

		<guid isPermaLink="false">http://emiscabpo.wordpress.com/2007/10/23/updated-compiz-062-uploaded/</guid>
		<description><![CDATA[These should fix the problem.. The new version is 0.6.2-0~emiscabpo+2.
Bye
       <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emiscabpo.wordpress.com&blog=1866671&post=14&subd=emiscabpo&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>These should fix the problem.. The new version is 0.6.2-0~emiscabpo+2.</p>
<p>Bye</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/emiscabpo.wordpress.com/14/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/emiscabpo.wordpress.com/14/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/emiscabpo.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/emiscabpo.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/emiscabpo.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/emiscabpo.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/emiscabpo.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/emiscabpo.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/emiscabpo.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/emiscabpo.wordpress.com/14/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/emiscabpo.wordpress.com/14/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/emiscabpo.wordpress.com/14/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=emiscabpo.wordpress.com&blog=1866671&post=14&subd=emiscabpo&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://emiscabpo.wordpress.com/2007/10/23/updated-compiz-062-uploaded/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/2b47e2e2babcb277c722a04561c5254f?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">emiscabpo</media:title>
		</media:content>
	</item>
	</channel>
</rss>