<?xml version="1.0" encoding="utf-8" ?>

<rss version="2.0" 
   xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
   xmlns:admin="http://webns.net/mvcb/"
   xmlns:dc="http://purl.org/dc/elements/1.1/"
   xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
   xmlns:wfw="http://wellformedweb.org/CommentAPI/"
   xmlns:content="http://purl.org/rss/1.0/modules/content/"
   >
<channel>
    <title>Blog affaire</title>
    <link>http://project-run.com/</link>
    <description>No keyboard present Hit F1 to continue  Zen engineering?</description>
    <dc:language>en</dc:language>
    <generator>Serendipity 1.4.1 - http://www.s9y.org/</generator>
    
    

<item>
    <title>[SCRIPT] Save Arte plus 7 video stream local</title>
    <link>http://project-run.com/archives/55-SCRIPT-Save-Arte-plus-7-video-stream-local.html</link>
            <category>Common</category>
            <category>common computer stuff</category>
            <category>GNU/Linux</category>
    
    <comments>http://project-run.com/archives/55-SCRIPT-Save-Arte-plus-7-video-stream-local.html#comments</comments>
    <wfw:comment>http://project-run.com/wfwcomment.php?cid=55</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://project-run.com/rss.php?version=2.0&amp;type=comments&amp;cid=55</wfw:commentRss>
    

    <author>nospam@example.com (Mark Baumann)</author>
    <content:encoded>
    This script saves the video streams from the Arte +7 liberty local.&lt;br /&gt;
