<?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 - common computer stuff</title>
    <link>http://project-run.com/</link>
    <description>'Mors ultima linea rerum est' (Death is everything's final limit)</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>[advice] Homepage Added Bytes http://www.addedbytes.com/</title>
    <link>http://project-run.com/archives/38-advice-Homepage-Added-Bytes-httpwww.addedbytes.com.html</link>
            <category>common computer stuff</category>
    
    <comments>http://project-run.com/archives/38-advice-Homepage-Added-Bytes-httpwww.addedbytes.com.html#comments</comments>
    <wfw:comment>http://project-run.com/wfwcomment.php?cid=38</wfw:comment>

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

    <author>nospam@example.com (Mark Baumann)</author>
    <content:encoded>
    &lt;a href=&quot;http://www.addedbytes.com/&quot; title=&quot;addedbytes&quot;&gt;Homepage Added Bytes&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
I just can recommend this page. It&#039;s a nice blog with articles about security and programming. But the main reason for advice is the assortment of cheat sheets for programming. For example PHP, ASP, Subversion, Regular Expressions and so on...&lt;br /&gt;
&lt;br /&gt;
Really useful and a nice to have &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;&lt;br /&gt;
You can download them as PDF or as image file (png).&lt;br /&gt;
&lt;br /&gt;
The Cheat Sheet are released under a Creative Commons License (Attribution, Non-Commercial, Share Alike).&lt;br /&gt;
&lt;br /&gt;
&lt;a href=&quot;http://www.addedbytes.com/cheat-sheets&quot;&gt;&lt;img src=&quot;http://www.addedbytes.com/cheat-sheets/download/regular-expressions-cheat-sheet-v2.png&quot; alt=&quot;&quot; height=&quot;60%&quot;  /&gt;&lt;/a&gt; 
    </content:encoded>

    <pubDate>Thu, 02 Oct 2008 19:48:04 +0200</pubDate>
    <guid isPermaLink="false">http://project-run.com/archives/38-guid.html</guid>
    
</item>
<item>
    <title>[Order] Intel Online Collateral Ordering -- INTEL IA-32 ARCHITECTURE SOFTWARE DEVELOPERS BOOK</title>
    <link>http://project-run.com/archives/34-Order-Intel-Online-Collateral-Ordering-INTEL-IA-32-ARCHITECTURE-SOFTWARE-DEVELOPERS-BOOK.html</link>
            <category>common computer stuff</category>
    
    <comments>http://project-run.com/archives/34-Order-Intel-Online-Collateral-Ordering-INTEL-IA-32-ARCHITECTURE-SOFTWARE-DEVELOPERS-BOOK.html#comments</comments>
    <wfw:comment>http://project-run.com/wfwcomment.php?cid=34</wfw:comment>

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

    <author>nospam@example.com (Mark Baumann)</author>
    <content:encoded>
    Eight days ago i ordered some manuals from Intel. It was for free...&lt;br /&gt;
http://www.intel.com/products/processor/manuals/&lt;br /&gt;
&lt;br /&gt;
To order you have to write a mail, fax or make a phone call.&lt;br /&gt;
&lt;br /&gt;
Here are the SKUs and the titles:&lt;br /&gt;
&lt;blockquote&gt;&lt;br /&gt;
248966 Intel® 64 and IA-32 Architectures Optimization Reference Manual 1&lt;br /&gt;
253665 Intel® 64 and IA-32 Architectures Software Developer&#039;s Manual Volume 1: Basic Architecture 1&lt;br /&gt;
253666 Intel® 64 and IA-32 Architectures Software Developer&#039;s Manual Volume 2A: Instruction Set Reference, A-M 1&lt;br /&gt;
253667 Intel® 64 and IA-32 Architectures Software Developer&#039;s Manual Volume 2B: Instruction Set Reference, N-Z 1&lt;br /&gt;
253668 Intel® 64 and IA-32 Architectures Software Developer&#039;s Manual Volume 3A: System Programming Guide, Part 1 1&lt;br /&gt;
253669 Intel® 64 and IA-32 Architectures Software Developer&#039;s Manual Volume 3B: System Programming Guide, Part 2&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
I ordered it at 17. September. But it just needed a little bit more then a week to be shipped from USA to Austria!&lt;br /&gt;
Great! On the same day of arrival I also get the third confirmation over mail, that it is on the way, but the packages was already here &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;&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;Your message&lt;br /&gt;
&lt;br /&gt;
  To:      CUSTOMER INTEL SUPPORT&lt;br /&gt;
  Cc:      &lt;br /&gt;
  Subject: Hard Copy Literature&lt;br /&gt;
  Sent:    Wed, 17 Sep 2008 15:15:05 -0400&lt;br /&gt;
&lt;br /&gt;
was read on Fri, 19 Sep 2008 11:42:46 -0400&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Total Number of Packages: 1&lt;br /&gt;
Total Weight: 14.0 LBS (6,38 Kilo)&lt;br /&gt;
 
    </content:encoded>

    <pubDate>Thu, 25 Sep 2008 18:59:17 +0200</pubDate>
    <guid isPermaLink="false">http://project-run.com/archives/34-guid.html</guid>
    
</item>

</channel>
</rss>