<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" gd:etag="W/&quot;D0MESH8-fyp7ImA9WhRQGEk.&quot;"><id>tag:blogger.com,1999:blog-13692240</id><updated>2011-12-14T07:50:09.157+01:00</updated><title>Morten Amundsen</title><subtitle type="html" /><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://blog.mor10am.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default?start-index=26&amp;max-results=25&amp;redirect=false&amp;v=2" /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>55</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/DevelopingInItaly" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="developinginitaly" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;A0MHSXs8cCp7ImA9WxFXFE4.&quot;"><id>tag:blogger.com,1999:blog-13692240.post-4405264907238612504</id><published>2009-03-27T10:11:00.007+01:00</published><updated>2010-05-21T12:57:18.578+02:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2010-05-21T12:57:18.578+02:00</app:edited><title>Asterisk FastAGI server in PHP</title><content type="html">Here is a new usage of the PEAR Net_Server class. This time a FastAGI server for Asterisk. In the previous example I used the "Sequential" driver, but this time we'll use the "Fork" driver. We are also using the System_Daemon class from PEAR.&lt;br /&gt;
&lt;br /&gt;
First the server script:&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="brush: php"&gt;require_once 'System/Daemon.php';

System_Daemon::setOption("appName", "FastAGI");
System_Daemon::setOption("authorEmail", "mortena@tpn.no");

System_Daemon::start();

ob_implicit_flush(true);

require_once 'Zend/Loader.php';
Zend_Loader::registerAutoload();

require_once 'Net/Server.php';

require_once 'lib/FastAGI.php';

$server = Net_Server::create('fork', 'serveraddress', portnumber);
$server-&gt;setEndCharacter("\n\n");
$server-&gt;setCallbackObject(new FastAGI());

$server-&gt;start();

System_Daemon::stop();
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
And here is the Net_Server handler class:&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="brush: php"&gt;require_once 'Net/Server/Handler.php';
require_once 'lib/FastAGI/Command.php';

/* * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */

/**
 *
 * @author Morten Amundsen
 */
final class FastAGI extends Net_Server_Handler
{

    /**
     *
     * @param integer $clientId
     * @param string $data
     */
    public function onReceiveData($clientId = 0, $data = '')
    {
        try {
            $cmd = new FastAGI_Command($data, $this-&gt;_server);

            $retval = $cmd-&gt;execute();

            $this-&gt;convertAndReturn($retval);

            $this-&gt;setAsteriskVar('fastagi_status', 'OK');
        } catch (Exception $e) {
            $this-&gt;setAsteriskVar('fastagi_error_message', $e-&gt;getMessage());
            $this-&gt;setAsteriskVar('fastagi_status', 'ERROR');
        }

        $this-&gt;_server-&gt;closeConnection();
    }

    /**
     *
     * @param mixed $retval
     */
    protected function convertAndReturn($retval)
    {
        if (is_array($retval) or is_object($retval)) {
            foreach ($retval as $key =&gt; $value) {
                if (!is_object($value) and ! is_array($value)) {
                    $this-&gt;setAsteriskVar($key, $value);
                }
            }
        } else {
            $this-&gt;setAsteriskVar('return_value', $retval);
        }
    }

    /**
     *
     * @param string $var Asterisk variable name
     * @param string $value Asterisk variable value
     */
    protected function setAsteriskVar($var, $value)
    {
        $this-&gt;_server-&gt;sendData("SET VARIABLE \"{$var}\" \"{$value}\"");
    }
}

/**
 * Description of Command
 *
 * @author Morten Amundsen
 */
class FastAGI_Command {

    protected $class;
    protected $method;
    protected $params;
    protected $channel;
    protected $lang;
    protected $type;
    protected $uniqueid;
    protected $callerid;
    protected $calleridname;
    protected $dnid;
    protected $context;
    protected $exten;
    protected $pri;
    protected $connection;

    public function __construct($msg, $connection)
    {
        $lines = explode("\n", $msg);

        $this-&gt;connection = $connection;

        foreach ($lines as $line) {
            $parts = explode(':', trim($line));
            switch ($parts[0]) {
                case 'agi_request':
                    unset($parts[0]);
                    $query = implode(':', $parts);

                    if ($data = parse_url(trim($query))) {
                        if (!empty($data['query'])) {
                            parse_str($data['query'], $this-&gt;params);
                        } else {
                            $this-&gt;params = array();
                        }

                        $pathparts = explode('/', substr($data['path'], 1, strlen($data['path']) - 1));
                        $cmd = $pathparts[count($pathparts) - 1];
                        unset($pathparts[count($pathparts) - 1]);
                        if (!count($pathparts)) {
                            $this-&gt;class = $cmd;
                            $this-&gt;method = 'default';
                        } else {
                            $this-&gt;class = implode('_', $pathparts);
                            $this-&gt;method = $cmd;
                        }
                    } else {
                        throw new Exception("Query not understood: {$query}");
                    }
                    break;
                case 'agi_channel':
                    $this-&gt;channel = $parts[1];
                    break;
                case 'agi_uniqueid':
                    $this-&gt;uniqueid = $parts[1];
                    break;
                case 'agi_callerid':
                    $this-&gt;callerid = $parts[1];
                    break;
                case 'agi_context':
                    $this-&gt;context = $parts[1];
                    break;
                case 'agi_extension':
                    $this-&gt;exten = $parts[1];
                    break;
                case 'agi_priority':
                    $this-&gt;pri = $parts[1];
                    break;
            }
        }
    }

    /**
     *
     * @return mixed
     */
    public function execute()
    {
        Zend_Loader::loadClass($this-&gt;class);

        if (class_exists($this-&gt;class)) {
            $class = $this-&gt;class;
            $obj = new $class;

            if (method_exists($obj, $this-&gt;method)) {
                return call_user_func_array(array($obj, $this-&gt;method), $this-&gt;params);
            } else {
                throw new Exception("Method {$this-&gt;method} does not exist in class {$this-&gt;class}");
            }
        } else {
            throw new Exception("No such class '{$this-&gt;class}'");
        }
    }
}