You only need to run the script with the main url of your target video stream, as example:&lt;br /&gt;
&lt;blockquote&gt;Syntax: ./arte_plus7_downloader.sh &quot;url&quot;&lt;br /&gt;
Example: ./arte_plus7_downloader.sh &quot;http://plus7.arte.tv/de/1697660,CmC=3024668,scheduleId=3004936.html/&quot;&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
Simply to use, no need to explain it completely...&lt;br /&gt;
&lt;br /&gt;
arte_plus7_downloader.sh:&lt;br /&gt;
&lt;blockquote&gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
# check for syntax&lt;br /&gt;
if [ $# -eq 0 ] ; then&lt;br /&gt;
   echo &quot;Syntax: ${0} \&quot;url\&quot;&quot;&lt;br /&gt;
   echo &quot;Example: ${0} \&quot;http://plus7.arte.tv/de/1697660,CmC=3024668,scheduleId=3004936.html/\&quot;&quot;&lt;br /&gt;
   exit 1&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# download from:&lt;br /&gt;
URL=&quot;${1}&quot;&lt;br /&gt;
&lt;br /&gt;
# save location&lt;br /&gt;
LOCATION=&quot;/Download/Arte&quot;&lt;br /&gt;
&lt;br /&gt;
# html dump&lt;br /&gt;
HTMLTMP=&quot;/tmp/arte_tmp&quot;&lt;br /&gt;
&lt;br /&gt;
# date of today&lt;br /&gt;
DATE=`date +%y%m%d`&lt;br /&gt;
&lt;br /&gt;
# check if html dump file exist&lt;br /&gt;
if [ ! -e ${HTMLTMP} ] ; then&lt;br /&gt;
    # create file&lt;br /&gt;
    touch ${HTMLTMP}&lt;br /&gt;
else&lt;br /&gt;
    # if file exist deleted contents&lt;br /&gt;
    echo &quot;&quot; &gt; ${HTMLTMP}&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
# get main page with video info&lt;br /&gt;
curl -m 5 --connect-timeout 5 -# ${URL} &gt; ${HTMLTMP}&lt;br /&gt;
&lt;br /&gt;
# parse title out of the html dump&lt;br /&gt;
TITLE=`cat ${HTMLTMP} | grep -e &#039;meta name=\&quot;Title\&quot;&#039; | sed &#039;s/ .*\=//g;s/.-.ARTE+7.*&gt;//g;s/\&quot;//g;s/;//g;s/ /_/g&#039;`&lt;br /&gt;
&lt;br /&gt;
# parse for wmv/mms container file&lt;br /&gt;
WMV=`cat ${HTMLTMP} | grep -e &#039;availableFormats.*PG_HQ_DE.wmv&#039; | sed &#039;s/availableFormats.*\=//g;s/\&quot;//g;s/;//g;s/ //g&#039;`&lt;br /&gt;
&lt;br /&gt;
# get container file&lt;br /&gt;
curl -m 5 --connect-timeout 5 -# ${WMV} &gt; ${HTMLTMP}&lt;br /&gt;
&lt;br /&gt;
# get mms stream address&lt;br /&gt;
WMV=`cat ${HTMLTMP} | grep -e &#039;PG_HQ_DE.wmv&#039; | sed &#039;s/&lt;REF HREF.*\=\&quot;//g;s/\&quot;\/&gt;//g;s/ //g&#039;`&lt;br /&gt;
&lt;br /&gt;
echo &quot;${TITLE} - ${WMV}&quot;&lt;br /&gt;
&lt;br /&gt;
# get the dump with mplayer&lt;br /&gt;
mplayer -dumpstream &quot;${WMV}&quot; -dumpfile &quot;${LOCATION}/${TITLE}-${DATE}.wmv&quot;&lt;br /&gt;
&lt;br /&gt;
# error handling&lt;br /&gt;
if [ $? = &quot;1&quot; ] ; then&lt;br /&gt;
    echo &quot;Error! Retrying download&quot;&lt;br /&gt;
    &quot;${0}&quot; &quot;${URL}&quot;&lt;br /&gt;
fi&lt;br /&gt;
&lt;br /&gt;
echo &quot;&quot;&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
What is missing/ToDO:&lt;br /&gt;
+ a better error handling&lt;br /&gt;
+ self fetching RSS Feed script to automate download process - something like bashpodder&lt;br /&gt;
+ further description and options 
    </content:encoded>

    <pubDate>Fri, 22 Jan 2010 14:07:38 +0100</pubDate>
    <guid isPermaLink="false">http://project-run.com/archives/55-guid.html</guid>
    
</item>
<item>
    <title>[Gallery] Funny pics</title>
    <link>http://project-run.com/archives/54-Gallery-Funny-pics.html</link>
    
    <comments>http://project-run.com/archives/54-Gallery-Funny-pics.html#comments</comments>
    <wfw:comment>http://project-run.com/wfwcomment.php?cid=54</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://project-run.com/rss.php?version=2.0&amp;type=comments&amp;cid=54</wfw:commentRss>
    

    <author>nospam@example.com (Mark Baumann)</author>
    <content:encoded>
    &lt;a href=&quot;http://gallery.project-run.com/index.cgi?mode=view&amp;amp;album=/Funny_Pics&quot; title=&quot;funny&quot;&gt;Gallery Funny Pics:&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Cevapcic - Born and fed in Austria&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/Cevapcici.png&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
What would Darwin do?&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/090308-Darwin.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/linux-evil.png&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/Welcome_To_Nobody_Cares.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/03c.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/05.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/17.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/081013-Finanzkrise.jpg&quot; alt=&quot;&quot;  /&gt; &lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/090602-Baumarkt.jpg&quot; alt=&quot;&quot;  /&gt; &lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/PicPicdump28_23.jpg&quot; alt=&quot;&quot;  /&gt;  
    </content:encoded>

    <pubDate>Tue, 03 Nov 2009 11:47:43 +0100</pubDate>
    <guid isPermaLink="false">http://project-run.com/archives/54-guid.html</guid>
    
</item>
<item>
    <title>[Gallery] Updated and resized pictures, include new ones and add some previews...</title>
    <link>http://project-run.com/archives/53-Gallery-Updated-and-resized-pictures,-include-new-ones-and-add-some-previews....html</link>
            <category>Gallery</category>
    
    <comments>http://project-run.com/archives/53-Gallery-Updated-and-resized-pictures,-include-new-ones-and-add-some-previews....html#comments</comments>
    <wfw:comment>http://project-run.com/wfwcomment.php?cid=53</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://project-run.com/rss.php?version=2.0&amp;type=comments&amp;cid=53</wfw:commentRss>
    

    <author>nospam@example.com (Mark Baumann)</author>
    <content:encoded>
    A new visitor, a hedgehog:&lt;br /&gt;
&lt;a href=&quot;http://gallery.project-run.com/index.cgi?mode=view&amp;amp;album=/Home-Altmuenster/Animals/Hedgehog-2oo9/&quot; title=&quot;Hedgehog-2oo9&quot;&gt;Hedgehog-2oo9&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/photodata/Home-Altmuenster/Animals/Hedgehog-2oo9/640/s5020810.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://gallery.project-run.com/index.cgi?mode=view&amp;amp;album=/Graz-2009-Visiting_Renata/&quot; title=&quot;Graz-2009-Visiting_Renata&quot;&gt;&lt;br /&gt;
Visiting Renata in Graz, 2oo9&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/photodata/Graz-2009-Visiting_Renata/640/s5020821.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://gallery.project-run.com/index.cgi?mode=view&amp;amp;album=Linz_o9-Hoehenrausch-2009/&quot; title=&quot;Linz_o9-Hoehenrausch-2009&quot;&gt;&lt;br /&gt;
Linz09 Höhenrausch:&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/photodata/Linz_o9-Hoehenrausch-2009/640/s5020840.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;/a&gt; 
    </content:encoded>

    <pubDate>Wed, 28 Oct 2009 21:41:41 +0100</pubDate>
    <guid isPermaLink="false">http://project-run.com/archives/53-guid.html</guid>
    
</item>
<item>
    <title>[Patch] GNU Screen with vertical splits</title>
    <link>http://project-run.com/archives/52-Patch-GNU-Screen-with-vertical-splits.html</link>
    
    <comments>http://project-run.com/archives/52-Patch-GNU-Screen-with-vertical-splits.html#comments</comments>
    <wfw:comment>http://project-run.com/wfwcomment.php?cid=52</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://project-run.com/rss.php?version=2.0&amp;type=comments&amp;cid=52</wfw:commentRss>
    

    <author>nospam@example.com (Mark Baumann)</author>
    <content:encoded>
    Need vertical splits in screen?&lt;br /&gt;
&lt;br /&gt;
Get the actual source of screen:&lt;br /&gt;
&lt;blockquote&gt;wget http://ftp.gnu.org/gnu/screen/screen-4.0.3.tar.gz&lt;/blockquote&gt;&lt;br /&gt;
Then get the patch from &lt;a href=&quot;http://fungi.yuggoth.org/vsp4s/&quot; title=&quot;Patch&quot;&gt;http://fungi.yuggoth.org/vsp4s/&lt;/a&gt;:&lt;br /&gt;
&lt;blockquote&gt;wget http://vsp4sdl.yuggoth.org/wrp_vertical_split_0.3_4.0.2.diff.bz2&lt;/blockquote&gt;&lt;br /&gt;
Extract  the downloads:&lt;br /&gt;
&lt;blockquote&gt;tar xvf screen-4.0.3.tar.gz&lt;br /&gt;
bunzip2 wrp_vertical_split_0.3_4.0.2.diff.bz2&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
Then apply the patch:&lt;br /&gt;
&lt;blockquote&gt;patch -p1 &lt; wrp_vertical_split_0.3_4.0.2.diff&lt;/blockquote&gt;&lt;br /&gt;
Compile and build screen from scratch:&lt;br /&gt;
&lt;blockquote&gt;./configure&lt;br /&gt;
make&lt;br /&gt;
make install&lt;/blockquote&gt;&lt;br /&gt;
And to finish it add following line to the ~/.sceenrc config:&lt;br /&gt;
&lt;blockquote&gt;bind &#039;V&#039; vert_split&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
To create a vertical split press &#039;C-a V&#039;&lt;br /&gt;
&lt;br /&gt;
Done and have fun with it! 
    </content:encoded>

    <pubDate>Thu, 15 Oct 2009 18:00:04 +0200</pubDate>
    <guid isPermaLink="false">http://project-run.com/archives/52-guid.html</guid>
    
</item>
<item>
    <title>[config] xterm mouswheel scrolling in GNU screen </title>
    <link>http://project-run.com/archives/51-config-xterm-mouswheel-scrolling-in-GNU-screen.html</link>
            <category>Common</category>
    
    <comments>http://project-run.com/archives/51-config-xterm-mouswheel-scrolling-in-GNU-screen.html#comments</comments>
    <wfw:comment>http://project-run.com/wfwcomment.php?cid=51</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://project-run.com/rss.php?version=2.0&amp;type=comments&amp;cid=51</wfw:commentRss>
    

    <author>nospam@example.com (Mark Baumann)</author>
    <content:encoded>
    If you want to scroll in the alternative text buffer of screen in xterm just add &lt;br /&gt;
&lt;blockquote&gt;termcapinfo xterm ti@:te@&lt;/blockquote&gt;&lt;br /&gt;
to your .screenrc config file. 
    </content:encoded>

    <pubDate>Wed, 14 Oct 2009 17:51:51 +0200</pubDate>
    <guid isPermaLink="false">http://project-run.com/archives/51-guid.html</guid>
    <category>buffer</category>
<category>common</category>
<category>config</category>
<category>gnu</category>
<category>linux</category>
<category>screen</category>
<category>screenrc</category>
<category>scrool</category>
<category>scroolbar</category>
<category>shell</category>
<category>xterm</category>

</item>
<item>
    <title>Dr. Jörg Haider singt || sings</title>
    <link>http://project-run.com/archives/50-Dr.-Joerg-Haider-singt-sings.html</link>
            <category>common, nothing special</category>
    
    <comments>http://project-run.com/archives/50-Dr.-Joerg-Haider-singt-sings.html#comments</comments>
    <wfw:comment>http://project-run.com/wfwcomment.php?cid=50</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://project-run.com/rss.php?version=2.0&amp;type=comments&amp;cid=50</wfw:commentRss>
    

    <author>nospam@example.com (Mark Baumann)</author>
    <content:encoded>
    I need to archived this...&lt;br /&gt;
&lt;br /&gt;
http://www.haider-singt.at&lt;br /&gt;
&lt;br /&gt;
http://www.zwischenruf.at/?p=1753&lt;br /&gt;
&lt;br /&gt;
http://www.youtube.com/watch?v=K7EICAcea0g&amp;eurl=http://www.zwischenruf.at/?p=1753&lt;br /&gt;
&lt;br /&gt;
One day they will forget this bastard...&lt;br /&gt;
And I hope they also will forget the Austrian parties like FPÖ and BZÖ. Our the idiots who vote for them die out.&lt;br /&gt;
&lt;br /&gt;
Our ÖVP is already fascistic / racialist enough. We don&#039;t need more idiots who try to make such a politic...&lt;br /&gt;
&lt;br /&gt;
[Edit]&lt;br /&gt;
Grissemann und Stermann:&lt;br /&gt;
http://www.willkommen-tv.at/player.php?fid=F50P1&amp;sid=F50#F50&lt;br /&gt;
Response: http://diepresse.com/home/kultur/medien/431215/index.do?_vl_backlink=/home/index.do 
    </content:encoded>

    <pubDate>Fri, 16 Jan 2009 22:37:17 +0100</pubDate>
    <guid isPermaLink="false">http://project-run.com/archives/50-guid.html</guid>
    
</item>
<item>
    <title>[Gallery] Update funny pics</title>
    <link>http://project-run.com/archives/49-Gallery-Update-funny-pics.html</link>
            <category>Gallery</category>
    
    <comments>http://project-run.com/archives/49-Gallery-Update-funny-pics.html#comments</comments>
    <wfw:comment>http://project-run.com/wfwcomment.php?cid=49</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://project-run.com/rss.php?version=2.0&amp;type=comments&amp;cid=49</wfw:commentRss>
    

    <author>nospam@example.com (Mark Baumann)</author>
    <content:encoded>
    &lt;a href=&quot;http://gallery.project-run.com/index.cgi?mode=view&amp;amp;album=/Funny_Pics&quot; title=&quot;funny&quot;&gt;Gallery Funny Pics:&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/326803.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/suicide.gif&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/298997880_eef283d397.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/01_spassfabrik_11.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/04.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/05_spassfabrik_08.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/081110.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/14_katze_betteln.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/15.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/15_spassfabrik_11.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/20.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/25_nothing_dangerous.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/3.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/Im_Not_Fat.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/hornoxe.com_picdump71_11.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/metros.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/spam.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/tmb_hornoxe.com_picdump71_53.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/tmb_hornoxe.com_picdump71_54.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/tmb_hornoxe.com_picdump71_73.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/tmb_hornoxe.com_picdump74_35.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/tmb_hornoxe.com_picdump74_44.jpg&quot; alt=&quot;&quot;  /&gt; 
    </content:encoded>

    <pubDate>Thu, 01 Jan 2009 15:19:01 +0100</pubDate>
    <guid isPermaLink="false">http://project-run.com/archives/49-guid.html</guid>
    
</item>
<item>
    <title>[Local Network Tricks] two networks (IPs) on one box</title>
    <link>http://project-run.com/archives/47-Local-Network-Tricks-two-networks-IPs-on-one-box.html</link>
            <category>Common</category>
    
    <comments>http://project-run.com/archives/47-Local-Network-Tricks-two-networks-IPs-on-one-box.html#comments</comments>
    <wfw:comment>http://project-run.com/wfwcomment.php?cid=47</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://project-run.com/rss.php?version=2.0&amp;type=comments&amp;cid=47</wfw:commentRss>
    

    <author>nospam@example.com (Mark Baumann)</author>
    <content:encoded>
    &lt;strong&gt;[Example with eth0]&lt;/strong&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;code&gt;ifconfig eth0:1 10.0.0.1&lt;/code&gt;&lt;br /&gt;
&lt;br /&gt;
This line add a secound network interface for 10.0.0.0 to your nic. The rest of the preferences are automatic made. So if you don&#039;t need special preferences like gateway and co. there is nothing more to do.&lt;br /&gt;
&lt;br /&gt;
You can check it with &lt;code&gt;route -n &lt;/code&gt; if it worked...&lt;br /&gt;
&lt;br /&gt;
&lt;code&gt; route -n&lt;br /&gt;
Kernel_IP_routing_table&lt;br /&gt;
Destination_____Gateway_________Genmask_________Flags_Metric_Ref____Use_Iface&lt;br /&gt;
137.65.28.0_____0.0.0.0_________255.255.255.0___U_____0______0________0_eth0&lt;br /&gt;
10.0.0.0________0.0.0.0_________255.0.0.0_______U_____0______0________0_eth0&lt;br /&gt;
127.0.0.0_______0.0.0.0_________255.0.0.0_______U_____0______0________0_lo&lt;br /&gt;
0.0.0.0_________137.65.28.1_____0.0.0.0_________UG____0______0________0_eth0&lt;br /&gt;
&lt;/code&gt; 
    </content:encoded>

    <pubDate>Mon, 27 Oct 2008 15:52:02 +0100</pubDate>
    <guid isPermaLink="false">http://project-run.com/archives/47-guid.html</guid>
    
</item>
<item>
    <title>[SSH Tricks] Forward SSH over SSH || Reverse SSH tunneling</title>
    <link>http://project-run.com/archives/48-SSH-Tricks-Forward-SSH-over-SSH-Reverse-SSH-tunneling.html</link>
            <category>Common</category>
    
    <comments>http://project-run.com/archives/48-SSH-Tricks-Forward-SSH-over-SSH-Reverse-SSH-tunneling.html#comments</comments>
    <wfw:comment>http://project-run.com/wfwcomment.php?cid=48</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://project-run.com/rss.php?version=2.0&amp;type=comments&amp;cid=48</wfw:commentRss>
    

    <author>nospam@example.com (Mark Baumann)</author>
    <content:encoded>
    &lt;strong&gt;[Basic]&lt;/strong&gt;&lt;br /&gt;
# One server, two clients (IP unknown)&lt;br /&gt;
# Forwarding port from server to client&lt;br /&gt;
&lt;br /&gt;
(IPs of clients change regularly and aren&#039;t known, between client A and B are Firewalls, which don&#039;t allow connections from outside)&lt;br /&gt;
Client A is allowed to connect to the server, but not to client B.&lt;br /&gt;
Client B is allowed to connect to the server, but not to client A.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;[Solution]&lt;/strong&gt;&lt;br /&gt;
Client B makes a connection to the server to forward a remote port to the local host and hold this connection all the time (cron-script).&lt;br /&gt;
Client A makes a connection to the remote port on the server and will be forwarded to the client B.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;[Why?]&lt;/strong&gt;&lt;br /&gt;
I use this to forward a SSH connection from work home, or the other way around.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;[Example with SSH]&lt;/strong&gt;&lt;br /&gt;
The SSH daemon runs also on both clients and on the server.&lt;br /&gt;
So I forward a port from the server to my clients ssh port.&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;[Client B]&lt;/strong&gt;&lt;code&gt;&lt;br /&gt;
ssh -R 2048:localhost:22 user@example.com&lt;/code&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;[Client A]&lt;/strong&gt;&lt;code&gt;&lt;br /&gt;
ssh -P -L1234:localhost:2048 user@example.com&lt;br /&gt;
ssh -p 1234 localhost&lt;/code&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;[crontab -l]&lt;/strong&gt;&lt;br /&gt;
&lt;code&gt;# check connection to the server&lt;br /&gt;
 */2 * * * * /root/fwd_ssh &gt; /dev/null 2&gt;&amp;1&lt;/code&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;[Cron-Script - fwd_ssh]&lt;/strong&gt;&lt;br /&gt;
&lt;code&gt;#!/bin/sh&lt;br /&gt;
&lt;br /&gt;
# $REMOTE_HOST is the name of the remote system&lt;br /&gt;
REMOTE_HOST=user@example.com&lt;br /&gt;
&lt;br /&gt;
# $REMOTE_PORT is the remote port number that will be used to tunnel&lt;br /&gt;
# back to this system&lt;br /&gt;
REMOTE_PORT=2048&lt;br /&gt;
&lt;br /&gt;
# $CMDDHCPCD dhcpcd command&lt;br /&gt;
CMDDHCPCD=&quot;/sbin/dhcpcd -d -t 30 eth0&quot;&lt;br /&gt;
&lt;br /&gt;
# $CMDSSHD sshd command&lt;br /&gt;
CMDSSHD=&quot;/etc/rc.d/rc.sshd start&quot;&lt;br /&gt;
&lt;br /&gt;
# $COMMAND is the command used to create the reverse ssh tunnel&lt;br /&gt;
COMMAND=&quot;ssh -f -q -N -R ${REMOTE_PORT}:localhost:22 ${REMOTE_HOST}&quot;&lt;br /&gt;
&lt;br /&gt;
# Is the dhcpcdaemon running?&lt;br /&gt;
pgrep -f -x &quot;${CMDDHCPCD}&quot; &gt; /dev/null 2&gt;&amp;1 || ${CMDDHCPCD}&lt;br /&gt;
&lt;br /&gt;
# Check for relevant process ($COMMAND)&lt;br /&gt;
pgrep -f -x &quot;${COMMAND}&quot; &gt; /dev/null 2&gt;&amp;1 || ${COMMAND}&lt;br /&gt;
&lt;br /&gt;
# Check for sshd&lt;br /&gt;
pgrep -f -x &quot;/usr/sbin/sshd&quot; &gt; /dev/null 2&gt;&amp;1 || ${CMDSSHD}&lt;br /&gt;
&lt;br /&gt;
#&lt;/code&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;Based on:&lt;/strong&gt; &lt;a href=&quot;http://www.brandonhutchinson.com/ssh_tunnelling.html&quot; title=&quot;http://www.brandonhutchinson.com/ssh_tunnelling.html&quot;&gt;http://www.brandonhutchinson.com/ssh_tunnelling.html&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;strong&gt;[some links]&lt;/strong&gt;&lt;br /&gt;
&lt;a href=&quot;http://kuxon.org/ssht.html&quot;&gt;X11 forwarding over SSH&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.brandonhutchinson.com/ssh_tunnelling.html&quot;&gt;ssh tunneling, reverse ssh tunneling&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.fh-giessen.de/fachschaft/mni/mediawiki/index.php/HOWTO_SSH-Tunnel&quot;&gt;Port forwarding, tunneling, X forwarding, German&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://www.hotti.ch/doc/ssh/&quot;&gt;SSH general German&lt;/a&gt;&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Mon, 27 Oct 2008 14:41:09 +0100</pubDate>
    <guid isPermaLink="false">http://project-run.com/archives/48-guid.html</guid>
    
</item>
<item>
    <title>[Gallery] Update of some funny pics</title>
    <link>http://project-run.com/archives/46-Gallery-Update-of-some-funny-pics.html</link>
            <category>Gallery</category>
    
    <comments>http://project-run.com/archives/46-Gallery-Update-of-some-funny-pics.html#comments</comments>
    <wfw:comment>http://project-run.com/wfwcomment.php?cid=46</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://project-run.com/rss.php?version=2.0&amp;type=comments&amp;cid=46</wfw:commentRss>
    

    <author>nospam@example.com (Mark Baumann)</author>
    <content:encoded>
    &lt;a href=&quot;http://gallery.project-run.com/index.cgi?mode=view&amp;amp;album=/Funny_Pics&quot; title=&quot;funny&quot;&gt;Gallery Funny Pics:&lt;/a&gt;&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/298997880_eef283d397.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/51-3.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/52-3.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/Bush_At_The_Olympics.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/Cant_Stack_Cars.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/Every_Time.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/Guitar_Hero270.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/Haha.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/Jesus_Saves.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/Likely_To_Use_A_Mac.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/Metal_Fan.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/Mountain_Lions.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/No_Matter_What.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/Procrastination.png&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/Proof_Of_Evil.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/Sex_Chart.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/Solution.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/Sooo_Fattening.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/What_Apples_Are_Good_For.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/Yop.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/fail-flying-eagle.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/hookerstorage.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/you_rock_you_rule.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos/Funny_Pics/zg8.jpg&quot; alt=&quot;&quot;  /&gt; 
    </content:encoded>

    <pubDate>Mon, 13 Oct 2008 01:10:04 +0200</pubDate>
    <guid isPermaLink="false">http://project-run.com/archives/46-guid.html</guid>
    
</item>
<item>
    <title>[Gallery] Update Jyvaskyla pictures</title>
    <link>http://project-run.com/archives/45-Gallery-Update-Jyvaskyla-pictures.html</link>
            <category>Gallery</category>
    
    <comments>http://project-run.com/archives/45-Gallery-Update-Jyvaskyla-pictures.html#comments</comments>
    <wfw:comment>http://project-run.com/wfwcomment.php?cid=45</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://project-run.com/rss.php?version=2.0&amp;type=comments&amp;cid=45</wfw:commentRss>
    

    <author>nospam@example.com (Mark Baumann)</author>
    <content:encoded>
    New Jyvaskyla fotos:&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://gallery.project-run.com/index.cgi?mode=view&amp;amp;album=/Finnland-Winter_2008-Erasmus/Jyvaskyla&quot;&gt;http://gallery.project-run.com/index.cgi?mode=view&amp;album=/Finnland-Winter_2008-Erasmus/Jyvaskyla&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos//Finnland-Winter_2008-Erasmus/Jyvaskyla/n1004274584_30166579_2120.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos//Finnland-Winter_2008-Erasmus/Jyvaskyla/n1004274584_30166582_4469.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos//Finnland-Winter_2008-Erasmus/Jyvaskyla/n1004274584_30166598_2188.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos//Finnland-Winter_2008-Erasmus/Jyvaskyla/n1004274584_30166599_2828.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos//Finnland-Winter_2008-Erasmus/Jyvaskyla/n1004274584_30166600_3479.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos//Finnland-Winter_2008-Erasmus/Jyvaskyla/n517853930_896576_2342.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos//Finnland-Winter_2008-Erasmus/Jyvaskyla/n517853930_939797_8783.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos//Finnland-Winter_2008-Erasmus/Jyvaskyla/n596590511_249136_6224.jpg&quot; alt=&quot;&quot;  /&gt;&lt;br /&gt;
&lt;img src=&quot;http://gallery.project-run.com/fotos//Finnland-Winter_2008-Erasmus/Jyvaskyla/n598608902_845098_4833.jpg&quot; alt=&quot;&quot;  /&gt; 
    </content:encoded>

    <pubDate>Mon, 13 Oct 2008 01:03:55 +0200</pubDate>
    <guid isPermaLink="false">http://project-run.com/archives/45-guid.html</guid>
    
</item>
<item>
    <title>[Plugins] Pidgin Skype Chat plugin</title>
    <link>http://project-run.com/archives/43-Plugins-Pidgin-Skype-Chat-plugin.html</link>
    
    <comments>http://project-run.com/archives/43-Plugins-Pidgin-Skype-Chat-plugin.html#comments</comments>
    <wfw:comment>http://project-run.com/wfwcomment.php?cid=43</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://project-run.com/rss.php?version=2.0&amp;type=comments&amp;cid=43</wfw:commentRss>
    

    <author>nospam@example.com (Mark Baumann)</author>
    <content:encoded>
    &lt;a href=&quot;http://code.google.com/p/skype4pidgin/&quot;&gt;Homepage - Skype Chat for Pidgin&lt;/a&gt; - powered by google code!&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;Skype Plugin for Pidgin&lt;br /&gt;
&lt;br /&gt;
This is a Skype Plugin for Pidgin/libpurple/Adium. It lets you view and chat with all your Skype buddies from within Pidgin/Adium. You still need Skype to be running to be able to use it, but it lets you keep a consistent user interface and use all the other nifty Pidgin/Adium plugins with it, like spell-checking or OTR encryption. &lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
I have some troubles with it, but for my needs it&#039;s perfect. There are still some contacts left so I didn&#039;t wont to delete Skype. With this I just can text them, but no direct calls. Skype still have to run in the background, but who cares!&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;Download the latest versions of the plugin at &lt;a href=&quot;http://eion.robbmob.com/&quot;&gt;http://eion.robbmob.com/&lt;/a&gt; &lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
For installation is the same like the Facebook plugin:&lt;br /&gt;
&lt;blockquote&gt;To install, run the deb package or copy libskype.so to the plugins directory, normally /usr/lib/purple-2/ or ~/.purple/plugins&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
Thanks to the inventor! 
    </content:encoded>

    <pubDate>Mon, 13 Oct 2008 00:42:22 +0200</pubDate>
    <guid isPermaLink="false">http://project-run.com/archives/43-guid.html</guid>
    
</item>
<item>
    <title>[Conf] Audacious - equalizer preset from Winamp</title>
    <link>http://project-run.com/archives/42-Conf-Audacious-equalizer-preset-from-Winamp.html</link>
            <category>Common</category>
    
    <comments>http://project-run.com/archives/42-Conf-Audacious-equalizer-preset-from-Winamp.html#comments</comments>
    <wfw:comment>http://project-run.com/wfwcomment.php?cid=42</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://project-run.com/rss.php?version=2.0&amp;type=comments&amp;cid=42</wfw:commentRss>
    

    <author>nospam@example.com (Mark Baumann)</author>
    <content:encoded>
    Original found on: &lt;br /&gt;
&lt;a href=&quot;http://www.simonives.info/blog/2008/march/winamp_presets_audacious&quot;&gt;http://www.simonives.info/blog/2008/march/winamp_presets_audacious&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;Winamp Presets for Audacious&lt;br /&gt;
&lt;br /&gt;
simon — Sun, 03/30/2008 - 14:09&lt;br /&gt;
&lt;br /&gt;
Many users of Linux miss the equalizer presets that they had on Windoze applications such as WinAmp. The following terminal scripts will install the WinAmp equalizer presets for Audacious.&lt;br /&gt;
&lt;br /&gt;
To download the WinAmp presets type:&lt;br /&gt;
&lt;br /&gt;
wget &lt;a href=&quot;http://www.xmms.org/misc/winamp_presets.gz&quot;&gt;http://www.xmms.org/misc/winamp_presets.gz&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
To install the presets for the Audacious media player type:&lt;br /&gt;
&lt;br /&gt;
gunzip -c winamp_presets.gz &gt; ~/.config/audacious/eq.preset&lt;br /&gt;
&lt;br /&gt;
You can also install these presets for other linux media players that have equalizers such as xmms and BMP media player.&lt;br /&gt;
&lt;br /&gt;
To install the presets for xmms type:&lt;br /&gt;
&lt;br /&gt;
gunzip -c winamp_presets.gz &gt; ~/.xmms/eq.preset&lt;br /&gt;
&lt;br /&gt;
to install the presets for BMP media player type:&lt;br /&gt;
&lt;br /&gt;
gunzip -c winamp_presets.gz &gt; ~/.bmp/eq.preset&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
Thx to simon! 
    </content:encoded>

    <pubDate>Mon, 13 Oct 2008 00:39:27 +0200</pubDate>
    <guid isPermaLink="false">http://project-run.com/archives/42-guid.html</guid>
    
</item>
<item>
    <title>[advice] Homepage http://www.evilmilk.com</title>
    <link>http://project-run.com/archives/41-advice-Homepage-httpwww.evilmilk.com.html</link>
            <category>common, nothing special</category>
    
    <comments>http://project-run.com/archives/41-advice-Homepage-httpwww.evilmilk.com.html#comments</comments>
    <wfw:comment>http://project-run.com/wfwcomment.php?cid=41</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://project-run.com/rss.php?version=2.0&amp;type=comments&amp;cid=41</wfw:commentRss>
    

    <author>nospam@example.com (Mark Baumann)</author>
    <content:encoded>
    &lt;a href=&quot;http://www.evilmilk.com&quot;&gt;Homepage www.evilmilk.com&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
So if you are bored or lucking for some nice funny or perv pictures, go there &lt;img src=&quot;http://project-run.com/templates/default/img/emoticons/wink.png&quot; alt=&quot;;-)&quot; style=&quot;display: inline; vertical-align: bottom;&quot; class=&quot;emoticon&quot; /&gt; 
    </content:encoded>

    <pubDate>Thu, 02 Oct 2008 22:49:29 +0200</pubDate>
    <guid isPermaLink="false">http://project-run.com/archives/41-guid.html</guid>
    
</item>
<item>
    <title>[advice] Homepage englishrussia.com</title>
    <link>http://project-run.com/archives/40-advice-Homepage-englishrussia.com.html</link>
            <category>common, nothing special</category>
    
    <comments>http://project-run.com/archives/40-advice-Homepage-englishrussia.com.html#comments</comments>
    <wfw:comment>http://project-run.com/wfwcomment.php?cid=40</wfw:comment>

    <slash:comments>0</slash:comments>
    <wfw:commentRss>http://project-run.com/rss.php?version=2.0&amp;type=comments&amp;cid=40</wfw:commentRss>
    

    <author>nospam@example.com (Mark Baumann)</author>
    <content:encoded>
    &lt;a href=&quot;http://englishrussia.com/&quot;&gt;Homepage englishrussia.com&lt;/a&gt;&lt;br /&gt;
&lt;blockquote&gt;English Russia just because something cool happens daily on 1/6 of the Earth surface&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
Nice overview of funny and common stuff happening in Russia.&lt;br /&gt;
Some are really funny cause CCCP meats West stile or similar...&lt;br /&gt;
&lt;br /&gt;
Just check them out:&lt;br /&gt;
&lt;a href=&quot;http://englishrussia.com/?p=1891&quot;&gt;Russian Photoshop Masters Part 1.&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://englishrussia.com/?p=1892&quot;&gt;Russian Photoshop Masters Part 2.&lt;/a&gt;&lt;br /&gt;
&lt;a href=&quot;http://englishrussia.com/?p=2040#more-2040&quot;&gt;Russian Nerds Party&lt;/a&gt; 
    </content:encoded>

    <pubDate>Thu, 02 Oct 2008 20:21:53 +0200</pubDate>
    <guid isPermaLink="false">http://project-run.com/archives/40-guid.html</guid>
    
</item>

</channel>
</rss>