<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>AppServers, Grid, SOA, JEE, etc.</title>
	<atom:link href="http://www.art2dec.com/paw/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.art2dec.com/paw</link>
	<description>_____news, tips and tricks by Igor_____</description>
	<lastBuildDate>Fri, 10 May 2013 06:57:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>Browser Market Shares, April, 2013.</title>
		<link>http://www.art2dec.com/paw/?p=3608</link>
		<comments>http://www.art2dec.com/paw/?p=3608#comments</comments>
		<pubDate>Mon, 29 Apr 2013 21:14:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://www.art2dec.com/paw/?p=3608</guid>
		<description><![CDATA[Chrome got more than 51 percents of makret. I checked version 25.0.1364.172 of Chrome on Linux. It doesn&#8217;t work worse than FireFox, really (the engine of browser is good, really). It&#8217;s an interesting when all another Blue Chips will add Chrome to all Certification Matrixes. You can find some note on blog here how to [...]]]></description>
			<content:encoded><![CDATA[<p> Chrome got more than 51 percents of makret. I checked version 25.0.1364.172 of Chrome on Linux. It doesn&#8217;t work worse than FireFox, really (the engine of browser is good, really). It&#8217;s an interesting when all another Blue Chips will add Chrome to all Certification Matrixes. You can find some note on blog here how to compile Chromium for win-client (the perfomance will be better than Chrome).</p>
<p></br><br />
<script type="text/javascript">
$(function () {
		Highcharts.getOptions().colors = Highcharts.map(Highcharts.getOptions().colors, function(color) {
		    return {
		        radialGradient: { cx: 0.5, cy: 0.3, r: 0.7 },
		        stops: [
		            [0, color],
		            [1, Highcharts.Color(color).brighten(-0.3).get('rgb')] // darken
		        ]
		    };
		});
        $('#containerZZ').highcharts({
            chart: { renderTo: 'containerZZ',
                plotBackgroundColor: null,
                plotBorderWidth: null,
                plotShadow: false
            },
            title: {
                text: 'Browser market shares, April, 2013'
            },
            tooltip: {
        	    pointFormat: '{series.name}: <b>{point.percentage}%</b>',
            	percentageDecimals: 1
            },
            plotOptions: {
                pie: {
                    allowPointSelect: true,
                    cursor: 'pointer',
                    dataLabels: {
                        enabled: true,
                        color: '#000000',
                        connectorColor: '#000000',
                        formatter: function() {
                            return '<b>'+ this.point.name +'</b>: '+ Math.round(this.percentage) +' %';
                        }
                    }
                }
            },
            series: [{
                type: 'pie',
                name: 'Browser share',
                data: [
                    ['Firefox',   28.5],
                    ['IE',       13.0],
                    {
                        name: 'Chrome',
                        y: 51.7,
                        sliced: true,
                        selected: true
                    },
                    ['Safari',    4.1],
                    ['Opera',     1.8],
                    ['Others',   0.9]
                ]
            }]
        });
    });
</script></p>
<div id="containerZZ" style="min-width: 400px; height: 400px; margin: 0 auto"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.art2dec.com/paw/?feed=rss2&#038;p=3608</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The example of charts diagram.</title>
		<link>http://www.art2dec.com/paw/?p=3575</link>
		<comments>http://www.art2dec.com/paw/?p=3575#comments</comments>
		<pubDate>Mon, 29 Apr 2013 14:15:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://www.art2dec.com/paw/?p=3575</guid>
		<description><![CDATA[The example of charts diagram with integration to site. $(function () { $(document).ready(function() { Highcharts.setOptions({ global: {useUTC: false} }); var chart; $('#containerP').highcharts({ chart: { renderTo: 'containerP', type: 'spline', animation: Highcharts.svg, // don't animate in old IE marginRight: 10, events: { load: function() { // set up the updating of the chart each second var series [...]]]></description>
			<content:encoded><![CDATA[<p>The example of charts diagram with integration to site.</p>
<p></br><br />
<script type="text/javascript">
$(function () {
    $(document).ready(function() {
        Highcharts.setOptions({
            global: {useUTC: false}
        });
var chart;
        $('#containerP').highcharts({
            chart: { renderTo: 'containerP',
                type: 'spline',
                animation: Highcharts.svg, // don't animate in old IE
                marginRight: 10,
                events: {
                    load: function() {
                        // set up the updating of the chart each second
                        var series = this.series[0];
                        setInterval(function() {
                            var x = (new Date()).getTime(), // current time
                                y = Math.random();
                            series.addPoint([x, y], true, true);
                        }, 1000);
                    }
                }
            },
            title: {
                text: 'Level of IL-101964 cerebral cortex loading'},
            xAxis: {
                type: 'datetime',
                tickPixelInterval: 150
            },
            yAxis: {
                title: {
                    text: 'Value'
                },
                plotLines: [{
                    value: 0,
                    width: 1,
                    color: '#808080'
                }]
            },
            tooltip: {
                formatter: function() {
                        return '<b>'+ this.series.name +'</b><br/>'+
                        Highcharts.dateFormat('%Y-%m-%d %H:%M:%S', this.x) +'<br/>'+
                        Highcharts.numberFormat(this.y, 2);
                }
            },
            legend: {enabled: false},
            exporting: {
                enabled: false
            },
            series: [{
                name: ' IL-101964 Cortex Loading',
                data: (function() {
                    // generate an array of random data
                    var data = [],
                        time = (new Date()).getTime(),
                        i;
                    for (i = -19; i <= 0; i++) {
                        data.push({
                            x: time + i * 1000,
                            y: Math.random()
                        });
                    }
                    return data;
                })()
            }]
        });
    });
});
</script></p>
<div id="containerP" style="min-width: 400px; height: 400px; margin: 0 auto"></div>
]]></content:encoded>
			<wfw:commentRss>http://www.art2dec.com/paw/?feed=rss2&#038;p=3575</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The supercomputer &#8220;Lomonosov&#8221; (Russia, 2008).</title>
		<link>http://www.art2dec.com/paw/?p=3545</link>
		<comments>http://www.art2dec.com/paw/?p=3545#comments</comments>
		<pubDate>Sun, 28 Apr 2013 10:36:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Architecture]]></category>

		<guid isPermaLink="false">http://www.art2dec.com/paw/?p=3545</guid>
		<description><![CDATA[The supercomputer &#8220;Lomonosov&#8221; (Russia, 2008). The history of one computer and one company&#8230;. The main parameters of SuperComputer &#8220;Lomonosov&#8221;. The design and architecture of &#8220;Lomonosov&#8221; was developed by company: &#8220;t-Platforms&#8221; &#8220;t-Platforms&#8221; press release 10.22.2012: &#8216;First Delivery of Russian Supercomputer to U.S. Completed.&#8217; Maker of world&#8217;s 26th fastest supercomputer faces heavy trade restrictions. &#8220;t-Platforms&#8221; history The [...]]]></description>
			<content:encoded><![CDATA[<p><strong>The supercomputer &#8220;Lomonosov&#8221; (Russia, 2008). The history of one computer and one company&#8230;.</strong><br />
</br></p>
<p><img src="" /></p>
<p></br><br />
<strong>The main parameters of SuperComputer &#8220;Lomonosov&#8221;.</strong><br />
</br></p>
<p style="text-align: center;">
<p></br></p>
<p>  The design and architecture of &#8220;Lomonosov&#8221; was developed by company: <a target="_blank" href="http://www.t-platforms.com/about-company.html"> &#8220;t-Platforms&#8221;</a> </p>
<p></br></p>
<p>  &#8220;t-Platforms&#8221; press release 10.22.2012: <a target="_blank" href="http://www.t-platforms.com/about-company/press-releases/395-the-oganov-lab.html"> &#8216;First Delivery of Russian Supercomputer to U.S. Completed.&#8217;</a> </p>
<p></br></p>
<p>  Maker of world&#8217;s 26th fastest supercomputer faces heavy trade restrictions. <a target="_blank" href="http://arstechnica.com/information-technology/2013/04/us-adds-russian-supercomputer-maker-to-list-of-nuclear-threats/"> &#8220;t-Platforms&#8221; history</a> </p>
<p>  The history <a target="_blank" href="http://hitech.vesti.ru/news/view/id/1751"> on Russian. </a> </p>
]]></content:encoded>
			<wfw:commentRss>http://www.art2dec.com/paw/?feed=rss2&#038;p=3545</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some Computer Vintage Collection. 1983 and later.</title>
		<link>http://www.art2dec.com/paw/?p=3534</link>
		<comments>http://www.art2dec.com/paw/?p=3534#comments</comments>
		<pubDate>Sun, 28 Apr 2013 08:27:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Architecture]]></category>

		<guid isPermaLink="false">http://www.art2dec.com/paw/?p=3534</guid>
		<description><![CDATA[Some computer vintage collection. 1983 and later.]]></description>
			<content:encoded><![CDATA[<p><strong>Some computer vintage collection. 1983 and later.</strong><br />
</br></p>
<p><img src="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.art2dec.com/paw/?feed=rss2&#038;p=3534</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>BECM-6 (&#8220;BESM-6&#8243;, USSR), 1965.</title>
		<link>http://www.art2dec.com/paw/?p=3537</link>
		<comments>http://www.art2dec.com/paw/?p=3537#comments</comments>
		<pubDate>Sun, 28 Apr 2013 08:23:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Architecture]]></category>

		<guid isPermaLink="false">http://www.art2dec.com/paw/?p=3537</guid>
		<description><![CDATA[BECM-6 (&#8220;BESM-6&#8243;, USSR) &#8211; Big Electronical Computing Mashine. 1965. It was developed under S.A. Lebedev I became so old that I remember how I worked with mathematical libraries on someone from these computers.]]></description>
			<content:encoded><![CDATA[<p><strong>BECM-6 (&#8220;BESM-6&#8243;, USSR) &#8211; Big Electronical Computing Mashine. 1965. It was developed under S.A. Lebedev<br />
I became so old that I remember how I worked with mathematical libraries on someone from these computers.</strong><br />
</br></p>
<p><img src="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.art2dec.com/paw/?feed=rss2&#038;p=3537</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EDSAC Replica Project (England). 1949.</title>
		<link>http://www.art2dec.com/paw/?p=3531</link>
		<comments>http://www.art2dec.com/paw/?p=3531#comments</comments>
		<pubDate>Sun, 28 Apr 2013 08:22:59 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Architecture]]></category>

		<guid isPermaLink="false">http://www.art2dec.com/paw/?p=3531</guid>
		<description><![CDATA[EDSAC. The England brother of ENIAC. 1949.]]></description>
			<content:encoded><![CDATA[<p><strong>EDSAC. The England brother of ENIAC. 1949.</strong><br />
</br></p>
<p><img src="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.art2dec.com/paw/?feed=rss2&#038;p=3531</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ENIAC. First computer around the world (USA). 1946.</title>
		<link>http://www.art2dec.com/paw/?p=3529</link>
		<comments>http://www.art2dec.com/paw/?p=3529#comments</comments>
		<pubDate>Sun, 28 Apr 2013 08:17:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Architecture]]></category>

		<guid isPermaLink="false">http://www.art2dec.com/paw/?p=3529</guid>
		<description><![CDATA[ENIAC. First computer around the world (USA). 1946.]]></description>
			<content:encoded><![CDATA[<p><strong>ENIAC. First computer around the world (USA). 1946.</strong><br />
</br></p>
<p><img src="" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.art2dec.com/paw/?feed=rss2&#038;p=3529</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reference cards (cheat sheets) collection.</title>
		<link>http://www.art2dec.com/paw/?p=3508</link>
		<comments>http://www.art2dec.com/paw/?p=3508#comments</comments>
		<pubDate>Tue, 19 Mar 2013 06:16:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Application Servers]]></category>
		<category><![CDATA[Architecture]]></category>
		<category><![CDATA[BPM&AIA&DI]]></category>
		<category><![CDATA[Glassfish Server]]></category>
		<category><![CDATA[JEE]]></category>
		<category><![CDATA[Main]]></category>
		<category><![CDATA[MySql]]></category>
		<category><![CDATA[OAS Server]]></category>
		<category><![CDATA[OOP]]></category>
		<category><![CDATA[Operating Systems]]></category>
		<category><![CDATA[Oracle RDBMS]]></category>
		<category><![CDATA[SOA]]></category>
		<category><![CDATA[UML]]></category>

		<guid isPermaLink="false">http://www.art2dec.com/paw/?p=3508</guid>
		<description><![CDATA[Reference cards (cheat sheets) collection. Ada &#8211; The permanent link to cards: Ada cards. Admintools &#8211; The permanent link to cards: Admintools cards. Agile &#8211; The permanent link to cards: Agile cards. Ajax &#8211; The permanent link to cards: Ajax cards. Apache &#8211; The permanent link to cards: Apache cards. Cheatography &#8211; The permanent link [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Reference cards (cheat sheets) collection.</strong></p>
<ul>
<li>Ada &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=d8b344c97775b7b0cb742be7be8a1834" target="_blank"> Ada cards. </a></li>
<li>Admintools &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=ebb0c22083ce815baa6008b11f292094" target="_blank"> Admintools cards.</a></li>
<li>Agile &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=b6a73dc16cf0bbf8e2e188026fbe2758" target="_blank"> Agile cards.</a></li>
<li>Ajax &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=472fcc16c0894a52bc82dce2ef1657b4" target="_blank"> Ajax cards.</a></li>
<li>Apache &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=cddfa9f2ccc377f8f042783f1c8d54c1" target="_blank"> Apache cards.</a></li>
<li>Cheatography &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&#038;t=fb7b40f1e7fb3b684ffa05db08e68be1" target="_blank"> Cheatography cards.</a></li>
<li>ControlVersionSystems &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=74c55f9aa0da223dbddf711df7873652" target="_blank"> ControlVersionSystems cards.</a></li>
<li>CSS &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=141c421a266c7949669fc4144b12f4f8" target="_blank"> CSS cards.</a></li>
<li>DesignPatterns &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=aca3825708480cc524abb7e2b576e764" target="_blank"> DesignPaterns cards.</a></li>
<li>DZoneReferenceCards &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=91ffb038356ce3e857f5be088e27776a" target="_blank"> DZone Reference cards.</a></li>
<li>Google &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=6b1e2f6422461737da2ed98640b49889" target="_blank"> Google  cards.</a></li>
<li>HTML &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=9fc01d2ebe871ff4abebfc3a8e7ec736" target="_blank"> HTML cards.</a></li>
<li>Java &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=64de657c0cc074b9318aa02903f92258" target="_blank"> Java cards.</a></li>
<li>JavaScript &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=db50d7fc6d92bd1258092e4eeb47f500" target="_blank"> JavaScript cards.</a></li>
<li>JQuery &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=0a9e8946525820660dd76f0c17648a89" target="_blank"> JQuery  cards.</a></li>
<li>Makeuseof &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&#038;t=b82d70e4213557e2aaf08138ac700b1f" target="_blank"> Makeuseof cards.</a></li>
<li>Microsoft &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=24bbdae1b2e006453ef98a95ee66d590" target="_blank"> Microsoft cards.</a></li>
<li>MySQL &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=18fbb1924b2adb0cba7ff22461926928" target="_blank"> MySQL  cards.</a></li>
<li>OpenERP &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&#038;t=d6f5650fd0ec4d54b52e7b306e6237d7" target="_blank"> OpenERP  cards.</a></li>
<li>Oracle &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=755aab397fd2a167a2ccd5d1d54d7def" target="_blank"> Oracle cards.</a></li>
<li>Others &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=9daef4cac5c4676f3643d42cbbeed43f" target="_blank"> Other cards.</a></li>
<li>Perl &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=9d0239303840bdff24759211a3eeaf1b" target="_blank"> Perl cards.</a></li>
<li>Php &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=0e91c83822f365e5dfcfd9fe20e0d77c" target="_blank"> Php cards.</a></li>
<li>Python &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=10d6096f20b6e818fac0732dbe30fd36" target="_blank"> Python  cards.</a></li>
<li>Regular Expressions &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=0cbc5c610600c95a3c720a1d0e22acd8" target="_blank"> Regular Expressions cards.</a></li>
<li>RSS &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=d3f18529d60d102b9302b561654715e8" target="_blank"> RSS cards.</a></li>
<li>Ruby &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=d11a3f53cb9e12c070359412b8948309" target="_blank"> Ruby cards.</a></li>
<li>Stl &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=c5d63d3d893cd1ccde89fb7732304bcb" target="_blank"> Stl cards.</a></li>
<li>UML &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=cb521c701f944d0783e46aaa6802e684" target="_blank"> UML cards.</a></li>
<li>Unix and Linux &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=c075fc40744dcd3bf610ba93c6b4d32c" target="_blank"> Unix and Linux cards.</a></li>
<li>VisiBone Reference Cards &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=674771e3f4e4d0404095abe362221eb4" target="_blank"> VisiBone cards.</a></li>
<li>Web Design &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=2fb9e5ed43691a26ddffefdcd585ea38" target="_blank"> Web Design cards.</a></li>
<li>XML &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=3255c9bf2194100c34c6b9e00a98c2b7" target="_blank"> XML cards.</a></li>
<li>XSLT and XPath &#8211; The permanent link to cards: <a href="http://www.art2dec.com/owncloud/public.php?service=files&amp;t=d92531de16c168c56e8f1394324203b2" target="_blank"> XSLT and XPath cards.</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.art2dec.com/paw/?feed=rss2&#038;p=3508</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>History of Programming Languages.</title>
		<link>http://www.art2dec.com/paw/?p=3490</link>
		<comments>http://www.art2dec.com/paw/?p=3490#comments</comments>
		<pubDate>Fri, 18 Jan 2013 10:59:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://www.art2dec.com/paw/?p=3490</guid>
		<description><![CDATA[History of Programming Languages at chart. From Fortran to Java 7 and Ada 2012. Timeline by Eric Levenez, 2012.]]></description>
			<content:encoded><![CDATA[<p><strong>History of Programming Languages at chart. From Fortran to Java 7 and Ada 2012.</strong><br />
Timeline by Eric Levenez, 2012.<br />
</br></p>
<p style="text-align: center;">
]]></content:encoded>
			<wfw:commentRss>http://www.art2dec.com/paw/?feed=rss2&#038;p=3490</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>History of Windows.</title>
		<link>http://www.art2dec.com/paw/?p=3486</link>
		<comments>http://www.art2dec.com/paw/?p=3486#comments</comments>
		<pubDate>Fri, 18 Jan 2013 10:48:54 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Architecture]]></category>
		<category><![CDATA[Main]]></category>

		<guid isPermaLink="false">http://www.art2dec.com/paw/?p=3486</guid>
		<description><![CDATA[History of Windows at chart. From QDOS 0.1 to Windows Phone 8. Timeline by Eric Levenez, 2012.]]></description>
			<content:encoded><![CDATA[<p><strong>History of Windows at chart. From QDOS 0.1 to Windows Phone 8.</strong><br />
Timeline by Eric Levenez, 2012.<br />
</br></p>
<p style="text-align: center;">
]]></content:encoded>
			<wfw:commentRss>http://www.art2dec.com/paw/?feed=rss2&#038;p=3486</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