&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
It should now be possible to call your FastAGI server from Asterisk like this:&lt;br /&gt;
&lt;br /&gt;
&lt;pre&gt;exten =&gt; s,1,AGI(agi://[server]:[port]/Foo/Bar/hello?name=Morten
&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;
This would autoload the class &lt;b&gt;Foo_Bar&lt;/b&gt;, and call the method &lt;b&gt;hello&lt;/b&gt; with the parameter &lt;b&gt;name&lt;/b&gt;=&lt;b&gt;Morten&lt;/b&gt;, and have the result as new variables in your Asterisk call.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13692240-4405264907238612504?l=blog.mor10am.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=tgNsEuqItgU:SlD88Vx-vyM:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=tgNsEuqItgU:SlD88Vx-vyM:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=tgNsEuqItgU:SlD88Vx-vyM:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?i=tgNsEuqItgU:SlD88Vx-vyM:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.mor10am.com/feeds/4405264907238612504/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://blog.mor10am.com/2009/03/asterisk-fastagi-server-in-php.html#comment-form" title="5 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/4405264907238612504?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/4405264907238612504?v=2" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/2009/03/asterisk-fastagi-server-in-php.html" title="Asterisk FastAGI server in PHP" /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><thr:total>5</thr:total></entry><entry gd:etag="W/&quot;DEYEQns7fyp7ImA9WxVbEUk.&quot;"><id>tag:blogger.com,1999:blog-13692240.post-2350858244204295182</id><published>2009-03-27T09:58:00.003+01:00</published><updated>2009-03-27T10:28:23.507+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-03-27T10:28:23.507+01:00</app:edited><title>PHP CLI XDebug client</title><content type="html">This shows how to create a simple &lt;a href="http://www.xdebug.org/"&gt;XDebug&lt;/a&gt; client in PHP.&lt;br /&gt;When the client is started, it waits for a PHP script to start, and then begins to take input&lt;br /&gt;from the user.&lt;/br&gt;&lt;br/&gt;&lt;br /&gt;&lt;br /&gt;The source formatting doesn't look too great, but it's readable, I guess...&lt;br/&gt;&lt;br/&gt;&lt;br /&gt;&lt;br /&gt;We start off with the actual server that listens to port 9000:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;#!/usr/bin/php&lt;br /&gt;&lt;?php&lt;br /&gt;&lt;br /&gt;/*&lt;br /&gt; * Xdebug settings in php.ini&lt;br /&gt; *&lt;br /&gt; *   xdebug.remote_autostart=on&lt;br /&gt; *   xdebug.remote_enable=on&lt;br /&gt; *   xdebug.remote_handler=dbgp&lt;br /&gt; *   xdebug.remote_mode=req&lt;br /&gt; *   xdebug.remote_host=localhost&lt;br /&gt; *   xdebug.remote_port=9000&lt;br /&gt; */&lt;br /&gt;&lt;br /&gt;require_once 'Zend/Loader.php';&lt;br /&gt;Zend_Loader::registerAutoload();&lt;br /&gt;&lt;br /&gt;// PEAR&lt;br /&gt;require_once 'Net/Server.php';&lt;br /&gt;&lt;br /&gt;require_once 'lib/CLIDebug.php';&lt;br /&gt;&lt;br /&gt;$server = &amp;Net_Server::create('sequential', 'localhost', 9000);&lt;br /&gt;&lt;br /&gt;$server-&gt;setCallbackObject(new CLIDebug());&lt;br /&gt;$server-&gt;setEndCharacter("\0");&lt;br /&gt;&lt;br /&gt;$server-&gt;setDebugMode(false);&lt;br /&gt;&lt;br /&gt;$server-&gt;start();&lt;br /&gt;&lt;br /&gt;?&gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Our XDebug client is added via the &lt;b&gt;"setCallbackObject"&lt;/b&gt; method, and&lt;br /&gt;looks like this:&lt;br /&gt;&lt;br /&gt;&lt;pre&gt;&lt;br /&gt;&lt;?php&lt;br /&gt;&lt;br /&gt;/**&lt;br /&gt; * Description of CLIDebug&lt;br /&gt; *&lt;br /&gt; * @author Morten Amundsen&lt;br /&gt; */&lt;br /&gt;class CLIDebug extends Net_Server_Handler&lt;br /&gt;{&lt;br /&gt;    private $_clientid  = 0;&lt;br /&gt;    private $_appid     = 0;&lt;br /&gt;    private $_app       = '';&lt;br /&gt;    private $_status    = '';&lt;br /&gt;&lt;br /&gt;    private $_currline = 0;&lt;br /&gt;&lt;br /&gt;    /**&lt;br /&gt;     *&lt;br /&gt;     * @param int $client&lt;br /&gt;     * @param string $data&lt;br /&gt;     * @return boolean&lt;br /&gt;     */&lt;br /&gt;    public function onReceiveData($client = 0, $data = '')&lt;br /&gt;    {&lt;br /&gt;        $this-&gt;_client = $client;&lt;br /&gt;&lt;br /&gt;        if (is_numeric(trim($data)) or !trim($data)) return true;&lt;br /&gt;&lt;br /&gt;        $xml = simplexml_load_string($data);&lt;br /&gt;&lt;br /&gt;        if ($xml) {&lt;br /&gt;            if (!empty($xml['appid']) and !empty($xml['fileuri'])) {&lt;br /&gt;                $this-&gt;_appid = $xml['appid'];&lt;br /&gt;                $this-&gt;_app = $xml['fileuri'];&lt;br /&gt;&lt;br /&gt;                $this-&gt;_printHelp();                &lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            $this-&gt;_status = (string) $xml['status'];&lt;br /&gt;&lt;br /&gt;            if ($this-&gt;_status == 'stopping') {&lt;br /&gt;                $this-&gt;_server-&gt;closeConnection();&lt;br /&gt;                die("Done.\n");&lt;br /&gt;            }&lt;br /&gt;&lt;br /&gt;            $command = (string) $xml['command'];&lt;br /&gt;&lt;br /&gt;            switch ($command) {&lt;br /&gt;                case 'source':&lt;br /&gt;                    $code = (string) $xml;&lt;br /&gt;                    $code = base64_decode($code);&lt;br /&gt;                    echo $code."\n";&lt;br /&gt;                    break;&lt;br /&gt;                case 'step_over':&lt;br /&gt;                case 'step_into':&lt;br /&gt;                    $xdebug = $xml-&gt;children('http://xdebug.org/dbgp/xdebug');&lt;br /&gt;&lt;br /&gt;                    $this-&gt;_printFileAndLine($xdebug);&lt;br /&gt;                    &lt;br /&gt;                    if ($this-&gt;_cmdSourceLineXdebug($xdebug)) {&lt;br /&gt;                        return true;&lt;br /&gt;                    }&lt;br /&gt;                default:&lt;br /&gt;            }&lt;br /&gt;            &lt;br /&gt;            flush();&lt;br /&gt;            &lt;br /&gt;        } else {&lt;br /&gt;            return true;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;        do {&lt;br /&gt;            echo "&gt;";&lt;br /&gt;&lt;br /&gt;            flush();&lt;br /&gt;&lt;br /&gt;            while (($cmd = $this-&gt;waitForCommand()) === false);&lt;br /&gt;        } while (!$this-&gt;_executeCommand($cmd));&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    /**&lt;br /&gt;     *&lt;br /&gt;     * @return mixed&lt;br /&gt;     */&lt;br /&gt;    public function waitForCommand()&lt;br /&gt;    {&lt;br /&gt;        if ($fh = fopen("php://STDIN", 'r')) {&lt;br /&gt;            $cmd = fgets($fh, 100);&lt;br /&gt;            fclose($fh);&lt;br /&gt;&lt;br /&gt;            return trim($cmd);&lt;br /&gt;        } else {&lt;br /&gt;            echo "Unable to connect to php://STDIN\n";&lt;br /&gt;            return false;&lt;br /&gt;        }&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    /**&lt;br /&gt;     *&lt;br /&gt;     * @return string Command&lt;br /&gt;     */&lt;br /&gt;    private function _executeCommand($cmd)&lt;br /&gt;    {&lt;br /&gt;        $cmd = trim(strtolower($cmd));&lt;br /&gt;&lt;br /&gt;        switch ($cmd) {&lt;br /&gt;            case 'o':&lt;br /&gt;            case 'step_over':&lt;br /&gt;                return $this-&gt;_cmdStepOver();&lt;br /&gt;                break;&lt;br /&gt;            case 'i':&lt;br /&gt;            case 'step_into':&lt;br /&gt;                return $this-&gt;_cmdStepInto();&lt;br /&gt;                break;&lt;br /&gt;            case 'h':&lt;br /&gt;            case 'help':&lt;br /&gt;                $this-&gt;_printHelp();&lt;br /&gt;                return false;&lt;br /&gt;                break;&lt;br /&gt;            case 'q':&lt;br /&gt;            case 'quit':&lt;br /&gt;                $this-&gt;_server-&gt;closeConnection();&lt;br /&gt;                die("Quitting.\n");&lt;br /&gt;            default:&lt;br /&gt;                echo "Unknown command: ".$cmd."\n";&lt;br /&gt;                return false;&lt;br /&gt;        }&lt;br /&gt;&lt;br /&gt;        return true;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    /**&lt;br /&gt;     *&lt;br /&gt;     * @return boolean&lt;br /&gt;     */&lt;br /&gt;    private function _cmdStepOver()&lt;br /&gt;    {&lt;br /&gt;        $cmd = "step_over -i {$this-&gt;_appid}\0";&lt;br /&gt;        $this-&gt;_server-&gt;sendData($this-&gt;_clientid, $cmd);&lt;br /&gt;&lt;br /&gt;        return true;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    /**&lt;br /&gt;     *&lt;br /&gt;     * @return boolean&lt;br /&gt;     */&lt;br /&gt;    private function _cmdStepInto()&lt;br /&gt;    {&lt;br /&gt;        $cmd = "step_into -i {$this-&gt;_appid}\0";&lt;br /&gt;        $this-&gt;_server-&gt;sendData($this-&gt;_clientid, $cmd);&lt;br /&gt;        &lt;br /&gt;        return true;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    /**&lt;br /&gt;     *&lt;br /&gt;     * @param SimpleXMLElement $xdebug&lt;br /&gt;     * @return boolean&lt;br /&gt;     */&lt;br /&gt;    private function _cmdSourceLineXdebug($xdebug)&lt;br /&gt;    {&lt;br /&gt;        $attr = $xdebug-&gt;attributes();&lt;br /&gt;&lt;br /&gt;        if ($attr and isset($attr['lineno'])) {&lt;br /&gt;&lt;br /&gt;            $line = (string) $attr['lineno'];&lt;br /&gt;            $file = (string) $attr['filename'];&lt;br /&gt;&lt;br /&gt;            $cmd = "source -i {$this-&gt;_appid} -b {$line} -e {$line} -f {$file}\0";&lt;br /&gt;            $this-&gt;_server-&gt;sendData($this-&gt;_clientid, $cmd);&lt;br /&gt;&lt;br /&gt;            return true;&lt;br /&gt;        } else {&lt;br /&gt;            return false;&lt;br /&gt;        }&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    /**&lt;br /&gt;     *&lt;br /&gt;     * @param SimpleXMLElement $xdebug&lt;br /&gt;     * @return boolean&lt;br /&gt;     */&lt;br /&gt;    private function _cmdSourceLines($file, $begin, $end)&lt;br /&gt;    {&lt;br /&gt;        $cmd = "source -i {$this-&gt;_appid} -b {$begin} -e {$end} -f {$file}\0";&lt;br /&gt;        $this-&gt;_server-&gt;sendData($this-&gt;_clientid, $cmd);&lt;br /&gt;&lt;br /&gt;        return true;&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    /**&lt;br /&gt;     *&lt;br /&gt;     * @param SimpleXMLElement $xdebug&lt;br /&gt;     */&lt;br /&gt;    private function _printFileAndLine($xdebug)&lt;br /&gt;    {&lt;br /&gt;        $attr = $xdebug-&gt;attributes();&lt;br /&gt;&lt;br /&gt;        $this-&gt;_app = (string) $attr['filename'];&lt;br /&gt;&lt;br /&gt;        $line = (string) $attr['lineno'];&lt;br /&gt;        $this-&gt;_currline = $line;&lt;br /&gt;&lt;br /&gt;        echo "File: ".(string) $this-&gt;_app . " - Line: " . (string) $attr['lineno']." (".$this-&gt;_status.")\n";&lt;br /&gt;    }&lt;br /&gt;&lt;br /&gt;    /**&lt;br /&gt;     * &lt;br /&gt;     */&lt;br /&gt;    private function _printHelp()&lt;br /&gt;    {&lt;br /&gt;        echo "i|step_into\n\tsteps to the next statement, if there is a function call\n\tinvolved it will break on the first statement in that function\n";&lt;br /&gt;        echo "o|step_over\n\tsteps to the next statement, if there is a function call\n\ton the line from which the step_over is issued then the debugger engine will stop at the\n\tstatement after the function call in the same\n\tscope as from where the command was issued\n";&lt;br /&gt;        echo "h|help\n\tThis help text\n";&lt;br /&gt;        echo "q|quit\n\tQuit\n";&lt;br /&gt;        flush();&lt;br /&gt;    }&lt;br /&gt;}&lt;br /&gt;?&gt;&lt;br /&gt;&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;Now it's only a matter of filling in the blanks with the rest of the &lt;a href="http://www.xdebug.org/docs-dbgp.php"&gt;DBGP protocol&lt;/a&gt;.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13692240-2350858244204295182?l=blog.mor10am.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=RTdTfaIsAC0:kLFlR6R6hPQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=RTdTfaIsAC0:kLFlR6R6hPQ:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=RTdTfaIsAC0:kLFlR6R6hPQ:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?i=RTdTfaIsAC0:kLFlR6R6hPQ:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.mor10am.com/feeds/2350858244204295182/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://blog.mor10am.com/2009/03/php-cli-xdebug-client.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/2350858244204295182?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/2350858244204295182?v=2" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/2009/03/php-cli-xdebug-client.html" title="PHP CLI XDebug client" /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;A0UGRHs6fCp7ImA9WxVUFEU.&quot;"><id>tag:blogger.com,1999:blog-13692240.post-3493314926462847307</id><published>2009-03-19T20:00:00.001+01:00</published><updated>2009-03-19T20:00:25.514+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-03-19T20:00:25.514+01:00</app:edited><title>Heaven</title><content type="html">&lt;div class="pp_items"&gt;&lt;div class="pp_item"&gt;&lt;h4&gt;&lt;div align="center"&gt;&lt;img src="http://static.pixelpipe.com/4b19fc3e-1797-4062-986c-06d1478bf930_m.jpg" style="max-width: 100%;" /&gt;&lt;/div&gt;&lt;/div&gt;&lt;h5&gt;Posted via &lt;a href="http://pixelpipe.com"&gt;Pixelpipe&lt;/a&gt;.&lt;/h5&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13692240-3493314926462847307?l=blog.mor10am.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=FVsev8H_13w:0WHEXHJvSPQ:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=FVsev8H_13w:0WHEXHJvSPQ:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=FVsev8H_13w:0WHEXHJvSPQ:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?i=FVsev8H_13w:0WHEXHJvSPQ:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.mor10am.com/feeds/3493314926462847307/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://blog.mor10am.com/2009/03/heaven.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/3493314926462847307?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/3493314926462847307?v=2" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/2009/03/heaven.html" title="Heaven" /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;CEEDRH89eCp7ImA9WxVUFEU.&quot;"><id>tag:blogger.com,1999:blog-13692240.post-5048842847352587105</id><published>2009-03-19T18:11:00.001+01:00</published><updated>2009-03-19T18:11:15.160+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-03-19T18:11:15.160+01:00</app:edited><title>In Rome by Colloseum</title><content type="html">&lt;div class="pp_items"&gt;&lt;div class="pp_item"&gt;&lt;h4&gt;&lt;div align="center"&gt;&lt;img src="http://static.pixelpipe.com/d2fef0f4-52a8-4f2f-9eae-321f88071cea_m.jpg" style="max-width: 100%;" /&gt;&lt;/div&gt;&lt;/div&gt;&lt;h5&gt;Posted via &lt;a href="http://pixelpipe.com"&gt;Pixelpipe&lt;/a&gt;.&lt;/h5&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13692240-5048842847352587105?l=blog.mor10am.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=JHSbb4H8qVY:hFENqdpnqUI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=JHSbb4H8qVY:hFENqdpnqUI:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=JHSbb4H8qVY:hFENqdpnqUI:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?i=JHSbb4H8qVY:hFENqdpnqUI:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.mor10am.com/feeds/5048842847352587105/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://blog.mor10am.com/2009/03/in-rome-by-colloseum.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/5048842847352587105?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/5048842847352587105?v=2" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/2009/03/in-rome-by-colloseum.html" title="In Rome by Colloseum" /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;CU4FRHc5fip7ImA9WxVUFEg.&quot;"><id>tag:blogger.com,1999:blog-13692240.post-1932181598719587567</id><published>2009-03-19T10:11:00.001+01:00</published><updated>2009-03-19T10:11:55.926+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-03-19T10:11:55.926+01:00</app:edited><title>PHP italia</title><content type="html">&lt;div class="pp_items"&gt;&lt;div class="pp_item"&gt;&lt;h4&gt;&lt;div align="center"&gt;&lt;img src="http://static.pixelpipe.com/6db8d4e1-2a57-413e-9af9-456bb16d12bc_m.jpg" style="max-width: 100%;" /&gt;&lt;/div&gt;&lt;/div&gt;&lt;h5&gt;Posted via &lt;a href="http://pixelpipe.com"&gt;Pixelpipe&lt;/a&gt;.&lt;/h5&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13692240-1932181598719587567?l=blog.mor10am.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=tadupVOmaUU:d6CQ2Zs1FRw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=tadupVOmaUU:d6CQ2Zs1FRw:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=tadupVOmaUU:d6CQ2Zs1FRw:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?i=tadupVOmaUU:d6CQ2Zs1FRw:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.mor10am.com/feeds/1932181598719587567/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://blog.mor10am.com/2009/03/php-italia.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/1932181598719587567?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/1932181598719587567?v=2" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/2009/03/php-italia.html" title="PHP italia" /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;AkYCSX86eyp7ImA9WxVUFE0.&quot;"><id>tag:blogger.com,1999:blog-13692240.post-4462012052685238962</id><published>2009-03-18T21:29:00.001+01:00</published><updated>2009-03-18T21:29:28.113+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-03-18T21:29:28.113+01:00</app:edited><title>In Rome for dinner #phpitalia</title><content type="html">&lt;div class="pp_items"&gt;&lt;div class="pp_item"&gt;&lt;h4&gt;&lt;div align="center"&gt;&lt;img src="http://static.pixelpipe.com/9ec5040b-d687-4829-b192-c2a6ad41f0f8_m.jpg" style="max-width: 100%;" /&gt;&lt;/div&gt;&lt;/div&gt;&lt;h5&gt;Posted via &lt;a href="http://pixelpipe.com"&gt;Pixelpipe&lt;/a&gt;.&lt;/h5&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13692240-4462012052685238962?l=blog.mor10am.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=VveHoz21dAI:9-pkxtwEce8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=VveHoz21dAI:9-pkxtwEce8:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=VveHoz21dAI:9-pkxtwEce8:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?i=VveHoz21dAI:9-pkxtwEce8:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.mor10am.com/feeds/4462012052685238962/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://blog.mor10am.com/2009/03/in-rome-for-dinner-phpitalia.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/4462012052685238962?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/4462012052685238962?v=2" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/2009/03/in-rome-for-dinner-phpitalia.html" title="In Rome for dinner #phpitalia" /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;DE8BRnk4eCp7ImA9WxVVFE8.&quot;"><id>tag:blogger.com,1999:blog-13692240.post-6426886357890339867</id><published>2009-03-07T12:54:00.001+01:00</published><updated>2009-03-07T12:54:17.730+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-03-07T12:54:17.730+01:00</app:edited><title>Beautiful day on the Riviera</title><content type="html">&lt;div class="pp_items"&gt;&lt;div class="pp_item"&gt;&lt;h4&gt;&lt;div align="center"&gt;&lt;img src="http://static.pixelpipe.com/e6ab3f8f-259f-49d9-b0c4-337874d35554_m.jpg" style="max-width: 100%;" /&gt;&lt;/div&gt;&lt;/div&gt;&lt;h5&gt;Posted via &lt;a href="http://pixelpipe.com"&gt;Pixelpipe&lt;/a&gt;.&lt;/h5&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13692240-6426886357890339867?l=blog.mor10am.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=PsV0iEm-9Qk:U9L32Cn_t7c:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=PsV0iEm-9Qk:U9L32Cn_t7c:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=PsV0iEm-9Qk:U9L32Cn_t7c:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?i=PsV0iEm-9Qk:U9L32Cn_t7c:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.mor10am.com/feeds/6426886357890339867/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://blog.mor10am.com/2009/03/beautiful-day-on-riviera.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/6426886357890339867?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/6426886357890339867?v=2" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/2009/03/beautiful-day-on-riviera.html" title="Beautiful day on the Riviera" /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;A0cBR305fyp7ImA9WxVVFU8.&quot;"><id>tag:blogger.com,1999:blog-13692240.post-1762770031240210993</id><published>2009-03-06T20:40:00.002+01:00</published><updated>2009-03-08T17:17:36.327+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-03-08T17:17:36.327+01:00</app:edited><title>2006 Foradori Teroldego Rotaliano</title><content type="html">&lt;div class="pp_items"&gt;&lt;div class="pp_item"&gt;&lt;div align="center"&gt;&lt;img src="http://static.pixelpipe.com/871fdeb3-125b-4fcc-ba46-3b3b93747e39_m.jpg" style="max-width: 100%;" /&gt;&lt;/div&gt;&lt;/div&gt;&lt;h5&gt;Posted via &lt;a href="http://pixelpipe.com"&gt;Pixelpipe&lt;/a&gt;.&lt;/h5&gt;&lt;/div&gt;&lt;br /&gt;I saw Gary Vaynerchuk try this on &lt;a href="http://tv.winelibrary.com/2009/03/05/teroldego-rotaliano-wine-with-some-chesse-episode-636/"&gt;episode 636&lt;/a&gt;, and I will definitly drink this wine again...&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13692240-1762770031240210993?l=blog.mor10am.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=gv2QoUI_yhU:RTfR5I5Z9zk:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=gv2QoUI_yhU:RTfR5I5Z9zk:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=gv2QoUI_yhU:RTfR5I5Z9zk:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?i=gv2QoUI_yhU:RTfR5I5Z9zk:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.mor10am.com/feeds/1762770031240210993/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://blog.mor10am.com/2009/03/2006-foradori-teroldelgo-rotaliano.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/1762770031240210993?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/1762770031240210993?v=2" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/2009/03/2006-foradori-teroldelgo-rotaliano.html" title="2006 Foradori Teroldego Rotaliano" /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;AkYNQn89cSp7ImA9WxVVEUw.&quot;"><id>tag:blogger.com,1999:blog-13692240.post-4057093570854766717</id><published>2009-03-03T23:09:00.001+01:00</published><updated>2009-03-03T23:09:53.169+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-03-03T23:09:53.169+01:00</app:edited><title>The Fog of Romagna</title><content type="html">&lt;div class="pp_items"&gt;&lt;div class="pp_item"&gt;&lt;h4&gt;&lt;div align="center"&gt;&lt;img src="http://static.pixelpipe.com/93c0506b-16a0-4d88-8595-c29b345f4455_m.jpg" style="max-width: 100%;" /&gt;&lt;/div&gt;&lt;/div&gt;&lt;h5&gt;Posted via &lt;a href="http://pixelpipe.com"&gt;Pixelpipe&lt;/a&gt;.&lt;/h5&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13692240-4057093570854766717?l=blog.mor10am.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=nvPxddVS32Q:3tFnAeQVDWo:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=nvPxddVS32Q:3tFnAeQVDWo:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=nvPxddVS32Q:3tFnAeQVDWo:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?i=nvPxddVS32Q:3tFnAeQVDWo:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.mor10am.com/feeds/4057093570854766717/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://blog.mor10am.com/2009/03/fog-of-romagna.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/4057093570854766717?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/4057093570854766717?v=2" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/2009/03/fog-of-romagna.html" title="The Fog of Romagna" /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;DEcFRHg_cSp7ImA9WxVVEEw.&quot;"><id>tag:blogger.com,1999:blog-13692240.post-2261384764066286096</id><published>2009-03-02T18:46:00.001+01:00</published><updated>2009-03-02T18:46:55.649+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-03-02T18:46:55.649+01:00</app:edited><title>Can't wait for PHPCon Italia 2009.</title><content type="html">&lt;div class="pp_items"&gt;&lt;div class="pp_item"&gt;&lt;h4&gt;&lt;div align="center"&gt;&lt;img src="http://static.pixelpipe.com/808f8f2b-0d25-49e0-9b05-b95ccc58d511_m.jpg" style="max-width: 100%;" /&gt;&lt;/div&gt;&lt;/div&gt;&lt;h5&gt;Posted via &lt;a href="http://pixelpipe.com"&gt;Pixelpipe&lt;/a&gt;.&lt;/h5&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13692240-2261384764066286096?l=blog.mor10am.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=lXn3DnQVTlY:dbkjnmiYNpw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=lXn3DnQVTlY:dbkjnmiYNpw:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=lXn3DnQVTlY:dbkjnmiYNpw:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?i=lXn3DnQVTlY:dbkjnmiYNpw:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.mor10am.com/feeds/2261384764066286096/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://blog.mor10am.com/2009/03/can-wait-for-phpcon-italia-2009.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/2261384764066286096?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/2261384764066286096?v=2" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/2009/03/can-wait-for-phpcon-italia-2009.html" title="Can&amp;#39;t wait for PHPCon Italia 2009." /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;AkcBQno4fSp7ImA9WxVWEk8.&quot;"><id>tag:blogger.com,1999:blog-13692240.post-581424635292691935</id><published>2009-02-21T15:54:00.001+01:00</published><updated>2009-02-21T15:54:13.435+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-02-21T15:54:13.435+01:00</app:edited><title>I'm leaving this</title><content type="html">&lt;div class="pp_items"&gt;&lt;div class="pp_item"&gt;&lt;h4&gt;&lt;div align="center"&gt;&lt;img src="http://static.pixelpipe.com/475d7844-152a-4451-b704-7ec6bc43a274_m.jpg" style="max-width: 100%;" /&gt;&lt;/div&gt;&lt;/div&gt;&lt;h5&gt;Posted via &lt;a href="http://pixelpipe.com"&gt;Pixelpipe&lt;/a&gt;.&lt;/h5&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13692240-581424635292691935?l=blog.mor10am.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=7jdPGiyUucI:o4i4EDumu08:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=7jdPGiyUucI:o4i4EDumu08:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=7jdPGiyUucI:o4i4EDumu08:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?i=7jdPGiyUucI:o4i4EDumu08:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.mor10am.com/feeds/581424635292691935/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://blog.mor10am.com/2009/02/i-leaving-this.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/581424635292691935?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/581424635292691935?v=2" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/2009/02/i-leaving-this.html" title="I&amp;#39;m leaving this" /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;D08DQno9eSp7ImA9WxVXFkw.&quot;"><id>tag:blogger.com,1999:blog-13692240.post-4855787550821426629</id><published>2009-02-14T13:51:00.001+01:00</published><updated>2009-02-14T13:51:13.461+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-02-14T13:51:13.461+01:00</app:edited><title>Search and you will find</title><content type="html">&lt;div class="pp_items"&gt;&lt;div class="pp_item"&gt;&lt;h4&gt;&lt;div align="center"&gt;&lt;img src="http://static.pixelpipe.com/66d7aafa-610a-4fdb-a732-f5de55e89288_m.jpg" style="max-width: 100%;" /&gt;&lt;/div&gt;&lt;/div&gt;&lt;h5&gt;Posted via &lt;a href="http://pixelpipe.com"&gt;Pixelpipe&lt;/a&gt;.&lt;/h5&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13692240-4855787550821426629?l=blog.mor10am.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=vtovVvWItW0:y8QlG5eh3VA:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=vtovVvWItW0:y8QlG5eh3VA:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=vtovVvWItW0:y8QlG5eh3VA:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?i=vtovVvWItW0:y8QlG5eh3VA:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.mor10am.com/feeds/4855787550821426629/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://blog.mor10am.com/2009/02/search-and-you-will-find.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/4855787550821426629?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/4855787550821426629?v=2" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/2009/02/search-and-you-will-find.html" title="Search and you will find" /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;C0IARn08cCp7ImA9WxVXFkw.&quot;"><id>tag:blogger.com,1999:blog-13692240.post-2125478315376653405</id><published>2009-02-14T12:39:00.001+01:00</published><updated>2009-02-14T12:39:07.378+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-02-14T12:39:07.378+01:00</app:edited><title>Is in transit at Frankfurt</title><content type="html">&lt;div class="pp_items"&gt;&lt;div class="pp_item"&gt;&lt;h4&gt;&lt;div align="center"&gt;&lt;img src="http://static.pixelpipe.com/f8ae8433-da03-4789-89a3-d4f267509eff_m.jpg" style="max-width: 100%;" /&gt;&lt;/div&gt;&lt;/div&gt;&lt;h5&gt;Posted via &lt;a href="http://pixelpipe.com"&gt;Pixelpipe&lt;/a&gt;.&lt;/h5&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13692240-2125478315376653405?l=blog.mor10am.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=18nLtTA_CM8:6DkQXj-_av4:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=18nLtTA_CM8:6DkQXj-_av4:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=18nLtTA_CM8:6DkQXj-_av4:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?i=18nLtTA_CM8:6DkQXj-_av4:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.mor10am.com/feeds/2125478315376653405/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://blog.mor10am.com/2009/02/is-in-transit-at-frankfurt.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/2125478315376653405?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/2125478315376653405?v=2" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/2009/02/is-in-transit-at-frankfurt.html" title="Is in transit at Frankfurt" /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;DkEFQX0zeyp7ImA9WxVQF0o.&quot;"><id>tag:blogger.com,1999:blog-13692240.post-5187540732796188818</id><published>2009-02-04T20:10:00.001+01:00</published><updated>2009-02-04T20:10:10.383+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-02-04T20:10:10.383+01:00</app:edited><title>My QR Code</title><content type="html">&lt;div class="pp_items"&gt;&lt;div class="pp_item"&gt;&lt;h4&gt;&lt;div align="center"&gt;&lt;img src="http://static.pixelpipe.com/83f1875b-ce9c-4a3b-806b-6085954e03a4_m.jpg" style="max-width: 100%;" /&gt;&lt;/div&gt;&lt;/div&gt;&lt;h5&gt;Posted via &lt;a href="http://pixelpipe.com"&gt;Pixelpipe&lt;/a&gt;.&lt;/h5&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13692240-5187540732796188818?l=blog.mor10am.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=w7BkgRoi24o:fW6pEajc2-o:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=w7BkgRoi24o:fW6pEajc2-o:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=w7BkgRoi24o:fW6pEajc2-o:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?i=w7BkgRoi24o:fW6pEajc2-o:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.mor10am.com/feeds/5187540732796188818/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://blog.mor10am.com/2009/02/my-qr-code_04.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/5187540732796188818?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/5187540732796188818?v=2" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/2009/02/my-qr-code_04.html" title="My QR Code" /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;CEINRXozfSp7ImA9WxVQE04.&quot;"><id>tag:blogger.com,1999:blog-13692240.post-8601027035799087758</id><published>2009-01-30T17:23:00.001+01:00</published><updated>2009-01-30T17:23:14.485+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-01-30T17:23:14.485+01:00</app:edited><title>Todays delivery from Amazon</title><content type="html">&lt;div class="pp_items"&gt;&lt;div class="pp_item"&gt;&lt;h4&gt;&lt;div align="center"&gt;&lt;img src="http://static.pixelpipe.com/73219548-1a8b-436d-b29f-4d30b4fda898_m.jpg" style="max-width: 100%;" /&gt;&lt;/div&gt;&lt;/div&gt;&lt;h5&gt;Posted via &lt;a href="http://pixelpipe.com"&gt;Pixelpipe&lt;/a&gt;.&lt;/h5&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13692240-8601027035799087758?l=blog.mor10am.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=YLoHVv6nkuw:4Z2fWcJBjXY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=YLoHVv6nkuw:4Z2fWcJBjXY:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=YLoHVv6nkuw:4Z2fWcJBjXY:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?i=YLoHVv6nkuw:4Z2fWcJBjXY:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.mor10am.com/feeds/8601027035799087758/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://blog.mor10am.com/2009/01/todays-delivery-from-amazon.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/8601027035799087758?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/8601027035799087758?v=2" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/2009/01/todays-delivery-from-amazon.html" title="Todays delivery from Amazon" /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;D0YEQH06eCp7ImA9WxVRFEo.&quot;"><id>tag:blogger.com,1999:blog-13692240.post-3861595073733819184</id><published>2009-01-20T19:11:00.001+01:00</published><updated>2009-01-20T19:11:41.310+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-01-20T19:11:41.310+01:00</app:edited><title>Now he is President</title><content type="html">&lt;div class="pp_items"&gt;&lt;div class="pp_item"&gt;&lt;h4&gt;&lt;div align="center"&gt;&lt;img src="http://static.pixelpipe.com/ca7f3ce4-d642-4d54-b1c7-6bfbfa6ebc3e_m.jpg" style="max-width: 100%;" /&gt;&lt;/div&lt;/div&gt;&lt;h5&gt;Posted via &lt;a href="http://pixelpipe.com"&gt;Pixelpipe&lt;/a&gt;.&lt;/h5&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13692240-3861595073733819184?l=blog.mor10am.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=yne1ySYaI34:-WtfhPDHoso:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=yne1ySYaI34:-WtfhPDHoso:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=yne1ySYaI34:-WtfhPDHoso:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?i=yne1ySYaI34:-WtfhPDHoso:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.mor10am.com/feeds/3861595073733819184/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://blog.mor10am.com/2009/01/now-he-is-president.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/3861595073733819184?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/3861595073733819184?v=2" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/2009/01/now-he-is-president.html" title="Now he is President" /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;C0QGQHY-eyp7ImA9WxVREk8.&quot;"><id>tag:blogger.com,1999:blog-13692240.post-4008187771690587806</id><published>2009-01-17T20:42:00.001+01:00</published><updated>2009-01-17T20:42:01.853+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-01-17T20:42:01.853+01:00</app:edited><title>Finally saturday!</title><content type="html">&lt;div class="pp_items"&gt;&lt;div class="pp_item"&gt;&lt;h4&gt;&lt;div align="center"&gt;&lt;img src="http://static.pixelpipe.com/33c61998-9f44-4f9d-9145-bdfbf8a73fa1_m.jpg" style="max-width: 100%;" /&gt;&lt;/div&gt;&lt;/div&gt;&lt;h5&gt;Posted via &lt;a href="http://pixelpipe.com"&gt;Pixelpipe&lt;/a&gt;.&lt;/h5&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13692240-4008187771690587806?l=blog.mor10am.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=Z2ODZu-BHiU:urYRvGLiHqY:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=Z2ODZu-BHiU:urYRvGLiHqY:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=Z2ODZu-BHiU:urYRvGLiHqY:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?i=Z2ODZu-BHiU:urYRvGLiHqY:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.mor10am.com/feeds/4008187771690587806/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://blog.mor10am.com/2009/01/finally-saturday.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/4008187771690587806?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/4008187771690587806?v=2" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/2009/01/finally-saturday.html" title="Finally saturday!" /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;C0cARXw6eCp7ImA9WxVREk0.&quot;"><id>tag:blogger.com,1999:blog-13692240.post-4539074821913936777</id><published>2009-01-16T22:46:00.002+01:00</published><updated>2009-01-17T15:04:04.210+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-01-17T15:04:04.210+01:00</app:edited><title>Paradiso</title><content type="html">Deborah and I went to &lt;a href="http://maps.google.com/maps/ms?ie=UTF8&amp;hl=en&amp;msa=0&amp;msid=111456896521552580177.000460ae17371f6b57a28&amp;ll=44.177333,12.422136&amp;spn=0.005263,0.008508&amp;z=17"&gt;Paradiso&lt;/a&gt; bar last night, and now I have a headache. Oh, well...&lt;br /&gt;&lt;div class="pp_items"&gt;&lt;div class="pp_item"&gt;&lt;div align="center"&gt;&lt;img src="http://static.pixelpipe.com/30631072-ecfc-4443-b655-04c17013e724_m.jpg" style="max-width: 100%;" /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="pp_item"&gt;&lt;h4&gt;Paradiso 2&lt;/h4&gt;&lt;div align="center"&gt;&lt;img src="http://static.pixelpipe.com/b7831358-bdf5-43ae-98c0-0da3388ec333_m.jpg" style="max-width: 100%;" /&gt;&lt;/div&gt;&lt;/div&gt;&lt;div class="pp_item"&gt;&lt;h4&gt;Paradiso 1&lt;/h4&gt;&lt;div align="center"&gt;&lt;img src="http://static.pixelpipe.com/7159b87c-b7f4-4d48-851b-5142f75a2056_m.jpg" style="max-width: 100%;" /&gt;&lt;/div&gt;&lt;/div&gt;&lt;h5&gt;Posted via &lt;a href="http://pixelpipe.com"&gt;Pixelpipe&lt;/a&gt;.&lt;/h5&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13692240-4539074821913936777?l=blog.mor10am.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=izJ9E64RWYQ:cYQGQJisBh0:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=izJ9E64RWYQ:cYQGQJisBh0:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=izJ9E64RWYQ:cYQGQJisBh0:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?i=izJ9E64RWYQ:cYQGQJisBh0:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.mor10am.com/feeds/4539074821913936777/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://blog.mor10am.com/2009/01/paradiso-3.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/4539074821913936777?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/4539074821913936777?v=2" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/2009/01/paradiso-3.html" title="Paradiso" /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;DE8HQ3Y7cCp7ImA9WxVSF0g.&quot;"><id>tag:blogger.com,1999:blog-13692240.post-7887777278446724020</id><published>2009-01-11T16:22:00.003+01:00</published><updated>2009-01-12T11:40:32.808+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-01-12T11:40:32.808+01:00</app:edited><title>Scary italian bikers!</title><content type="html">&lt;div class="pp_items"&gt;&lt;div class="pp_item"&gt;&lt;div align="center"&gt;&lt;img src="http://static.pixelpipe.com/ed0d0716-500e-458e-851a-ec8cc5d4085a_m.jpg" style="max-width: 100%;" /&gt;&lt;/div&gt;&lt;/div&gt;&lt;h5&gt;Posted via &lt;a href="http://pixelpipe.com"&gt;Pixelpipe&lt;/a&gt;.&lt;/h5&gt;&lt;/div&gt;&lt;br /&gt;They were not really that scary... :) They were actually discussing biker trips for the spring.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13692240-7887777278446724020?l=blog.mor10am.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=AN3KunOTHPU:TCZ-9AKGKZE:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=AN3KunOTHPU:TCZ-9AKGKZE:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=AN3KunOTHPU:TCZ-9AKGKZE:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?i=AN3KunOTHPU:TCZ-9AKGKZE:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.mor10am.com/feeds/7887777278446724020/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://blog.mor10am.com/2009/01/scary-italian-bikers.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/7887777278446724020?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/7887777278446724020?v=2" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/2009/01/scary-italian-bikers.html" title="Scary italian bikers!" /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;C0UASHY-fyp7ImA9WxVSFkU.&quot;"><id>tag:blogger.com,1999:blog-13692240.post-4768099749068010370</id><published>2009-01-11T14:40:00.001+01:00</published><updated>2009-01-11T14:40:49.857+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-01-11T14:40:49.857+01:00</app:edited><title>Piadina time</title><content type="html">&lt;div class="pp_items"&gt;&lt;div class="pp_item"&gt;&lt;h4&gt;&lt;div align="center"&gt;&lt;img src="http://static.pixelpipe.com/49e714a4-227b-419a-b5c2-6dc0ef7e5df8_m.jpg" style="max-width: 100%;" /&gt;&lt;/div&gt;&lt;/div&gt;&lt;h5&gt;Posted via &lt;a href="http://pixelpipe.com"&gt;Pixelpipe&lt;/a&gt;.&lt;/h5&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13692240-4768099749068010370?l=blog.mor10am.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=gd1wSHtRIw4:mhzUWBd7ctI:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=gd1wSHtRIw4:mhzUWBd7ctI:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=gd1wSHtRIw4:mhzUWBd7ctI:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?i=gd1wSHtRIw4:mhzUWBd7ctI:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.mor10am.com/feeds/4768099749068010370/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://blog.mor10am.com/2009/01/piadina-time.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/4768099749068010370?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/4768099749068010370?v=2" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/2009/01/piadina-time.html" title="Piadina time" /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;Ck4HSHY_fyp7ImA9WxVSFkU.&quot;"><id>tag:blogger.com,1999:blog-13692240.post-6832821780789763624</id><published>2009-01-11T14:35:00.001+01:00</published><updated>2009-01-11T14:35:39.847+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-01-11T14:35:39.847+01:00</app:edited><title>Cesenatico</title><content type="html">&lt;div class="pp_items"&gt;&lt;div class="pp_item"&gt;&lt;h4&gt;&lt;div align="center"&gt;&lt;img src="http://static.pixelpipe.com/593d141b-f716-488c-a980-88dedf2a3fe3_m.jpg" style="max-width: 100%;" /&gt;&lt;/div&gt;&lt;/div&gt;&lt;h5&gt;Posted via &lt;a href="http://pixelpipe.com"&gt;Pixelpipe&lt;/a&gt;.&lt;/h5&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13692240-6832821780789763624?l=blog.mor10am.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=1uk4x-SaJ9U:vG6h8bNlrdw:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=1uk4x-SaJ9U:vG6h8bNlrdw:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=1uk4x-SaJ9U:vG6h8bNlrdw:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?i=1uk4x-SaJ9U:vG6h8bNlrdw:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.mor10am.com/feeds/6832821780789763624/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://blog.mor10am.com/2009/01/cesenatico.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/6832821780789763624?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/6832821780789763624?v=2" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/2009/01/cesenatico.html" title="Cesenatico" /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;D04DQXk4fyp7ImA9WxVSFkw.&quot;"><id>tag:blogger.com,1999:blog-13692240.post-2821761656221461080</id><published>2009-01-10T20:32:00.001+01:00</published><updated>2009-01-10T20:32:50.737+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-01-10T20:32:50.737+01:00</app:edited><title>Spaghetti and a Salento</title><content type="html">&lt;div class="pp_items"&gt;&lt;div class="pp_item"&gt;&lt;h4&gt;&lt;div align="center"&gt;&lt;img src="http://static.pixelpipe.com/c9f058ad-aca6-41f2-85f4-8a0964e3fcb5_m.jpg" style="max-width: 100%;" /&gt;&lt;/div&gt;&lt;/div&gt;&lt;h5&gt;Posted via &lt;a href="http://pixelpipe.com"&gt;Pixelpipe&lt;/a&gt;.&lt;/h5&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13692240-2821761656221461080?l=blog.mor10am.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=CuUqbIIH1vg:ll1FOv7QW3k:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=CuUqbIIH1vg:ll1FOv7QW3k:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=CuUqbIIH1vg:ll1FOv7QW3k:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?i=CuUqbIIH1vg:ll1FOv7QW3k:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.mor10am.com/feeds/2821761656221461080/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://blog.mor10am.com/2009/01/spaghetti-and-salento.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/2821761656221461080?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/2821761656221461080?v=2" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/2009/01/spaghetti-and-salento.html" title="Spaghetti and a Salento" /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;CkcFQHo_cCp7ImA9WxVSFkw.&quot;"><id>tag:blogger.com,1999:blog-13692240.post-8852998017399432588</id><published>2009-01-10T18:53:00.001+01:00</published><updated>2009-01-10T18:53:31.448+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-01-10T18:53:31.448+01:00</app:edited><title>Pastasauce on it's way</title><content type="html">&lt;div class="pp_items"&gt;&lt;div class="pp_item"&gt;&lt;h4&gt;&lt;div align="center"&gt;&lt;img src="http://static.pixelpipe.com/259786ac-e582-42fb-8604-c5dcaa37b1e1_m.jpg" style="max-width: 100%;" /&gt;&lt;/div&gt;&lt;/div&gt;&lt;h5&gt;Posted via &lt;a href="http://pixelpipe.com"&gt;Pixelpipe&lt;/a&gt;.&lt;/h5&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13692240-8852998017399432588?l=blog.mor10am.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=LjzV9axp7XQ:7y_jr_THmG8:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=LjzV9axp7XQ:7y_jr_THmG8:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=LjzV9axp7XQ:7y_jr_THmG8:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?i=LjzV9axp7XQ:7y_jr_THmG8:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.mor10am.com/feeds/8852998017399432588/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://blog.mor10am.com/2009/01/pastasauce-on-it-way.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/8852998017399432588?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/8852998017399432588?v=2" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/2009/01/pastasauce-on-it-way.html" title="Pastasauce on it&amp;#39;s way" /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;C0YBQ3k5cSp7ImA9WxRbFks.&quot;"><id>tag:blogger.com,1999:blog-13692240.post-2059440912956927409</id><published>2008-12-07T15:45:00.001+01:00</published><updated>2008-12-07T15:45:52.729+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-12-07T15:45:52.729+01:00</app:edited><title /><content type="html">Cadillac stadion wagon&lt;br&gt;&lt;img src="http://static.pixelpipe.com/6c7e48ad-129a-4c25-bcb8-0b639fead073_m.jpg" /&gt;&lt;br&gt;Posted via &lt;a href="http://pixelpipe.com"&gt;Pixelpipe&lt;/a&gt;.&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13692240-2059440912956927409?l=blog.mor10am.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=qD51MSMOONg:Si3SILZRgig:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=qD51MSMOONg:Si3SILZRgig:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=qD51MSMOONg:Si3SILZRgig:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?i=qD51MSMOONg:Si3SILZRgig:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.mor10am.com/feeds/2059440912956927409/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://blog.mor10am.com/2008/12/cadillac-stadion-wagon-posted-via.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/2059440912956927409?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/2059440912956927409?v=2" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/2008/12/cadillac-stadion-wagon-posted-via.html" title="" /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><thr:total>0</thr:total></entry><entry gd:etag="W/&quot;A0QESH08eyp7ImA9WxRbE00.&quot;"><id>tag:blogger.com,1999:blog-13692240.post-1660038136419591286</id><published>2008-12-02T18:01:00.003+01:00</published><updated>2008-12-03T14:01:49.373+01:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-12-03T14:01:49.373+01:00</app:edited><title /><content type="html">Opeth&lt;br&gt;&lt;img src="http://static.pixelpipe.com/c8b58560-28f3-4e04-8ef4-65662cb87e41_m.jpg" /&gt;&lt;br&gt;Posted via &lt;a href="http://pixelpipe.com"&gt;Pixelpipe&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;Got my new Opeth DVD (The Roundhouse Tapes) today. Good stuff, with Åkerfeldt in good form... :)&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/13692240-1660038136419591286?l=blog.mor10am.com' alt='' /&gt;&lt;/div&gt;&lt;div class="feedflare"&gt;
&lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=2Z_wPG3l_X8:RxTnqR90Qtg:yIl2AUoC8zA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=yIl2AUoC8zA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=2Z_wPG3l_X8:RxTnqR90Qtg:7Q72WNTAKBA"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?d=7Q72WNTAKBA" border="0"&gt;&lt;/img&gt;&lt;/a&gt; &lt;a href="http://feeds.feedburner.com/~ff/DevelopingInItaly?a=2Z_wPG3l_X8:RxTnqR90Qtg:gIN9vFwOqvQ"&gt;&lt;img src="http://feeds.feedburner.com/~ff/DevelopingInItaly?i=2Z_wPG3l_X8:RxTnqR90Qtg:gIN9vFwOqvQ" border="0"&gt;&lt;/img&gt;&lt;/a&gt;
&lt;/div&gt;</content><link rel="replies" type="application/atom+xml" href="http://blog.mor10am.com/feeds/1660038136419591286/comments/default" title="Post Comments" /><link rel="replies" type="text/html" href="http://blog.mor10am.com/2008/12/opeth-posted-via-pixelpipe.html#comment-form" title="0 Comments" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/1660038136419591286?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/13692240/posts/default/1660038136419591286?v=2" /><link rel="alternate" type="text/html" href="http://blog.mor10am.com/2008/12/opeth-posted-via-pixelpipe.html" title="" /><author><name>Morten Amundsen</name><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="24" height="32" src="http://farm2.static.flickr.com/1137/1096442244_bdeb58f97e.jpg" /></author><thr:total>0</thr:total></entry></feed>

