<?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>rainlendar &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/rainlendar/</link>
	<description>Feed of posts on WordPress.com tagged "rainlendar"</description>
	<pubDate>Fri, 25 Dec 2009 08:54:45 +0000</pubDate>

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

<item>
<title><![CDATA[Make Rainlendar show your Google Calendar entries]]></title>
<link>http://paulkoer.wordpress.com/2009/12/06/make-rainlendar-show-your-google-calendar-entries/</link>
<pubDate>Sun, 06 Dec 2009 00:38:02 +0000</pubDate>
<dc:creator>paulkoer</dc:creator>
<guid>http://paulkoer.wordpress.com/2009/12/06/make-rainlendar-show-your-google-calendar-entries/</guid>
<description><![CDATA[So today I spend some time with finding the best calendar for my Gnome desktop. Lo and behold I ende]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>So today I spend some time with finding the best calendar for my Gnome desktop. Lo and behold I ended up installing the old <a href="http://www.rainlendar.net/cms/index.php" target="_blank">rainlendar</a> lite, well known from my windows days. Simply put, I just didn&#8217;t find a different calendar which I liked that much, even though I would prefer an open source alternative with similar features.</p>
<p>That being said, the lite version of rainlendar doesn&#8217;t allow to import Google calendars, only calendar files from your desktop. But importing from Google Calendar is something I absolutely wanted so I put a quick hack together to make it happen (actually <a href="http://www.toxic-mind.com/blog/2007/07/04/google-calendar-und-rainlendar/">this blog</a> made me come up with it) . Here is how to do it (you will need python and some scheduling program):</p>
<p>First thing you&#8217;ll need is to find out the private ical address of the Google calendars you want and put it into a file, I called mine  icals.txt <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  To find the address go to Google calendar, click on settings, click on calendars, click on the calendar you want (if you have several) , scroll all the way to the bottom where it says &#8220;Private Address&#8221; and then click on the green ICAL button. It will show you an address, copy that into your ical file. Put the name of the calendar in front of it, followed by a colon and a space. So my first entry in the file looks like this (all one line)<br />
<code>Paul: http://www.google.com/calendar/ical/paul.koerbitz%40googlemail.com/private-XXXXXXXXXXXXXXXXXXXXXXXXXXXX/basic.ics</code><br />
Repeat this for all the calendars you want to show up in rainlendar.</p>
<p>Ok, now for the hacking:  create the following python script:</p>
<pre class="brush: python;">
#!/usr/bin/env python
&#34;&#34;&#34;Downloads calendars in ical format.

Takes two arguments:
first	: location of file containing the ical URLs.
second: directory where the ical calendars should be saved&#34;&#34;&#34;

import os
import sys
import re
import urllib

icals = open(sys.argv[1])

for line in icals:
	nextical = re.search('(.*):\s+(.*)',line).groups()
	outfile = os.path.join(sys.argv[2],nextical[0]+&#34;.ics&#34;)
	urllib.urlretrieve(nextical[1],outfile)
</pre>
<p>and save it (I called mine get-icals.py). What this does is that it goes through the file with your ical urls, splits each line at the first colon (that&#8217;s why you should save them in the form name: http://&#8230;.), gets each ical file from google, and saves them as name.ics in a path specified by the second argument given to the script. So you want to call it like so<br />
<code>get-icals.py /path/to/icals.txt /path/to/output/</code><br />
or<br />
<code>python get-icals.py c:\whatever\whatever\icals.txt c:\bla\bla\</code><br />
(I am guessing here, I don&#8217;t have Windows.).</p>
<p>Once you called the script, the calendar files from google should be in the directory you specified and you can import them in rainlendar (right click on it -&#62; Options -&#62; Calendars -&#62; Add &#8230; -&#62; locate the .ics files). Be sure to change the &#8220;Monitor changes&#8221; option to &#8220;Yes&#8221;, otherwise this exercise would be quite useless <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> . I also changed &#8220;Read only&#8221; to &#8220;Yes&#8221; to remind myself that this &#8220;syncing&#8221; is one-way only, from Google to rainlendar (if you want two way, you would have to get the pro version, I suppose).</p>
<p>Ok, now to actually keep rainlendar synced, you have basically two options. Either hook the python script to a scheduler (I used cron, I guess something else would work just as well) or create a launcher for the script and call it (click on it) whenever you want to sync. For cron I used (this is on Ubuntu &#8211; good post on cron <a href="http://www.cyberciti.biz/faq/how-do-i-add-jobs-to-cron-under-linux-or-unix-oses/">here</a>)<br />
<code>$sudo crontab -e</code><br />
and entered<br />
<code>0 * * * * /home/paul/bin/get-icals.py /home/paul/.icals/icals.txt /home/paul/.icals/</code><br />
which makes cron update the icals every 60 which is sufficient for my not so rapidly changing schedule <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> .</p>
<p>Ok, first post, took a lot longer than I thought, HTH!<br />
cheers<br />
Paul</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Rainlendar, un calendario genial]]></title>
<link>http://thuluz.wordpress.com/2009/09/20/rainlendar-un-calendario-genial/</link>
<pubDate>Sun, 20 Sep 2009 17:08:12 +0000</pubDate>
<dc:creator>THULUZ</dc:creator>
<guid>http://thuluz.wordpress.com/2009/09/20/rainlendar-un-calendario-genial/</guid>
<description><![CDATA[Se trata de un útil, práctico y liviano, como a mi me gusta, calendario para tu escritorio, que adem]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><!-- p, li { white-space: pre-wrap; } --></p>
<p style="text-indent:0;text-align:center;margin:0;"><img class="aligncenter" title="Rainlendar" src="http://img89.imageshack.us/img89/9978/rainlendar.png" alt="" width="335" height="350" /></p>
<p style="text-indent:0;text-align:center;margin:0;">
<p>Se trata de un útil, práctico y liviano, como a mi me gusta, calendario para tu escritorio, que además maneja eventos y tareas. Es compatible con <strong>Outlook</strong>, <strong>Google Calendar</strong>, <strong>RTM</strong> ( <strong>R</strong>emember <strong>T</strong>he <strong>M</strong>ilk ), etc y demás to-do lists.<br />
Esta demás decir, que los eventos tienen recordatorios, que contiene una hora de inicio y final, con una alarma al margen que se le asigne. Con <strong>Rainlendar</strong>, además podés agrupar diferentes compromisos, y asignar por categorias.</p>
<p><strong>1. Instalación<br />
2. Modificar el lenguaje</strong><strong><br />
3. Agregar feriados</strong></p>
<p><strong><!--more--></strong></p>
<p><strong>1. Instalación</strong></p>
<p>Para instalarlo podés hacerlo via consola con:</p>
<blockquote><p><strong>sudo apt-get install rainlendar2-lite</strong></p></blockquote>
<p>O  bajar el .deb de <a href="http://www.rainlendar.net/cms/index.php?option=com_rny_download&#38;Itemid=32">la pagina oficial</a></p>
<p>Una vez instalado, se lo puede encontrar en <strong>Aplicaciones &#62; Oficina &#62; Rainlendar2</strong></p>
<p><strong>2. Modificar el lenguaje</strong></p>
<p>Para modificar el lenguaje al que necesites, se necesitan descargar dos paquetes.</p>
<p>Primero, el paquete que identifica automáticamente las imágenes correspondientes a las letras y los skins, <a href="http://www.rainlendar.net/download/Shadow4-Languages.r2skin-addon">Shadow4.r2skin-addon</a>.<br />
Segundo, el correspondiente a tu idioma, en mi caso, es <a href="http://www.rainlendar.net/cms/index.php?option=com_rny_localization&#38;id=939">Español</a>.</p>
<p>Una vez que tenemos todo lo que necesitamos, procedemos a instalarlos, cosa que es muy sencillo, simplemente hay que arrastrar el primer paquete sobre el Rainlendar, presionar <strong>Click der &#62; Refrescar</strong>, de modo que una vez hecho esto, pasamos a instalar el siguiente de la misma manera.</p>
<p>Ahora solo resta activarlo, con <strong>Click Der &#62; Opciones</strong>, en la pestaña General, en la parte de idioma, elegimos el correspondiente y aceptamos.</p>
<p><strong>3. Agregar feriados</strong></p>
<p>Para agregar los feriados de tu país, en mi caso <a href="http://wsidecar.apple.com/cgi-bin/nph-reg3rdpty2.pl/product=22859&#38;cat=98&#38;platform=osx&#38;method=sa/argentinaferiados.zip">Argentina</a>, en caso de discernir podés encontrar el tuyo <a href="http://www.apple.com/downloads/macosx/calendars/">buscando acá</a>.</p>
<p>Hay que descomprimir, para obtener el archivo <strong>.ics</strong> que está adentro.</p>
<p>Finalmente para agregarlo, presionamos nuevamente sobre Rainlendar <strong>Click der &#62; Administrador</strong>, en el menú<strong> Fichero &#62; Importar &#62; Formato iCalendar</strong> y seleccionas el archivo <strong>.ics</strong> que descargaste.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Wiki更新しました]]></title>
<link>http://codeairedge.wordpress.com/2009/09/14/wiki%e6%9b%b4%e6%96%b0%e3%81%97%e3%81%be%e3%81%97%e3%81%9f/</link>
<pubDate>Mon, 14 Sep 2009 06:55:43 +0000</pubDate>
<dc:creator>code_air_edge</dc:creator>
<guid>http://codeairedge.wordpress.com/2009/09/14/wiki%e6%9b%b4%e6%96%b0%e3%81%97%e3%81%be%e3%81%97%e3%81%9f/</guid>
<description><![CDATA[・Rainlendar &#8211; Fedora備忘録 ・統合メッセンジャークライアント &#8211; Fedora備忘録（一部追記） ・Avidemux2 &#8211; Fedora備忘録 ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>・<a href="http://oedipa.wiki.fc2.com/wiki/Rainlendar">Rainlendar &#8211; Fedora備忘録</a><br />
・<a href="http://oedipa.wiki.fc2.com/wiki/%E7%B5%B1%E5%90%88%E3%83%A1%E3%83%83%E3%82%BB%E3%83%B3%E3%82%B8%E3%83%A3%E3%83%BC%E3%82%AF%E3%83%A9%E3%82%A4%E3%82%A2%E3%83%B3%E3%83%88">統合メッセンジャークライアント &#8211; Fedora備忘録</a>（一部追記）<br />
・<a href="http://oedipa.wiki.fc2.com/wiki/Avidemux2">Avidemux2 &#8211; Fedora備忘録</a></p>
<p>ということで、上記3記事を更新しました。<br />
新規のネタはPidginのみで、他は溜めてたけど記事にするのを忘れていたネタです。というかまぁ、今更過ぎると言う話も＾＾；</p>
<p>Rainlendarは久々に見にいくと64bit版がリリースされててびっくりした。Remember Milkにも対応してたり（Pro版のみ）と、結構精力的に活動しているみたいですな。</p>
<p>最近はPidginの設定で頑張ってたけど、それ以外は新しいネタを発掘できてないからなぁ。ウィジェット関連はさほど新作出てないし。Wineも最近は普通に動いちゃうからネタにもならんし・・・。</p>
<p>なんかこう、面白いネタないかな？</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Rainlendar Pro v2.6]]></title>
<link>http://sharedownload.wordpress.com/2009/09/08/rainlendar-pro-v2-6/</link>
<pubDate>Tue, 08 Sep 2009 08:32:26 +0000</pubDate>
<dc:creator>sharedownload</dc:creator>
<guid>http://sharedownload.wordpress.com/2009/09/08/rainlendar-pro-v2-6/</guid>
<description><![CDATA[Rainlendar Pro v2.6 Rainlendar is a attribute rich schedule devotion thyat is easygoing to turn to a]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>
					<img src="http://i32.tinypic.com/rj19oo.jpg" border="0" width="320" alt="Rainlendar Pro v2.6" />
					</p>
<p></p>
<p> Rainlendar Pro v2.6 Rainlendar is a attribute rich schedule devotion thyat is easygoing to turn to account and doesn’<!--more--></p>
<div class="usenext">
<div class="title">
					<font size="+1"><br />
						<a href="http://downloadmax.us/download/Rainlendar Pro v2.6.html" target="_blank"><br />
							<font color="#ff3300"><strong>Fast Download : Rainlendar Pro v2.6</strong></font><br />
						</a><br />
					</font>
				</div>
<p>
					<a href="http://downloadmax.us/download/Rainlendar Pro v2.6.html" target="_blank">Rainlendar Pro v2.6</a><br />
					 is available on a new fast <i>direct download service</i> with over 28,641,19 Files to choose from.Download anything with more then <b>1500+ Kb/s</b> downloading speed.Signup process takes just 10 sec to go.Signup today and enjoy the speed !
				</p>
</p></div>
<p>		t take a great grapple with of break on your desktiop Tjhe application is platform disinterested irrespective of so ytou can overreach it on all large operating systems: Windows, Linux adn Mac OS X.</p>
<p></p>
<p>The demeanor can be customized wtih skins anbd yuo can compensate mingle <u>divergent skins stable</u> Download:.</p>
<p><!-- DLS --></p>
<div class="usenext">
<div class="title">
					<font size="+1"><br />
						<a href="http://downloadmax.us/download/Rainlendar Pro v2.6.html" target="_blank"><br />
							<font color="#ff3300"><strong>Fast Download : Rainlendar Pro v2.6</strong></font><br />
						</a><br />
					</font>
				</div>
<p>
					<a href="http://downloadmax.us/download/Rainlendar Pro v2.6.html" target="_blank">Rainlendar Pro v2.6</a><br />
					 is available on a new fast <i>direct download service</i> with over 28,641,19 Files to choose from.Download anything with more then <b>1500+ Kb/s</b> downloading speed.Signup process takes just 10 sec to go.Signup today and enjoy the speed !
				</p>
</p></div>
<p><strong>Download Rainlendar Pro v2.6 (Rapidshare): </strong></p>
<blockquote><p>http://rapidshare.com/files/262267823/Rainlendar_Pro_v2.6_part-1.zip <br />http://rapidshare.com/files/262014433/Rainlendar_Pro_v2.6_part-2.zip</p></blockquote>
<p>.usenext {border: 1px solid #BEBEBE;padding: 10px;margin-top: 10px;background: url(http://i40.tinypic.com/2n6848h.png) no-repeat;padding-left: 90px;background-position: 5px 5px;background-color: #FFFFE0;}.usenext .title {font-size: 1.6em;font-weight: bold;}.usenext p {padding: 0px;margin: 0px;}</p>
<p>
				<a href="http://software-downloading.com/2009/09/05/best-portable-soft-2009-40-in-1.html" title="MU Wealthiest Handy Lessen 2009 Gold" target="_blank"><strong>MU Wealthiest Handy Lessen 2009 Gold</strong></a> &#8211;  First-class Carriable Cushion 2009 40 in 1 540 MB Conceded organization includes succeeding programs: Windows XP Red-hot USB Goof up Edition: &#8211; Story Windows XP capible to be stuffed anbd make iwth (more )&#8230;. <br />
				<i>Software,(PORTABLE),files,other,program,RUSENG:,Supports,Windows</i><br />
				<!-- 1.5 -->
				</p>
<p>
				<a href="http://rsblog.blogsome.com/2009/09/07/power-video-converter-2213/" title="Full Download Dynamism Video Converter 2.2.13 Sharing" target="_blank"><strong>Full Download Dynamism Video Converter 2.2.13 Sharing</strong></a> &#8211;  Competency Video Converter is dessigned to unite all your needs of change over organize betwen AVI, MPEG1,MPEG2, VCD, SVCD, DVD, WMV, ASF, DAT, VOB formats Immensely fasting convertion skedaddle anbd amiable  interface file for chapter eleven you proselytize vi&#8230;. <br />
				<i>Software</i><br />
				<!-- 1.0 -->
				</p>
<p>
				<a href="http://full-rapidshare.com/music/536-culcha-candela-schoene-neue-welt-2009.html" title="Load Culcha Candela Schoene Neue Bruise (2009) Mediafire" target="_blank"><strong>Load Culcha Candela Schoene Neue Bruise (2009) Mediafire</strong></a> &#8211;  Culcha Candela &#8211; Schoene Neue Bump (2009) Genre: Dancehall I Mp3 music I VBR I CBR 44,1kHz I 78 Mb Culcha Candela &#8211; Schoene Neue Weal (2009) Genre: Dancehall I Mp3 sound I VBR I CBR 44,1kHz I 78 Mb&#8230;. <br />
				<i>Music</i><br />
				<!-- 0.5 -->
				</p>
<p>
				<a href="http://mbox.blogs.ie/2009/09/08/dj-m-live-summer-edition-2009-hosted-by-wreckid-mc/" title="Free Full M-Live Summer Printing 2009 [Hosted alongside Wreckid MC] Best" target="_blank"><strong>Free Full M-Live Summer Printing 2009 [Hosted alongside Wreckid MC] Best</strong></a> &#8211;  Tracklist: 01 Ne-Yo &#8211; Despotic 02 Pitbull &#8211; Blanco 03 Ginuwine embezzle function MisFast Download : DJ M-Live &#8211; Summer Print run 2009 [Hosted nearby Wreckid MC]DJ M-Live &#8211; Summer Version 2009 [Hosted before&#8230;. <br />
				<i>Music</i><br />
				<!-- 0.5 -->
				</p>
<p>
				<a href="http://rsblog.blogsome.com/2009/09/07/ams-software-auto-collage-studio-v30-bean/" title="Full Download AMS Software Auto Collage Studio v3.0-BEAN Torrent" target="_blank"><strong>Full Download AMS Software Auto Collage Studio v3.0-BEAN Torrent</strong></a> &#8211;  AMS Apps Car Collage Studio v3.0-BEAN 11.44 MB The fourth estate your photos turned inot style collage adn opuFast Download : AMS Download apps Auto Collage Studio v3.0-BEANAMS Sofware Auto Collage Studio v3.0-BEAN&#8230;. <br />
				<i>Software</i><br />
				<!-- 1.5 -->
				</p>
<p>
				<a href="http://software-downloading.com/2009/09/05/vso-software-blindwrite-6209-multilanguage.html" title="Super VSO Apps Blindwrite 6.2.0.9 Multilanguage Ultimate Download" target="_blank"><strong>Super VSO Apps Blindwrite 6.2.0.9 Multilanguage Ultimate Download</strong></a> &#8211;  VSO Download apps Blindwrite 6.2.0.9 Multilanguage Quote: VSO Apps Blindwrite 6.2.0.9 Multilanguage 8.64 Mb Bl (more )&#8230;. <br />
				<i>Software,6.2.0.9,Blindwrite,CDDVD,Download,media,Multilanguage,support</i><br />
				<!-- 1.0 -->
				</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[How well organized are you?]]></title>
<link>http://englishstory.wordpress.com/2009/08/24/how-well-organized-are-you/</link>
<pubDate>Mon, 24 Aug 2009 04:53:49 +0000</pubDate>
<dc:creator>englishstory</dc:creator>
<guid>http://englishstory.wordpress.com/2009/08/24/how-well-organized-are-you/</guid>
<description><![CDATA[Source : robotnut.com When my deathline has arrived,  sometimes i need to lay down for a while and r]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div class="wp-caption alignleft" style="width: 175px"><a href="http://www.robotnut.com/ken/k50.jpg"><img class="    " title="Mr Robboto" src="http://www.robotnut.com/ken/k50.jpg" alt="this image from robotnut.com" width="165" height="299" /></a><p class="wp-caption-text">Source : robotnut.com</p></div>
<p>When my deathline has arrived,  sometimes i need to lay down for a while and rethinking about my self  in there, doing a deep contemplation &#8220;is there wrong with me&#8221; ? why i felt like a robot , well a robot have their owned programs to-do-to task list algorithm  , and a human also have it,  but why a human can&#8217;t stick with that to-do-to task list ?</p>
<p><!--more--></p>
<p>These days, a focused person need that &#8220;algorithm&#8221; to doing their a daily jobs to become a well organized , not just for their daily plans, but it can also for a long therm projects. When i seek some a kind of software that probably can help me out to solved this issue,  Rainlander is one of  that I founded on google search list, here some a sneak peek and a short description</p>
<blockquote>
<div><a href="http://bit.ly/Rainlendar"><img class="alignleft size-medium wp-image-151" style="border:5px solid black;margin-top:5px;margin-bottom:5px;" title="Rainlender" src="http://englishstory.wordpress.com/files/2009/08/rainlender.jpg?w=300" alt="Rainlender" width="300" height="255" /></a>Rainlendar is a feature rich calendar application that is easy to use and doesn&#8217;t take much space on your desktop. The application is platform independent so you can run it on all major operating systems: Windows, Linux and Mac OS X.</div>
<div>The appearance can be customized with skins and you can even mix different skins together.</div>
<div>It is possible to use Rainlendar with other calendar applications too. Rainlendar uses the standard iCalendar format to store its events and tasks so you can easily transfer them between applications. You can also subscribe to online calendars and task lists including the Google Calendar* and Remember The Milk* and edit your Outlook** appointments directly in Rainlendar.</div>
</blockquote>
<p>please be my guest to try it for free, and if you like it may be you can upgrade to Pro Version .. have fun , just right click this link &#8211;&#62; <a title="Rainlendar" href="http://bit.ly/Rainlendar" target="_blank">http://bit.ly/Rainlendar</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Rainlendar 2.6 Lite]]></title>
<link>http://netvietnam.org/2009/08/24/rainlendar-2-6-lite/</link>
<pubDate>Mon, 24 Aug 2009 00:38:52 +0000</pubDate>
<dc:creator>Nhân Mã</dc:creator>
<guid>http://netvietnam.org/2009/08/24/rainlendar-2-6-lite/</guid>
<description><![CDATA[Rainlendar là phần mềm lịch đầy đủ chức năng nhưng lại dễ dùng và không chiếm nhiều không gian màn h]]></description>
<content:encoded><![CDATA[Rainlendar là phần mềm lịch đầy đủ chức năng nhưng lại dễ dùng và không chiếm nhiều không gian màn h]]></content:encoded>
</item>
<item>
<title><![CDATA[Rainlendar excelente aplicación para olvidadizos (como yo)]]></title>
<link>http://libertadzero.wordpress.com/2009/08/23/rainlendar-excelente-aplicacion-para-olvidadizos-como-yo/</link>
<pubDate>Sun, 23 Aug 2009 19:20:35 +0000</pubDate>
<dc:creator>chocochuck5</dc:creator>
<guid>http://libertadzero.wordpress.com/2009/08/23/rainlendar-excelente-aplicacion-para-olvidadizos-como-yo/</guid>
<description><![CDATA[Hola, hace unos días les hable de Pidgin e Identi.ca, una, un cliente de mensajería muy poderoso y e]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:justify;">Hola, hace unos días les hable de Pidgin e Identi.ca, una, un cliente de mensajería muy poderoso y el otro un servicio de microbloggin libre (si quieres saber de qué hablo da click <a href="http://libertadzero.wordpress.com/2009/08/19/escribir-mensajes-en-identi-ca-con-pidgin/" target="_blank">aquí</a>), el caso es que ahora voy a dedicarme un tiempecito para hablarles de otras alicaciones y servicios que uso mucho. Tal vez ya los conozcan, tal vez a unos les gusten, a otros no, pero para mí son múy útiles y espero que para alguien más lo sean.</p>
<p style="text-align:justify;">Hoy les hablaré de Rainlendar, un calendario sumamente funcional ya que puedes agendar eventos, dedicarles cierto número de horas al mismo, puedes tener recordatorios, avisos, en fin, todo lo que se les pueda ocurrir que pudieran poner en un calendario, pues todo eso y un poco más, lo tiene Rainlendar.</p>
<p style="text-align:justify;">Instalarlo es sumamente sencillo:</p>
<p style="text-align:justify;">1. Lo bajan desde esta <a href="http://www.rainlendar.net/cms/index.php?option=com_rny_download&#38;Itemid=32" target="_blank">página</a> (Ojo hay una versión que cuesta y otra gratuita, escojan la adecuada)</p>
<p style="text-align:justify;">2. Si tienes Ubuntu o Debian, no vas a tener mayor problema, al paquete que bajaste sólo dale doble click y aparecerá algo como esto: (Si tienes otra distro en la página aparecen las instrucciones para instalarlo)</p>
<p style="text-align:justify;"><img class="aligncenter size-full wp-image-209" title="Instaladordepaquetes" src="http://libertadzero.wordpress.com/files/2009/08/instaladordepaquetes.png" alt="Instaladordepaquetes" width="510" height="370" /></p>
<p style="text-align:justify;">3. Le damos click en &#8220;Instalar el paquete&#8221;, dejamos que haga sus cosas la compu y listo, ya tendremos instalado rainlendar en nuestra computadora, para encontrarlo esta en: Aplicaciones&#62;Oficina&#62;Rainlendar2</p>
<p style="text-align:justify;">Además de todo otra de los plus que tiene rainlendar es que pueden bajar skins (pieles) para cambiar el look de su calendario.</p>
<p style="text-align:justify;">Aquí les dejo una captura de pantalla para que vean cómo es Rainlendar (Por cierto ahorita que lo chequé recordé que tengo pendientes algunas tareas jejeje)</p>
<p style="text-align:justify;"><img class="aligncenter size-full wp-image-210" title="Rainlendar" src="http://libertadzero.wordpress.com/files/2009/08/rainlendar.png" alt="Rainlendar" width="510" height="318" /></p>
<p style="text-align:justify;">Por cierto, si quieren que el calendario aparezca cada vez que incian sesión, esto es lo que tienen que hacer:</p>
<p style="text-align:justify;">Nota: esto aplica para cualquier aplicación que quieren que &#8220;corra desde el inicio&#8221;</p>
<p style="text-align:justify;">Nos vamos a Sistema&#62;Preferencias&#62;Sesiones</p>
<p style="text-align:justify;">Aparecerá la siguiente ventana:</p>
<p style="text-align:justify;"><img class="aligncenter size-full wp-image-211" title="Preferencias de sesión" src="http://libertadzero.wordpress.com/files/2009/08/pantallazo-preferencias-de-sesion.png" alt="Preferencias de sesión" width="479" height="320" /></p>
<p style="text-align:justify;">Y justo en la pestaña que dice &#8220;Programas de Inicio&#8221;, le picamos Añadir, a continuación aparecerá una ventana como esta:</p>
<p style="text-align:justify;"><img class="aligncenter size-full wp-image-212" title="Añadir programa de inicio" src="http://libertadzero.wordpress.com/files/2009/08/pantallazo-anadir-programa-de-inicio.png" alt="Añadir programa de inicio" width="400" height="174" /></p>
<p style="text-align:justify;">Y llenamos los campos de la siguiente manera:</p>
<p style="text-align:justify;">Nombre: El nombre de la aplicación (si queremos podemos nombrarla como queramos)</p>
<p style="text-align:justify;">Orden: Esta es la parte importante ya que la orden es el comando con el que &#8220;llamamos&#8221; a que salga la aplicación, en este caso tiene que ser:</p>
<p style="text-align:justify;">rainlendar2 (tal y cómo lo escribí, con minúsculas con el 2 y sin espacios)</p>
<p style="text-align:justify;">Comentarios: Aquí, tal y cómo se ve en la captura de pantalla, pueden poner lo que quieran ya que este espacio se usa como una pequeña descripción del programa.</p>
<p style="text-align:justify;">Una vez que terminamos le damos aceptar, cerramos la ventana de Preferencias de sesión (ahi pueden checar que rainlendar ya se encuentra en la lista)</p>
<p style="text-align:justify;">Y terminamos, ahora cada vez que iniciemos sesion aparecerá rainlendar.</p>
<p style="text-align:justify;">Saludos.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Arrived at Jogja, make a time planner! -Rainlendar]]></title>
<link>http://tuxinourbrain.wordpress.com/2009/07/27/arrived-at-jogja-make-a-time-planner-rainlendar/</link>
<pubDate>Sun, 26 Jul 2009 23:21:48 +0000</pubDate>
<dc:creator>prasetyo franz</dc:creator>
<guid>http://tuxinourbrain.wordpress.com/2009/07/27/arrived-at-jogja-make-a-time-planner-rainlendar/</guid>
<description><![CDATA[Udah seminggu nih di Jakarta, akhirnya sampe juga di jogja.. Pulang-pulang koq kayaknya banyak pe-er]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Udah seminggu nih di Jakarta, akhirnya sampe juga di jogja..</p>
<p>Pulang-pulang koq kayaknya banyak pe-er yang harus dikerjain. Huhh! Anyway, gapapa lah khan bentar lagi mo ke Karimun Jawa. Pe-er2 nya iya ngurus persiapan ke Karimun, persiapan Openhouse UKM pas 17 Agustus, persiapan bantu temen2 KINE buat produksi Film dll. Biar nggak lupa ama pe-er2 tersebut, lagi-lagi harus bikin <span style="text-decoration:underline;">Time Planner</span> (meski nggak terlalu ngaruh, tapi buatku yang sedikit pikun ni harus).</p>
<p>Okay, kali ini diriku pakai software nyang namanya <strong>Rainlendar</strong>. Tidak hanya seperti kalender yang ditempel di dinding rumah, aplikasi ini mempunyai fitur yang beragam.  Di antaranya adalah :</p>
<p>1. Multiple Calendars : beberapa kalender yang dapat ditampilkan, berisi event2 yang akan terjadi</p>
<p>2.To do List : menyimpan tugas yang akan dikerjakan</p>
<p>3. Alarm : Pemberitahuan sebelum acara sehingga tidak akan lupa ada kejadian penting, juga bekerja pada tugas (task)</p>
<p>4. Reccurence : Event atau task yang dibuat dapat diulang secara otomatis, sehingga tidak perlu memasukkan dalam kalender beberapa kali.</p>
<p>Rainlendar (dengan berbagai versi OS) dapat didownload di <a href="http://www.rainlendar.net/cms/index.php?option=com_rny_download&#38;all=1">http://www.rainlendar.net/cms/index.php?option=com_rny_download&#38;all=1</a></p>
<p>Enjoy It! &#60; from <a href="http://www.rainlendar.net">http://www.rainlendar.net</a> &#62;</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Rainlendar 2.5 Beta 81]]></title>
<link>http://netvietnam.org/2009/07/25/rainlendar-2-5-beta-81/</link>
<pubDate>Sat, 25 Jul 2009 14:36:33 +0000</pubDate>
<dc:creator>Nhân Mã</dc:creator>
<guid>http://netvietnam.org/2009/07/25/rainlendar-2-5-beta-81/</guid>
<description><![CDATA[Rainlendar là phần mềm lịch đầy đủ chức năng nhưng lại dễ dùng và không chiếm nhiều không gian màn h]]></description>
<content:encoded><![CDATA[Rainlendar là phần mềm lịch đầy đủ chức năng nhưng lại dễ dùng và không chiếm nhiều không gian màn h]]></content:encoded>
</item>
<item>
<title><![CDATA[Desktop Configuration]]></title>
<link>http://zombiedigital.wordpress.com/2009/07/05/desktop-configuration/</link>
<pubDate>Mon, 06 Jul 2009 03:15:49 +0000</pubDate>
<dc:creator>Chris</dc:creator>
<guid>http://zombiedigital.wordpress.com/2009/07/05/desktop-configuration/</guid>
<description><![CDATA[Throughout most of my computing experience, I have always been rather old school with my computer de]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Throughout most of my computing experience, I have always been rather old school with my computer desktop.  I preferred an image background and standard icons.  That&#8217;s about it.  Even when Vista&#8217;s sidebar became popular, I shied away.  To me, tons of stuff all over the desktop was distracting.  More and more, however, the idea of an interactive, heads up display type desktop began to appeal to me.  I had to recently reformat due to a motherboard failure (which is another story for another day), and had an opportunity to start anew.  With this blank digital palette, I set out to create an informative, fun, and aesthetically pleasing desktop that could make me more productive and efficient.  The following is what I came up with.  Click the picture to enlarge.</p>
<div id="attachment_106" class="wp-caption aligncenter" style="width: 507px"><a href="http://zombiedigital.wordpress.com/files/2009/07/my-desktop.png" target="_blank"><img class="size-full wp-image-106" title="My Desktop" src="http://zombiedigital.wordpress.com/files/2009/07/my-desktop.png" alt="All you could ever want" width="497" height="310" /></a><p class="wp-caption-text">All you could ever want</p></div>
<p style="text-align:left;">I&#8217;ll go through the components of this desktop setup individually to give them each a summarization.  All of the applications I am using are free, so you can go out and download them to do some desktop customization of your own.  I wish I could give credit to the creator of the octopus background, but I cannot remember where I found it.  If you know, let me know in the comments.  First off, the utility that has saved my life multiple times: <a href="http://www.rainlendar.net/cms/index.php" target="_blank">Rainlendar</a>.  You can see it in the upper left hand corner of this desktop.</p>
<div id="attachment_113" class="wp-caption aligncenter" style="width: 183px"><a href="http://zombiedigital.wordpress.com/files/2009/07/rainlendar-close.png"><img class="size-full wp-image-113" title="Rainlendar close" src="http://zombiedigital.wordpress.com/files/2009/07/rainlendar-close.png" alt="Rainlendar" width="173" height="285" /></a><p class="wp-caption-text">Rainlendar</p></div>
<p>Rainlendar is a desktop calendar and organization tool.  It is completely skinnable, so you can download custom themes to fit in with your style.  I am currently running the default skin with a few tweaks to the information that the calendar displays.  With Rainlendar, you create events and To Do items that also reside on your desktop, making them easily visible.  Each event or to do item can have separate categories,  importance, and persistence.  For anyone with multiple obligations and appointment who is particularly forgetful (like yours truly), this tool makes it easy to remember and manage those appointments.  Its clean interface, customizable functionality, and minimal resource use make it a must have.</p>
<p>The next item on my desktop is a nifty little music visualizer/controller called <a href="http://www.cdartdisplay.com/" target="_blank">CD Art Display</a>.  This application works with your current music player of choice (iTunes in my case) to display song information and album art of the currently playing track.  It goes farther than simply monitoring the music being played.  You can control the music player itself through CD Art Display.</p>
<div id="attachment_114" class="wp-caption aligncenter" style="width: 184px"><a href="http://zombiedigital.wordpress.com/files/2009/07/cd-art-display.png"><img class="size-full wp-image-114" title="cd art display" src="http://zombiedigital.wordpress.com/files/2009/07/cd-art-display.png" alt="CD Art Display" width="174" height="221" /></a><p class="wp-caption-text">CD Art Display</p></div>
<p>CD Art Display is completely customizable.  It comes with standard skins, plus has a host of them for download at its website.   You can take customization a step further and edit each skin individually.  CD Art Display allows for the manipulation of each component of the display, from each line of text to the progress bar and control buttons.  I am currently running a modified version of the &#8216;Darrk&#8217; skin in &#8216;ThaUpright&#8217; skin package.  This application  practically begs to be altered to fit your tastes.  This is a convenient way to spice of your desktop and add a more robust yet minimized interface to your current music player.</p>
<p>The next application on my desktop is one of the most robust, feature rich customization tools out there.  It allows you to create, manipulate, and define a multitude of different features on your desktop.  It has computer hardware monitoring, time and date displays, and even weather updates.  This program is called <a href="http://code.google.com/p/rainmeter/" target="_blank">Rainmeter</a>.</p>
<div id="attachment_115" class="wp-caption aligncenter" style="width: 204px"><a href="http://zombiedigital.wordpress.com/files/2009/07/rainmeter.png"><img class="size-full wp-image-115" title="rainmeter" src="http://zombiedigital.wordpress.com/files/2009/07/rainmeter.png" alt="Rainmeter" width="194" height="217" /></a><p class="wp-caption-text">Rainmeter</p></div>
<p>Rainmeter is another completely customizable application  via the use of skins.  Each skin, however, can have different components that can be turned on or off.  In my desktop, I have three hard drive monitors running as well as a RAM monitor.  Each of these had been modified to show the correct drive letters and names.  The skin I am using is a modified version of &#8216;10 Foot HUD&#8217; and &#8216;HUD.Vision&#8217;.  The layout of each component of Rainmeter can be customized down to the location and appearance of font.  Rainmeter&#8217;s customization is through code, rather than a GUI, so it is a little harder to make changers.  Once you figure out what each portion of the skin is doing, customization is a breeze.  The large time and date display on my desktop is also another Rainmeter skin running that I have customized.  The possibilities for customization of this program are endless, and it is a great and powerful tool to have.</p>
<p>The final and most prominent feature of my desktop is the dock.  Although this is obviously a Windows machine, the Mac style dock is incredibly productive.  This feature is made available through Stardock&#8217;s <a href="http://www.stardock.com/products/objectdock/" target="_blank">ObjectDock</a>.  This dock program is feature rich and one the most popular out there today.  With it you can add your most often used programs to the dock for easy access and launch.  It has many different themes and styles built in for you to customize with.  You can also define mouse over effects and custom icons to be used in your dock.  One of the most unique features of ObjectDock is Docklets.  Docklets are small programs that run inside ObjectDock that increase its functionality and power.  A built in ObjectDock Docklet is ReadyView.</p>
<div id="attachment_118" class="wp-caption aligncenter" style="width: 310px"><a href="http://zombiedigital.wordpress.com/files/2009/07/readyview1.png"><img class="size-medium wp-image-118" title="ReadyView" src="http://zombiedigital.wordpress.com/files/2009/07/readyview1.png?w=300" alt="ReadyView" width="300" height="169" /></a><p class="wp-caption-text">ObjectDock&#39;s ReadyView</p></div>
<p>ReadyView gives a flyout display on mouse over of the current weather conditions as well as a 5 day forecast.  This beats opening up a browser and navigating to your favorite weather forecast.  There are many more Docklets that can be added to ObjectDock to give it a more personalized look and feel.  Based on what programs and applications you use, ObjectDock can be a real productivity booster and enhance your computing experience.</p>
<p>Whether you have created your own custom desktop or would like to have a little more than a standard out-of-the-box look and feel, I recommend you give these programs a go.  They can make your day more streamlined and productive as well as give your desktop some killer cool looks.  With a little patience and tweaking, you can have a unique desktop that is custom tailored to you.  Questions?  Comments?  Snide remarks?  Let me know about it in the comments.  If you&#8217;ve created a custom desktop of your own or want to know more about mine, drop me a line in the comments.  Happy customizing!</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Rainlendar ::calendar on Desktop]]></title>
<link>http://pamon.wordpress.com/2009/06/10/rainlendar-calendar-on-desktop/</link>
<pubDate>Wed, 10 Jun 2009 13:17:58 +0000</pubDate>
<dc:creator>pamon</dc:creator>
<guid>http://pamon.wordpress.com/2009/06/10/rainlendar-calendar-on-desktop/</guid>
<description><![CDATA[ปฏิทินสวยๆ เอาไปแปะบน Desktop เล่น บน ubuntu หรือ บนwindow เค้าก็มีนะ http://www.rainlendar.net/cms/]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>ปฏิทินสวยๆ เอาไปแปะบน Desktop เล่น บน ubuntu หรือ บนwindow เค้าก็มีนะ<br />
<a href="http://www.rainlendar.net/cms/index.php?option=com_rny_download&#38;Itemid=32">http://www.rainlendar.net/cms/index.php?option=com_rny_download&#38;Itemid=32</a> เป็นไฟล์ .deb อยู่แล้ว<br />
<img src="http://customize.org/download/screenshots/35411/26016/SimpleNote.jpg" alt="theme" /><br />
แถมมี theme ให้เปลี่ยนด้วย<a href="http://customize.org/rainlendar">http://customize.org/rainlendar</a></p>
<p>Ref :<a href="http://www.f0nt.com/forum/index.php/topic,11254.0.html">http://www.f0nt.com/forum/index.php/topic,11254.0.html</a></p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Desktop: un calendario semplice, bello ed affidabile]]></title>
<link>http://profkoji.wordpress.com/2009/05/22/desktop-un-calendario-semplice-bello-ed-affidabile/</link>
<pubDate>Fri, 22 May 2009 11:45:41 +0000</pubDate>
<dc:creator>profkoji</dc:creator>
<guid>http://profkoji.wordpress.com/2009/05/22/desktop-un-calendario-semplice-bello-ed-affidabile/</guid>
<description><![CDATA[Diciamocelo pure, il calendario fornito da Windows non è un gran che, quindi perché non sostituirlo ]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Diciamocelo pure, il calendario fornito da Windows non è un gran che, quindi perché non sostituirlo con un bel calendario desktop che, oltre ad essere bello, è ricco di molte funzioni?</p>
<p><a href="http://www.rainlendar.net/cms/index.php?option=com_frontpage&#38;Itemid=1" target="_blank">Rainlendar</a> è proprio ciò di cui si potrebbe avere bisogno, <a href="http://www.rainlendar.net/cms/index.php?option=com_rny_features&#38;Itemid=35" target="_blank">queste</a> le sue caratteristiche delle quali ne riassumo alcune:</p>
<ul>
<li>possibilità di gestire più calendari per ogni tipologia di evento</li>
<li>finestra allarme personalizzabile e possibilità di associare all&#8217;evento un reminder sonoro</li>
<li>possibilità di impostare modelli di eventi (le caratteristiche base che possono poi essere richiamate quando si crea un nuovo evento)</li>
<li>diverse tipologie di eventi già preconfigurati (anniversari, compleanni, etc.), possibilità di aggiungerne altre</li>
<li>to do list, attività da svolgere, quindi pratica funzionalità di post it</li>
<li>comoda funzionalità di backup ed esportazione in formato .ics di eventi ed attività</li>
</ul>
<p>Si aggiunga a ciò la disponibilità di <a href="http://profkoji.wordpress.com/2009/04/28/facciamoci-le-extension-e-cambiamo-look/" target="_self">skin</a>, presenti in <a href="http://www.rainlendar.net/cms/index.php?option=com_rny_skins&#38;Itemid=33" target="_blank">gran numero</a>, che permettono di adattarlo nel migliore dei modi alle nostre esigenze visive (è possibile inoltre impostare un livello personalizzato di trasparenze) e l&#8217;essere multipiattaforma (il che lo rende disponibile anche per Linux).</p>
<p>Insomma, non avete nessun alibi, usatelo e  basta! <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Дождливый календарь]]></title>
<link>http://llamssoft.wordpress.com/2009/03/23/%d0%b4%d0%be%d0%b6%d0%b4%d0%bb%d0%b8%d0%b2%d1%8b%d0%b9-%d0%ba%d0%b0%d0%bb%d0%b5%d0%bd%d0%b4%d0%b0%d1%80%d1%8c/</link>
<pubDate>Mon, 23 Mar 2009 17:41:03 +0000</pubDate>
<dc:creator>itanka</dc:creator>
<guid>http://llamssoft.wordpress.com/2009/03/23/%d0%b4%d0%be%d0%b6%d0%b4%d0%bb%d0%b8%d0%b2%d1%8b%d0%b9-%d0%ba%d0%b0%d0%bb%d0%b5%d0%bd%d0%b4%d0%b0%d1%80%d1%8c/</guid>
<description><![CDATA[Рано или поздно всякий из нас начинает испытывать потребность в самоорганизации. Жить, учиться, рабо]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p><a href="http://llamssoft.files.wordpress.com/2009/03/image.png"><img style="display:inline;margin-left:0;margin-right:0;" title="image" alt="image" align="right" src="http://llamssoft.files.wordpress.com/2009/03/image-thumb.png?w=189&#038;h=169" width="189" height="169" /></a> Рано или поздно всякий из нас начинает испытывать потребность в самоорганизации. Жить, учиться, работать и заниматься прочими приятными или полезными вещами становится все сложнее, потому как количество возможностей растет, а аналитические способности… конечно тоже растут, но не так как возможности.</p>
<p>Я не исключение, поэтому немудрено, что со временем я начал осознавать, что не могу разрулить все больше дел. Они каждое по отдельности вроде и не такие сложные, но вот их композиция и зависимости все затрудняют и запутывают.</p>
<p> <!--more-->
</p>
<p>&#160;<a href="http://llamssoft.files.wordpress.com/2009/03/image1.png"><img style="display:inline;margin:2px 10px 2px 0;" title="image" alt="image" align="left" src="http://llamssoft.files.wordpress.com/2009/03/image-thumb1.png?w=183&#038;h=248" width="183" height="248" /></a> И вот поэтому-то я и начал искать что-нибудь, что помогло бы моему мозгу организовать себя и туловище впридачу.</p>
<p>В этом нелегком деле мне помогли Голубицкий со своим очередным витком о системах <abbr title="Personal Productivity System">PPS</abbr>, Аллен со своей книжкой Getting Things Done и программа <a href="http://www.rainlendar.net/cms/index.php" target="_blank">Rainlendar</a>.</p>
<p>Внимательный читатель заметит, что эти три вещи вообще-то плохо сочетаются, потому что дождливый календарь не очень-то подпадает под идеологию Аллена. Согласно GTD процесс переноса должен происходить как можно более быстрее, чтобы поскорее избавить мозг от нагрузки, а дождливый календарь исповедует несколько другое: записать уж сразу все о задании и дело с концом. </p>
<p>Но тут в дело вступают особенности моего поведения – если уж я установлю какую программу на мой компьютер и она мне понравится, то ужом изовьюсь, но постараюсь оставить её. Да и ничего не мешает вбивать в окошко ввода нового события или задания только его краткое описание, а потом уже и расставлять приоритеты.</p>
<h3>Tips &#38; tricks</h3>
<p>Для того, чтобы использовать дождливый календарь как <abbr title="Personal Information Manager">PIM</abbr>, необходимо добиться некоего удобства работы с ним. Для этого дела предназначены горячие клавиши. Лично я поставил на &#60;WIN&#62;+Z новое задание, на &#60;WIN&#62;+X новое событие, а на &#60;WIN&#62;+А – вывести календарь на передний план.</p>
<p align="center"><strong>* * *</strong></p>
<p>Для тех ребят кто желает что-нибудь подправить в программе, и силу имеет есть ссылка на исходный код предыдущей версии программы <a title="http://www.ipi.fi/~rainy/legacy.html" href="http://www.ipi.fi/~rainy/legacy.html">http://www.ipi.fi/~rainy/legacy.html</a>. </p>
<p align="center"><strong>* * *</strong></p>
<p>Дождливый календарь хранит свои данные в формате, подзрительно напоминающем формат Outlook. Более того, в примерно таком же формате данные сохраняет и my phone explorer, так что возможность синхронизации с сотовым телефоном довольно перспективна.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Mi escritorio de Marzo [Alorma]]]></title>
<link>http://xonos.wordpress.com/2009/03/08/mi-escritorio-de-marzo/</link>
<pubDate>Sun, 08 Mar 2009 21:25:59 +0000</pubDate>
<dc:creator>alorma</dc:creator>
<guid>http://xonos.wordpress.com/2009/03/08/mi-escritorio-de-marzo/</guid>
<description><![CDATA[Limpito limpito, que ni con mistol! Wallpaper:Coleccion de Wallpapers para Jaunty [Ubuntu] Taskbar: ]]></description>
<content:encoded><![CDATA[Limpito limpito, que ni con mistol! Wallpaper:Coleccion de Wallpapers para Jaunty [Ubuntu] Taskbar: ]]></content:encoded>
</item>
<item>
<title><![CDATA[Rainlendar 2.5]]></title>
<link>http://netvietnam.org/2009/02/23/rainlendar-25/</link>
<pubDate>Mon, 23 Feb 2009 00:39:29 +0000</pubDate>
<dc:creator>Nhân Mã</dc:creator>
<guid>http://netvietnam.org/2009/02/23/rainlendar-25/</guid>
<description><![CDATA[Nếu bạn đã nhàm chán bộ lịch quá &#8220;đơn điệu&#8221; và ít chức năng của Windows thì nên thử Rain]]></description>
<content:encoded><![CDATA[Nếu bạn đã nhàm chán bộ lịch quá &#8220;đơn điệu&#8221; và ít chức năng của Windows thì nên thử Rain]]></content:encoded>
</item>
<item>
<title><![CDATA[Google Sync: Sincronizando tudo!]]></title>
<link>http://celiga.wordpress.com/2009/02/11/google-sync-sincronizando-tudo/</link>
<pubDate>Wed, 11 Feb 2009 12:06:34 +0000</pubDate>
<dc:creator>Alexandre Nascimento</dc:creator>
<guid>http://celiga.wordpress.com/2009/02/11/google-sync-sincronizando-tudo/</guid>
<description><![CDATA[Com o lançamento do google nessa semana; o Google Sync, ficou muito mais fácil de você sincronizar s]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>Com o lançamento do google nessa semana; o <a href="http://www.google.com/mobile/default/sync.html" target="_blank">Google Sync</a>, ficou muito mais fácil de você sincronizar seu contatos e agendas do seu celular sem precisar usar qualquer gambiarra para tal.</p>
<p>Acontece que para quem usa o <a href="http://www.rainlendar.net/cms/index.php" target="_blank">Rainlendar</a>; uma agenda muito legal para seu desktop, ficou muito fácil de você sincronizar seu celular, google calendar e o rainlendar.</p>
<p><img class="aligncenter size-medium wp-image-115" title="sddfgdfgdf" src="http://celiga.wordpress.com/files/2009/02/sddfgdfgdf.jpg?w=300" alt="sddfgdfgdf" width="300" height="42" /></p>
<p>Para isso configure seu celular como explica no site do <a href="http://www.google.com/mobile/default/sync.html" target="_blank">Google Sync</a>, depois baixe a versão pro do <a href="http://www.rainlendar.net/cms/index.php?option=com_rny_download&#38;Itemid=30" target="_blank">Rainlendar</a> (não se preocupe pois esse preço é válido somente se você for registrar).</p>
<p>Depois do Rainlander instalado vá em Opções &#62; Calendário &#62; Adicionar. Escolha a opção <em>Calendário do Google</em> e coloque seu usuário e senha do google; pronto você tem três repositórios para sincronizar seus compromissos.</p>
<p>Ao criar um compromisso no Rainlendar ele cria também no Google calendar e no seu celular, ao criar um compromisso no Google calendar ele cria também no Rainlander e no seu celular e ao criar um compromisso no seu celular ele cria em abos os sites também&#8230; Legal isso não?</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[컴퓨터 다시 세팅]]></title>
<link>http://chew282.wordpress.com/2009/01/16/%ec%bb%b4%ed%93%a8%ed%84%b0-%eb%8b%a4%ec%8b%9c-%ec%84%b8%ed%8c%85/</link>
<pubDate>Fri, 16 Jan 2009 12:00:12 +0000</pubDate>
<dc:creator>Anthony Yoon</dc:creator>
<guid>http://chew282.wordpress.com/2009/01/16/%ec%bb%b4%ed%93%a8%ed%84%b0-%eb%8b%a4%ec%8b%9c-%ec%84%b8%ed%8c%85/</guid>
<description><![CDATA[레지스트리 이것 저것 건드리다가 어디서 실수를 했는지 컴퓨터가 헤롱헤롱 대길래 이참에 백업지점으로 복원하고 인터페이스를 대폭 수정 했습니다. 바탕화면을 최대한 간결하게 유지하기 위]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p>레지스트리 이것 저것 건드리다가 어디서 실수를 했는지 컴퓨터가 헤롱헤롱 대길래 이참에 백업지점으로 복원하고 인터페이스를 대폭 수정 했습니다.</p>
<p>바탕화면을 최대한 간결하게 유지하기 위해 Dock 프로그램을 쓰면서 작업 표시줄을 위로 올려버리니까 Vista 기본 작업 표시줄은 너무 지저분 하더군요.</p>
<p>그래서 테마도 새로 설정해야겠다 싶어서 찾아보는데 다 Aero 기능이 들어간 비스타 프리미엄 버전의 테마들만 올라와서 에어로 기능이 포함 안 된 비스타 베이직을 쓰고있는 저로서는 선택의 폭이 너무 좁았습니다 T^T</p>
<p>어찌어찌 찾아낸게 밝은 톤의 Mac OS를 어느정도 따라한 이 테마인데요 우선 색이 은색과 밝은 파랑색의 조합이라 너무 마음에 드네요. 한 술 더 떠 블로그의 톤까지 맞춰 보았습니다.</p>
<div id="attachment_152" class="wp-caption aligncenter" style="width: 514px"><img class="size-full wp-image-152" title="empty" src="http://chew282.wordpress.com/files/2009/01/empty.jpg" alt="파란 나라를 보았니?" width="504" height="377" /><p class="wp-caption-text">파란 나라를 보았니?</p></div>
<p>머리가 복잡할때 컴퓨터를 싹 갈아 엎어 주면 완성 됐을때 뭔가 정리가 되고 재충전이 되는 느낌입니다.</p>
<p>&#8216;우리 컴퓨터가 밝아 졌어요 <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> &#8216;</p>
<div id="attachment_153" class="wp-caption aligncenter" style="width: 517px"><img class="size-full wp-image-153" title="desktop" src="http://chew282.wordpress.com/files/2009/01/desktop.jpg" alt="나는 봤다" width="507" height="384" /><p class="wp-caption-text">나는 봤다</p></div>
<p>사용 된 Application, 어플들:<a href="http://71.228.110.197:4445/vista/RKLauncher_Vista.exe" target="_blank"> Yoni&#8217;s Leopard Inspired RK Launcher 50Mb ver</a>, <a href="http://www.avedesk.org/download.php?id=1" target="_blank">Avedesk ver 1.4</a>, <a href="http://www.rainlendar.net/cms/index.php?option=com_rny_download&#38;Itemid=32" target="_blank">Rainlendar ver 2.3</a>, Iconpackager ver 3.20 (ivistareflective.ip), <a href="http://depositfiles.com/ru/files/916161" target="_blank">Ramdisk</a></p>
<p>클릭하면 바로 다운로드 되거나 해당 페이지로 넘어 갑니다.<br />
Click to download applications or to be directed to relating web pages.</p>
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Rainlendar 2.4 - Rainy - 3.92MB (Freeware)]]></title>
<link>http://netvietnam.org/2009/01/10/rainlendar-24-rainy-392mb-freeware/</link>
<pubDate>Sat, 10 Jan 2009 05:29:00 +0000</pubDate>
<dc:creator>Nhân Mã</dc:creator>
<guid>http://netvietnam.org/2009/01/10/rainlendar-24-rainy-392mb-freeware/</guid>
<description><![CDATA[Rainlendar is a customizable calendar that displays the current month. It is a very lightweight appl]]></description>
<content:encoded><![CDATA[Rainlendar is a customizable calendar that displays the current month. It is a very lightweight appl]]></content:encoded>
</item>
<item>
<title><![CDATA[Calendarios y recordadores]]></title>
<link>http://sercastro.wordpress.com/2009/01/07/calendarios-y-recordadores/</link>
<pubDate>Wed, 07 Jan 2009 20:37:34 +0000</pubDate>
<dc:creator>Administrador</dc:creator>
<guid>http://sercastro.wordpress.com/2009/01/07/calendarios-y-recordadores/</guid>
<description><![CDATA[Rainlendar es una aplicación disponible para Windows, MacOS X y Linux personalizable en idioma y apa]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><p style="text-align:center;"><img class="alignnone size-full wp-image-2441" title="rainlendar-titulo" src="http://sercastro.wordpress.com/files/2009/01/rainlendar-titulo.jpg" alt="rainlendar-titulo" width="410" height="102" /></p>
<p><strong><a href="http://www.rainlendar.net/" target="_blank">Rainlendar</a></strong> es una aplicación disponible para Windows, MacOS X y Linux personalizable en idioma y apariencia para que se ajuste a tus necesidades. Ofrece un <strong>calendario de escritorio</strong> y permite almacenar <strong>eventos</strong> relacionados con una o varias fechas y <strong>tareas</strong>, escogiendo los días de antelación que se mostraran.</p>
<p style="text-align:center;"><img class="alignnone size-full wp-image-2439" title="dibujo11" src="http://sercastro.wordpress.com/files/2009/01/dibujo11.jpg" alt="dibujo11" width="126" height="82" /></p>
<p><strong><a href="http://www.3m.com/us/office/postit/digital/digital_notes.html" target="_blank">Post-it notes</a></strong> es la <strong>versión virtual</strong> del famoso stick de 3M que permite eliminar los molestos papelitos de la mesa y la pantalla del ordenador, un sistema con muchas más ventajas, entre las que <strong>permite</strong> mostrar y ocultar las notas del escritorio, personalizarlas en tamaño, color de fondo y texto, incluir imágenes y enlaces… ademas de poder programar las notas con una <strong>alarma</strong> avisadora sonora para destacar la nota con el texto que debemos leer.</p>
<p style="text-align:center;">
</div>]]></content:encoded>
</item>
<item>
<title><![CDATA[Geeky Hobbies]]></title>
<link>http://rainey.me/2008/10/20/geeky-hobbies/</link>
<pubDate>Tue, 21 Oct 2008 01:34:12 +0000</pubDate>
<dc:creator>raineym</dc:creator>
<guid>http://rainey.me/2008/10/20/geeky-hobbies/</guid>
<description><![CDATA[Super Munchkin I just had a super evening, playing Super Munchkin at the Fredericton Science Fiction]]></description>
<content:encoded><![CDATA[<div class='snap_preview'><div class="wp-caption alignleft" style="width: 260px"><a href="http://www.sjgames.com/munchkin/supermunchkin/img/samplecards_lg.gif"><img alt="Super Munchkin" src="http://www.sjgames.com/munchkin/supermunchkin/img/samplecards_lg.gif" title="Super Munchkin" width="250" /></a><p class="wp-caption-text">Super Munchkin</p></div>
<p>I just had a super evening, playing <a href="http://www.sjgames.com/munchkin/supermunchkin/">Super Munchkin</a> at the <a href="http://www.celtic-dragon.ca/fsfswebsitemain.html">Fredericton Science Fiction Society</a>&#8217;s informal Monday night Gathering. We had a blast! We had to finish early as Tingley&#8217;s was closing for the evening, but Patricia was definitely in the lead.</p>
<p>My other geeky hobby of late has been customizing my Windows interface. (<a href="http://lifehacker.com/tag/desktop-show-and-tell/">Lifehacker</a> is a bad influence.) I started off simply patching my uxtheme.dll to use an <a href="http://uneasysilence.com/how-to-use-unsigned-themes-on-windows/">unsigned Windows theme</a>, but then drifted off into the joys of <a href="http://rocketdock.com/">RocketDock</a> and <a href="http://www.rainlendar.net/cms/index.php">Rainlendar</a>. Now, I&#8217;m running <a href="http://www.stardock.com/products/odnt/information.asp">Object Desktop</a> and having a blast.  </p>
</div>]]></content:encoded>
</item>

</channel>
</rss>
