<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<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/"
	>

<channel>
	<title>movable-type &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/movable-type/</link>
	<description>Feed of posts on WordPress.com tagged "movable-type"</description>
	<pubDate>Sat, 28 Nov 2009 09:53:54 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[Importando de Movable Type a WordPress.]]></title>
<link>http://lavictacora.wordpress.com/2009/11/16/importando-de-movable-type-a-wordpress/</link>
<pubDate>Mon, 16 Nov 2009 02:15:04 +0000</pubDate>
<dc:creator>venosov</dc:creator>
<guid>http://lavictacora.wordpress.com/2009/11/16/importando-de-movable-type-a-wordpress/</guid>
<description><![CDATA[He: Usado la utilidad EXPORT de Movable Type Versión 2.661 de Movable Type para generar el archivo v]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>He:</p>
<ol>
<li>Usado la utilidad EXPORT de Movable Type <strong>Versión 2.661</strong> de Movable Type para generar el archivo victacora.export</li>
<li>Modificado el template Main Index (previa copia de seguridad) para que tenga este contenido:
<pre>&#60;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&#62;

&#60;html xmlns="http://www.w3.org/1999/xhtml"&#62;

&#60;head&#62;

&#60;meta http-equiv="Content-Type" content="text/html; charset=&#60;$MTPublishCharset$&#62;" /&#62;

&#60;meta name="description" content="&#60;$MTBlogDescription$&#62;" /&#62;

&#60;title&#62;La victácora de Viktor: VICTÁCORA RAHIM&#60;/title&#62;

&#60;link rel="stylesheet" href="&#60;$MTBlogURL$&#62;styles-site.css" type="text/css"
title="Themed Page Style" media="screen" /&#62;

&#60;link rel="alternate" type="application/rss+xml" title="RSS" href="&#60;$MTBlogURL$&#62;index.xml"
/&#62;

&#60;link rel="alternate" type="application/atom+xml" title="Atom" href="&#60;$MTBlogURL$&#62;atom.xml"
/&#62;

&#60;link rel="EditURI" type="application/rsd+xml" title="RSD" href="&#60;$MTBlogURL$&#62;rsd.xml" /&#62;

&#60;MTBlogIfCCLicense&#62;

&#60;$MTCCLicenseRDF$&#62;

&#60;/MTBlogIfCCLicense&#62;

&#60;META HTTP-EQUIV="Refresh" CONTENT="0; URL=http://lavictacora.wordpress.com/"&#62;

&#60;/head&#62;

&#60;body&#62;

Redirigiendo ...&#60;a href="http://lavictacora.wordpress.com/"&#62;tambi&#38;eacute;n
puedes pulsar aqu&#38;iacute; para acceder.&#60;/a&#62;

&#60;/body&#62;

&#60;/html&#62;
</pre>
</li>
<li><a title="Download python" href="http://www.python.org/download/" target="_blank">Instalado</a> <a title="Python para windows" href="http://www.python.org/ftp/python/2.6.4/python-2.6.4.msi" target="_blank">python</a> en mi Windows XP y añadido C:\Python26\python.exe  a la variable de entorno path.</li>
<li>Creado el archivo iso2utf.py con <a title="Convert iso to utf" href="http://miscoranda.com/96" target="_blank">este contenido</a>:
<pre>#!/usr/bin/python
"""Convert iso-8859-1 to utf-8. Sean B. Palmer."""

import sys, re; r_iso = re.compile('([\x80-\xFF])')

def iso2utf(s):
   def conv(m):
      c = m.group(0)
      return ('\xC2'+c, '\xC3'+chr(ord(c) - 64))[ord(c) &#62; 0xBF]
   return r_iso.sub(conv, s)

def main(argv=None):
   if argv is None: argv = sys.argv[1:]
   for fn in argv:
      s = iso2utf(open(fn).read())
      open(fn, 'w').write(s)
   if not argv: sys.stdout.write(iso2utf(sys.stdin.read()))

if __name__=="__main__":
   main()
</pre>
</li>
<li>Hecho una copia de victacora.export y la llamo victacora.export.utf</li>
<li>Ejecutado: python iso2utf.py victacora.export.utf</li>
<li>Creado una copia de victacora.export.utf llamada victacora.tmp</li>
<li>Seguido el siguiente procedimiento hasta exportar todas las entradas:
<ol>
<li>ejecutar la herramienta &#8220;Importar Movable Type o TypePad&#8221; WordPress (tuve 3 tipos distintos de finalización de ejecución: uno que indica que la importación se ha hecho -lo cual era mentira-, otro en el que la página se quda en blanco pero en el Firefox se puede leer Terminado en la esquina inferior izquierda y otra que es como la anterior salvo que ves trazas del proceso; así que hay ir al blog y ver por cuál se ha quedado).</li>
<li>Si quedan entradas sin exportar, quitar de victora.tmp las entradas exportadas.</li>
</ol>
</li>
</ol>
<p>El punto 3 es debido a que &#8220;WordPress uses UTF-8 as the default encoding. So if your MT blog uses ISO 8859-1 or Latin &#8211; 1 to encode posts, convert the posts to UTF-8 before importing, to ensure that all characters display properly.&#8221;</p>
<p><a title="MT2WordPress" href="http://codex.wordpress.org/Importing_from_Movable_Type_to_WordPress" target="_blank">Esta web</a> me ha sido de utilidad.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[MT5 はブログから CMS に向かう]]></title>
<link>http://ounziw.com/2009/10/26/mt5-cms/</link>
<pubDate>Mon, 26 Oct 2009 02:28:46 +0000</pubDate>
<dc:creator>Fumito Mizuno</dc:creator>
<guid>http://ounziw.com/2009/10/26/mt5-cms/</guid>
<description><![CDATA[Movable Type 5 が 11 月にリリースされるらしいので、ベータ版をインストールしてみました。 ざっと触ったところ、CMS として洗練された作り、という印象を受けました。ブログをコンテンツ]]></description>
<content:encoded><![CDATA[Movable Type 5 が 11 月にリリースされるらしいので、ベータ版をインストールしてみました。 ざっと触ったところ、CMS として洗練された作り、という印象を受けました。ブログをコンテンツ]]></content:encoded>
</item>
<item>
<title><![CDATA[.: Ya mero llegamos a Veracrzu!!]]></title>
<link>http://tomateotra.wordpress.com/2009/10/20/ya-mero-llegamos-a-veracrzu/</link>
<pubDate>Tue, 20 Oct 2009 05:33:09 +0000</pubDate>
<dc:creator>zero2x</dc:creator>
<guid>http://tomateotra.wordpress.com/2009/10/20/ya-mero-llegamos-a-veracrzu/</guid>
<description><![CDATA[No me chingues!! Me cae que por eso estamos como estamos, si ni los letreros federales están bien es]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>No me chingues!! Me cae que por eso estamos como estamos, si ni los letreros federales están bien escritos jaja, este lo pueden encontrar en la carretera Cardel &#8211; Palma Sola, justo frente a Laguna Verde.</p>
<p><a href="http://tomateotra.wordpress.com/files/2009/10/dsc01695.jpg"><img class="aligncenter size-full wp-image-1034" title="dsc01695" src="http://tomateotra.wordpress.com/files/2009/10/dsc01695.jpg" alt="dsc01695" width="500" height="375" /></a></p>
<p><a href="http://tomateotra.wordpress.com/files/2009/10/dsc01695.jpg"></a><a title="mexico" href="http://www.visitmexico.com/wb/Visitmexico/Visi_Home?show=regions"><img src="http://tomateotra.files.wordpress.com/2007/09/mexico.png" alt="mexico.png" /> </a> <a title="firefoxl.png" href="http://www.mozilla-europe.org/es/products/firefox/"><img src="http://tomateotra.files.wordpress.com/2007/01/firefoxl.png" alt="firefoxl.png" /></a> <a title="ubuntum.png" href="http://www.ubuntu.com/"><img src="http://tomateotra.files.wordpress.com/2007/01/ubuntum.png" alt="ubuntum.png" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[.: Cuadros chingones para la sala!!]]></title>
<link>http://tomateotra.wordpress.com/2009/10/20/cuadros-chingones-para-la-sala/</link>
<pubDate>Tue, 20 Oct 2009 05:31:32 +0000</pubDate>
<dc:creator>zero2x</dc:creator>
<guid>http://tomateotra.wordpress.com/2009/10/20/cuadros-chingones-para-la-sala/</guid>
<description><![CDATA[A la sala de tu casa le hace falta que le pongas arte, y qué mejor que arte chingón!!, por eso te re]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">A la sala de tu casa le hace falta que le pongas arte, y qué mejor que arte chingón!!, por eso te recomiendo estos cuadros chingones, para que tu sala chingona se vea aún más chingona!!</p>
<p><a href="http://tomateotra.wordpress.com/files/2009/10/dsc01475.jpg"><img class="aligncenter size-full wp-image-1038" title="dsc01475" src="http://tomateotra.wordpress.com/files/2009/10/dsc01475.jpg" alt="dsc01475" width="500" height="375" /></a></p>
<p>No me chingues!!</p>
<p><a title="mexico" href="http://www.visitmexico.com/wb/Visitmexico/Visi_Home?show=regions"><img src="http://tomateotra.files.wordpress.com/2007/09/mexico.png" alt="mexico.png" /> </a> <a title="firefoxl.png" href="http://www.mozilla-europe.org/es/products/firefox/"><img src="http://tomateotra.files.wordpress.com/2007/01/firefoxl.png" alt="firefoxl.png" /></a> <a title="ubuntum.png" href="http://www.ubuntu.com/"><img src="http://tomateotra.files.wordpress.com/2007/01/ubuntum.png" alt="ubuntum.png" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[.: La peluquera maldita VS la güera saca ojos!!]]></title>
<link>http://tomateotra.wordpress.com/2009/10/17/la-peluquera-maldita-vs-la-guera-saca-ojos/</link>
<pubDate>Sat, 17 Oct 2009 05:17:19 +0000</pubDate>
<dc:creator>zero2x</dc:creator>
<guid>http://tomateotra.wordpress.com/2009/10/17/la-peluquera-maldita-vs-la-guera-saca-ojos/</guid>
<description><![CDATA[No tengo palabras jajaja, simplemente sensacional!! Chequen el minuto 1:13 -Te odio!! -Yo te odio má]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>No tengo palabras jajaja, simplemente sensacional!! Chequen el minuto 1:13</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/ULoo3LsOgqg&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/ULoo3LsOgqg&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>-Te odio!!</p>
<p>-Yo te odio más!!</p>
<p>-No!!!! yo te odio más que lo que tu me odias!!</p>
<p><a title="mexico" href="http://www.visitmexico.com/wb/Visitmexico/Visi_Home?show=regions"><img src="http://tomateotra.files.wordpress.com/2007/09/mexico.png" alt="mexico.png" /> </a> <a title="firefoxl.png" href="http://www.mozilla-europe.org/es/products/firefox/"><img src="http://tomateotra.files.wordpress.com/2007/01/firefoxl.png" alt="firefoxl.png" /></a> <a title="ubuntum.png" href="http://www.ubuntu.com/"><img src="http://tomateotra.files.wordpress.com/2007/01/ubuntum.png" alt="ubuntum.png" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[.: AYUDA!! - Alguien sabe cómo se llama esta canción??]]></title>
<link>http://tomateotra.wordpress.com/2009/10/16/ayuda-alguien-sabe-como-se-llama-esta-cancion/</link>
<pubDate>Sat, 17 Oct 2009 04:51:48 +0000</pubDate>
<dc:creator>zero2x</dc:creator>
<guid>http://tomateotra.wordpress.com/2009/10/16/ayuda-alguien-sabe-como-se-llama-esta-cancion/</guid>
<description><![CDATA[Apareció años atrás en Nintendomanía cuando anunciaban a Zelda Ocarina of Time, apareció en el Docum]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">Apareció años atrás en Nintendomanía cuando anunciaban a Zelda Ocarina of Time, apareció en el Documental de La Reina Roja Misterio Maya (mandé varios correos a los productores y los putos nunca respondieron), y bueno hoy viendo la TV la escuche con esta serie nueva.</p>
<p><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/SaBihTobsKs&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/SaBihTobsKs&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p>Alguien sabe cómo se llama esta canción??</p>
<p>Alguien sabe cómo se llama esta canción??</p>
<p>Alguien sabe cómo se llama esta canción??</p>
<p><span style="color:#ffffff;">Y siento recurrir a esto, pero es lo que más gente atrae y lo que google busca y más gente vera el post: PSP, iPhone, iPod Touch, Xbox 360, Playstation 3, Porno, XXX</span></p>
<p><a title="mexico" href="http://www.visitmexico.com/wb/Visitmexico/Visi_Home?show=regions"><img src="http://tomateotra.files.wordpress.com/2007/09/mexico.png" alt="mexico.png" /> </a> <a title="firefoxl.png" href="http://www.mozilla-europe.org/es/products/firefox/"><img src="http://tomateotra.files.wordpress.com/2007/01/firefoxl.png" alt="firefoxl.png" /></a> <a title="ubuntum.png" href="http://www.ubuntu.com/"><img src="http://tomateotra.files.wordpress.com/2007/01/ubuntum.png" alt="ubuntum.png" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[.: Precausión esta unidad noes de alta velosidad!!]]></title>
<link>http://tomateotra.wordpress.com/2009/10/16/precausion-esta-unidad-noes-de-alta-velosidad/</link>
<pubDate>Fri, 16 Oct 2009 16:32:24 +0000</pubDate>
<dc:creator>zero2x</dc:creator>
<guid>http://tomateotra.wordpress.com/2009/10/16/precausion-esta-unidad-noes-de-alta-velosidad/</guid>
<description><![CDATA[Es increíble lo que uno se puede encontrar viajando en carretera jaja. Ora si que no me chingues!! y]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">Es increíble lo que uno se puede encontrar viajando en carretera jaja. Ora si que no me chingues!! y lo peor del caso es que lo de los lados si lo escribieron bien jaja. Por eso estamos como estamos&#8230;</p>
<p style="text-align:justify;"><a href="http://tomateotra.wordpress.com/files/2009/10/dsc01780.jpg"><img class="aligncenter size-full wp-image-1031" title="dsc01780" src="http://tomateotra.wordpress.com/files/2009/10/dsc01780.jpg" alt="dsc01780" width="500" height="375" /></a></p>
<p style="text-align:justify;">
<p><a title="mexico" href="http://www.visitmexico.com/wb/Visitmexico/Visi_Home?show=regions"><img src="http://tomateotra.files.wordpress.com/2007/09/mexico.png" alt="mexico.png" /> </a> <a title="firefoxl.png" href="http://www.mozilla-europe.org/es/products/firefox/"><img src="http://tomateotra.files.wordpress.com/2007/01/firefoxl.png" alt="firefoxl.png" /></a> <a title="ubuntum.png" href="http://www.ubuntu.com/"><img src="http://tomateotra.files.wordpress.com/2007/01/ubuntum.png" alt="ubuntum.png" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Just Hit Print... Letterpress]]></title>
<link>http://kellyjcallahan.wordpress.com/2009/10/14/just-hit-print-letterpress/</link>
<pubDate>Wed, 14 Oct 2009 08:00:58 +0000</pubDate>
<dc:creator>kellyjcallahan</dc:creator>
<guid>http://kellyjcallahan.wordpress.com/2009/10/14/just-hit-print-letterpress/</guid>
<description><![CDATA[Letterpress printing is the relief printing of text and image using a press with &#8220;high bed]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Letterpress printing is the relief printing of text and image using a press with &#8220;high bed&#8221; printing press and <a href="http://en.wikipedia.org/wiki/Movable_type" target="_blank">movable type</a>.  The image on the press is a reverse raised surface, which is inked and then pressed into a sheet of paper. The image produced on the paper is a &#8220;positive&#8221; right reading page. Letterpress can also refer to the direct impression of inked printmaking blocks (block printing).</p>
<p>Letterpress printing from raised metal type was the primary means of mass communication for over 500 years. Since the advent of phototypography and offset printing, letterpress printing is no longer an economically significant segment of the printing market. But letterpress continues to live on for specialized printing applications.</p>
<p><span style="font-size:x-small;"><img class="aligncenter size-full wp-image-421" title="letterpress1" src="http://kellyjcallahan.wordpress.com/files/2009/10/letterpress1.jpg" alt="letterpress1" width="418" height="448" /><br />
</span></p>
<p><strong>Rise of the Craft Printer</strong></p>
<p>In the past 20 years letterpress printing has been experiencing a comeback. The current renaissance of letterpress printing has created a crop of hobby press shops that are driven by a love of the craft.</p>
<p><strong>Advantages of Letterpress</strong></p>
<ul>
<li>Fine letterpress work is crisper than offset printing. It leaves an impression in the paper, giving visual definition to the type and artwork.</li>
<li>Letterpress gives you a wider range of paper, including handmade, organic, and tree free.</li>
<li>Letterpress has a more tactile &#8220;feel&#8221; then offset printing.</li>
<li>Embossing, die cutting and foiling are done with letterpress printing press.</li>
</ul>
<p><strong>Disadvantages of Letterpress</strong></p>
<ul>
<li>Most letterpress equipment only prints on color at a time.</li>
<li>The inking system on the equipment is less precise then offset printing.</li>
<li>While letterpress does register, it does not have the capabilities of modern offset printing.</li>
<li>Trapping and key lines do not work well in letterpress printing</li>
</ul>
<p><strong>Examples of Letterpress Printing</strong></p>
<ul>
<li>Hibiscus Card by <a href="http://www.etsy.com/shop.php?user_id=6271302" target="_blank">Letterpress Light</a>*</li>
<li>Aspen Leaves Gift Tags by <a href="http://www.etsy.com/shop.php?user_id=5280115">Dingbat Press</a></li>
<li>Newborn Baby Card by <a href="http://www.etsy.com/shop.php?user_id=5364464" target="_blank">Sweetbeets</a></li>
</ul>
<p><img class="aligncenter size-full wp-image-424" title="letterpress2" src="http://kellyjcallahan.wordpress.com/files/2009/10/letterpress2.jpg" alt="letterpress2" width="450" height="97" /></p>
<ul>
<li>Scarlet Blossoming Flower Coasters by <a href="http://www.etsy.com/shop.php?user_id=5394176" target="_blank">Ruby Press</a></li>
<li>Eyelet Lace by <a href="http://www.etsy.com/shop.php?user_id=5192289" target="_blank">Pistachio Press</a></li>
<li>Thank You Notecards by <a href="http://www.etsy.com/shop.php?user_id=7552940" target="_blank">Missive</a></li>
</ul>
<p><img class="aligncenter size-full wp-image-428" title="letterpress3" src="http://kellyjcallahan.wordpress.com/files/2009/10/letterpress3.jpg" alt="letterpress3" width="450" height="104" /></p>
<p>Hope you enjoyed this little snippet about letterpress, next up intaglio.</p>
<p><em>*Heather of LetterPress Light would to disclose that she doesn&#8217;t do &#8216;regular&#8217; letterpress printing.  She overlays un-inked printing plates over designs that are first printed on a printer onto letterpress paper.  This gives both the texture of letterpress and the color range of flat printing.</em></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Warning! Erkan is working on a new design]]></title>
<link>http://erkansaka.net/2009/10/01/warning-erkan-is-working-on-a-new-design/</link>
<pubDate>Thu, 01 Oct 2009 06:27:02 +0000</pubDate>
<dc:creator>erkan</dc:creator>
<guid>http://erkansaka.net/2009/10/01/warning-erkan-is-working-on-a-new-design/</guid>
<description><![CDATA[last update: 01 October 2009 post-service settlement -Part III Since I had become a free man again, ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>last update: 01 October 2009</strong></p>
<p>post-service settlement -Part III</p>
<p>Since I had become a free man again, one of the most productive things I am working on is the new design. I am just too happy with WordPress and the new theme. All goodies like ratings, or statistics, or taggins are other benefits. It seems that it works smoothly. I still have some transfer work to do but that&#8217;s all right. The static pages are also good. I will try to give news in blog posts whenever there are updates in Pages. So far, the blog has these pages:<!--more--></p>
<ul>
<li><a title="All About Erkan" href="http://erkansaka.net/about/">All About Erkan</a>
<ul>
<li><a title="Erkan and Web 2.0" href="http://erkansaka.net/about/erkan-and-web-2-0/">Erkan and Web 2.0</a></li>
<li><a title="Erkan’s Affiliations" href="http://erkansaka.net/about/erkans-affiliations/">Erkan’s Affiliations</a></li>
<li><a title="Erkan’s Dissertation Acknowledgements" href="http://erkansaka.net/about/erkans-dissertation-acknowledgements/">Erkan’s Dissertation Acknowledgements</a></li>
</ul>
</li>
<li><a title="LINKS" href="http://erkansaka.net/links/">LINKS</a>
<ul>
<li><a title="Anthropology Links" href="http://erkansaka.net/links/anthropology-links/">Anthropology Links</a></li>
<li><a title="Blogs etc" href="http://erkansaka.net/links/blogs-etc/">Blogs etc</a></li>
<li><a title="EU Rlt’d Links" href="http://erkansaka.net/links/eu-rltd-links/">EU Rlt’d Links</a></li>
</ul>
</li>
</ul>
<p>I intend to open up pages for my courses, too and of course all pages may be updated any time. We will see.</p>
<blockquote>
<h3 id="post-14816"><a title="10 Reasons to dump Blogger and date WordPress right NOW!" rel="bookmark" href="http://blog.taragana.com/index.php/archive/10-reasons-to-dump-blogger-and-date-wordpress-right-now/">10 Reasons to dump Blogger and date WordPress right NOW! </a>[this can be applied to Movable Type, too <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <a title="10 Reasons to dump Blogger and date WordPress right NOW!" rel="bookmark" href="http://blog.taragana.com/index.php/archive/10-reasons-to-dump-blogger-and-date-wordpress-right-now/"><br />
</a></h3>
</blockquote>
<p>***</p>
<p><strong>First published on Sept 20, 2009:</strong></p>
<p>I have decided to move from Movable Type to WordPress and I am working on a transfer. It is highly possible that I might mess up the stuff but I will do my best to have a smooth transition&#8230;</p>
<p>So sorry for all possible inconveniences in near future:)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[CMS比較表]]></title>
<link>http://advernya.wordpress.com/2009/09/28/free_cms%e8%a1%a8/</link>
<pubDate>Sun, 27 Sep 2009 15:01:30 +0000</pubDate>
<dc:creator>advernya</dc:creator>
<guid>http://advernya.wordpress.com/2009/09/28/free_cms%e8%a1%a8/</guid>
<description><![CDATA[CMS（コンテンツマネジメントシステム）比較表、わかりやすいのがないかなぁと探してきました。 やはり、世界標準のWordPressが 一番バランスが取れているようです。 あるくホームページ制作／フリー]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>CMS（コンテンツマネジメントシステム）比較表、わかりやすいのがないかなぁと探してきました。</p>
<h3><strong><span style="color:#ff0000;">やはり、世界標準のWordPressが<br />
一番バランスが取れているようです。</span></strong></h3>
<h3><!--more--></h3>
<h3><a title="フリーのCMS比較表" href="http://www.ark-hp.com/hp/cms2/" target="_blank">あるくホームページ制作／フリーのCMS比較表</a></h3>
<table border="0">
<tbody>
<tr>
<td></td>
<td width="50" align="center" bgcolor="#4e81bb"><span style="color:#ffffff;"><span class="style1">ライセンス</span></span></td>
<td width="50" align="center" bgcolor="#4e81bb"><span style="color:#ffffff;"><span class="style1">インストール</span></span></td>
<td width="50" align="center" bgcolor="#4e81bb"><span style="color:#ffffff;"><span class="style1">DB</span></span></td>
<td width="50" align="center" bgcolor="#4e81bb"><span style="color:#ffffff;"><span class="style1">高機能度</span></span></td>
<td width="50" align="center" bgcolor="#4e81bb"><span style="color:#ffffff;"><span class="style1">ショッピングサイト性</span></span></td>
<td width="50" align="center" bgcolor="#4e81bb"><span style="color:#ffffff;"><span class="style1">ユーザー管理</span></span></td>
<td width="50" align="center" bgcolor="#4e81bb"><span style="color:#ffffff;"><span class="style1">SEO</span></span></td>
<td width="50" align="center" bgcolor="#4e81bb"><span style="color:#ffffff;"><span class="style1">ページの軽さ</span></span></td>
<td width="50" align="center" bgcolor="#4e81bb"><span style="color:#ffffff;"><span class="style1">プラグイン</span></span></td>
</tr>
<tr>
<td bgcolor="#ffff00">WordPress</td>
<td align="center" bgcolor="#ffff00">GPL</td>
<td align="center" bgcolor="#ffff00">◎</td>
<td align="center" bgcolor="#ffff00">MySQL</td>
<td align="center" bgcolor="#ffff00">◎</td>
<td align="center" bgcolor="#ffff00">◯</td>
<td align="center" bgcolor="#ffff00">◯</td>
<td align="center" bgcolor="#ffff00">◯</td>
<td align="center" bgcolor="#ffff00">◯</td>
<td align="center" bgcolor="#ffff00">◎</td>
</tr>
<tr>
<td bgcolor="#dce6f2">Joomla!</td>
<td align="center" bgcolor="#dce6f2">GPL</td>
<td align="center" bgcolor="#dce6f2">◯</td>
<td align="center" bgcolor="#dce6f2">MySQL</td>
<td align="center" bgcolor="#dce6f2">◎</td>
<td align="center" bgcolor="#dce6f2">◯</td>
<td align="center" bgcolor="#dce6f2">◎</td>
<td align="center" bgcolor="#dce6f2">△</td>
<td align="center" bgcolor="#dce6f2">◯</td>
<td align="center" bgcolor="#dce6f2">△</td>
</tr>
<tr>
<td bgcolor="#ffffff">Movable Type</td>
<td align="center" bgcolor="#ffffff">有料</td>
<td align="center" bgcolor="#ffffff">◎</td>
<td align="center" bgcolor="#ffffff">MySQLSQLite</td>
<td align="center" bgcolor="#ffffff">◯</td>
<td align="center" bgcolor="#ffffff">△</td>
<td align="center" bgcolor="#ffffff">×</td>
<td align="center" bgcolor="#ffffff">◎</td>
<td align="center" bgcolor="#ffffff">◎</td>
<td align="center" bgcolor="#ffffff">◎</td>
</tr>
<tr>
<td bgcolor="#dce6f2">Drupal</td>
<td align="center" bgcolor="#dce6f2">GPL</td>
<td align="center" bgcolor="#dce6f2"></td>
<td align="center" bgcolor="#dce6f2">MySQL</td>
<td align="center" bgcolor="#dce6f2"></td>
<td align="center" bgcolor="#dce6f2"></td>
<td align="center" bgcolor="#dce6f2"></td>
<td align="center" bgcolor="#dce6f2"></td>
<td align="center" bgcolor="#dce6f2"></td>
<td align="center" bgcolor="#dce6f2"></td>
</tr>
<tr>
<td bgcolor="#ffffff">Mambo</td>
<td align="center" bgcolor="#ffffff">GPL</td>
<td align="center" bgcolor="#ffffff"></td>
<td align="center" bgcolor="#ffffff">MySQL</td>
<td align="center" bgcolor="#ffffff"></td>
<td align="center" bgcolor="#ffffff"></td>
<td align="center" bgcolor="#ffffff"></td>
<td align="center" bgcolor="#ffffff"></td>
<td align="center" bgcolor="#ffffff"></td>
<td align="center" bgcolor="#ffffff"></td>
</tr>
<tr>
<td bgcolor="#dce6f2">XOOPS</td>
<td align="center" bgcolor="#dce6f2">GPL</td>
<td align="center" bgcolor="#dce6f2">◎</td>
<td align="center" bgcolor="#dce6f2">MySQL</td>
<td align="center" bgcolor="#dce6f2">◎</td>
<td align="center" bgcolor="#dce6f2">◯</td>
<td align="center" bgcolor="#dce6f2">◯</td>
<td align="center" bgcolor="#dce6f2">△</td>
<td align="center" bgcolor="#dce6f2">△</td>
<td align="center" bgcolor="#dce6f2">◎</td>
</tr>
<tr>
<td bgcolor="#ffffff">Geeklog</td>
<td align="center" bgcolor="#ffffff">GPL</td>
<td align="center" bgcolor="#ffffff">△</td>
<td align="center" bgcolor="#ffffff">MySQL</td>
<td align="center" bgcolor="#ffffff">◎</td>
<td align="center" bgcolor="#ffffff">◯</td>
<td align="center" bgcolor="#ffffff">◯</td>
<td align="center" bgcolor="#ffffff">◯</td>
<td align="center" bgcolor="#ffffff">◯</td>
<td align="center" bgcolor="#ffffff">◯</td>
</tr>
<tr>
<td bgcolor="#dce6f2">ZenCart</td>
<td align="center" bgcolor="#dce6f2">GPL</td>
<td align="center" bgcolor="#dce6f2">◎</td>
<td align="center" bgcolor="#dce6f2">MySQL</td>
<td align="center" bgcolor="#dce6f2">◎</td>
<td align="center" bgcolor="#dce6f2">◎</td>
<td align="center" bgcolor="#dce6f2">◎</td>
<td align="center" bgcolor="#dce6f2">△</td>
<td align="center" bgcolor="#dce6f2">△</td>
<td align="center" bgcolor="#dce6f2">◯</td>
</tr>
<tr>
<td bgcolor="#ffffff">Nucleus</td>
<td align="center" bgcolor="#ffffff">GPL</td>
<td align="center" bgcolor="#ffffff">◯</td>
<td align="center" bgcolor="#ffffff">MySQL</td>
<td align="center" bgcolor="#ffffff">◎</td>
<td align="center" bgcolor="#ffffff">◯</td>
<td align="center" bgcolor="#ffffff">◎</td>
<td align="center" bgcolor="#ffffff">◯</td>
<td align="center" bgcolor="#ffffff">◯</td>
<td align="center" bgcolor="#ffffff">◯</td>
</tr>
<tr>
<td bgcolor="#dce6f2">EC-CUBE</td>
<td align="center" bgcolor="#dce6f2">GPL</td>
<td align="center" bgcolor="#dce6f2">△</td>
<td align="center" bgcolor="#dce6f2">MySQLPostgres</td>
<td align="center" bgcolor="#dce6f2">◎</td>
<td align="center" bgcolor="#dce6f2">◯</td>
<td align="center" bgcolor="#dce6f2">◎</td>
<td align="center" bgcolor="#dce6f2">△</td>
<td align="center" bgcolor="#dce6f2">◯</td>
<td align="center" bgcolor="#dce6f2">×</td>
</tr>
<tr>
<td bgcolor="#ffffff">OpenPNE</td>
<td align="center" bgcolor="#ffffff">GPL</td>
<td align="center" bgcolor="#ffffff">△</td>
<td align="center" bgcolor="#ffffff">MySQL</td>
<td align="center" bgcolor="#ffffff">◎</td>
<td align="center" bgcolor="#ffffff">×</td>
<td align="center" bgcolor="#ffffff">◎</td>
<td align="center" bgcolor="#ffffff">×</td>
<td align="center" bgcolor="#ffffff">△</td>
<td align="center" bgcolor="#ffffff">△</td>
</tr>
</tbody>
</table>
<h3><a title="オープンソースCMS比較表" href="http://opensourcecms.blog122.fc2.com/blog-entry-3.html" target="_blank">オープンソースCMS機能比較一覧表</a></h3>
<table border="0">
<tbody>
<tr>
<td align="center" bgcolor="#4e81bb"><span style="color:#ffffff;"><span class="style1">CMS名</span></span></td>
<td align="center" bgcolor="#4e81bb"><span style="color:#ffffff;"><span class="style1">動作環境<br />
（必須条件）</span></span></td>
<td align="center" bgcolor="#4e81bb"><span style="color:#ffffff;"><span class="style1">種類</span></span></td>
<td align="center" bgcolor="#4e81bb"><span style="color:#ffffff;"><span class="style1">難易度</span></span></td>
<td align="center" bgcolor="#4e81bb"><span style="color:#ffffff;"><span class="style1">特徴</span></span></td>
<td align="center" bgcolor="#4e81bb"><span style="color:#ffffff;"><span class="style1">日本語情報 </span></span></td>
</tr>
<tr>
<td bgcolor="#ffff00">Word Press</td>
<td bgcolor="#ffff00">PHP 4.3MySQL 4.0</td>
<td bgcolor="#ffff00">ブログ、一般</td>
<td bgcolor="#ffff00">上</td>
<td bgcolor="#ffff00">ブログ系CMSだが、モジュールや テンプレート等が多く一般サイトとしても使用可能</td>
<td bgcolor="#ffff00">多い</td>
</tr>
<tr>
<td bgcolor="#dce6f2">Joomla!</td>
<td bgcolor="#dce6f2">PHP 4.3MySQL 3.23</td>
<td bgcolor="#dce6f2">一般、ポータル、コミュニティ</td>
<td bgcolor="#dce6f2">上</td>
<td bgcolor="#dce6f2">デザイン変更が柔軟で高機能、海外で人気抜群</td>
<td bgcolor="#dce6f2">普通</td>
</tr>
<tr>
<td>Drupal</td>
<td>PHP 4.3.5MySQL 4.1</td>
<td>一般、ポータル</td>
<td>上</td>
<td>シンプル。インストールがやや難しい</td>
<td>普通</td>
</tr>
<tr>
<td bgcolor="#dce6f2">Mambo</td>
<td bgcolor="#dce6f2">php+MySQL</td>
<td bgcolor="#dce6f2">一般、ポータル、コミュニティ</td>
<td bgcolor="#dce6f2">上</td>
<td bgcolor="#dce6f2">Joomla!の元で、Mamboじゃぱんは休止中</td>
<td bgcolor="#dce6f2">普通</td>
</tr>
<tr>
<td>XOOPS</td>
<td>PHP 4.3.2MySQL 4.1</td>
<td>ポータル、コミュニティ</td>
<td>初</td>
<td>手軽にコミュニティサイトが構築可能。日本語情報多数あり</td>
<td>多い</td>
</tr>
<tr>
<td bgcolor="#dce6f2">Geeklog</td>
<td bgcolor="#dce6f2">PHP 4.3.0MySQL 3.23</td>
<td bgcolor="#dce6f2">ポータル、ブログ、コミュニティ</td>
<td bgcolor="#dce6f2">中</td>
<td bgcolor="#dce6f2">動作が軽く高機能</td>
<td bgcolor="#dce6f2">少ない</td>
</tr>
<tr>
<td>Zen Cart</td>
<td>PHP 4.1.xMySQL 3.2.x</td>
<td>ショッピングサイト</td>
<td>中</td>
<td>OsCommerceのフォークで、使いやすい</td>
<td>普通</td>
</tr>
<tr>
<td bgcolor="#dce6f2">Nucleus</td>
<td bgcolor="#dce6f2">PHP 4.0.6MySQL 3.23</td>
<td bgcolor="#dce6f2">ブログ</td>
<td bgcolor="#dce6f2">中</td>
<td bgcolor="#dce6f2">モジュール多数</td>
<td bgcolor="#dce6f2">普通</td>
</tr>
<tr>
<td>EC-CUBE</td>
<td>PHP 4.1.xMySQL 4.1</td>
<td>ショッピングサイト</td>
<td>初</td>
<td>和製CMSで分かり易い</td>
<td>普通</td>
</tr>
<tr>
<td bgcolor="#dce6f2">OpenPNE</td>
<td bgcolor="#dce6f2">PHP 5.2.3MySQL 4.1</td>
<td bgcolor="#dce6f2">SNS</td>
<td bgcolor="#dce6f2">中</td>
<td bgcolor="#dce6f2">和製CMSで分かり易い</td>
<td bgcolor="#dce6f2">普通</td>
</tr>
<tr>
<td>concrete5</td>
<td>PHP 5.1.xMySQL 4.1</td>
<td>一般</td>
<td>上</td>
<td>直感的に管理操作ができる。日本語サイトもあり。</td>
<td>少ない</td>
</tr>
<tr>
<td bgcolor="#dce6f2">e107</td>
<td bgcolor="#dce6f2">PHP 4.3.0MySQL 3.22</td>
<td bgcolor="#dce6f2">ポータル</td>
<td bgcolor="#dce6f2">中</td>
<td bgcolor="#dce6f2">動作が軽く高機能</td>
<td bgcolor="#dce6f2">少ない</td>
</tr>
<tr>
<td>MediaWiki</td>
<td>PHP 5.1.xMySQL 4.0</td>
<td>Wiki</td>
<td>上</td>
<td>ウィキペディアのために開発されたCMS。カスタマイズにはHTMLやPHPの知識が必要</td>
<td>多い</td>
</tr>
<tr>
<td bgcolor="#dce6f2">MODx</td>
<td bgcolor="#dce6f2">PHP 4.3.10MySQL 4.1.x</td>
<td bgcolor="#dce6f2">ポータル</td>
<td bgcolor="#dce6f2">上</td>
<td bgcolor="#dce6f2">管理操作方法はパソコンソフトに近い</td>
<td bgcolor="#dce6f2">少ない</td>
</tr>
<tr>
<td>NetCommons</td>
<td>PHP 4.3.9MySQL 3.23</td>
<td>e-ラーニング</td>
<td>中</td>
<td>XOOPSベースのe-ラーニングCMS</td>
<td>普通</td>
</tr>
<tr>
<td bgcolor="#dce6f2">OsCommerce</td>
<td bgcolor="#dce6f2">PHP 4.1MySQL 4</td>
<td bgcolor="#dce6f2">ショッピングサイト</td>
<td bgcolor="#dce6f2">中</td>
<td bgcolor="#dce6f2">元祖ショッピングサイトのCMS。テンプレートが多い</td>
<td bgcolor="#dce6f2">多い</td>
</tr>
<tr>
<td>php-Nuke</td>
<td>PHP 4.1.xMySQL</td>
<td>一般、ポータル</td>
<td>中</td>
<td>海外で人気</td>
<td>少ない</td>
</tr>
<tr>
<td bgcolor="#dce6f2">Plone</td>
<td bgcolor="#dce6f2">python+zope</td>
<td bgcolor="#dce6f2">一般、ポータル</td>
<td bgcolor="#dce6f2">上</td>
<td bgcolor="#dce6f2">大型サイトでも管理機能充実</td>
<td bgcolor="#dce6f2">少ない</td>
</tr>
<tr>
<td>PukiWiki</td>
<td>PHP4 or PHP5MySQL不要</td>
<td>Wiki</td>
<td>中</td>
<td>日本製なのでプラグインや情報が多い。データベース不要で手軽。</td>
<td>多い</td>
</tr>
<tr>
<td bgcolor="#dce6f2">Silverstripe</td>
<td bgcolor="#dce6f2">PHP 5.2.0MySQL 4.1</td>
<td bgcolor="#dce6f2">一般</td>
<td bgcolor="#dce6f2">上</td>
<td bgcolor="#dce6f2">シンプルで管理画面がわかり易い。小規模サイト向け</td>
<td bgcolor="#dce6f2">少ない</td>
</tr>
<tr>
<td>Typo3</td>
<td>PHP 5.2MySQL 4.2</td>
<td>一般、ポータル</td>
<td>上</td>
<td>日本語情報少ない</td>
<td>少ない</td>
</tr>
</tbody>
</table>
<h3><a href="http://www.itmedia.co.jp/enterprise/articles/0407/01/news002.html" target="_blank">主要Blog、CMSツール機能比較（2004年7月版）</a></h3>
<h3><a href="http://www.sixapart.jp/movabletype/cms/cms-solution-comparison.html" target="_blank">Movable Type CMS ソリューション: 他製品との比較表</a></h3>
<h3><a href="http://www.ivywe.co.jp/staticpages/index.php/cmscompare" target="_blank">CMS比較 [ Geeklog &#124; MT &#124; Drupal &#124; Joomla! &#124; MODx ]</a></h3>
<h3><a href="http://www.ubicast.com/products/opencms/compare.html" target="_blank">エンタープライズ向けCMS機能比較表</a></h3>
<h3><a href="http://www.webexp.jp/hikaku/cms/index.html" target="_blank">CMS 製品サービス価格比較</a></h3>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[.: El pixel muerto viviente!!!!]]></title>
<link>http://tomateotra.wordpress.com/2009/09/18/el-pixel-muerto-viviente/</link>
<pubDate>Sat, 19 Sep 2009 04:31:42 +0000</pubDate>
<dc:creator>zero2x</dc:creator>
<guid>http://tomateotra.wordpress.com/2009/09/18/el-pixel-muerto-viviente/</guid>
<description><![CDATA[Estaba yo trabajando alegremente en la computadora cuando veo que había una basurita en el monitor, ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">Estaba yo trabajando alegremente en la computadora cuando veo que había una basurita en el monitor, acto seguido intente limpiarlo, ahí me di cuenta que no era una basurita cualquiera, que era posible que fuera un pixel bloqueado o en el peor de los casos un pixel muerto ya que estaba por debajo de la mica del lcd y no se podía limpiar, después de un rato ya no lo vi O_o y luego lo volví a ver pero en otro lado!!, dije ah jijo!!!!, este caso está como para Maussan y Carlos Trejo!!</p>
<p style="text-align:justify;">Ya después vi que era una pinche hormiguita conchuda viviendo en mi monitor  jaja.</p>
<p style="text-align:justify;"><span style='text-align:center; display: block;'><object width='425' height='350'><param name='movie' value='http://www.youtube.com/v/uYYRyDWOhiw&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' /><param name='allowfullscreen' value='true' /><param name='wmode' value='transparent' /><embed src='http://www.youtube.com/v/uYYRyDWOhiw&#038;rel=1&#038;fs=1&#038;showsearch=0&#038;hd=0' type='application/x-shockwave-flash' allowfullscreen='true' width='425' height='350' wmode='transparent'></embed></object></span></p>
<p style="text-align:right;"><a title="mexico" href="http://www.visitmexico.com/wb/Visitmexico/Visi_Home?show=regions"><img src="http://tomateotra.files.wordpress.com/2007/09/mexico.png" alt="mexico.png" /> </a><a title="soda" href="http://creativecommons.org/licenses/by-nc-sa/2.0/" target="_blank"><img src="http://i.creativecommons.org/l/by-nc-sa/3.0/80x15.png" alt="" width="80" height="15" /></a> <a title="firefoxl.png" href="http://www.mozilla-europe.org/es/products/firefox/"><img src="http://tomateotra.files.wordpress.com/2007/01/firefoxl.png" alt="firefoxl.png" /></a> <a title="ubuntum.png" href="http://www.ubuntu.com/"><img src="http://tomateotra.files.wordpress.com/2007/01/ubuntum.png" alt="ubuntum.png" /></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Covering events sure has changed (duh!)]]></title>
<link>http://9nine9.wordpress.com/2009/09/18/covering-events-sure-has-changed-duh/</link>
<pubDate>Fri, 18 Sep 2009 22:45:38 +0000</pubDate>
<dc:creator>9nine9</dc:creator>
<guid>http://9nine9.wordpress.com/2009/09/18/covering-events-sure-has-changed-duh/</guid>
<description><![CDATA[I did something Wednesday that I hadn’t done since I was still an NYU student: I covered a live even]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>I did something Wednesday that I hadn’t done since I was still an NYU student: I covered a live event. In a shameless plug for the company that hosted it, as it happens to be the same company that employs yours truly part-time, <a title="mediabistro Think Mobile" href="http://www.mediabistro.com/thinkmobile/?c=mbevnt" target="_blank">Think Mobile</a> was a very interesting gathering, and I truly learned more in one day about technology for mobile phones and devices than I ever expected.</p>
<div class="wp-caption alignright" style="width: 180px"><a href="http://h10003.www1.hp.com/digmedialib/prodimg/lowres/c01411745.jpg"><img title="http://h10003.www1.hp.com/digmedialib/prodimg/lowres/c01411745.jpg" src="http://h10003.www1.hp.com/digmedialib/prodimg/lowres/c01411745.jpg" alt="HP 6830s" width="170" height="190" /></a><p class="wp-caption-text">HP 6830s</p></div>
<p>OK, now that I’m done brown-nosing, while riding the PATH train back to Hoboken, I kept thinking about the differences in the technology I used Wednesday and the technology, or lack thereof, I used when I covered my last live event: the NYU men’s basketball team, sadly known as the <a title="NYU Athletics" href="http://www.gonyuathletics.com/index.aspx?tab=basketball&#38;path=mbball" target="_blank">Violets</a>, losing to Glassboro State (now known as Rowan University) during the 1989-90 season.</p>
<p>On Wednesday, I used a brand-spanking-new <a title="HP 6830s" href="http://h10010.www1.hp.com/wwpc/us/en/sm/WF05a/321957-321957-64295-321838-3955547-3688712.html" target="_blank">HP 6830s</a> laptop, hooked up to a WiFi network, and I was able to post stories directly onto <a title="WebNewser" href="http://www.mediabistro.com/webnewser/" target="_blank">WebNewser</a> in seconds using a content-management system called <a title="Movable Type" href="http://www.movabletype.org/" target="_blank">Movable Type</a>.</p>
<p>Let’s just say it wasn’t quite like that in the spring of 1990.</p>
<p>I covered NYU at Glassboro State with a good, old-fashioned pen and paper, including copying down the stream of expletives from NYU’s head coach when I asked, in a completely professional tone and minus any sarcasm (<em>shocking</em> for me, I know), if he considered switching to a man-to-man defense in the second half, since NYU’s zone defense worked well enough to give its opponent a 41-14 halftime lead.</p>
<div class="wp-caption alignleft" style="width: 260px"><a href="http://upload.wikimedia.org/wikipedia/commons/thumb/0/02/Macintosh_SE_b.jpg/250px-Macintosh_SE_b.jpg"><img title="http://upload.wikimedia.org/wikipedia/commons/thumb/0/02/Macintosh_SE_b.jpg/250px-Macintosh_SE_b.jpg" src="http://upload.wikimedia.org/wikipedia/commons/thumb/0/02/Macintosh_SE_b.jpg/250px-Macintosh_SE_b.jpg" alt="Macintosh 20-SE" width="250" height="259" /></a><p class="wp-caption-text">Macintosh 20-SE</p></div>
<p>I then returned to my dorm room and crafted my story on a Macintosh SE-20. Yes, I am indeed referring to the first-generation Macs, with the six-inch, black-and-white screen built into the CPU. This powerhouse computer boasted one megabyte of memory and a whopping 20-megabyte hard drive. And yes, I do mean megabyte, not gigabyte.</p>
<p>After outdoing Grantland Rice, Ernest Hemingway and Peter Vescey, all while enjoying a couple of ice-cold long-neck bottles of Miller Lite from the little cube refrigerator in my dorm room (remember those?), I copied my masterpiece onto a floppy disk. I’m still amazed that one tiny flash drive can hold the equivalent of a crate of floppies.</p>
<p>While e-mail did exist in a somewhat primitive form back in 1990, it didn’t exist in my fraternity house. I didn’t even have a modem. So I used the earliest form of data networking to transfer the story to the offices of the school paper, the <a title="Washington Square News" href="http://www.nyunews.com/" target="_blank"><em>Washington Square News</em></a>: I walked over with the floppy. I was even prepared enough for disaster to bring a second floppy with the story on it, just in case, as there was no way I was making that trip twice.</p>
<p>And naturally, there was no way to receive the instant gratification I get when one of my stories or blogs enters cyberspace. I had to wait until Monday’s newspaper was delivered to my dorm.</p>
<p>The good old days? My ass. I’ll take the new technology, thank you very much.</p>
<div class="wp-caption aligncenter" style="width: 384px"><a href="http://www.homeofficebuddy.com/images/floppy.jpg"><img title="http://www.homeofficebuddy.com/images/floppy.jpg" src="http://www.homeofficebuddy.com/images/floppy.jpg" alt="floppy disc" width="374" height="390" /></a><p class="wp-caption-text">floppy disc</p></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Les outils pour blogger à donf avec Firefox]]></title>
<link>http://weelakeo.com/2009/08/31/les-outils-pour-blogger-a-donf-avec-firefox/</link>
<pubDate>Mon, 31 Aug 2009 11:12:05 +0000</pubDate>
<dc:creator>weelakeo</dc:creator>
<guid>http://weelakeo.com/2009/08/31/les-outils-pour-blogger-a-donf-avec-firefox/</guid>
<description><![CDATA[Depuis maintenant une semaine j’utilise un nouveau plugin (et oui encore un!) qui m’aide dans la réd]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a title="scribefire-firefox-blog-out" href="http://addons.mozilla.org/en-US/firefox/addon/1730"><img src="http://www.eclaireur.net/wp-content/uploads/2007/04/scribefire-firefox-blog-out.jpg" alt="scribefire-firefox-blog-out" /></a></p>
<p>Depuis maintenant une semaine j’utilise un nouveau plugin (et oui encore un!) qui m’aide dans la rédaction des articles de ce blog. Il s’agit de de <a class="zem_slink" title="ScribeFire" rel="homepage" href="http://www.scribefire.com">ScribeFire</a>, une fantastique extension pour écrire rapidement sur votre blog. Accessible directement depuis le petit icône en bas de page, cet outil vous fera gagner du temps. Cependant il ne fonctionne pas avec tous les types de blogs mais avec la plupart des systèmes de publication (WordPress, <a class="zem_slink" title="Blogger" rel="homepage" href="http://blogger.com">Blogger</a>, <a class="zem_slink" title="Drupal" rel="homepage" href="http://drupal.org">Drupal</a>, <a class="zem_slink" title="Movable Type" rel="homepage" href="http://www.movabletype.com/">Movable Type</a>) et des services (<a class="zem_slink" title="WordPress.com" rel="homepage" href="http://wordpress.com">WordPress.com</a>, <a class="zem_slink" title="TypePad" rel="homepage" href="http://www.typepad.com/">Typepad.com</a>, Live Journal, Performancing, MS live Spaces,… ). Pour une présentation complète allez voir l’article ScribeFire sur <a href="http://tapahont.info">tapahont.info</a>. <a title="blogRovR-firefox-blog-outil" href="http://www.blogrovr.com/"><img src="http://www.eclaireur.net/wp-content/uploads/2007/04/blogrovr-firefox-blog-outil.jpg" alt="blogRovR-firefox-blog-outil" /></a></p>
<p>Un autre outil que j’ai découvert sur le blog de Benoit Descary : <a class="zem_slink" title="Activeweave" rel="homepage" href="http://www.activeweave.com/">BlogRovR</a>. Cet outil permet une navigation transversale dans les blogs que nous avons l’habitude de lire. En gros lorsque vous naviguez et que vous tombez sur un site qui vous intéresse,</p>
<div class="zemanta-img zemanta-action-dragged">
<div>
<dl class="wp-caption alignright">
<dt class="wp-caption-dt"><a href="http://www.crunchbase.com/product/blogger"><img title="Image representing Blogger as depicted in Crun..." src="http://www.crunchbase.com/assets/images/resized/0001/2809/12809v2-max-450x450.jpg" alt="Image representing Blogger as depicted in Crun..." /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution">Image via <a href="http://www.crunchbase.com">CrunchBase</a></dd>
</dl>
</div>
</div>
<p>BlogRovR affichera dans le coin inférieur droit un menu sur lequel vous trouverez la liste des blogues qui ont écrit un billet à propos de ce site. Cela vous évite de rechercher de l’information, elle s’affiche sans même la demander. Au préalable vous devez importer tous vos flux <a class="zem_slink" title="RSS" rel="wikipedia" href="http://en.wikipedia.org/wiki/RSS">RSS</a> à l’aide d’un fichier OPML après avoir installé l’extension BlogRovR dédiée pour Firefox. Pour plus d’information allez visionner la démonstration des fonctionnalités par Benoit Descary.<br />
<a title="Flock-firefox-blog-outil" href="http://www.flock.com/"><img src="http://www.eclaireur.net/wp-content/uploads/2007/04/flock-firefox-blog-outil.jpg" alt="Flock-firefox-blog-outil" /></a></p>
<p>Enfin un dernier Flook qu’on peut associé à Firefox car il s’agit en quelque sorte de son petit cousin (en gros ils utilisent la même technologie). Ce nouveau navigateur a été développé par un groupe de passionnés qui avaient comme but de garder contact avec leur réseau social au travers de leur navigateur.</p>
<div class="zemanta-img zemanta-action-dragged">
<div>
<dl class="wp-caption alignright">
<dt class="wp-caption-dt"><a href="http://www.crunchbase.com/product/wordpress-com"><img title="Image representing WordPress.com as depicted i..." src="http://www.crunchbase.com/assets/images/resized/0001/3671/13671v1-max-450x450.png" alt="Image representing WordPress.com as depicted i..." /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution">Image via <a href="http://www.crunchbase.com">CrunchBase</a></dd>
</dl>
</div>
</div>
<p>Flock permet :</p>
<p>la gestion de vos photos dans <a class="zem_slink" title="Flickr" rel="homepage" href="http://www.flickr.com">Flickr</a> grâce à plein de fonctionnalités</p>
<div class="zemanta-img zemanta-action-dragged">
<div>
<dl class="wp-caption alignright">
<dt class="wp-caption-dt"><a href="http://www.crunchbase.com/product/flickr"><img title="Image representing Flickr as depicted in Crunc..." src="http://www.crunchbase.com/assets/images/resized/0001/0830/10830v1-max-450x450.png" alt="Image representing Flickr as depicted in Crunc..." /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution">Image via <a href="http://www.crunchbase.com">CrunchBase</a></dd>
</dl>
</div>
</div>
<p>la lecture de tous vos flux RSS directement dans le navigateur sans extension particulière<br />
la recherhe rapide sur plusieurs moteur de recherche (yahoo, google, ebay, etc)<br />
la sauvegarde de vos favoris dans votre compte <a href="http://del.icio.us">del.icio.us</a><br />
l’écriture des articles de votre blog.</p>
<p>Pour l’écriture sur votre blog, c’est d’une simplicité infantile, vous avez accès à tous moment au formulaire pour poster votre article. Vous pouvez même en naviguant sélectionner un texte puis faire Blog This pour ecrire à partir cette sélection. Un autre « plus » c’est que vous avez la même fonctionnalité avec les images vues sur le web.</p>
<div class="zemanta-img zemanta-action-dragged">
<div>
<dl class="wp-caption alignright">
<dt class="wp-caption-dt"><a href="http://commons.wikipedia.org/wiki/Image:Druplicon.vector.svg"><img title="Drupal" src="http://upload.wikimedia.org/wikipedia/commons/thumb/7/75/Druplicon.vector.svg/300px-Druplicon.vector.svg.png" alt="Drupal" /></a></dt>
<dd class="wp-caption-dd zemanta-img-attribution">Image via <a href="http://commons.wikipedia.org/wiki/Image:Druplicon.vector.svg">Wikipedia</a></dd>
</dl>
</div>
</div>
<p>La compatibilité des extensions Firefox est seul bémol pour les aficionados de ce navigateur Web. En effet vous aurez du mal à installer toutes vos extensions firefox préférées.<br />
via <a href="http://www.eclaireur.net/firefox/les-outils-pour-blogger-a-fond-avec-firefox/">eclaireur.net</a></p>
<p><embed src='http://widgets.vodpod.com/w/video_embed/Groupvideo.3321551' type='application/x-shockwave-flash' AllowScriptAccess='always' pluginspage='http://www.macromedia.com/go/getflashplayer' wmode='transparent' flashvars='' /></p>
<h6 class="zemanta-related-title">Related articles by Zemanta</h6>
<ul class="zemanta-article-ul">
<li class="zemanta-article-ul-li"><a href="http://www.zemanta.com/blog/using-zemanta-with-any-blogging-platform/">Using Zemanta with any blogging platform</a> (zemanta.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.nevillehobson.com/2009/05/23/enriching-content-with-apture/">Enriching content with Apture</a> (nevillehobson.com)</li>
<li class="zemanta-article-ul-li"><a href="http://techie-buzz.com/utilites/capture-and-share-screenshots-with-screensnapr.html?utm_source=subscriber&#38;utm_medium=rss&#38;utm_campaign=rss">Capture and Share Screenshots With ScreenSnapr</a> (techie-buzz.com)</li>
<li class="zemanta-article-ul-li"><a href="http://mashable.com/2009/06/22/poseterous-import/">Posterous Wants You (To Import Your Blog)</a> (mashable.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.zemanta.com/blog/common-tag-with-zemanta/">Common Tag with Zemanta</a> (zemanta.com)</li>
<li class="zemanta-article-ul-li"><a href="http://www.downloadsquad.com/2009/05/19/flock-2-5-social-web-browser-adds-more-facebook-and-twitter-feat/">Flock 2.5 social web browser adds more Facebook and Twitter features</a> (downloadsquad.com)</li>
<li class="zemanta-article-ul-li"><a href="http://mexiabill.wordpress.com/2009/05/07/a-new-toy-for-firefox-blogging/">A New Toy For FireFox Blogging!</a> (mexiabill.wordpress.com)</li>
</ul>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" src="http://img.zemanta.com/pixy.gif?x-id=d6420faf-63a8-4f1a-ae34-3827b455dee1" alt="" /></div>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Schmownce]]></title>
<link>http://danielvining.wordpress.com/2009/08/23/schmownce/</link>
<pubDate>Sun, 23 Aug 2009 16:58:57 +0000</pubDate>
<dc:creator>danielvining</dc:creator>
<guid>http://danielvining.wordpress.com/2009/08/23/schmownce/</guid>
<description><![CDATA[Do you remember Pownce?  It was a social networking micro blogging site similar to Twitter, but more]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Do you remember Pownce?  It was a social networking micro blogging site similar to Twitter, but more like Twitter on steriods.  It was a start-up of Kevin Rose, creator of Digg, and in my opinion, was pretty cool.  Unfortunately, it didn&#8217;t last long.  After only about a year of existance, the site was bought by a company called SixApart, they are the people behind VOX, Movable Type and Type Pad.  Once bought by them, we lost the twitter that would let you post videos, music and more.</p>
<p>At I thought it was gone.  Turns out a group of people, fans of Pownce, created a replica site with all of the same features and named it Schmownce.  I just created an account, and am still feeling my way through things, but thought I would throw up this post to hopefully entice a few more people to sign up.  I will meander around the site for a while to see if it will catch on with me.</p>
<p>In the process of finding out about Schmownce, I also took the time to start up a VOX account to at least reserve my name for later use.  You can check out nothing at danielvining.vox.com</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[get me out of upgrade loop]]></title>
<link>http://mttips.wordpress.com/2009/08/10/get-me-out-of-upgrade-loop/</link>
<pubDate>Mon, 10 Aug 2009 19:25:01 +0000</pubDate>
<dc:creator>guywebbish</dc:creator>
<guid>http://mttips.wordpress.com/2009/08/10/get-me-out-of-upgrade-loop/</guid>
<description><![CDATA[After your recent plugin or system upgrade, if you find yourself desperately clicking the &#8220;Ret]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>After your recent plugin or system upgrade, if you find yourself desperately clicking the &#8220;Return to Movable Type&#8221; and staring at the &#8220;Upgrade Check&#8221; screen, then you&#8217;re probably running Fast CGI and need to bounce Apache (restart gracefully)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Export Wordpress to Blogger]]></title>
<link>http://cyberscrawler.wordpress.com/2009/07/09/export-wordpress-to-blogger/</link>
<pubDate>Thu, 09 Jul 2009 13:30:24 +0000</pubDate>
<dc:creator>Dalan</dc:creator>
<guid>http://cyberscrawler.wordpress.com/2009/07/09/export-wordpress-to-blogger/</guid>
<description><![CDATA[WordPress To Blogger Exporter App For all those guys whose prefer the neat but stylish interface of ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div id="attachment_11" class="wp-caption alignleft" style="width: 214px"><a href="http://wordpress2blogger.appspot.com/"><img class="size-full wp-image-11" title="wp2b" src="http://cyberscrawler.wordpress.com/files/2009/07/wp2b.png" alt="WordPress To Blogger Exporter App" width="204" height="81" /></a><p class="wp-caption-text">WordPress To Blogger Exporter App</p></div>
<p>For all those guys whose prefer the neat but stylish interface of wordpress and find it irritatin to compose blogs in the rather toned down interface of Blogger, here&#8217;s a tool to quickly export all your blog posts from within minimum effort.</p>
<p>Just follow the link below ,follow the instructions given there and your WordPress blog will be up and running on blogger  in no time.</p>
<p>Click here to<strong> </strong><a href="http://wordpress2blogger.appspot.com/"><strong>Export WordPress to Blogger</strong></a></p>
<p>For Other bloggers using other blogsites and who are interested in exporting their content to blogger follow the link below which will take you to Google&#8217;s own Converter engine to convert other blogs to blogger.The site has a variety of scripts to convert different  blog posts including popular one&#8217;s like WordPress(Of Course), Movable Type and Live Journal.<br />
<a href="http://code.google.com/p/google-blog-converters-appengine/"><strong>Google Blog Converter</strong></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[I 21 popolari CMS free e le loro risorse]]></title>
<link>http://lorenzobergamini.wordpress.com/2009/06/30/i-21-popolari-cms-free-e-le-loro-risorse/</link>
<pubDate>Tue, 30 Jun 2009 16:17:42 +0000</pubDate>
<dc:creator>lorenzobergamini</dc:creator>
<guid>http://lorenzobergamini.wordpress.com/2009/06/30/i-21-popolari-cms-free-e-le-loro-risorse/</guid>
<description><![CDATA[Sul web è presente una notevole quantità di siti realizzati con i CMS e la loro scelta si fa sempre ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://lorenzobergamini.myblog.it/media/00/00/1647717780.png" target="_blank"><img style="float:right;border-width:0;margin:.2em 0 1.4em .7em;" src="http://lorenzobergamini.myblog.it/media/00/00/2061033812.png" alt="bli_sf_cmspopular.png" /></a><br />
<span style="font-family:verdana,geneva;"><span style="font-size:10pt;">Sul web è presente una notevole quantità di siti realizzati con i <em><strong>CMS</strong></em> e la loro scelta si fa sempre più complicata.</span></span></p>
<p>Questo articolo lo abbiamo suddiviso in tre parti:</p>
<ul>
<li><span style="font-family:verdana,geneva;"><span style="font-size:10pt;">Introduzione all&#8217;Open Source</span></span></li>
<li><span style="font-family:verdana,geneva;"><span style="font-size:10pt;">Introduzione ai CMS</span></span></li>
<li><span style="font-family:verdana,geneva;"><span style="font-size:10pt;">Come scegliere un CMS</span></span></li>
<li><span style="font-family:verdana,geneva;"><span style="font-size:10pt;">I 21 popolari CMS free sul web e le loro risorse</span></span></li>
</ul>
<p><span style="font-family:verdana,geneva;"><span style="font-size:10pt;"><a title="I 21 popolari CMS free e le loro risorse" href="http://www.bli.it/news-e-articoli/il-meglio-dal-web/software/144-i-21-popolari-cms-free-e-le-loro-risorse.html" target="_blank">Leggi tutto l&#8217;articolo su <em><strong><span style="color:#ff0000;">I 21 popolari CMS free e le loro risorse</span></strong></em> con colelgamento ai loro siti</a>.</span></span></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Blog platform]]></title>
<link>http://emarketinghandbook.wordpress.com/2009/06/14/blog-platform/</link>
<pubDate>Sun, 14 Jun 2009 15:56:32 +0000</pubDate>
<dc:creator>emarketinghandbook</dc:creator>
<guid>http://emarketinghandbook.wordpress.com/2009/06/14/blog-platform/</guid>
<description><![CDATA[Now, i will review several blog platforms that popular and use by many of bloggers. Here are my revi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Now, i will review several blog platforms that popular and use by many of bloggers. Here are my reviews :</p>
<p><strong>1. <a title="WordPress platform" href="http://www.wordpress.com" target="_blank">WordPress</a></strong></p>
<p>WordPress is one of the most popular blog platform on the net. WordPress is a very flexible platform and has many features that you can use to create  a professional blogs. In wordpress, you not only can post a content but also create your own page. WordPress has many templates that you can use with many different themes. Other features that makes wordpress a powerfull platform is widget. There are many widgets to make your blogs more attractive to your visitors. I will post about several wordpress widget in the future.</p>
<p><strong>2. <a title="blogger platform" href="http://www.blogger.com" target="_blank">Blogger</a></strong></p>
<p>Blogger also a popular platform. The things why many people use blogger are it is easier to use than wordpress, many templates and gadgets to use. gadgets is more like widget in wordpress, but not as flexible as wordpress.</p>
<p><strong>3. <a title="movable type" href="http://www.movabletype.com/" target="_blank">Movable type</a></strong></p>
<p>Movable type is a very good platform. They provide great Content Management System for blogger. The most powerful thing about this platform is it&#8217;s feature in building social network with your blogs. If you running a business, maybe you can use this platform to improve your business.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[CMS share ranking　CMSシェアランキング2009]]></title>
<link>http://advernya.wordpress.com/2009/09/19/cms/</link>
<pubDate>Sat, 19 Sep 2009 00:33:56 +0000</pubDate>
<dc:creator>advernya</dc:creator>
<guid>http://advernya.wordpress.com/2009/09/19/cms/</guid>
<description><![CDATA[CMS（コンテンツマネジメントシステム）の世界シェアと日本シェアのランキング情報を収集しました。 グラフとテーブルで視覚的にご覧下さい。 世界、日本とも、WordPressがトップ。 事実上世界標準の]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>CMS（コンテンツマネジメントシステム）の世界シェアと日本シェアのランキング情報を収集しました。<br />
グラフとテーブルで視覚的にご覧下さい。</p>
<h3><strong><span style="color:#ff0000;">世界、日本とも、WordPressがトップ。<br />
事実上世界標準のデファクトスタンダード。</span></strong></h3>
<p><!--more--></p>
<h3><strong><a href="http://www.google.co.jp/trends?q=WordPress%2CJoomla%2CDrupal%2CMambo%2CMovable+Type&#38;ctab=0&#38;geo=all&#38;date=all&#38;sort=0" target="_blank">世界比較（グーグルトレンド）</a></strong></h3>
<p><strong> </strong></p>
<div id="attachment_23" class="wp-caption aligncenter" style="width: 460px"><strong><strong><a href="http://advernya.wordpress.com/files/2009/09/world.png"><img class="size-full wp-image-23" title="CMSシェアランキング　世界比較" src="http://advernya.wordpress.com/files/2009/09/world.png" alt="CMSシェアランキング　世界比較" width="450" height="220" /></a></strong></strong><p class="wp-caption-text">CMSシェアランキング　世界比較</p></div>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<p><strong> </strong></p>
<table border="0" align="center">
<tbody>
<tr>
<td style="text-align:center;" bgcolor="#cccccc">1</td>
<td style="text-align:left;" bgcolor="#cccccc"><a title="http://ja.wordpress.org/" rel="nofollow" href="http://ja.wordpress.org/">WordPress</a></td>
<td style="text-align:left;" bgcolor="#cccccc"><a href="http://ja.wordpress.org/" target="_blank">ワードプレス</a></td>
<td style="text-align:left;" bgcolor="#cccccc"><a href="http://ja.wikipedia.org/wiki/WordPress" target="_blank">wiki</a></td>
</tr>
<tr>
<td>2</td>
<td><a href="http://www.joomla.org/" target="_blank">Joomla!</a></td>
<td style="text-align:left;"><a href="http://www.joomla.jp/" target="_blank">ジュームラ</a></td>
<td style="text-align:left;"><a href="http://ja.wikipedia.org/wiki/Joomla%21" target="_blank">wiki</a></td>
</tr>
<tr>
<td bgcolor="#cccccc">3</td>
<td bgcolor="#cccccc"><a href="http://drupal.org/" target="_blank">Drupal</a></td>
<td style="text-align:left;" bgcolor="#cccccc"><a href="http://drupal.jp/" target="_blank">ドルーパル</a></td>
<td style="text-align:left;" bgcolor="#cccccc"><a href="http://ja.wikipedia.org/wiki/Drupal" target="_blank">wiki</a></td>
</tr>
<tr>
<td>4</td>
<td><a href="http://mambo-code.org/gf//" target="_blank">Mambo</a></td>
<td style="text-align:left;"></td>
<td style="text-align:left;"></td>
</tr>
<tr style="text-align:center;">
<td bgcolor="#cccccc">5</td>
<td style="text-align:left;" bgcolor="#cccccc"><a href="http://www.movabletype.com/" target="_blank">Movable Type</a></td>
<td style="text-align:left;" bgcolor="#cccccc"><a href="http://www.movabletype.jp/" target="_blank">ムーバブル・タイプ</a></td>
<td style="text-align:left;" bgcolor="#cccccc"><a href="http://ja.wikipedia.org/wiki/Movable_Type" target="_blank">wiki</a></td>
</tr>
</tbody>
</table>
<ul>
<li> <a href="http://kaigai-hosting.com/news07.php" target="_blank">CMS のシェアをご存知ですか？ 〜 WordPress が圧勝</a></li>
<li> <a href="http://plasticdreams.org/archives/2007/03/26/1694/how-popular-wordpress-is/" target="_blank">WordPress の人気もしくはシェア</a></li>
</ul>
<h3><strong><a href="http://www.google.co.jp/trends?q=WordPress%2CJoomla%2CDrupal%2CMambo%2CMovable+Type&#38;ctab=0&#38;geo=jp&#38;date=all&#38;sort=0" target="_blank">日本比較（グーグルトレンド）</a></strong></h3>
<p><strong> </strong></p>
<div id="attachment_24" class="wp-caption aligncenter" style="width: 460px"><strong><strong><a href="http://advernya.wordpress.com/files/2009/09/japan.png"><img class="size-full wp-image-24" title="CMSシェアランキング　日本比較" src="http://advernya.wordpress.com/files/2009/09/japan.png" alt="CMSシェアランキング　日本比較" width="450" height="219" /></a></strong></strong><p class="wp-caption-text">CMSシェアランキング　日本比較</p></div>
<p><strong> </strong></p>
<p><strong> </strong></p>
<table border="0" align="center">
<tbody>
<tr>
<td style="text-align:center;" bgcolor="#cccccc">1</td>
<td style="text-align:left;" bgcolor="#cccccc"><a title="http://ja.wordpress.org/" rel="nofollow" href="http://ja.wordpress.org/">WordPress</a></td>
<td style="text-align:left;" bgcolor="#cccccc"><a href="http://ja.wordpress.org/" target="_blank">ワードプレス</a></td>
<td style="text-align:left;" bgcolor="#cccccc"><a href="http://ja.wikipedia.org/wiki/WordPress" target="_blank">wiki</a></td>
</tr>
<tr>
<td>2</td>
<td><a href="http://www.joomla.org/" target="_blank">Joomla!</a></td>
<td style="text-align:left;"><a href="http://www.joomla.jp/" target="_blank">ジュームラ</a></td>
<td style="text-align:left;"><a href="http://ja.wikipedia.org/wiki/Joomla%21" target="_blank">wiki</a></td>
</tr>
<tr style="text-align:center;">
<td bgcolor="#cccccc">3</td>
<td style="text-align:left;" bgcolor="#cccccc"><a href="http://www.movabletype.com/" target="_blank">Movable Type</a></td>
<td style="text-align:left;" bgcolor="#cccccc"><a href="http://www.movabletype.jp/" target="_blank">ムーバブル・タイプ</a></td>
<td style="text-align:left;" bgcolor="#cccccc"><a href="http://ja.wikipedia.org/wiki/Movable_Type" target="_blank">wiki</a></td>
</tr>
<tr>
<td>4</td>
<td><a href="http://drupal.org/" target="_blank">Drupal</a></td>
<td style="text-align:left;"><a href="http://drupal.jp/" target="_blank">ドルーパル</a></td>
<td style="text-align:left;"><a href="http://ja.wikipedia.org/wiki/Drupal" target="_blank">wiki</a></td>
</tr>
<tr>
<td bgcolor="#cccccc">5</td>
<td bgcolor="#cccccc"><a href="http://mambo-code.org/gf//" target="_blank">Mambo</a></td>
<td style="text-align:left;" bgcolor="#cccccc"></td>
<td style="text-align:left;" bgcolor="#cccccc"></td>
</tr>
</tbody>
</table>
<ul>
<li><a href="http://myprio.com/technology/internet/cms-share-japan.html" target="_blank">CMSの日本でのシェアはどうなっているか。</a></li>
</ul>
</div>]]></content:encoded>
</item>

</channel>
</rss>
