<?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>arch &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/arch/</link>
	<description>Feed of posts on WordPress.com tagged "arch"</description>
	<pubDate>Sat, 28 Nov 2009 05:50:45 +0000</pubDate>

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

<item>
<title><![CDATA[Floods update 26 November 2009]]></title>
<link>http://irishwaterwayshistory.com/2009/11/26/floods-update-26-november-2009/</link>
<pubDate>Thu, 26 Nov 2009 21:37:40 +0000</pubDate>
<dc:creator>bjg</dc:creator>
<guid>http://irishwaterwayshistory.com/2009/11/26/floods-update-26-november-2009/</guid>
<description><![CDATA[Some pics from Parteen Villa Weir, O&#8217;Briensbridge, Montpelier, Castleconnell, Annacotty and Pl]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Some pics from Parteen Villa Weir, O&#8217;Briensbridge, Montpelier, Castleconnell, Annacotty and Plassey <a title="Floods 26 November 2009" href="http://wp.me/Ppxzo-KS" target="_blank">here</a>.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[wget : Add progress bar to non verbose mode]]></title>
<link>http://chinmaykamat.wordpress.com/2009/11/26/wget-add-progressbar-nv/</link>
<pubDate>Thu, 26 Nov 2009 17:12:58 +0000</pubDate>
<dc:creator>CDK</dc:creator>
<guid>http://chinmaykamat.wordpress.com/2009/11/26/wget-add-progressbar-nv/</guid>
<description><![CDATA[Check this bug report for the problem I had with default mode. wget has four levels of verbosity whi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">Check <strong><a title="Bug report" href="http://savannah.gnu.org/bugs/?22448" target="_blank">this bug report</a></strong> for the problem I had with default mode.</p>
<p style="text-align:justify;">wget has four levels of verbosity which are described as below in its man page &#8211;</p>
<p style="text-align:justify;"><code>-d --debug<br />
Turn on debug output, meaning various information important to the developers of Wget if it does not work properly.  Your system administrator may have chosen to compile Wget without debug support, in which case -d will not work.  Please note that compiling with debug support is always safe---Wget compiled with the debug support will not print any debug info unless requested with -d.</code></p>
<p><code>-q --quiet<br />
Turn off Wget's output.</code></p>
<p><code>-v --verbose<br />
Turn on verbose output, with all the available data.  The default output is verbose.</code></p>
<p><code> </code></p>
<p><span style="font-family:monospace;">-nv &#8211;no-verbose</span></p>
<p><code> Turn off verbose without being completely quiet (use -q for that), which means that error messages and basic information still get<br />
printed.</code></p>
<p style="text-align:justify;">The problem with these is that the verbose mode prints too much info, quiet prints nothing and non-verbose prints info which is not useful in any way.</p>
<p><!--more--><br />
By default the non-verbose mode prints the output as follows &#8211;</p>
<p><code>$ wget -nv ftp://ftp.gnu.org/gnu/wget/wget-1.12.tar.bz2<br />
2009-11-26 22:16:40 URL: ftp://ftp.gnu.org/gnu/wget/wget-1.12.tar.bz2 [1609032] -&#62; "wget-1.12.tar.bz2" [1] </code></p>
<p style="text-align:justify;">I wanted the non-verbose mode to print a progress bar for reasons which are similar to those mentioned in <strong><a title="Bug report" href="http://savannah.gnu.org/bugs/?22448" target="_blank">this bug report</a></strong>. The only difference being that instead of Gentoo, I use Arch and pacman. So, I took the diff provided in the bug report modified it a bit to work with v1.12 and also made a PKGBUILD for my Arch use. I am attaching both of them below. After using this patch the output with the -nv option is as follows &#8211;</p>
<p><code>$ wget -nv ftp://ftp.gnu.org/gnu/wget/wget-1.12.tar.bz2<br />
38% [=============&#62;                         ] 614,880     79.5K/s  eta 13s</code></p>
<p>Problem solved <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p style="text-align:justify;"><strong>Patch</strong> &#8212; Save this as wget_nv_pbar.diff in the same folder as the PKGBUILD if you are building in Arch using the PKGBUILD given below. If you use normal patch, you can do it however you want <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<pre class="brush: diff;">
#Created by Chinmay Kamat &#60;chinmaykamat@gmail.com&#62;
--- wget-1.12.orig/src/main.c	2009-09-22 08:33:11.000000000 +0530
+++ wget-1.12/src/main.c	2009-11-26 12:21:15.156859000 +0530
@@ -1140,7 +1140,7 @@

   /* Initialize progress.  Have to do this after the options are
      processed so we know where the log file is.  */
-  if (opt.verbose)
+  if (!opt.quiet)
     set_progress_implementation (opt.progress_type);

   /* Fill in the arguments.  */

--- wget-1.12.orig/src/progress.c	2009-09-22 08:19:32.000000000 +0530
+++ wget-1.12/src/progress.c	2009-11-26 12:53:11.309295000 +0530
@@ -291,7 +291,7 @@
          been retrieved.  12.8% will round to 12% because the 13% mark
          has not yet been reached.  100% is only shown when done.  */
       int percentage = 100.0 * bytes_displayed / dp-&#62;total_length;
-      logprintf (LOG_VERBOSE, &#34;%3d%%&#34;, percentage);
+      logprintf (LOG_NOTQUIET, &#34;%3d%%&#34;, percentage);
     }

   {
@@ -325,7 +325,7 @@
           wgint bytes_sofar = bytes_displayed - dp-&#62;initial_length;
           double eta = dltime * bytes_remaining / bytes_sofar;
           if (eta &#60; INT_MAX - 1)
-            logprintf (LOG_VERBOSE, &#34; %s&#34;,
+            logprintf (LOG_NOTQUIET, &#34; %s&#34;,
                        eta_to_human_short ((int) (eta + 0.5), true));
         }
     }
@@ -333,10 +333,10 @@
     {
       /* When done, print the total download time */
       if (dltime &#62;= 10)
-        logprintf (LOG_VERBOSE, &#34;=%s&#34;,
+        logprintf (LOG_NOTQUIET, &#34;=%s&#34;,
                    eta_to_human_short ((int) (dltime + 0.5), true));
       else
-        logprintf (LOG_VERBOSE, &#34;=%ss&#34;, print_decimal (dltime));
+        logprintf (LOG_NOTQUIET, &#34;=%ss&#34;, print_decimal (dltime));
     }
 }

@@ -652,7 +652,7 @@
   create_image (bp, dltime, true);
   display_image (bp-&#62;buffer);

-  logputs (LOG_VERBOSE, &#34;\n\n&#34;);
+  logputs (LOG_NOTQUIET, &#34;\n\n&#34;);

   xfree (bp-&#62;buffer);
   xfree (bp);
@@ -1071,8 +1071,8 @@
 display_image (char *buf)
 {
   bool old = log_set_save_context (false);
-  logputs (LOG_VERBOSE, &#34;\r&#34;);
-  logputs (LOG_VERBOSE, buf);
+  logputs (LOG_NOTQUIET, &#34;\r&#34;);
+  logputs (LOG_NOTQUIET, buf);
   log_set_save_context (old);
 }

--- wget-1.12.orig/src/retr.c	2009-09-04 22:01:54.000000000 +0530
+++ wget-1.12/src/retr.c	2009-11-26 12:21:15.167860000 +0530
@@ -234,7 +234,7 @@
   if (flags &#38; rb_skip_startpos)
     skip = startpos;

-  if (opt.verbose)
+  if (!opt.quiet)
     {
       /* If we're skipping STARTPOS bytes, pass 0 as the INITIAL
          argument to progress_create because the indicator doesn't</pre>
<p style="text-align:justify;">
<p style="text-align:justify;"><strong>PKGBUILD</strong></p>
<pre class="brush: plain;"># $Id: PKGBUILD 52882 2009-09-23 03:39:20Z allan $
# Maintainer: Allan McRae &#60;allan@archlinux.org&#62;
# Contributor: Judd Vinet &#60;jvinet@zeroflux.org&#62;
# Modified By:  Chinmay Kamat &#60;chinmaykamat@gmail.com&#62;
pkgname=wget
pkgver=1.12
pkgrel=1
pkgdesc=&#34;A network utility to retrieve files from the Web&#34;
arch=('i686' 'x86_64')
url=&#34;http://www.gnu.org/software/wget/wget.html&#34;
license=('GPL3')
groups=('base')
depends=('glibc' 'openssl')
optdepends=('ca-certificates: HTTPS downloads')
backup=('etc/wgetrc')
install=wget.install
source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('141461b9c04e454dc8933c9d1f2abf83')

build() {
  patch -Np0 -i $startdir/wget_nv_pbar.diff &#124;&#124; return 1
  cd ${srcdir}/$pkgname-$pkgver
  ./configure --prefix=/usr --sysconfdir=/etc
  make &#124;&#124; return 1
  make DESTDIR=${pkgdir} install
}</pre>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Arch-Stuff, arte y cosas para Archlinux]]></title>
<link>http://mirutalibre.wordpress.com/2009/11/26/arch-stuff-arte-y-cosas-para-archlinux/</link>
<pubDate>Thu, 26 Nov 2009 13:24:25 +0000</pubDate>
<dc:creator>zuargo</dc:creator>
<guid>http://mirutalibre.wordpress.com/2009/11/26/arch-stuff-arte-y-cosas-para-archlinux/</guid>
<description><![CDATA[Arch-Stuff es un sitio web que sigue la línea de páginas como GimpStuff, KDE-Look, GNOME-Look y XFCE]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;"><a href="http://mirutalibre.wordpress.com/files/2009/11/128px-archlinux-icon-128.png"><img class="alignleft size-full wp-image-746" title="Logo Archlinux" src="http://mirutalibre.wordpress.com/files/2009/11/128px-archlinux-icon-128.png" alt="Logo Archlinux" width="128" height="128" /></a><strong><a href="http://arch-stuff.org/" target="_blank">Arch-Stuff</a></strong> es un sitio web que sigue la línea de páginas como <strong><a href="http://www.gimpstuff.org/" target="_blank">GimpStuff</a>, </strong><strong><a href="http://kde-look.org/" target="_blank">KDE-Look</a></strong><strong>, </strong><strong><a href="http://www.gnome-look.org/" target="_blank">GNOME-Look</a> y </strong><strong><a href="http://www.xfce-look.org/" target="_blank">XFCE-Look</a></strong> entre otras. Encontrarás muchas cosas para Archlinux como fondos de escritorio, capturas de pantallas, temas, decoraciones de ventana, KDM y GDM splash, fuentes, íconos, logos, etc, etc. Es una página muy completa y lo mejor de todo es que está pensada para darle más belleza a nuestra distribución favorita <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .</p>
<p style="text-align:justify;">
<div id="attachment_745" class="wp-caption aligncenter" style="width: 310px"><a href="http://mirutalibre.wordpress.com/files/2009/11/instantanea108.png"><img class="size-medium wp-image-745" title="Captura de pantalla del sitio Arch-Stuff.org" src="http://mirutalibre.wordpress.com/files/2009/11/instantanea108.png?w=300" alt="Captura de pantalla del sitio Arch-Stuff.org" width="300" height="162" /></a><p class="wp-caption-text">Clic para agrandar</p></div>
<p>¡Saludos!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Arch Linux + KDE4.2]]></title>
<link>http://gauthma.wordpress.com/2009/11/26/arch-linux-kde4-2/</link>
<pubDate>Thu, 26 Nov 2009 10:46:21 +0000</pubDate>
<dc:creator>gauthma</dc:creator>
<guid>http://gauthma.wordpress.com/2009/11/26/arch-linux-kde4-2/</guid>
<description><![CDATA[Taking the suggestion of a colleague, I decided to install Arch Linux on my home desktop. Considerin]]></description>
<content:encoded><![CDATA[Taking the suggestion of a colleague, I decided to install Arch Linux on my home desktop. Considerin]]></content:encoded>
</item>
<item>
<title><![CDATA[El Proyecto Chakra, un live CD gráfico basado en Archlinux]]></title>
<link>http://mirutalibre.wordpress.com/2009/11/25/el-proyecto-chakra-un-live-cd-grafico-basado-en-archlinux/</link>
<pubDate>Wed, 25 Nov 2009 14:35:53 +0000</pubDate>
<dc:creator>zuargo</dc:creator>
<guid>http://mirutalibre.wordpress.com/2009/11/25/el-proyecto-chakra-un-live-cd-grafico-basado-en-archlinux/</guid>
<description><![CDATA[El Proyecto Chakra es un proyecto de software libre creado por un grupo de gente que le gusta Archli]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://mirutalibre.wordpress.com/files/2009/11/chakra-shiny.png"><img class="alignright size-full wp-image-737" title="Logo de Chakra" src="http://mirutalibre.wordpress.com/files/2009/11/chakra-shiny.png" alt="Logo de Chakra" width="128" height="128" /></a></p>
<blockquote>
<p style="text-align:justify;"><strong><a href="http://chakra-project.org/" target="_blank">El Proyecto Chakra</a></strong> es un proyecto de<strong> <a href="http://es.wikipedia.org/wiki/Free_software" target="_blank">software libre</a></strong> creado por un grupo de gente que le gusta <strong><a href="http://www.archlinux.org/" target="_blank">Archlinux</a></strong> y <strong><a href="http://www.kde.org/" target="_blank">KDE</a></strong>.</p>
<p style="text-align:justify;"><strong>Chakra</strong> es un rápido, amigable y extremadamente poderoso <strong><a href="http://es.wikipedia.org/wiki/Live_CD" target="_blank">live CD</a></strong> y/o distrolet (versión personalizada de una distro<a href="http://archlinuxfacil.blogspot.com/2009/01/proyecto-chakra.html" target="_blank"><sup>[1]</sup></a>) basado en el galardonado <strong>KDE</strong> (K Desktop Environment, Entorno de Escritorio K en español) y en una de las distribuciones <strong>GNU/Linux</strong> para experimentados: <strong>Archlinux</strong>.</p>
<p style="text-align:justify;">Actualmente está en <strong>fase alfa</strong>, cuenta con un instalador gráfico, configuración automática de hardware y por supuesto algunas <a href="http://chakra-project.org/tools.html" target="_blank">herramientas</a> más y extras.</p>
<p style="text-align:justify;">Sólo <a href="http://chakra-project.org/download.html" target="_blank">pruébalo</a> si te gusta y <a href="http://chakra-project.org/bbs/" target="_blank">dinos</a> (¿eso se escribe junto o separado? <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_razz.gif' alt=':P' class='wp-smiley' /> ) lo que piensas.</p>
<p style="text-align:right;"><em>Tomado y traducido desde <a href="http://chakra-project.org/" target="_blank">The Chakra project<br />
</a></em></p>
</blockquote>
<p style="text-align:justify;">Como much@s sabrán <strong>El proyecto Chakra</strong> desarrolló <strong><a href="http://chakra-project.org/about-kdemod.html" target="_blank">KDEmod</a></strong>, un conjunto de paquetes de <strong>KDE</strong> modular, ajustado y optimizado para <strong>Archlinux</strong>. <strong>KDEmod</strong> viene con un montón de adiciones y cosas extra y además provee paquetes de <strong>KDE3</strong> y <strong>KDE4</strong> en sus repositorios. Chequéalo <a href="http://chakra-project.org/download.html" target="_blank">aquí</a>.<a href="http://chakra-project.org/" target="_blank"><sup>[2]</sup></a></p>
<p style="text-align:justify;">Ten en cuenta que no es necesario instalar <strong>Chakra</strong> para probar <strong>KDEmod</strong>, se puede hacer eso directamente en tu <strong>Archlinux</strong>. Mira <a href="http://chakra-project.org/about-kdemod.html" target="_blank">aquí</a> para más información.</p>
<p style="text-align:justify;">He leído por ahí (en otros blogs) a personas diciendo que desde que en los repositorios oficiales de <strong>Archlinux</strong> existen los <a href="http://wiki.archlinux.org/index.php/KDE_Packages#Overview" target="_blank">paquetes cortados de <strong>KDE</strong></a> ya no es necesario instalar <strong>KDEmod</strong>, puesto que, de acuerdo a lo que ellos piensan (lo que se evidencia por lo que dicen) <strong>KDEmod</strong> sólo servía y era útil por la posibilidad de instalar aplicaciones de <strong>KDE</strong> en paquetes unitarios y no en meta paquetes. Pues bien, yo les digo a esas personas que  están muy equivocadas. <strong>KDEmod</strong>, recordemos, está optimizado para <strong>Archlinux</strong>, <strong>no así</strong> los paquetes que están en los repositorios de <strong>Arch</strong>. Además hay otro punto demasiado importante, y que tal vez es el más trascendental de todos, desde mi manera de ver las cosas: <strong>KDEmod</strong>, en sus repositorios, provee unos paquetes llamados debug, los cuales <strong>no</strong> están contenidos en los repositorios de <strong>Arch</strong> y que contienen información de <strong>depuración de errores</strong> de las diferentes aplicaciones o paquetes de <a href="http://kde.org/" target="_blank"><strong>KDE</strong></a>. Cualquier persona que haya reportado caídas (crashes) de programas en <strong><a href="http://bugs.kde.org" target="_blank">bugs.kde.org</a></strong> sabe de lo que hablo. En este mismo sentido, recuerda que una de las formas de ayudar al <strong>software libre</strong> es reportando errores, por lo que, si usas <strong>Archlinux</strong>, te invito a probar <strong>KDEmod</strong>, instalar cada paquete con su respectivo paquete debug (si existe) y también a instalar <strong><a href="http://docs.kde.org/stable/es/kdesdk/kbugbuster/index.html" target="_blank">KBugBuster</a></strong> un programa que te ayudará a reportar errores de <strong>KDE</strong> en forma fácil y sencilla.</p>
<p style="text-align:justify;"><a href="http://techbase.kde.org/Development/Tutorials/Debugging/How_to_create_useful_crash_reports" target="_blank">Aquí</a> puedes leer más acerca de cómo crear reportes de caídas útiles en <strong>KDE</strong>.</p>
<p style="text-align:justify;">Finalmente decir que <strong>Chakra</strong> al igual que <a href="http://mirutalibre.wordpress.com/2009/11/24/kahelos-distribucion-gnulinux-basada-en-archlinux/" target="_self"><strong>KahelOS</strong></a> es una excelente alternativa para usuarios noveles que por &#8220;miedo&#8221; o falta de conocimientos no se atreven a instalar <a href="http://archlinux.org" target="_blank"><strong>Archlinux</strong></a> en sus máquinas.</p>
<p style="text-align:justify;">Como dice más arriba, <strong>Chakra</strong> provee un instalador totalmente gráfico y herramientas de configuración del sistema propias, muy intuitivas y muy fáciles de usar. Además no piensen que por estar en su <strong>fase alfa</strong> es inestable, nada de eso, al parecer se encuentra en esa etapa porque los desarrolladores son muy comprometidos con el proyecto y quieren crear más aplicaciones que le hagan la vida aún más fácil al usuario final, además, por supuesto, de mejorar las herramientas propias ya existentes.</p>
<p style="text-align:justify;">Aquí les dejo algunas capturas de <strong>Chakra</strong>:</p>
<p style="text-align:justify;">
<div id="attachment_735" class="wp-caption aligncenter" style="width: 310px"><a href="http://mirutalibre.wordpress.com/files/2009/11/chakra03.png"><img class="size-medium wp-image-735" title="Captura de pantalla de Chakra" src="http://mirutalibre.wordpress.com/files/2009/11/chakra03.png?w=300" alt="Captura de pantalla de Chakra" width="300" height="225" /></a><p class="wp-caption-text">Imagen tomada de (2). Clic para agrandar</p></div>
<div id="attachment_736" class="wp-caption aligncenter" style="width: 310px"><a href="http://mirutalibre.wordpress.com/files/2009/11/chakra04.png"><img class="size-medium wp-image-736" title="Captura de pantalla de Chakra" src="http://mirutalibre.wordpress.com/files/2009/11/chakra04.png?w=300" alt="Captura de pantalla de Chakra" width="300" height="225" /></a><p class="wp-caption-text">Imagen tomada de (2). Clic para agrandar</p></div>
<p style="text-align:justify;">¡Saludos!</p>
<p style="text-align:justify;"><a href="http://archlinuxfacil.blogspot.com/2009/01/proyecto-chakra.html" target="_blank"><sup>[1]</sup>Archlinux Fácil !!!: Proyecto Chakra</a></p>
<p style="text-align:justify;"><a href="http://chakra-project.org/" target="_blank"><sup>[2](2)</sup>The Chakra Project</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[THE 'MOON WHORL' - A common characteristic in schizophrenia, Down's syndrome... and autism?]]></title>
<link>http://palmistryreport.wordpress.com/2009/11/24/the-moon-whorl-a-common-characteristic-in-schizophrenia-downs-syndrome-and-autism/</link>
<pubDate>Tue, 24 Nov 2009 23:56:41 +0000</pubDate>
<dc:creator>palmistryreport</dc:creator>
<guid>http://palmistryreport.wordpress.com/2009/11/24/the-moon-whorl-a-common-characteristic-in-schizophrenia-downs-syndrome-and-autism/</guid>
<description><![CDATA[The &#8216;Moon whorl&#8217; a common characteristic in Down syndrome &amp; schizophrenia The ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><table border="0" width="100%">
<tbody>
<tr>
<td width="450"><img src="http://handresearch.com/news/pictures/alice-funk-right-hand-moon-whorl.jpg" border="0" alt="Example of a 'Moon whorl' on the palmar hypothenar zone." width="430" align="middle" /></p>
<p><span style="color:#6f1000;"><span style="font-size:small;"><span style="font-size:small;"><strong><span style="font-size:medium;"><a href="http://www.handresearch.com/news/whorl-mount-of-moon-hypothenar-whorls-autism.htm" target="_blank"><span style="color:#0000ff;">The &#8216;Moon whorl&#8217; a common characteristic in Down syndrome &#38; schizophrenia</span></a></span><br />
</strong></span></span></span></p>
<p><span style="color:#6f1000;"><span style="font-size:small;"><span style="font-size:small;"><strong>The &#8216;whorl on the mount of Moon&#8217; (a.k.a. the &#8216;hypothenar whorl&#8217;) is known as one of the mysterious characteristics that can only sometimes be found in the human hand. In 1943 Cummins &#38; Midlo reported in their famous &#8216;Finger Prints, Palms &#38; Soles&#8217; statistics for a sample of 1281 German males. They found the &#8216;true whorl&#8217; on the hypothenar in only 0.7% of right hands and 0.5% of left hands!</strong></p>
<p><span style="font-size:x-small;"><strong>What do we know about the &#8216;Moon whorl&#8217;?</strong></p>
<p>A few quote from the original article:</span></p>
<p><span style="font-size:small;"><img src="http://www.handresearch.com/blog/hand-quote-left.jpg" border="0" alt="" /> <em>&#8220;While the classic palmistry literature describes that the &#8216;hypothenar whorl&#8217; (a.k.a. &#8216;whorl on mount of Moon&#8217;) can be recognized as a sign for finding a &#8216;highly imaginative person&#8217;, various scientific studies have indicated that dermatoglyphic whorls on the mount of moon are linked with Down&#8217;s syndrome + a few other medical problems.&#8221;</em><br />
<img src="http://www.handresearch.com/blog/hand-quote-bottom.jpg" border="0" alt="" /></span></p>
<p><span style="font-size:x-small;"><strong>NEW RESEARCH FINDING ON AUTISM!</strong></p>
<p>Another quote from the article:</p>
<p><span style="font-size:small;"><img src="http://www.handresearch.com/blog/hand-quote-left.jpg" border="0" alt="" /> <em>&#8220;A study on the hands of 30 people with autism (25 men, 5 women) revealed a surprizing high percentage of a specific (very rare) variant of the &#8216;hypothenar whorl&#8217; &#8211; the &#8216;hypothenar composite whorl&#8217;.&#8221;</em><br />
<img src="http://www.handresearch.com/blog/hand-quote-bottom.jpg" border="0" alt="" /></span></p>
<p><span style="color:#000000;"><strong>Some examples of the &#8216;hypothenar composite whorl&#8217; are presented below.</strong></span><br />
<img style="border:0;" src="http://www.handresearch.com/news/pictures/hypothenar-whorls-with-double-loop-centers.jpg" border="0" alt="3 Examples of a variant of the 'hypothenar whorl': the 'hypothenar composite whorl'." width="430" align="center" /></p>
<p>In the perspective of the fact that in the science of fingerprints the &#8216;composite whorl&#8217; is related to the &#8216;double loop&#8217;, it is interesting to notice here that the new finding appears to confirm an earlier reported finding which pointed out that the hands of people with autism are often featured with a <a href="http://www.handresearch.com/news/never-underestimate-little-finger-pinky-pinkie.htm" target="_blank"><span style="color:#0000ff;">&#8216;double loop&#8217; in the fingerprint of the pinky finger</span></a> and the presence of <a href="http://www.handresearch.com/hand/Evolutie/autismeEngels.htm" target="_blank"><span style="color:#0000ff;">2 palmar loops below that 5th finger</span></a>.</p>
<p>In cases you&#8217;re interested to learn more about the basics of <a href="http://onin.com/" target="_blank"><span style="color:#0000ff;">fingerprint classification</span></a> &#8211; the illustration below describes the 8 most common types of fingerprints (including: 2 &#8216;arch&#8217; variants, 2 &#8216;loop&#8217; variants, and 4 &#8216;whorl&#8217; variants).</p>
<p><span style="color:#6f1000;"><span style="font-size:x-small;"><strong>SUGGESTIONS FOR FURTHER READING:</strong></p>
<p>• <a href="http://www.handresearch.com/news/how-fingerprinting-works.htm" target="_blank"><span style="color:#0000ff;">How fingerprinting works!</span></a><br />
• <a href="http://www.handresearch.com/news/fingerprints-reveal-more.htm" target="_blank"><span style="color:#0000ff;">Forensic experts say: &#8216;fingerprints reveal more&#8217;!</span></a><br />
• <a href="http://www.handresearch.com/news/dermatoglyphics-review.htm" target="_blank"><span style="color:#0000ff;">A historical review of research on dermatoglyphics!</span></a></p>
<p><span style="font-size:xx-small;"><span style="color:#000000;"><strong>PICTURE: In the science of fingerprints &#8216;whorls&#8217; is known a one of the 3 basic patterns (next to &#8216;loops&#8217; and &#8217;arches&#8217;) &#8211; about 75% of people have at least 1 fingerprint whorl!</strong></span></span></span><br />
<img style="border:0;" src="http://www.handresearch.com/news/pictures/fingerprint-patterns-arch-loop-whorl.jpg" border="0" alt="The whorl is known as one of the 3 most common fingerprint patterns." width="430" align="center" /><br />
</span></span></span></span></span></td>
</tr>
</tbody>
</table>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[New Forest Sun Rays in the Snow #32 items on zazzle!]]></title>
<link>http://dlmtleart.wordpress.com/2009/11/24/new-forest-sun-rays-in-the-snow-32-items-on-zazzle/</link>
<pubDate>Tue, 24 Nov 2009 21:43:56 +0000</pubDate>
<dc:creator>dlmtleart</dc:creator>
<guid>http://dlmtleart.wordpress.com/2009/11/24/new-forest-sun-rays-in-the-snow-32-items-on-zazzle/</guid>
<description><![CDATA[One of the things I got done last week was to create a series of product using my photo, Forest Sun ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>One of the things I got done last week was to create a series of product using my photo, Forest Sun Rays in the Snow #32. A snow covered branch creates an arch, with ferns hanging from its moss covered bark, across a tree lined path toward the summit of this hill in the woods of Rainier Oregon. Beyond the forest the sky shines crystal blue in the early morning light.</p>
<div style="text-align:center;line-height:150%;"><a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_postage-172023795768801509?rf=238567130389714466"><img style="border:0;" src="http://rlv.zcache.com/forest_sun_rays_in_the_snow_32_postage-p172023795768801509anr9r_500.jpg" alt="Forest Sun Rays in the Snow #32 stamp" /></a><br />
<a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_postage-172023795768801509?rf=238567130389714466">Forest Sun Rays in the Snow #32</a> by <a href="http://www.zazzle.com/dlmtleart*">dlmtleArt</a><br />
View more <a href="http://www.zazzle.com/forest+stamps?rf=238567130389714466">Forest Postage</a></div>
<div style="text-align:center;line-height:150%;"><a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_photocard-243749329366656153?rf=238567130389714466"><img style="border:0;" src="http://rlv.zcache.com/forest_sun_rays_in_the_snow_32_photocard-p2437493293666561532l92p_500.jpg" alt="Forest Sun Rays in the Snow #32 photocard" /></a><br />
<a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_photocard-243749329366656153?rf=238567130389714466">Forest Sun Rays in the Snow #32</a> by <a href="http://www.zazzle.com/dlmtleart*">dlmtleArt</a><br />
<a href="http://www.zazzle.com/custom/photocards?rf=238567130389714466">Create your own photo greeting card</a> at zazzle.com</div>
<div style="text-align:center;line-height:150%;"><a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_stationery-229762335180594377?rf=238567130389714466"><img style="border:0;" src="http://rlv.zcache.com/forest_sun_rays_in_the_snow_32_stationery-p2297623351805943772d7if_500.jpg" alt="Forest Sun Rays in the Snow #32 stationery" /></a><br />
<a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_stationery-229762335180594377?rf=238567130389714466">Forest Sun Rays in the Snow #32</a> by <a href="http://www.zazzle.com/dlmtleart*">dlmtleArt</a><br />
Browse <a href="http://www.zazzle.com/forest+stationery?rf=238567130389714466">Forest Stationery</a></div>
<div style="text-align:center;line-height:150%;"><a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_magnet-147563079205322338?rf=238567130389714466"><img style="border:0;" src="http://rlv.zcache.com/forest_sun_rays_in_the_snow_32_magnet-p1475630792053223388gm5_500.jpg" alt="Forest Sun Rays in the Snow #32 magnet" /></a><br />
<a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_magnet-147563079205322338?rf=238567130389714466">Forest Sun Rays in the Snow #32</a> by <a href="http://www.zazzle.com/dlmtleart*">dlmtleArt</a><br />
Design a <a href="http://www.zazzle.com/custom/magnets?rf=238567130389714466">custom printed magnet</a> on zazzle</div>
<div style="text-align:center;line-height:150%;"><a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_mug-168676247515521294?rf=238567130389714466"><img style="border:0;" src="http://rlv.zcache.com/forest_sun_rays_in_the_snow_32_mug-p1686762475155212942gq8x_500.jpg" alt="Forest Sun Rays in the Snow #32 mug" /></a><br />
<a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_mug-168676247515521294?rf=238567130389714466">Forest Sun Rays in the Snow #32</a> by <a href="http://www.zazzle.com/dlmtleart*">dlmtleArt</a><br />
<a href="http://www.zazzle.com/custom/mugs/steins?rf=238567130389714466">Create customizable steins</a> at zazzle.com</div>
<div style="text-align:center;line-height:150%;"><a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_tie-151560209727748576?rf=238567130389714466"><img style="border:0;" src="http://rlv.zcache.com/forest_sun_rays_in_the_snow_32_tie-p1515602097277485768gnz_500.jpg" alt="Forest Sun Rays in the Snow #32 tie" /></a><br />
<a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_tie-151560209727748576?rf=238567130389714466">Forest Sun Rays in the Snow #32</a> by <a href="http://www.zazzle.com/dlmtleart*">dlmtleArt</a><br />
Browse other <a href="http://www.zazzle.com/forest+ties?rf=238567130389714466">Forest Ties</a></div>
<div style="text-align:center;line-height:150%;"><a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_keychain-146558905419760502?rf=238567130389714466"><img style="border:0;" src="http://rlv.zcache.com/forest_sun_rays_in_the_snow_32_keychain-p1465589054197605028phu_500.jpg" alt="Forest Sun Rays in the Snow #32 keychain" /></a><br />
<a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_keychain-146558905419760502?rf=238567130389714466">Forest Sun Rays in the Snow #32</a> by <a href="http://www.zazzle.com/dlmtleart*">dlmtleArt</a><br />
See other <a href="http://www.zazzle.com/forest+keychains?rf=238567130389714466">Forest Keychains</a></div>
<div style="text-align:center;line-height:150%;"><a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_button-145559538940783280?rf=238567130389714466"><img style="border:0;" src="http://rlv.zcache.com/forest_sun_rays_in_the_snow_32_button-p1455595389407832807pvx_500.jpg" alt="Forest Sun Rays in the Snow #32 button" /></a><br />
<a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_button-145559538940783280?rf=238567130389714466">Forest Sun Rays in the Snow #32</a> by <a href="http://www.zazzle.com/dlmtleart*">dlmtleArt</a><br />
Design a <a href="http://www.zazzle.com/custom/buttons?rf=238567130389714466">cheap button</a> at zazzle</div>
<div style="text-align:center;line-height:150%;"><a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_sticker-217567141193056626?rf=238567130389714466"><img style="border:0;" src="http://rlv.zcache.com/forest_sun_rays_in_the_snow_32_sticker-p217567141193056626836x_500.jpg" alt="Forest Sun Rays in the Snow #32 sticker" /></a><br />
<a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_sticker-217567141193056626?rf=238567130389714466">Forest Sun Rays in the Snow #32</a> by <a href="http://www.zazzle.com/dlmtleart*">dlmtleArt</a><br />
View more <a href="http://www.zazzle.com/forest+stickers?rf=238567130389714466">Forest Stickers</a></div>
<div style="text-align:center;line-height:150%;"><a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_bumper_sticker-128566209544493716?rf=238567130389714466"><img style="border:0;" src="http://rlv.zcache.com/forest_sun_rays_in_the_snow_32_bumper_sticker-p12856620954449371683h9_500.jpg" alt="Forest Sun Rays in the Snow #32 bumpersticker" /></a><br />
<a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_bumper_sticker-128566209544493716?rf=238567130389714466">Forest Sun Rays in the Snow #32</a> by <a href="http://www.zazzle.com/dlmtleart*">dlmtleArt</a><br />
View more <a href="http://www.zazzle.com/forest+bumperstickers?rf=238567130389714466">Forest Bumper Stickers</a></div>
<div style="text-align:center;line-height:150%;"><a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_tshirt-235566843065516495?lifestyle=classic&#38;rf=238567130389714466"><img style="border:0;" src="http://rlv.zcache.com/forest_sun_rays_in_the_snow_32_tshirt-p2355668430655164952p3oo_500.jpg" alt="Forest Sun Rays in the Snow #32 shirt" /></a><br />
<a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_tshirt-235566843065516495?lifestyle=classic&#38;rf=238567130389714466">Forest Sun Rays in the Snow #32</a> by <a href="http://www.zazzle.com/dlmtleart*">dlmtleArt</a><br />
Get a <a href="http://www.zazzle.com/tshirts?rf=238567130389714466">shirt</a> at zazzle.com</div>
<div style="text-align:center;line-height:150%;"><a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_tshirt-235565352427815839?lifestyle=classic&#38;rf=238567130389714466"><img style="border:0;" src="http://rlv.zcache.com/forest_sun_rays_in_the_snow_32_tshirt-p235565352427815839fbtqp_500.jpg" alt="Forest Sun Rays in the Snow #32 shirt" /></a><br />
<a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_tshirt-235565352427815839?lifestyle=classic&#38;rf=238567130389714466">Forest Sun Rays in the Snow #32</a> by <a href="http://www.zazzle.com/dlmtleart*">dlmtleArt</a><br />
Browse <a href="http://www.zazzle.com/forest+tshirts?rf=238567130389714466">Forest T-Shirts</a></div>
<div style="text-align:center;line-height:150%;"><a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_card-137563600928517568?rf=238567130389714466"><img style="border:0;" src="http://rlv.zcache.com/forest_sun_rays_in_the_snow_32_card-p1375636009285175687g1i_500.jpg" alt="Forest Sun Rays in the Snow #32 card" /></a><br />
<a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_card-137563600928517568?rf=238567130389714466">Forest Sun Rays in the Snow #32</a> by <a href="http://www.zazzle.com/dlmtleart*">dlmtleArt</a><br />
Browse more <a href="http://www.zazzle.com/forest+cards?rf=238567130389714466">Forest Cards</a></div>
<div style="text-align:center;line-height:150%;"><a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_card-137563600928517568?rf=238567130389714466"><img style="border:0;" src="http://rlv.zcache.com/forest_sun_rays_in_the_snow_32_card-p1375636009285175687g1i_500.jpg" alt="Forest Sun Rays in the Snow #32 card" /></a><br />
<a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_card-137563600928517568?rf=238567130389714466">Forest Sun Rays in the Snow #32</a> by <a href="http://www.zazzle.com/dlmtleart*">dlmtleArt</a><br />
Browse more <a href="http://www.zazzle.com/forest+cards?rf=238567130389714466">Forest Cards</a></div>
<div style="text-align:center;line-height:150%;"><a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_postcard-239553762719693239?rf=238567130389714466"><img style="border:0;" src="http://rlv.zcache.com/forest_sun_rays_in_the_snow_32_postcard-p2395537627196932397mpi_500.jpg" alt="Forest Sun Rays in the Snow #32 postcard" /></a><br />
<a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_postcard-239553762719693239?rf=238567130389714466">Forest Sun Rays in the Snow #32</a> by <a href="http://www.zazzle.com/dlmtleart*">dlmtleArt</a><br />
Design your own <a href="http://www.zazzle.com/custom/postcards?rf=238567130389714466">Custom postcards</a> on zazzle</div>
<div style="text-align:center;line-height:150%;"><a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_mousepad-144551638560969804?rf=238567130389714466"><img style="border:0;" src="http://rlv.zcache.com/forest_sun_rays_in_the_snow_32_mousepad-p1445516385609698047pdd_500.jpg" alt="Forest Sun Rays in the Snow #32 mousepad" /></a><br />
<a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_mousepad-144551638560969804?rf=238567130389714466">Forest Sun Rays in the Snow #32</a> by <a href="http://www.zazzle.com/dlmtleart*">dlmtleArt</a><br />
View all other <a href="http://www.zazzle.com/mousepads?rf=238567130389714466">custom mousepads</a> at zazzle</div>
<div style="text-align:center;line-height:150%;"><a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_apron-154917926115323189?rf=238567130389714466"><img style="border:0;" src="http://rlv.zcache.com/forest_sun_rays_in_the_snow_32_apron-p1549179261153231897431_500.jpg" alt="Forest Sun Rays in the Snow #32 apron" /></a><br />
<a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_apron-154917926115323189?rf=238567130389714466">Forest Sun Rays in the Snow #32</a> by <a href="http://www.zazzle.com/dlmtleart*">dlmtleArt</a><br />
Browse <a href="http://www.zazzle.com/forest+aprons?rf=238567130389714466">Forest Aprons</a></div>
<div style="text-align:center;line-height:150%;"><a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_bag-149831529639042770?rf=238567130389714466"><img style="border:0;" src="http://rlv.zcache.com/forest_sun_rays_in_the_snow_32_bag-p1498315296390427702ih8f_500.jpg" alt="Forest Sun Rays in the Snow #32 bag" /></a><br />
<a href="http://www.zazzle.com/forest_sun_rays_in_the_snow_32_bag-149831529639042770?rf=238567130389714466">Forest Sun Rays in the Snow #32</a> by <a href="http://www.zazzle.com/dlmtleart*">dlmtleArt</a><br />
Browse more <a href="http://www.zazzle.com/forest+bags?rf=238567130389714466">Forest Bags</a></div>
<div style="text-align:center;"><strong>Images and content on this blog are the intellectual property of Dawna Morton.</strong></div>
<div style="text-align:center;"><strong>ALL RIGHTS RESERVED. Do not copy.</strong></div>
<div style="text-align:center;">Dawna&#8217;s <a title="View my art" href="http://www.redbubble.com/people/dlmtleart"><img src="http://www.redbubble.com/bubblewrap/logos/rb_logo.gif" alt="Buy my art" /></a> Gallery of Greeting Cards, Matted Prints, and T shirts at RedBubble <a title="Buy art on RedBubble.com" href="http://www.redbubble.com/people/dlmtleart?utm_source=RB&#38;utm_medium=banner&#38;utm_campaign=promo_badge_buy_at_rb"><img src="http://www.redbubble.com/bubblewrap/logos/rb_buy.gif" alt="Buy art" /></a></div>
<p style="text-align:center;"><a href="http://www.shareasale.com/r.cfm?u=327443&#38;b=137801&#38;m=10782&#38;afftrack=&#38;urllink=dlmtleart%2Eimagekind%2Ecom">Dawna&#8217;s Fine Art Prints</a> at <a href="http://www.shareasale.com/r.cfm?u=327443&#38;b=137801&#38;m=10782&#38;afftrack=&#38;urllink=dlmtleart%2Eimagekind%2Ecom"><img title="imagekind.com" src="http://dlmtleart.wordpress.com/files/2009/01/buy_my_art.jpg" alt="imagekind.com" width="223" height="38" /></a></p>
<p style="text-align:center;"><a href="http://www.zazzle.com/dlmtleart*">Dawna&#8217;s Zazzle Gallery</a> of items featuring her Art and Photography</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[1]]></title>
<link>http://ersatzkhan.wordpress.com/2009/11/24/1/</link>
<pubDate>Tue, 24 Nov 2009 20:41:06 +0000</pubDate>
<dc:creator>huth</dc:creator>
<guid>http://ersatzkhan.wordpress.com/2009/11/24/1/</guid>
<description><![CDATA[]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><img src="http://ersatzkhan.wordpress.com/files/2009/11/page1.jpg" alt="" /></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[KahelOS, distribución GNU/Linux basada en Archlinux]]></title>
<link>http://mirutalibre.wordpress.com/2009/11/24/kahelos-distribucion-gnulinux-basada-en-archlinux/</link>
<pubDate>Tue, 24 Nov 2009 14:37:24 +0000</pubDate>
<dc:creator>zuargo</dc:creator>
<guid>http://mirutalibre.wordpress.com/2009/11/24/kahelos-distribucion-gnulinux-basada-en-archlinux/</guid>
<description><![CDATA[KahelOS está basado en una distribución GNU/Linux simple. Está concebido para ser una distribución G]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://mirutalibre.wordpress.com/files/2009/11/logokahel.jpg"><img class="aligncenter size-full wp-image-722" title="Logo KahelOS" src="http://mirutalibre.wordpress.com/files/2009/11/logokahel.jpg" alt="Logo KahelOS" width="400" height="96" /></a></p>
<blockquote>
<p style="text-align:justify;"><strong><a href="http://www.kahelos.org/" target="_blank">KahelOS</a></strong> está basado en una distribución GNU/Linux simple. Está concebido para ser una distribución GNU/Linux que va evolucionando.</p>
<p style="text-align:justify;">Está principalmente pensado para proveer lo mejor de ambos mundos para el usuario final de GNU/Linux.</p>
<p style="text-align:justify;">Imagina el beneficio de la optimización, la robustez, la velocidad y ligereza, y el modelo de liberación continuo que sólo los expertos y gurus de GNU/Linux pueden desarrollar y la utilidad de combinar amistad con el usuario (GUI), que nuevos y moderados profesionales de GNU/Linux buscan para ser fácilmente productivos y tomar ventaja de lo que la tecnología del Código Abierto y la colaboración pueden brindar y hacer.</p>
<p style="text-align:justify;"><strong>KahelOS</strong> en ambas ediciones, Servidor y Escritorio, puede legalmente proveerte de aplicaciones personales y empresariales que necesites.</p>
<p style="text-align:justify;">La filosofía de <strong>KahelOS</strong> es <a href="http://www.kahelos.org/philosophy.php" target="_blank">Abierto para el Cambio</a>.</p>
<p style="text-align:right;"><em>Tomado y traducido de <strong><a href="http://www.kahelos.org/" target="_blank">KahelOS</a></strong></em></p>
</blockquote>
<p style="text-align:justify;">Como dice el título de la entrada esta distribución está basada en <a href="http://archlinux.org" target="_blank"><strong>Archlinux</strong></a> y además usa el entorno de escritorio <a href="http://gnome.org" target="_blank"><strong>GNOME</strong></a>. Viene en un live CD gráfico, desde donde se puede instalar el sistema operativo a tu máquina.</p>
<p style="text-align:justify;"><strong>KahelOS</strong> Posee la velocidad y simplicidad que ofrece <strong>Arch</strong>, pero a la vez la facilidad que no posee dicha distribución. Es una buena opción a probar si no te atreves a instalar <strong>Archlinux</strong> porque piensas que se te hará muy complicado o porque eres nuev@ en GNU/Linux.</p>
<div id="attachment_718" class="wp-caption aligncenter" style="width: 310px"><a href="http://mirutalibre.wordpress.com/files/2009/11/kahelosseamosrealistas.jpeg"><img class="size-medium wp-image-718" title="Captura de pantalla de KahelOS" src="http://mirutalibre.wordpress.com/files/2009/11/kahelosseamosrealistas.jpeg?w=300" alt="Captura de pantalla de KahelOS" width="300" height="187" /></a><p class="wp-caption-text">Imagen tomada de (1). Clic para agrandar</p></div>
<div id="attachment_719" class="wp-caption aligncenter" style="width: 310px"><a href="http://mirutalibre.wordpress.com/files/2009/11/kahelos.jpg"><img class="size-medium wp-image-719" title="Captura de pantalla de KahelOS" src="http://mirutalibre.wordpress.com/files/2009/11/kahelos.jpg?w=300" alt="Captura de pantalla de KahelOS" width="300" height="187" /></a><p class="wp-caption-text">Imagen tomada de (2). Clic para agrandar</p></div>
<p>¡Saludos!</p>
<p><a href="http://fausto23.wordpress.com/2009/09/29/kahel-os-arch-linux-para-escritorios-y-servidores/" target="_blank">(1)Seamos Realistas: KahelOs: Archlinux para escritorios y servidores</a></p>
<p><a href="http://www.vivalinux.com.ar/distros/kahel-os-y-chackra-alpha3" target="_blank">(2)Viva linux!: Kahel OS y Chakra Alpha 3</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Foward ever, backward never!]]></title>
<link>http://drowningigby.wordpress.com/2009/11/24/foward-ever-backward-never/</link>
<pubDate>Tue, 24 Nov 2009 13:15:24 +0000</pubDate>
<dc:creator>drowningigby</dc:creator>
<guid>http://drowningigby.wordpress.com/2009/11/24/foward-ever-backward-never/</guid>
<description><![CDATA[„„Adduktoren“ &#8230; Wenn ich sowas schon höre! „Adduktoren!“ Sowas gab es bei uns noch gar nicht. ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><blockquote><p>„„Adduktoren“ &#8230; Wenn ich sowas schon höre! „Adduktoren!“ Sowas gab es bei uns noch gar nicht. Die wurden erst nach meiner Zeit erfunden.“<br />
Max Lorenz (ehemaliger Fussballspieler bei Werder Bremen)</p></blockquote>
<p style="text-align:justify;">Am 17. November erschien die neue Version von Fedora. Die Version hört auf den Codenamen „Constantine“ und trägt die Nummer 12. Die Community hat viel und schwer gearbeitet,<!--more--> um zumindest eine Tradition zu wahren: Fedora 12 kam, wie die meisten Releases, wieder einmal zu spät. Dafür gibt es einen Haufen neuer Technik, die in Constantine eingebaut wurde.</p>
<h3 style="text-align:justify;">Fedora pflegt seine Traditionen</h3>
<p style="text-align:justify;">360 Seiten umfassen die <a href="http://docs.fedoraproject.org/release-notes/f12/en-US/html/" target="_blank">Release Notes</a>, oder anders ausgedrückt: Die CDs bzw. die DVD sind picke packe voll. So erhielt SELinux eine Erweiterung, um eine sog. Sandbox für Anwendungen bilden zu können. Frisch aus der Taufe gehoben wurde das OpenSharedRoot Project. Das macht das, was der Name vermuten lässt. Verschiedene Linux-Installationen können damit dieselbe root-Partition benutzen. Und das sind nur 2 Beispiele, die zeigen, dass Fedora (mal wieder) Techniken einbaut, die bei anderen Distributionen erst in den kommenden Releases dabei sein werden.</p>
<h3 style="text-align:justify;">„bleeding“ oder „leading edge“?</h3>
<p style="text-align:justify;">Fedora legt also zum wiederholten Mal die Messlatte für Innovationen sehr hoch. Für Eingeweihte keine besondere Überraschung, schließlich entwickelt (und testet) hier der Linux-Riese Red Hat. Die Community nennt Distributionen, die an vorderster Softwarefront sind, gerne „cutting edge“. Und als Steigerung „bleeding edge“, wenn ausgedrückt werden soll, dass hier wenig (manchmal auch keine) Rücksicht auf Stabilität genommen wird.<br />
Unter Linux-Nutzer, vor allem unter Neueinsteigern, ein beliebtes Spiel ist, darüber zu diskutieren, welche Distribution am ehesten das Prädikat „bleeding edge“ verdient. Gerne genannt werden dabei <a href="http://www.sidux.com/" target="_blank">Sidux</a> und <a href="https://www.archlinux.de/" target="_blank">Arch</a>. Und mit was? Mit Recht! Schließlich haben Beide stets neueste Software an Bord. Sind diese Distributionen nun aktueller als Fedora? Ein klares jein! Beide haben zwar zügig das neueste KDE, GNOME oder andere Software, aber die neue Technologie hat dann doch Fedora. Oder wie es jemand im deutschen Fedora-Forum <a href="http://www.fedoraforum.de/viewtopic.php?f=19&#38;t=18972&#38;start=15#p107107" target="_blank">schrieb</a>: „Fedora ist nicht bleeding edge sondern leading edge.“</p>
<h3 style="text-align:justify;">Jammern auf hohen Niveau</h3>
<p style="text-align:justify;">Leider hat das Benutzen von Fedora einen leicht faden Beigeschmack. Durch den konsequenten Einsatz neuer Techniken muss man fast immer ein halbes Jahr warten, bis man fremddistributieren kann, ohne auf den gewohnten Luxus verzichten zu müssen.Hört sich nach jammern auf hohen Niveau an, kann aber entscheidend und/oder nervend sein. Wer, als Beispiel, mit Fedora 11 auf ext4 umgestellt hat, durfte beim erneuten Wechsel die home-Partition meist neu formatieren. Klar, das ist kein Weltuntergang, aber trotzdem nervig.<br />
So wird Fedora zur indirekten Falle für alle Entwicklungsjunkies.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[LAST CALL FOR 2009 ORDERS! ]]></title>
<link>http://badecbrosdeco.wordpress.com/2009/11/24/last-call-for-2009-orders/</link>
<pubDate>Tue, 24 Nov 2009 12:49:27 +0000</pubDate>
<dc:creator>badecbros</dc:creator>
<guid>http://badecbrosdeco.wordpress.com/2009/11/24/last-call-for-2009-orders/</guid>
<description><![CDATA[2009 is drawing to a close, and 2010 is waiting in the wings… Our dynamic team at Badec Bros Deco wi]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>2009 is drawing to a close, and 2010 is waiting in the wings… Our dynamic team at Badec Bros Deco will be taking a well-deserved break from 18 December 2009, until 6 January 2010. You have until Thursday, 26 November 2009 to place your orders for delivery in 2009! From next week on, we will be taking the orders for 2010.</p>
<p>Therefore, should you wish to have your very own signature Cubedec steel dustbin, interactive sculpture, Cubedec shelving, Cubedec miniature Zen garden box, 2010 Soccer World Cup décor, mild steel lamp shade, mild steel screen, Cubedec laser-cut logo, gabion counter, narration stand, gabion light cage, gabion bollard, gabion water feature, sculptured living wall, sculptured flagpoles, unique pot and drip tray, customized sculpture, Cubedec bench, trendy steel décor with your company logo emblazoned on it, mild steel inspirational slogan, steel laser-cut signage, mild steel mould, Cubedec Pot, hanging sculpture, gabion pot, gabion wall or gabion terrace, wooden or steel feature poles, bar code trellis, Cubedec water feature, pergola, arch, sculpture or trellis, you can contact our energetic and knowledgeable sales representative, Mareleen van Zijl, on her cell phone at 078 800 5112, the office number at 012 460 7990, or via e-mail at <a href="mailto:mareleen@badecbros.com">mareleen@badecbros.com</a></p>
<p>She will gladly arrange an appointment with you to listen to your ideas and to stun you with our own creative ideas! You dream it, we manufacture it!</p>
<p>Badec Bros Deco will create a 3 dimensional render and calculate a quotation FREE OF CHARGE for you! We can deliver your unique Badec Bros Deco product(s) within 10 to 15 working days, upon acceptance of the design and quotation and the required 50% deposit. These services come standard and will not cost you a cent extra! We offer a 1 year guarantee on all our products.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[CLOSING AND OPENING DATES FOR BADEC BROS DECO 2009]]></title>
<link>http://badecbrosdeco.wordpress.com/2009/11/24/closing-and-opening-dates-for-badec-bros-deco-2009/</link>
<pubDate>Tue, 24 Nov 2009 12:35:02 +0000</pubDate>
<dc:creator>badecbros</dc:creator>
<guid>http://badecbrosdeco.wordpress.com/2009/11/24/closing-and-opening-dates-for-badec-bros-deco-2009/</guid>
<description><![CDATA[2009 is drawing to a close, and 2010 with all of its opportunities and challenges is peeping around ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>2009 is drawing to a close, and 2010 with all of its opportunities and challenges is peeping around the corner …</p>
<p>Our dynamic team at Badec Bros Deco will be taking a well-deserved break from 18 December 2009, until 6 January 2010. We thank you for your valued support and wish you a blessed Christmas and joyous festive season. We look forward to collaborating with you in the new year.</p>
<p>Remember, should you wish to have your very own signature Cubedec steel dustbin, interactive sculpture, Cubedec shelving, Cubedec miniature Zen garden box, 2010 Soccer World Cup décor, mild steel lamp shade, mild steel screen, Cubedec laser-cut logo, gabion counter, narration stand, gabion light cage, gabion bollard, gabion water feature, sculptured living wall, sculptured flagpoles, unique pot and drip tray, customized sculpture, Cubedec bench, trendy steel décor with your company logo emblazoned on it, mild steel inspirational slogan, steel laser-cut signage, mild steel mould, Cubedec Pot, hanging sculpture, gabion pot, gabion wall or gabion terrace, wooden or steel feature poles, bar code trellis, Cubedec water feature, pergola, arch, sculpture or trellis, you can contact our energetic and knowledgeable sales representative, Mareleen van Zijl, on her cell phone at 078 800 5112, the office number at 012 460 7990, or via e-mail at <a href="mailto:mareleen@badecbros.com">mareleen@badecbros.com</a></p>
<p>She will gladly arrange an appointment with you to listen to your ideas and to stun you with our own creative ideas! You dream it, we manufacture it! Badec Bros Deco will create a 3 dimensional render and calculate a quotation FREE OF CHARGE for you! We can deliver your unique Badec Bros Deco product(s) within 10 to 15 working days, upon acceptance of the design and quotation and the required 50% deposit. These services come standard and will not cost you a cent extra! We offer a 1 year guarantee on all our products.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[DECORATIVE IDEAS FOR HIDING AIR CONDITIONING UNITS]]></title>
<link>http://badecbrosdeco.wordpress.com/2009/11/24/decorative-ideas-for-hiding-air-conditioning-units/</link>
<pubDate>Tue, 24 Nov 2009 12:22:00 +0000</pubDate>
<dc:creator>badecbros</dc:creator>
<guid>http://badecbrosdeco.wordpress.com/2009/11/24/decorative-ideas-for-hiding-air-conditioning-units/</guid>
<description><![CDATA[We have had quite a few requests to provide décor ideas to hide unsightly air conditioning units in ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>We have had quite a few requests to provide décor ideas to hide unsightly air conditioning units in gardens. Badec Bros Deco specializes in feature walls, such as gabion feature walls. These designer walls are ideal to hide air conditioning units, unsightly views, or ugly old walls, without having to remove the existing wall.</p>
<p>We manufacture our gabion walls from 30mm x 3mm angle iron, which is welded together to ensure a strong frame. Then we weld strong, steel mesh onto the frame to create the shape of the wall. Once the hollow wall structure has been manufactured, we install it on site and fill it with pebbles, slate stone or chunky quartzite gravel.</p>
<p>Alternatively, we can also construct mild steel feature walls and add intricate detail to the surface of the steel to decorate it. There are three finishes to choose from. We can powder coat the feature wall in any colour imaginable, or we can apply mild steel finish or a rusted finish. Our powder coating is SABS approved.</p>
<p>Badec Bros Deco can also manufacture mild steel screens. These screens can be used to create privacy or to hang Cubedec hanging pots or hanging sculptures onto. We can customize our mild steel screens to any size and shape and with a wide range of finishes, such as powder coating in any colour, mild steel finish or a rust effect or even wooden cladding.</p>
<p>Should you wish to have your very own signature Cubedec feature wall, steel dustbin, interactive sculpture, Cubedec shelving, Cubedec miniature Zen garden box, 2010 Soccer World Cup décor, mild steel lamp shade, mild steel screen, Cubedec laser-cut logo, gabion counter, narration stand, gabion light cage, gabion bollard, gabion water feature, sculptured living wall, sculptured flagpoles, unique pot and drip tray, customized sculpture, Cubedec bench, trendy steel décor with your company logo emblazoned on it, mild steel inspirational slogan, steel laser-cut signage, mild steel mould, Cubedec Pot, hanging sculpture, gabion pot, gabion wall or gabion terrace, wooden or steel feature poles, bar code trellis, Cubedec water feature, pergola, arch, sculpture or trellis, please feel free to contact our energetic and knowledgeable sales representative, Mareleen van Zijl, on her cell phone at 078 800 5112, the office number at 012 460 7990, or via e-mail at <a href="mailto:mareleen@badecbros.com">mareleen@badecbros.com</a></p>
<p>She will gladly arrange an appointment with you to listen to your ideas and to stun you with our own creative ideas! You dream it, we manufacture it!</p>
<p>Badec Bros Deco will create a 3 dimensional render and calculate a quotation FREE OF CHARGE for you! We can deliver your unique Badec Bros Deco product(s) within 10 to 15 working days, upon acceptance of the design and quotation and the required 50% deposit. These services come standard and will not cost you a cent extra! We offer a 1 year guarantee on all our products.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[The floods of November 2009: O'Briensbridge, Errina and Castleconnell]]></title>
<link>http://irishwaterwayshistory.com/2009/11/23/the-floods-of-november-2009-obriensbridge-errina-and-castleconnell/</link>
<pubDate>Mon, 23 Nov 2009 14:16:32 +0000</pubDate>
<dc:creator>bjg</dc:creator>
<guid>http://irishwaterwayshistory.com/2009/11/23/the-floods-of-november-2009-obriensbridge-errina-and-castleconnell/</guid>
<description><![CDATA[Here is a page about the upper end of the old Limerick Navigation, with photos of the Ardnacrusha he]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Here is a page about the upper end of the old <a title="Limerick Navigation floods upper" href="http://wp.me/Ppxzo-Ig" target="_blank">Limerick Navigation</a>, with photos of the Ardnacrusha headrace, Castleconnell and its weir and quay, O&#8217;Briensbridge, Errina bridge and Doonass. There are photos taken over the last few days and older photos, showing normal (post-Ardnacrusha) levels at the same locations. The recent photos do at least give a hint of the levels that the pre-Ardnacrusha waterway coped with.</p>
<p>At time of writing, the ESB says it is going to release more water down the river to O&#8217;Briensbridge, Castleconnell and Limerick.</p>
<p>Photos of the lower stretches (Plassey, Corbally, the canal harbour and the Abbey River) will be posted later (floods permitting).</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[The Fog]]></title>
<link>http://anotherrunner.wordpress.com/2009/11/23/the-fog/</link>
<pubDate>Mon, 23 Nov 2009 03:44:41 +0000</pubDate>
<dc:creator>anotherrunner</dc:creator>
<guid>http://anotherrunner.wordpress.com/2009/11/23/the-fog/</guid>
<description><![CDATA[Today&#8217;s run (actually scheduled for yesterday) was 13 Miles LSD (Long Slow Distance.) I try to]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://anotherrunner.wordpress.com/files/2009/11/img_02481.jpg"><img class="alignright size-full wp-image-103" title="Lake in the Fog" src="http://anotherrunner.wordpress.com/files/2009/11/img_02481.jpg" alt="" width="252" height="336" /></a>Today&#8217;s run (actually scheduled for yesterday) was 13 Miles LSD (Long Slow Distance.) I try to run on trails for my weekend runs since my December run will be on the trails.</p>
<p>As I drove toward the trailhead, the weather began to get pretty foggy. I wasn&#8217;t expecting a sunny day but I wasn&#8217;t  expecting quite so much white stuff, either.</p>
<p>I packed my hydration pack with some Gu and Accel energy gels as well as my camera, phone and kleenex. I grabbed a trail map and was off.</p>
<p>The trail was a little bit damp but very runnable. Unfortunately I didn&#8217;t really feel like running. Another &#8220;blah&#8221; day. I found myself looking forward to the uphills so that I could walk. I was determined to stick to the schedule 13 miles, though.</p>
<p>I liked the fog and stopped several times to take pictures. At one point, the fog was so heavy that it looked like a very light rain coming down. I had to pause or slow down several times during my run to wipe the beads of water off of my glasses.</p>
<p>I have run on this trail before and I passed some signs that I hadn&#8217;t seen before: &#8220;Chestnuts gathered off the trail are not free for the taking.&#8221; The notice further advised the offender to continue up the trail to pay for any gathered chestnuts. I don&#8217;t even know what a chestnut looks like, but my usual habit when in nature is to take a picture rather than to take a memento. So, I took a picture of the sign.</p>
<div id="attachment_109" class="wp-caption alignleft" style="width: 235px"><a href="http://anotherrunner.wordpress.com/files/2009/11/img_02531.jpg"><img class="size-medium wp-image-109" title="Chestnut sign" src="http://anotherrunner.wordpress.com/files/2009/11/img_02531.jpg?w=225" alt="" width="225" height="300" /></a><p class="wp-caption-text">Warning Notice to Chestnut Gatherers on the Trail!</p></div>
<p>Soon afterwards, I passed the trailer from where the chestnuts were being sold. Honey was also available. I saw that business was &#8212; while not actually booming &#8212; occurring. I later found out that people could be supplied with gloves and a bucket if they wanted to pick their own chestnuts.</p>
<p>Today I took a slightly different route when I arrived at the junction of Peters Creek and Long Ridge Trails. Normally, I avoid Long Ridge because it is an immediate climb from the junction. Today, because I felt like walking, I chose that route. Plus, it was fun to see a different trail. It was a pretty intense climb for about 1/2 to 3/4 of a mile, though. Coming back would be more fun though I had to take care because the trail was slippery from the wet weather.</p>
<div id="attachment_107" class="wp-caption alignleft" style="width: 310px"><a href="http://anotherrunner.wordpress.com/files/2009/11/img_02571.jpg"><img class="size-medium wp-image-107 " title="Vista Point" src="http://anotherrunner.wordpress.com/files/2009/11/img_02571.jpg?w=300" alt="" width="300" height="225" /></a><p class="wp-caption-text">No View at Vista Point</p></div>
<p>I came across a stone bench overlooking what was probably a beautiful view under clearer circumstances.</p>
<p>I continued for 6.53 miles and then turned around. I felt like I should make better time on the return because I would have more downhills on the return. Plus, I was highly motivated. I wanted a vanilla latte.</p>
<p>The run back was pretty uneventful. I ran into bicyclists who were struggling a little bit on the muddy, uphill trails.</p>
<p>I returned to the start and saw that my watch said 12.94 miles. I was .06 miles short. I turned around and ran back down the trail for about .03 miles and then turned back again. Yes, I&#8217;m one of <em>those</em> runners. If I&#8217;m supposed to run 13 miles, it will be 13 miles. Or more. But not less.</p>
<p>I did have a little bit of discomfort during this run. My Achilles were  tight from about the halfway point until the end of the run. I stretched them a little when I finished the run but I should be stretching them regularly. The arch on my left foot was also hurting a little bit. This would be a problem that Ibuprofen would be solving later.</p>
<p>After the run, I drove to the chestnut stand to buy some chestnuts. I don&#8217;t even know how &#8212; or if you even have to &#8212; cook chestnuts. I thought that at the least I could roast them, right? Isn&#8217;t that what the song says? I picked up 1-1/2 pounds thinking that I could figure out the rest later. It turned out that I was lucky to stop by today; it was the last day for the chestnut stand.</p>
<p>An hour later, I was warm at home, Googling chestnut recipes.</p>
<p>&#160;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[]]></title>
<link>http://mylittlelolipop.wordpress.com/2009/11/23/246/</link>
<pubDate>Mon, 23 Nov 2009 01:38:30 +0000</pubDate>
<dc:creator>alwayslovecandy</dc:creator>
<guid>http://mylittlelolipop.wordpress.com/2009/11/23/246/</guid>
<description><![CDATA[kuil parthenon, adalah salah satu ikon untuk arsitektur klasik yang terkenal dengan struktur megah d]]></description>
<content:encoded><![CDATA[kuil parthenon, adalah salah satu ikon untuk arsitektur klasik yang terkenal dengan struktur megah d]]></content:encoded>
</item>
<item>
<title><![CDATA[The meaning of flowers for weddings]]></title>
<link>http://lamberdebieflowers.wordpress.com/2009/11/22/the-meaning-of-flowers-for-weddings/</link>
<pubDate>Sun, 22 Nov 2009 18:23:01 +0000</pubDate>
<dc:creator>Lamber de Bie</dc:creator>
<guid>http://lamberdebieflowers.wordpress.com/2009/11/22/the-meaning-of-flowers-for-weddings/</guid>
<description><![CDATA[If you plan to walk down the aisle anytime soon, you should be aware that the flowers you carry migh]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>If you plan to walk down the aisle anytime soon, you should be aware that the flowers you carry might say more than you intended. That’s right; most flowers carry a meaning, or a special significance that has been passed down from generation to generation.</p>
<p>We can trace this back to the Victorian Era. It was improper in those days for a man to come out and tell a lady how he felt, so he would choose a flower with special meaning and send it her instead. Because the meaning of flowers was so well known, the woman receiving them understood the message as clearly as if it was written on a piece of paper.</p>
<p>As every flower lover knows, flowers have a language all of their own. Every sentiment can be expressed with flowers. Wedding flowers are no different. For instance, you wouldn’t want to have yellow carnations at your wedding if you knew that yellow carnations mean disappointment and rejection. Make sure you know what the flowers mean before you use them as your wedding flowers.</p>
<p>There is a reason that roses are the most popular choice of flowers for brides. A white rose stands for innocence, beauty and charm-just the traits every bride wants to portray. A bride that chooses red roses for her wedding flowers is sending a message of passion and of fiery love. If dark pink roses are used for a wedding, the couple is expressing a thankfulness that they found each other.</p>
<p>An ivy coloured Rose stands for fidelity in the marriage-something every new couple strives for. Pink roses mean perfect happiness but yellow roses mean jealousy. Sometimes, it’s not the colour that holds the meaning but the type. A tea rose means I’ll always remember you but a dried white rose means I would rather die than lose my virtue. Rosebuds means beauty and youth but roses signify secrecy and silence.</p>
<p>Roses aren’t the only flowers that hold meaning. Lilies are a very popular wedding flower. The most popular type of lily is the Calla Lily, which means beauty. Most lilies have beautiful meanings. The white lily means it’s heavenly to be with you while the yellow lily means I’m walking on air. Did you know that the day lily is the Chinese symbol for Mother? The tiger lily means wealth and pride.</p>
<p>Not all flowers have negative meanings; there are very few negative meanings for tulips. Tulips in general mean the perfect lover; this might be a good one to tuck into the buttonhole on his tux. Red tulips are a declaration of love while a yellow tulip means there is sunshine in your smile. If you are having a spring wedding, there is simply no better way to express your love for your future spouse than by carrying a bouquet of tulips. They are not only beautiful, but speak of an undying love.</p>
<p>There are some flowers you can just look at and assume you know what they mean. Never be too hasty in assuming anything. For instance, when you look at a cactus you would think that there had to be a negative meaning for it – wrong. A cactus means endurance and forever. This fits if you think about the cactus; they can survive anything.</p>
<p>There are so many different types of wedding flowers that no one could name them all but here are a few more. Peonies mean shame. Orchids are the Chinese symbol for many children.</p>
<p>No matter what wedding flowers you pick, no one is really going to know the meaning unless you tell them. Your wedding flowers, like your wedding, should be memorable and not based on superstition. Finding the meanings of flowers is like being superstitious about the groom seeing the bride in her wedding dress before the wedding. We make our own luck.</p>
<p>As you can see, the flowers that you choose for your wedding will definitely set the mood. Knowing that, before you select your flowers, determine what type of wedding and reception event you want to have. Once you do that, choosing the flowers will be a breeze.</p>
<p>&#160;</p>
<p><strong>Lamber de Bie</strong></p>
<p>Dutch Master Florist</p>
<p>www.lamberdebie.com</p>
<p>&#160;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Coliseum IIIa]]></title>
<link>http://centerstone.wordpress.com/2009/11/21/coliseum-iiia/</link>
<pubDate>Sat, 21 Nov 2009 17:16:13 +0000</pubDate>
<dc:creator>Ed  B</dc:creator>
<guid>http://centerstone.wordpress.com/2009/11/21/coliseum-iiia/</guid>
<description><![CDATA[Today I am taking the pieces out of the molds for an additional section to my &#8216;coliseum&#8217;]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><strong>Today I am taking the pieces out of the molds</strong> for an additional section to my &#8216;coliseum&#8217;. Naturally, I can&#8217;t spend the entire day on the project &#8230; trip to the transfer station, eating, walking the dogs &#8230; little things like that can sometimes not be avoided and can tend to slow the progress. However, I am taking pictures as I go &#8230; and, so will be posting them &#8230; more than likely tomorrow &#8230; Sunday.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Cómo crear una lista de los paquetes instalados con pacman en Archlinux]]></title>
<link>http://mirutalibre.wordpress.com/2009/11/20/como-crear-una-lista-de-todos-los-paquetes-instalados-en-archlinux/</link>
<pubDate>Sat, 21 Nov 2009 02:13:04 +0000</pubDate>
<dc:creator>zuargo</dc:creator>
<guid>http://mirutalibre.wordpress.com/2009/11/20/como-crear-una-lista-de-todos-los-paquetes-instalados-en-archlinux/</guid>
<description><![CDATA[De seguro cuando vas a reinstalar tu sistema, por el motivo que sea, te da una &#8220;lata&#8221; en]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;"><a href="http://mirutalibre.wordpress.com/files/2009/09/128px-archlinux-icon-128.png"><img class="alignleft size-full wp-image-418" title="Archlinux-icon" src="http://mirutalibre.wordpress.com/files/2009/09/128px-archlinux-icon-128.png" alt="" width="128" height="128" /></a>De seguro cuando vas a reinstalar tu sistema, por el motivo que sea, te da una &#8220;lata&#8221; enorme tener que volver a ingresar en la terminal cada uno de los paquetes que necesitas y que seguramente tenías instalados en tu <strong>Archlinux</strong> antes de reinstalar. Pues bien, el siguiente comando, crea un registro o una lista con todos los paquetes instalados, mediante <strong>pacman</strong>, en tu sistema:</p>
<p><code>$ sudo ﻿pacman -Qe &#62; paquetes_instalados.txt</code></p>
<p style="text-align:justify;">Luego, para instalar todos los paquetes contenidos en la lista generada, corre el siguiente comando:</p>
<p><code>$ sudo for x in $(cat paquetes_instalados.txt); do pacman -S $x; done</code></p>
<p style="text-align:justify;">Con eso de seguro te ahorrarás mucho trabajo al momento de hacer la instalación nueva de <strong>Archlinux</strong>.</p>
<p style="text-align:justify;">Lo que es yo, prefiero ir haciéndolo todo paso a paso, para que todo quede lo mejor posible, pues si bien es cierto que puede resultar ser un buen método, el mostrado en esta entrada, no me confío mucho de las automatizaciones.</p>
<p>Saludos y ojalá a alguien le sirva.</p>
<p><strong>Fuente</strong> &#124; <a href="http://tuxtraining.com/2009/09/26/create-a-list-of-all-installed-packages-on-arch-linux" target="_blank">Tux Training: ﻿Create a List of all installed packages on Arch Linux</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[VBA-M, un emulador de GBA para GNU/Linux]]></title>
<link>http://mirutalibre.wordpress.com/2009/11/20/vba-m-un-emulador-de-gba-para-gnulinux/</link>
<pubDate>Sat, 21 Nov 2009 00:21:05 +0000</pubDate>
<dc:creator>zuargo</dc:creator>
<guid>http://mirutalibre.wordpress.com/2009/11/20/vba-m-un-emulador-de-gba-para-gnulinux/</guid>
<description><![CDATA[Si eres de los jugones y que más encima te gustan las consolas de Nintendo, de seguro conoces Visual]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;"><a href="http://mirutalibre.wordpress.com/files/2009/11/gba.png"><img class="alignright size-full wp-image-664" title="gba" src="http://mirutalibre.wordpress.com/files/2009/11/gba.png" alt="" width="128" height="128" /></a>Si eres de los jugones y que más encima te gustan las consolas de Nintendo, de seguro conoces <a href="http://vba.ngemu.com/" target="_blank">VisualBoyAdvance</a> un emulador para GBA que se encuentra disponible para GNU/Linux entre otros. Como sabrás VBA está abandonado hace un buen tiempo, es por ello, que nace <strong><a href="http://vba-m.com/" target="_blank">VBA-M</a></strong>, con el objetivo de mejorar VisualBoyAdvance<a href="http://sourceforge.net/projects/vbam/" target="_blank"><sup>[1]</sup></a> y retomar la emulación de la GBA en nuestros computadores.</p>
<p style="text-align:justify;">El proyecto aún está en pañales (y la verdad, desde septiembre de 2009, no lo han actualizado mucho), sin embargo, se supone, ofrece una mejor emulación de roms de GBA en comparación a VBA puesto que está basado en ese último y ya se le han agregado varias modificaciones.</p>
<p style="text-align:justify;">Si quieres probar <strong>VBA-M</strong> puedes descargar un<em> SVN build</em> desde la página oficial de <a href="http://vba-m.com/index.php?ind=downloads&#38;op=section_view&#38;idev=3" target="_blank">descargas</a> empaquetado para debian (.deb) o distros derivadas. Aún no se ha lanzado alguna versión del emulador, es por ello, que sólo están disponibles a fecha de hoy (20 de Noviembre de 2009) dichos <em>SVN build</em>.</p>
<p style="text-align:justify;">Sin embargo, te recomiendo instalar la versión <em>SVN</em> y actualizarla cuando se informe en la <a href="http://sourceforge.net/projects/vbam/" target="_blank">página de VBA-M en SourceForge</a>, que una nueva revisión ha sido lanzada. Puedes encontrar más información al respecto <a href="http://sourceforge.net/projects/vbam/develop" target="_blank">aquí</a>.</p>
<p style="text-align:justify;">Si usas <strong><a href="http://archlinux.org" target="_blank">Archlinux</a></strong>, estás de suerte, porque existe en el <strong><a href="http://aur.archlinux.org/" target="_blank">AUR</a></strong> un <strong><a href="http://aur.archlinux.org/packages.php?ID=16851" target="_blank">PKGBUILD</a></strong> para instalar la versión<em> SVN</em> del programa. Si usas <strong><a href="http://archlinux.fr/yaourt-en" target="_blank">yaourt</a></strong> no es más trabajo que:</p>
<p style="text-align:justify;"><code>$ yaourt -S ﻿﻿vba-m-gtk-svn</code></p>
<p style="text-align:justify;">Recuerda que para actualizar la aplicación a una nueva revisión, sólo debes generar y luego instalar el paquete <strong>.pkg.tar.gz</strong> correspondiente, con el mismo comando antes usado.</p>
<p style="text-align:justify;">Página de <a href="http://sourceforge.net/projects/vbam/" target="_blank"><strong>VBA-M</strong> en SourceForge</a></p>
<p style="text-align:justify;">Sitio <a href="http://vba-m.com/" target="_blank">web oficial de <strong>VBA-M</strong></a></p>
<p style="text-align:justify;">Otro <a href="http://forums.ngemu.com/vba-m-discussion/" target="_blank">sitio web</a>, al parecer oficial pero en desuso</p>
<p style="text-align:justify;">Saludos.</p>
<p style="text-align:justify;"><a href="http://sourceforge.net/projects/vbam/" target="_blank"><sup>[1]</sup>SourceForge: <strong>VBA-M</strong></a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[High Line Park_New York]]></title>
<link>http://passatellicrudiallafermatadel2.wordpress.com/2009/11/19/high-line-park_new-york/</link>
<pubDate>Thu, 19 Nov 2009 22:47:11 +0000</pubDate>
<dc:creator>Uomo Busta</dc:creator>
<guid>http://passatellicrudiallafermatadel2.wordpress.com/2009/11/19/high-line-park_new-york/</guid>
<description><![CDATA[Sicuramente Sal Paradiso si riferiva a questo cielo quando guardava in direzione del New Jersey dal ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><img class="aligncenter" src="http://farm4.static.flickr.com/3435/3761093641_208dd6a504.jpg" alt="" width="496" height="327" /></p>
<p>Sicuramente Sal Paradiso si riferiva a questo cielo quando guardava in direzione del New Jersey dal finestrino dell&#8217;auto di Dean Moriarty. Lo stesso cielo che riusciremmo a vedere se fossimo sull&#8217;<a href="http://www.inhabitat.com/2009/06/09/new-yorks-high-line-park-in-the-sky-opens-today/" target="_blank">High Line Park</a> a New York. L&#8217;8 giugno 2009, l&#8217;apertura al pubblico del progetto di <a href="http://www.fieldoperations.net/" target="_blank">James Corner Field Operations</a>, con la collaborazione <a href="http://www.dillerscofidio.com/" target="_blank">Diller Scofidio + Renfro</a>, è stata seguita da un enorme entusiasmo mediatico<em>. </em>Foto, video, pubblicazioni però non riescono a trasmettere l&#8217;atmosfera che si respira su questo &#8220;nastro di verde pensile&#8221; che attraversa il Meatpacking District di Manhattan. Sul <a href="http://www.thehighline.org/" target="_blank">sito ufficiale</a> ci sono le foto delle varie fasi di realizzazione.</p>
<p style="text-align:center;"><img class="aligncenter" src="http://gothamist.com/attachments/jen/2009_06_high14.jpg" alt="" width="495" height="330" /></p>
<p style="text-align:center;"><img class="aligncenter" src="http://gothamist.com/attachments/arts_jen/phpo2PoD0PM.jpg" alt="" width="497" height="331" /></p>
<p>(<a href="http://gothamist.com/2009/06/08/ribbon_officially_cut_at_the_high_l.php" target="_blank">Via</a>)</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[CUBEDEC A POTS AND PEDESTALS ]]></title>
<link>http://badecbrosdeco.wordpress.com/2009/11/19/cubedec-a-pots-and-pedestals/</link>
<pubDate>Thu, 19 Nov 2009 11:38:24 +0000</pubDate>
<dc:creator>badecbros</dc:creator>
<guid>http://badecbrosdeco.wordpress.com/2009/11/19/cubedec-a-pots-and-pedestals/</guid>
<description><![CDATA[Badec Bros Deco has manufactured a wide range of impressive Cubedec pots over the past 2 years. We r]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://badecbrosdeco.wordpress.com/files/2009/11/dscf1902.jpg"><img class="alignleft size-medium wp-image-750" src="http://badecbrosdeco.wordpress.com/files/2009/11/dscf1902.jpg?w=300" alt="" width="300" height="300" /></a><a href="http://badecbrosdeco.wordpress.com/files/2009/11/dscf1916.jpg"><img class="alignleft size-medium wp-image-751" src="http://badecbrosdeco.wordpress.com/files/2009/11/dscf1916.jpg?w=299" alt="" width="299" height="300" /></a></p>
<p>Badec Bros Deco has manufactured a wide range of impressive Cubedec pots over the past 2 years. We recently combined our stylish Cubedec A pots with mild steel Cubedec pedestals, to decorate the garden of a client.</p>
<p>Our Cubedec A pots and Cubedec pedestals are manufactured from 1,6mm mild steel sheets, which we fold and weld. All our pots are manufactured with a round inner steel bar to support plastic planters, which come standard with all our pots, unless otherwise specified.</p>
<p>You can choose between three finishes for your Cubedec pot: rusted, mild steel finish, or powder coating in any colour you can dream of. Our powder coating is SABS approved. Once the chosen finish has been applied, we seal the pot to protect it from rusting. We can customize these stylish planters to any size and shape and finish them off in a wide range of materials. We can also manufacture these pots and pedestals from grade 304 stainless steel. Other decorative options include mosaic cladding, wooden cladding and even laser-cut signage or designs in the steel.</p>
<p>Should you wish to have your very own signature Cubedec A pot and pedestal combination, Cubedec bench with your laser-cut logo, modern pergola, Cubedec steel dustbin, interactive sculpture, Cubedec shelving, Cubedec miniature Zen garden box, 2010 Soccer World Cup décor, mild steel lamp shade, mild steel screen, gabion counter, narration stand, gabion light cage, gabion bollard, gabion water feature, sculptured living wall, sculptured flagpoles, unique pot and drip tray, customized sculpture, trendy steel décor with your company logo emblazoned on it, mild steel inspirational slogan, steel laser-cut signage, mild steel mould, Cubedec Pot, hanging sculpture, gabion pot, gabion wall or gabion terrace, wooden or steel feature poles, bar code trellis, Cubedec water feature, arch, sculpture or trellis, please feel free to contact our energetic and knowledgeable sales representative, Mareleen van Zijl, on her cell phone at 078 800 5112, the office number at 012 460 7990, or via e-mail at <a href="mailto:mareleen@badecbros.com">mareleen@badecbros.com</a></p>
<p>She will gladly arrange an appointment with you to listen to your ideas and to stun you with our own creative ideas! You dream it, we manufacture it!</p>
<p>Badec Bros Deco will create a 3 dimensional render and calculate a quotation FREE OF CHARGE for you! We can deliver your unique Badec Bros Deco product(s) within 10 to 15 working days, upon acceptance of the design and quotation and the required 50% deposit. These services come standard and will not cost you a cent extra! We offer a 1 year guarantee on all our products.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Để yên-vui-chờ-đợi.]]></title>
<link>http://nguyenkdo.wordpress.com/2009/11/19/de-yen-vui-cho-doi/</link>
<pubDate>Thu, 19 Nov 2009 10:41:12 +0000</pubDate>
<dc:creator>Nguyen K. Do</dc:creator>
<guid>http://nguyenkdo.wordpress.com/2009/11/19/de-yen-vui-cho-doi/</guid>
<description><![CDATA[Để yên-vui-chờ-đợi. (IMG_6235-W1), originally uploaded by Nguyen K. Do. Eltham, November 2009. Nguye]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div style="text-align:left;padding:3px;"><a title="photo sharing" href="http://www.flickr.com/photos/khoinguyen_do/4082142236/"><img style="border:solid 2px #000000;" src="http://farm3.static.flickr.com/2791/4082142236_ff7bcb7f6b.jpg" alt="" /></a><br />
<span style="font-size:.8em;margin-top:0;"><a href="http://www.flickr.com/photos/khoinguyen_do/4082142236/">Để yên-vui-chờ-đợi. (IMG_6235-W1)</a>, originally uploaded by <a href="http://www.flickr.com/people/khoinguyen_do/">Nguyen K. Do</a>.</span></div>
<p>Eltham, November 2009.<br />
Nguyen K. Do © 2009</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Cityscapes Outing - Camera Club of Ottawa]]></title>
<link>http://robhuntley.wordpress.com/2009/11/18/cityscapes-outing-camera-club-of-ottawa/</link>
<pubDate>Thu, 19 Nov 2009 03:04:13 +0000</pubDate>
<dc:creator>Rob Huntley</dc:creator>
<guid>http://robhuntley.wordpress.com/2009/11/18/cityscapes-outing-camera-club-of-ottawa/</guid>
<description><![CDATA[This Camera Club of Ottawa outing was on a foggy Sunday morning. The assignment was to shoot urban i]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>This Camera Club of Ottawa outing was on a foggy Sunday morning. The assignment was to shoot urban images in Black and White at 400 ISO within the boundaries of Wellington Street to Laurier Street and Bay Street to Elgin Street. We could submit 6 images in total. These were my shots. Click on the image to find it on my website and you find another link at the bottom of each image to view the colour equivalent. I had to convert from colour in photoshop since the Nikon D70s doesn&#8217;t have the capability to shoot B&#38;W. I find it preferable to convert in photoshop anyway.</p>
<p>A look along the Memorial Arch which crosses Lyon Street in Ottawa, between the East and West Veterans Memorial Buildings.<br />
<a href="http://www.robhuntley.ca/Camera-Club-of-Ottawa/2009-2010-Season/Cityscapes-Outing/10366886_QY42z#717629291_cbRqb"><img src="http://www.robhuntley.ca/Camera-Club-of-Ottawa/2009-2010-Season/Cityscapes-Outing/DSC444867tonemappedadjBW/717629291_cbRqb-S.jpg" alt="A look along the Memorial Arch which crosses Lyon Street in Ottawa, between the East and West Veterans Memorial Buildings." /></a></p>
<p>Railing and leaves along a sidewalk between two major streets in downtown Ottawa.</p>
<p><a href="http://www.robhuntley.ca/Camera-Club-of-Ottawa/2009-2010-Season/Cityscapes-Outing/10366886_QY42z#717627062_GfPLZ"><img src="http://www.robhuntley.ca/Camera-Club-of-Ottawa/2009-2010-Season/Cityscapes-Outing/DSC460756tonemappedadjBW/717627062_GfPLZ-S.jpg" alt="Railing and leaves along a sidewalk between two major streets in downtown Ottawa." /></a></p>
<p>Ottawa back alley and a loading bay entrance for a downtown merchant.<br />
<a href="http://www.robhuntley.ca/Camera-Club-of-Ottawa/2009-2010-Season/Cityscapes-Outing/10366886_QY42z#717628600_GP4F6"><img src="http://www.robhuntley.ca/Camera-Club-of-Ottawa/2009-2010-Season/Cityscapes-Outing/DSC46706869tonemappedadjBW/717628600_GP4F6-S.jpg" alt="Ottawa back alley and a loading bay entrance for a downtown merchant." /></a></p>
<p>Back side of a high rise building in downtown Ottawa.<br />
<a href="http://www.robhuntley.ca/Camera-Club-of-Ottawa/2009-2010-Season/Cityscapes-Outing/10366886_QY42z#717627818_Kv7SV"><img src="http://www.robhuntley.ca/Camera-Club-of-Ottawa/2009-2010-Season/Cityscapes-Outing/DSC46312930tonemappedadjBW/717627818_Kv7SV-S.jpg" alt="Back side of a high rise building in downtown Ottawa." /></a></p>
<p>The stairs at L&#8217;Esplanade Laurier on Bank Street in Ottawa.<br />
<a href="http://www.robhuntley.ca/Camera-Club-of-Ottawa/2009-2010-Season/Cityscapes-Outing/10366886_QY42z#717630881_CjbfT"><img src="http://www.robhuntley.ca/Camera-Club-of-Ottawa/2009-2010-Season/Cityscapes-Outing/DSC45908889tonemappedadjBW/717630881_CjbfT-S.jpg" alt="The stairs at L'Esplanade Laurier on Bank Street in Ottawa." /></a></p>
<p>Tree against a tiled wall. A few remaining leaves and some yellow Christmas lights add a bit of colour to this late November image. Alterna Savings (formerly CS-Coop) building on Albert Street in Ottawa, Ontario<br />
<a href="http://www.robhuntley.ca/Camera-Club-of-Ottawa/2009-2010-Season/Cityscapes-Outing/10366886_QY42z#717630082_TZqEg"><img src="http://www.robhuntley.ca/Camera-Club-of-Ottawa/2009-2010-Season/Cityscapes-Outing/DSC4507adjBW/717630082_TZqEg-S.jpg" alt="Tree against a tiled wall. A few remaining leaves and some yellow Christmas lights add a bit of colour to this late November image. Alterna Savings (formerly CS-Coop) building on Albert Street in Ottawa, Ontario" /></a></p>
<p>Web site: <a title="Rob Huntley Photography - Rob's Photo Gallery" href="http://www.robhuntley.ca" target="_blank">www.robhuntley.ca</a></p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
