<?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://wordpress.com/tag/rainlendar/</link>
	<description>Feed of posts on WordPress.com tagged "rainlendar"</description>
	<pubDate>Sun, 12 Oct 2008 09:34:44 +0000</pubDate>

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

<item>
<title><![CDATA[Rainlendar 2.4 Lite]]></title>
<link>http://softdreams4bg.wordpress.com/?p=11</link>
<pubDate>Sat, 11 Oct 2008 15:16:55 +0000</pubDate>
<dc:creator>sireniee</dc:creator>
<guid>http://softdreams4bg.lt.wordpress.com/2008/10/11/rainlendar-24-lite/</guid>
<description><![CDATA[
Rainlendar е безплатен богат на функции календар за вашия к]]></description>
<content:encoded><![CDATA[<p><img src="http://www.softvisia.com/e107_plugins/sgallery/includes/sgal_thumb.php?src=../../../e107_files/downloadimages/Rainlender.png+q=80+far=C+w=120+h=90+iar=0+bg=FFFFFF+hash=b46f1218f1ed5c97f36799dd89448d62"><br />
Rainlendar е безплатен богат на функции календар за вашия компютър. Заема малко място и е лесен за използване и настройка. Складира задачите си в стандартния iCalendar формат и можете да обменяте с други програми-календари. Всяка задача може да има свой отделен облик и можете да си настроите уведомяване, за да не забравите дадено събитие. Възможно е да зададете и звуков сигнал.<br />
Поддържани операционни системи: 2000/2003 Server/XP/Vista<br />
<a href="http://www.rainlendar.net/cms/index.php?option=com_frontpage&#38;Itemid=1">Официална страница:</A><br />
<a>Изтегли</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Rainlendar on Ubuntu: everything fine except...]]></title>
<link>http://danilop.wordpress.com/?p=26</link>
<pubDate>Mon, 14 Jul 2008 06:53:59 +0000</pubDate>
<dc:creator>Dennis</dc:creator>
<guid>http://danilop.lt.wordpress.com/2008/07/14/rainlendar-on-ubuntu-everything-fine-except/</guid>
<description><![CDATA[I&#8217;ve been using rainlendar for quite a while now. I really love it, I can easily manage all my]]></description>
<content:encoded><![CDATA[<p>I've been using rainlendar for quite a while now. I really love it, I can easily manage all my schedule and remember staff that I would forget..</p>
<p>There is just a little problem in using Rainlendar with Ubuntu. Probably you would like your Rainlendar calender to start at the startup. In order to do this you probably did the following:</p>
<p><em>System-&#62;Options-&#62;Sessions-&#62;Add (Name: rainlendar, Command:rainlendar2, Comment: whatever you want)</em></p>
<p>this action is supposed to make Rainlendar start at the startup. It's actually the right way, and it actually starts in the majority of cases. But in a non-trascurable number of cases, it doesn't start properly. This mean that Rainlendar could not start at all or that it maybe starts but it's interface is splitted over the whole desktop (there is typically a small number in the upper left corner of your Desktop).</p>
<p>This happens if Rainlendar starts before some important elements of the GNOME toolbar has been initialized.</p>
<p>An easy and powerful way to resolv this issue is quite obvious: delay the startup of Rainlendar.</p>
<p><strong>Creating the script<br />
</strong>As you maybe already know the Terminal is really, really powerful. For an advanced user it's basilar to have a terminal to use, because it gives you the full (well, almost :D) control on your machine. As this tool is really useful, it also provides a nice function which can be used in our case: <span style="text-decoration:underline;">sleep</span>. As the name states, this function make the script sleep (wait) for X seconds before going on executing the script content). So these are the steps to take:</p>
<ol>
<li>Open a terminal</li>
<li>Move to the directory where you want to create the script (maybe you home directory it you just want to modify the behavior for your user, otherwise you can put it in /home). To move between your directories, the command to use is <span style="text-decoration:underline;">cd</span><em>. </em>For example: cd ~/Desktop will lead you to your user's desktop as the tilde (~) stays for home directory;</li>
<li>If you are in your home directory you don't need any particular permission to move. If you on the other hand are in the /home directory you need to get the rights of administrator. In order to do this you can try <span style="text-decoration:underline;">sudo su</span>. After this command you will be asked for your password. If you are among the sudoers (administrators) you should immediatly gain the administrator rights. If you are not among them, well... you can only act in your home directory;</li>
<li>Create the script. Now type <span style="text-decoration:underline;">nano startRainlendar.sh.</span> Nano is a small but very powerful command-line writing tool. This command will open the newly created startRainlendar.sh file;</li>
<li>Now fill in this file! As we discovered before we need to use the <span style="text-decoration:underline;">sleep</span> command. So these are the rows you have to insert:<em>#!/bin/sh<br />
sleep 10<br />
rainlendar2<br />
</em></li>
<li>Now save the file. To do this type CTRL+O and then ENTER<em>;</em></li>
<li>We now have the file we need. Making this file start at the startup should solve our problem. But there is just another issue: we must make our file executable! To do this the command to use is <span style="text-decoration:underline;">chmod<em>.</em></span><em> </em>I'll probably tell you what I know about this command in another post some day. So far you just need to execute this command <span style="text-decoration:underline;">chmod 700</span></li>
<li>The last thing to do is to make this script start at the startup. You should already have a rainlender2 entry in your startup list. To modify this (or to add a new one) go on <em>System-&#62;Preferences-&#62;Session</em>. Find the rainlendar2 entry and change the "Command" to <span style="text-decoration:underline;">/home/startRainlendar.sh</span> or <span style="text-decoration:underline;">/home/USER/YOURDIR/startRainlendar.sh</span><strong> </strong>depending on where you decided to create your startup script. If you don't have a rainlendar2 entry, click on the "Add" button and simply create a new entry (the important field is "Command", the other two fields are just your your usage.</li>
</ol>
<p>This should solve the issue. Hope this helps.</p>
<p>Now let's go on with studies.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Ubuntu: Top programs for normal users]]></title>
<link>http://danilop.wordpress.com/?p=24</link>
<pubDate>Thu, 10 Jul 2008 13:28:45 +0000</pubDate>
<dc:creator>Dennis</dc:creator>
<guid>http://danilop.lt.wordpress.com/2008/07/10/ubuntu-top-programs-for-normal-users/</guid>
<description><![CDATA[I am sitting here in the library studying and I just took a pause. Today I want to describe some pro]]></description>
<content:encoded><![CDATA[<p>I am sitting here in the library studying and I just took a pause. Today I want to describe some programs which I use everyday and which are really good.This programs are about browsing, calendar, music listening, istant messanging, calls, office and dictionary. So, let's start.</p>
<ul>
<li><strong>Firefox 3:</strong> Well, I think many of you use Firefox, as it comes pre installed on Ubuntu. This new Firefox 3 has really improved from the former version. I expecially like the new address bar which seems to be kind of "intelligent", trying to recognize where you want to go while you type the address; Together with Firefox I use GMAIL notifier, a small add-on which keeps constantly controlled my e-mail address. You can find it here: <a title="GMAIL Notifier for Firefox" href="https://addons.mozilla.org/en-US/firefox/addon/173">https://addons.mozilla.org/en-US/firefox/addon/173</a>;</li>
<li><strong>Rainlendar2</strong>: This program is a really nice desktop calendar. As I tend to forget a lot of stuff it's really useful for me to have this small application on the right side of my desktop. I use it really much: exams, things to do, birthdays, everything. Rainlendar2 comes with 2 skins. I don't like the default one, but the second one is... really nice! Rainlander2 has plenty of useful feauters. There are two version avaiable: the free one and the pro one, which costs some dollars. You can read more about this program on it's official website: <a title="Rainlendar2" href="http://www.rainlendar.net">http://www.rainlendar.net</a>. I suggest you to have a loot to the FAQ section, really useful expecially for Linux users. The installation for Ubuntu users is really simple: you only have to download the *.DEB package, click on it, insert your admin password (sudo password) and install it. There is a version for Windows;</li>
<li><strong>BMPX</strong>: I love it's simply, light and complete interface. This player lets you play your own music from your hard disk (library), listen to internat radios (shouthcast, icecast), listen to lastfm (if you don't know what it is I suggest you do discover it: <a title="LastFM" href="http://www.last.fm">http://www.last.fm</a>), Podcasts, CDs and finally Jamendo, a really intresting music database on internet (<a title="Jamendo" href="http://www.jamendo.com">http://www.jamendo.com</a>). It is still in a quite early stage of the developement and it sometimes crashes (it happens to me when I listen for hours to lastfm) but I'm sure that if a lot of people will download and use this software the community will fix the bugs and provide new intresting and useful features. To get this software: <a title="BMPX" href="http://bmpx.backtrace.info/site/BMPx_Homepage">http://bmpx.backtrace.info/site/BMPx_Homepage</a>;</li>
<li><strong>Pidgin</strong>: this IM (Istant Messaging) comes preinstalled (If I'm not wrong) with Ubuntu. If it doesn't you can install it via terminal typing <em>sudo apt-get install pidgin</em>. I love it because it easily lets me to use different accounts (Messenger, GMAIL, ICQ) at the same time. It's interface is really simple, so that this software is nothing for you if you love spectacular effects and complex interfaces. It still doesn't support audio/video call and this is really a pity. But for the rest is really nice. It functions without problems even behind proxy: it can use the system's (GNOME's) settings (System-&#62;Settings-&#62;Proxy). Website: <a title="Pidgin" href="http://www.pidgin.im">http://www.pidgin.im</a>;</li>
<li><strong>Skype</strong>: not much to say about this software. I use it quite a lot, both for calling other computer and normal phones to good rates (expecially cheap if you have to call fix mobile numbers around the globe). As for Rainlenard2, you can install Skype downloading the *.DEB package from the official website. With this newer versions, Skype starts a good support of webcams. <a title="Skype" href="http://www.skype.com">http://www.skype.com</a>;</li>
<li><strong>OpenOffice</strong>: it's simply a wonderfull application, containing a really powerful set of tools to handle many kind of documents (databases, written documents, excel files, presentation and much more). You simply have to try it out, as it comes preinstalled with Ubuntu. If you were used to Microsoft Office it will take you a while to understand how OpenOffice really works (there are some differences, of course) but after that you will love it. On the net there is a lot of material and tutorials teaching you everything you need. If you want, try to go on Youtube and type "OpenOffice" to get some tutorials! Website: <a title="OpenOffice" href="http://www.openoffice.org">http://www.openoffice.org</a>;</li>
<li><strong>Stardict</strong>: a really powerful dictionary on your desktop. It can both function with local and remote databases. I make it start automatically when the computer stars and if I don't know a word I just have to select it and click the WIN button (you can set this behavior in the options window). Stardict opens a small window telling me what the word means (of course, I installed some dictionaries on my computer). To check out more about this software visit: <a title="Stardict" href="http://stardict.sourceforge.net/">http://stardict.sourceforge.net/</a>. There is even a version for Windows.</li>
</ul>
<p>That's it, if you liked my description the best thing to do is to go and get the software and to try it out yourself!These are just opinions and you maybe like other software better than these ones! :)</p>
<p>Now, back to my studies.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Dorkness!]]></title>
<link>http://runphilrun.wordpress.com/?p=31</link>
<pubDate>Fri, 13 Jun 2008 14:47:50 +0000</pubDate>
<dc:creator>pannenko</dc:creator>
<guid>http://runphilrun.lt.wordpress.com/2008/06/13/dorkness/</guid>
<description><![CDATA[Twice this week, I was asked this question:
&#8220;Phil, I just got new computer, which programs sho]]></description>
<content:encoded><![CDATA[<p>Twice this week, I was asked this question:</p>
<p>"Phil, I just got new computer, which programs should I install?"</p>
<p>Well, both times I kind of mumbled a few things off the top of my head, but here is a more extensive list of a few free programs that I recommend. They are in no particular order.</p>
<p><a href="http://winscp.net/" target="_blank">WinSCP</a>: secure 'explorer-like' ftp/ssh connections</p>
<p><a href="http://www.winamp.com/" target="_blank">Winamp</a>: music player that has many useful plug-ins</p>
<p><a href="http://phoenixlabs.org/pg2/" target="_blank">Peerguardian</a>: protect your computer from known IP addresses</p>
<p><a href="http://www.utorrent.com/" target="_blank">µTorrent</a>: download torrents using a very simple &#38; friendly client</p>
<p><a href="http://free.grisoft.com/">AVG Free Edition</a>: simple anti-virus</p>
<p><a href="http://www.safer-networking.org/" target="_blank">Spybot S&#38;D</a>: simple spy ware detection/removal</p>
<p><a href="http://www.mozilla.com/firefox/" target="_blank">Firefox</a></p>
<ul>
<li><a href="http://www.startaid.com/">StartAid</a>: saves all bookmarks to a server so they are accessible from more than one location</li>
<li><a href="http://www.downthemall.net/" target="_blank">Downloadthemall!</a>: chops up downloads into chunks and downloads them concurrently</li>
</ul>
<p><a href="http://www.mozilla.com/thunderbird/" target="_blank">Thunderbird</a></p>
<ul>
<li><a href="http://www.mozilla.org/projects/calendar/lightning/" target="_blank">Lightning</a>: calendar app</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/2110" target="_blank">Minimize to Tray</a>: minimizes Thunderbird to tray</li>
<li><a href="https://addons.mozilla.org/en-US/firefox/addon/2831" target="_blank">Minimize to Tray Enhancer</a>: starts Thunderbird with Windows</li>
</ul>
<p><a href="http://rocketdock.com/" target="_blank">RocketDock</a>: an unobtrusive aesthetic launch bar</p>
<p><a href="http://www.getpaint.net/" target="_blank">Paint.NET</a>: a much more sophisticated Windows Paint</p>
<p><a href="http://notepad-plus.sourceforge.net/" target="_blank">Notepad++</a>: quick and convenient development tool</p>
<p><a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/" target="_blank">Putty</a>: quick and dirty terminal</p>
<p><a href="http://www.foxitsoftware.com/pdf/rd_intro.php" target="_blank">Foxit Reader</a>: small and quick pdf reader without all the Acrobat Reader plug-in junk</p>
<p><a href="http://www.cutepdf.com/" target="_blank">CutePDF</a>: convenient PDF creater</p>
<p><a href="http://www.rainlendar.net/" target="_blank">Rainlendar</a>: desktop calendar and task organizer</p>
<p><a href="http://www.finchsync.com/" target="_blank">FinchSync</a>: free PDA/Thunderbird calendar and contact sync</p>
<p><a href="http://www.digsby.com/" target="_blank">Digsby</a>: instant message protocol that supports Facebook messages</p>
<p><a href="http://www.skype.com/">Skype</a>: inexpensive way to call others</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Programa de la semana: Rainlendar]]></title>
<link>http://amattajm.wordpress.com/?p=160</link>
<pubDate>Sat, 29 Mar 2008 16:28:34 +0000</pubDate>
<dc:creator>amattajm</dc:creator>
<guid>http://amattajm.lt.wordpress.com/2008/03/29/programa-de-la-semana-rainlendar/</guid>
<description><![CDATA[Bueno, despues de una larga ausencia de esta sección, hoy publico sobre Rainlendar.


Este es un al]]></description>
<content:encoded><![CDATA[<p>Bueno, despues de una larga ausencia de esta sección, hoy publico sobre <a href="http://www.rainlendar.net/cms/index.php">Rainlendar.</a></p>
<table>
<tr>
<td>Este es un almanaque que se funde sobre nuestro escritorio, quedando muy estilizado. Debajo del almanaque encontraremos dos cuadros, [To Do] y [Events].Podemos marcar distintas fechas, de cumpleaños, eventos, reuniones, o lo que queramos.</td>
<td><a href="http://amattajm.wordpress.com/files/2008/03/image-calendar.png" title="Rainlendar"><img src="http://amattajm.wordpress.com/files/2008/03/image-calendar.png" alt="Rainlendar" /></a></td>
</tr>
</table>
<p>En el primero de los cuadros aparecerán las cosas que hayamos puesto para hacer que ocurriran en la próxima semana(o la cantidad de días que uno decida), como si fuera una agenda. Y el día en cuestión nos aparecerá una alerta en la PC al encenderla. Para personas como yo (olvidadizas, que no prestan atención y ese tipo de cosas) es una aplicación genial; y para las otras personas, también, porque nunca está de más algo así.</p>
<p>En el segundo cuadro, Events, aparecen las fechas de cumpleaños que hayamos marcado y ese tipo de cosas. Usa el mismo sistema que To Do, o sea, aparece desde una semana antes (o lo que uno decida), y ese día nos alerta al encender la PC.</p>
<p>Tiene infinidad de skins para que elijamos cual se adapta mejor a nuestro escritorio, aunque yo personalment, uso uno de los que vienen por defecto, que tiene fondo transparente.</p>
<p>Existe una versión PRO (paga), con un valor de 15 Euros.</p>
<p>Está disponible tanto para Windows como para Linux. Podemos descargar distintos idiomas, según nuestras necesidades (o sea, lo podemos tener en español).</p>
<ul>
<li><a href="http://www.rainlendar.net/cms/index.php?option=com_rny_download&#38;Itemid=32">Página de descarga.</a></li>
</ul>
<ul>
<li><a href="http://www.rainlendar.net/cms/index.php?option=com_rny_skins&#38;Itemid=33">Descarga de Skins.</a></li>
</ul>
<ul>
<li><a href="http://www.rainlendar.net/cms/index.php?option=com_rny_localization&#38;Itemid=34">Descarga de lenguajes.</a></li>
</ul>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Muistitikusta apu monen koneen käytössä]]></title>
<link>http://mesiksen.wordpress.com/?p=857</link>
<pubDate>Mon, 03 Mar 2008 08:25:31 +0000</pubDate>
<dc:creator>mesis</dc:creator>
<guid>http://mesiksen.lt.wordpress.com/2008/03/03/muistitikusta-apu-monen-koneen-kaytossa/</guid>
<description><![CDATA[Tiedostothan ovat aina &#8220;sillä toisella&#8221; koneella silloin, kun niitä eniten tarvitsee. ]]></description>
<content:encoded><![CDATA[<p>Tiedostothan ovat aina "sillä toisella" koneella silloin, kun niitä eniten tarvitsee. Apu asiaan on olemassa: <i>Kingstonin DataTraveller</i>-muistitikulle saat koko työpöydän. Sillä toimii selain, sähköposti ja kalenteri, kertovat <a href="http://www.tekniikkatalous.fi/viihde/vimpaimet/article61798.ece?s=r&#38;wtm=-03032008" target="_blank">uutiset</a>.</p>
<p>No, saman asian ajaa mikä tahansa muistitikku, jolle voi tallentaa portable-muodossa esim. Firefoxin, Thunderbird´n, OpenOfficen, Notepadin, K-meleonin, 7-Zip´n, Rainlendarin ja paljon muutakin.  Kun kerran on siirtänyt myös esim. kirjanmerkit tikulle ja aina käyttää tikkua, on omat kirjanmerkitkin aina mukana. Turhan usein muistitikku on vain varastona tiedoille. Muista kuitenkin myös varmuuskopiointi...</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[RAINLENDAR]]></title>
<link>http://selectall.wordpress.com/2008/01/08/rainlendar/</link>
<pubDate>Tue, 08 Jan 2008 05:11:14 +0000</pubDate>
<dc:creator>selectall</dc:creator>
<guid>http://selectall.lt.wordpress.com/2008/01/08/rainlendar/</guid>
<description><![CDATA[www.rainlendar.net
Across-platform calendar software, Rainlendar is chockfull of all those much-need]]></description>
<content:encoded><![CDATA[<p><span style="font-size:8pt;font-family:Verdana;">www.rainlendar.net</span><span style="font-size:8pt;font-family:Verdana;"></span></p>
<p><!--[if gte vml 1]&#62;                                                    &#60;![endif]--><!--[if !vml]--><!--[endif]--><span style="font-size:8pt;font-family:Verdana;">Across-platform calendar software, Rainlendar is chockfull of all those much-needed everyday features like to-do lists, alarms, search capabilities, and printing support, apart from the expected calendar. The software uses the official standard for calendar data exchange set by the Internet Engineering Task Force Calendaring and Scheduling Working Group, called iCalendar, so you can easily import and export entries between </span><!--more--><span style="font-size:8pt;font-family:Verdana;">calendars. You can set up recurrent alarms, to-do entries, and calendar entries to record recurring events like birthdays, anniversaries, or the signing of an attendance register at work. The Lite version is free; Pro costs </span><span style="font-size:8pt;font-family:SwiftEF-Regular;">􀀀</span><span style="font-size:8pt;font-family:Verdana;">15 (Rs 850). The difference is that in the Lite version, there is no support for Outlook, Google Calendar, or calendars shared on a network. Both versions support the Lua scripting language, thereby allowing you to extend the calendar’s functionality. Eye-candy comes in the form of the tons of skins available. Find Rainlendar Lite on our May 2007 DVD.</span></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[The End]]></title>
<link>http://infowindows.wordpress.com/2008/01/05/the-end/</link>
<pubDate>Sat, 05 Jan 2008 16:07:57 +0000</pubDate>
<dc:creator>-BoRiS-</dc:creator>
<guid>http://infowindows.lt.wordpress.com/2008/01/05/the-end/</guid>
<description><![CDATA[Galera Esse Blog chegou ao seu fim. Aproveite os Posts que tem nele e fiquem avontade.
SE VOCÊS QUI]]></description>
<content:encoded><![CDATA[<p>Galera Esse Blog chegou ao seu fim. Aproveite os Posts que tem nele e fiquem avontade.</p>
<p>SE VOCÊS QUISEREM, PODEM CONFERIR OUTRO BLOG DO MEU AMIGO AQUI:</p>
<p><a href="http://www.apbsite.wordpress.com">http://www.apbsite.wordpress.com</a></p>
<p>Lá fala Sobre o Jogo Red Alert Para Baixar de Graça e Completo. LÁ TEM MAIS INFORMAÇÕES.</p>
<p>AstaláVista Baby.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[RainLendar v 2.3]]></title>
<link>http://tomachato.wordpress.com/2008/01/04/rainlendar-v-23/</link>
<pubDate>Fri, 04 Jan 2008 13:40:54 +0000</pubDate>
<dc:creator>tomachato</dc:creator>
<guid>http://tomachato.lt.wordpress.com/2008/01/04/rainlendar-v-23/</guid>
<description><![CDATA[
Para você que necessita recorrer ao calendário freqüentemente, o Rainlendar traz uma solução m]]></description>
<content:encoded><![CDATA[<div style="text-align:center;"><img src="http://www.dstyles.de/tools/gfx/rlendar.jpg" alt="rainlendar" /></div>
<p>Para você que necessita recorrer ao calendário freqüentemente, o <b>Rainlendar</b> traz uma solução moderna e interativa para agendar tarefas, compromissos e lembretes, além de exibir e localizar datas.</p>
<p>A praticidade do programa começa pela sua interface, que além de proporcionalmente pequena em relação a área de trabalho, é totalmente flexível, podendo ser colocada em qualquer lugar na sua tela. Se o tema (skin) padrão do programa não lhe agradar, você pode facilmente alterá-lo.</p>
<p><b>Agende compromissos com apenas dois cliques!</b></p>
<p>Para adicionar um compromisso, é só clicar duas vezes com o botão esquerdo do mouse sobre a data desejada. Caso você queira criá-lo em uma data fora do mês corrente, o programa oferece duas setas, localizadas acima do calendário, possibilitando que se alterne rapidamente entre os meses do ano. Selecionada a data, uma janela é aberta para você colocar todas as informações e configurações para aquele compromisso.</p>
<p><b>Eficiência sem atrapalhar seu trabalho.</b></p>
<p>Equanto você estiver executando outros programas, o <b>Rainlendar</b> trabalha perfeitamente em segundo plano, disponibilizando um ícone na barra de sistema (<i>systray</i>, ao lado do relógio) para acesso rápido.</p>
<p>Não deixe de ter este prático calendário interativo na sua área de trabalho para conferir datas e agendar seus compromissos.</p>
<p align="center"><b>Tamanho:</b> <i>3,4 MB</i></p>
<div align="center"></div>
<p align="center"><b>Download: </b><a href="http://www.rainlendar.net/cms/index.php?option=com_rny_download&#38;Itemid=30">Rainlendar v 2.3</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Kalenderchen für den Desktop - Rainlendar Lite]]></title>
<link>http://downloaddoofie.wordpress.com/2008/01/02/kalenderchen-fur-den-desktop-rainlendar-lite/</link>
<pubDate>Wed, 02 Jan 2008 16:42:37 +0000</pubDate>
<dc:creator>eyetea</dc:creator>
<guid>http://downloaddoofie.wordpress.com/2008/01/02/kalenderchen-fur-den-desktop-rainlendar-lite/</guid>
<description><![CDATA[Mit dem Mini-Tool Rainlendar behält man stets die Übersicht über kommende Termine und bevorstehen]]></description>
<content:encoded><![CDATA[<p>Mit dem Mini-Tool Rainlendar behält man stets die Übersicht über kommende Termine und bevorstehende Aufgaben. Direkt auf Ihren Desktop plaziert sich der schicke Freeware-Kalender. Es wird jeweils ein Monat angezeigt. Mit einem Mausklick wechselt man bequem vor und zurück im Jahr.</p>
<p>Wichtige Termine lassen sich eintragen und mit kleinen Symbolen kennzeichnen. Wiederkehrende Ereignisse wie Geburtstage kann man natürlich auch einstellen. Neben dem Kalender erscheint zudem eine Aufgaben- und eine Terminliste.</p>
<p>Ein Termin lässt sich mit einem Alarm versehen, damit Sie rechtzeitig daran erinnnert werden. Das Aussehen und der Anzeige-Zeiraum lässt sich beliebig verändern. Ist Ihnen das nicht genug, können Sie per LUA-Skripte die Funktionen von Rainlendar erweitern oder gar neue hinzufügen.</p>
<p>Für größere Kalender-Dateien steht eine Suche parat. Per Backup- oder mit der Druck-Funktion können Sie Ihre Termin-Daten entweder auf dem Computer oder auf Papier sichern. Zahlreiche <a href="http://www.rainlendar.net/cms/index.php?option=com_rny_skins&#38;Itemid=33" title="Rainlendar-Skins" target="_blank">Skins</a> erlauben Ihnen, Ihrem Kalender ein individuelles Äußeres zu verpassen.</p>
<p>In der kostenpflichtigen Pro-Version können Sie Kalender-Daten aus Outlook und Google Calendar importieren oder einen Online-Kalender abonnieren bzw selber veröffentlichen.</p>
<p>Rainlendar Lite steht für Windows und Linux zum kostenlosen Download bereit. Die Pro-Version kostet 15 Euro.</p>
<p><b>Fazit:</b> Schicker Mini-Kalender für den Desktop.</p>
<p><b>Download:</b></p>
<ul>
<li><a href="http://www.rainlendar.net/cms/index.php?option=com_rny_download&#38;Itemid=32" title="Rainlendar Lite Download" target="_blank">http://www.rainlendar.net/cms/index.php?option=com_rny_download&#38;Itemid=32</a></li>
<li><a href="http://www.rainlendar.net/cms/index.php?option=com_rny_localization&#38;Itemid=34" title="Rainlendar Lite Sprachdateien" target="_blank">http://www.rainlendar.net/cms/index.php?option=com_rny_localization&#38;Itemid=34</a> (Sprach-Dateien)</li>
</ul>
<p><b>Daten:</b></p>
<ul>
<li>Version: 2.3</li>
</ul>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Rainlendar - Phần mềm tạo lịch trên Destop]]></title>
<link>http://trananhtuan.wordpress.com/2007/12/02/rainlendar-phan-mem-tao-lich-tren-desktop/</link>
<pubDate>Sun, 02 Dec 2007 00:17:15 +0000</pubDate>
<dc:creator>trananhtuan</dc:creator>
<guid>http://trananhtuan.lt.wordpress.com/2007/12/02/rainlendar-phan-mem-tao-lich-tren-desktop/</guid>
<description><![CDATA[Phần mềm tạo lịch động trên màn hình desktop !!!

Rainlendar là phần mềm lịch ]]></description>
<content:encoded><![CDATA[<p align="left">Phần mềm tạo lịch động trên màn hình desktop !!!</p>
<p align="left"><span></span></p>
<p><strong><span class="highlight">Rainlendar</span></strong> 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ình desktop. Ứng dụng này không phụ thuộc vào hệ điều hành nên có thể chạy trên cả Windows và Linux. Giao diện có thể tùy biến với nhiều skin, và bạn còn có thể phối hợp các đặc điểm của nhiều skin lại với nhau.Thật dễ để sử dụng <strong><span class="highlight">Rainlendar</span></strong> kết hợp với các phần mềm lịch khác.. <strong><span class="highlight">Rainlendar</span></strong> sử dụng định dạng iCalender chuẩn để lưu thời khóa biểu nên bạn có thể dễ dàng chuyển thông tin qua lại giữa các ứng dụng. Bạn còn có thể xem lịch trực tuyến và xem những cuộc hẹn đã lên lịch trong Outlook bằng <strong><span class="highlight">Rainlendar</span></strong>.</p>
<p><strong><span class="highlight">Rainlendar</span></strong> là một ứng dụng unicode hỗ trợ đa ngôn ngữ nên bạn có thể sử dụng nó bằng ngôn ngữ của mình.</p>
<p><strong><span class="highlight">Rainlendar</span></strong> is a full of features calendar tool which is quite simple to use and doesn’t take much space on your desktop. The application is platform independent so you can run it both on Windows and on Linux. The appearance can be customized with skins and you can even mix different skins together.</p>
<p>It is possible to use <strong><span class="highlight">Rainlendar</span></strong> with other calendar applications too. <strong><span class="highlight">Rainlendar</span></strong> 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 see your Outlook appointments directly in <strong><span class="highlight">Rainlendar</span></strong>.</p>
<p><strong><span class="highlight">Rainlendar</span></strong> is an unicode application and support localization so you can use it on your own language.</p>
<p><strong>Here are some key features of “Rainlendar Pro”:</strong></p>
<ul>
<li>· Platform independent</li>
<li>· To do list</li>
<li>· Localized</li>
<li>· Standards Compatible</li>
<li>· Alarms</li>
<li>· Recurrence</li>
<li>· Scripting</li>
<li>· Backups</li>
<li>· Printing</li>
<li>· Search</li>
<li>· Shared calendars (Pro only)</li>
<li>· Outlook support (Pro only)</li>
<li>· Look’n'feel</li>
<li>· Highly Customizable</li>
<li>· Multiple Calendars</li>
<li>· Import &#38; Export</li>
</ul>
<p><strong><a href="http://www.rainlendar.net/cms/index.php">Homepage</a></strong></p>
<p><strong>Size:  3.91 MB</strong></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Siempre organizado]]></title>
<link>http://madquark.wordpress.com/2007/11/20/siempre-organizado/</link>
<pubDate>Tue, 20 Nov 2007 12:35:26 +0000</pubDate>
<dc:creator>MadQuark</dc:creator>
<guid>http://madquark.lt.wordpress.com/2007/11/20/siempre-organizado/</guid>
<description><![CDATA[Esta entrada podríamos etiquetarla en la categoría &#8220;Así lo hago yo&#8220;.
En este caso os ]]></description>
<content:encoded><![CDATA[<p>Esta entrada podríamos etiquetarla en la categoría "<em>Así lo hago yo</em>".</p>
<p>En este caso os cuento mi método para mantener una agenda/calendario organizado y sincronizado, accesible en cualquier lugar. He probado varias alternativas a lo largo del tiempo, pero las he ido desechando todas pues no cumplían mis expectativas. Algunas, tipo Outlook, son demasiadas complejas para lo que yo necesito, y otras, como las tipo web, no me convencían, Sunbird no lo veo maduro. Finalmente he encontrado una solución sencilla que se adapta perfectamente a lo que yo buscaba combinando dos herramientas: <font color="#0000ff"><a href="https://www.google.com/calendar/">Google Calendar</a></font> (lado servidor) y <font color="#0000ff"><a href="http://www.rainlendar.net/cms/index.php" title="Rainlendar" target="_blank">Rainlendar</a></font> (lado cliente).</p>
<p><!--more--></p>
<p><strong>Rainlendar </strong>es una pequeña aplicación de escritorio que instala un calendario sobre el escritorio (valga la redundancia) en el que puedes programar eventos y marcar una lista To-Do (tareas por hacer). Es muy sencillo, consume pocos recursos, no es intrusivo y es muy configurable. Además posee una gran cantidad de skins para cambiar su aspecto y por supuesto es libre y gratuito. Lo llevo usando mucho tiempo y me encanta. Yo sigo usando la versión 0.22, aunque ya ha salido una versión 2.2 (estoy un pelín desfasado).</p>
<p>Supongo que Google Calendar es suficientemente conocido. Además de darte acceso a tu agenda en cualquier lugar con conexión, permite hacer públicos los calendarios que quieras y compartirlos.</p>
<p>La idea general es usar Google Calendar para gestionar el/los calendarios (muy sencillo, como cualquier aplicación de Google), e instalar Rainlendar en los equipos que uses habitualmente (casa/trabajo, en mi caso) para ver las citas en el escritorio sin necesidad de abrir el navegador. Para conectar ambas aplicaciones usamos un pequeño programita llamado <a href="http://pages.interlog.com/~tcharron/wgetwin.html" title="WGet for Windows">WGet</a> que se encarga de descargar los calendarios de Google al disco duro. Necesitamos conocer la URL del calendario que queremos usar. Para ello, vamos a la configuración del calendario en Google Calendar y buscamos el botón ICAL. Habrá dos, uno para la URL privada y otro para la pública. Copiamos la dirección del enlace que nos interese (generalmente la privada).</p>
<p>El proceso es el siguiente:</p>
<ul>
<li>Descarga wget y descomprímelo en una carpeta, por ejemplo <code>C:\Archivos de programa\Rainlendar\WGet</code></li>
<li>Ejecutar la siguiente línea: <code>wget -O ical.ics url_calendar</code>, donde ical.ics puede ser un nombre cualquiera, que se asigna al archivo que guarda el calendario descargado, y url_calendar la URL que obtuvimos en Google Calendar.</li>
<li>Vincular el archivo ical.ics a Rainlendar. En la configuración, ir a Plugins, y en la opción iCalendar Plugin añadir el archivo descargado por wget. Marca la casilla "Actualizar cuando cambia el archivo".</li>
</ul>
<p><strong>Importante</strong>: <em>puede ser necesario sustituir "%40" por "@" en la URL que copiamos desde GCalendar.</em></p>
<p>Por supuesto, no es nada cómodo tener que escribir en un terminal esa línea cada vez que queramos actualizar, asi que tenemos dos alternativas: crear una tarea programada de Windows (ver anotación de <a href="http://mundogeek.net/archivos/2006/10/18/google-calendar-en-el-escritorio/">Mundo Geek</a>) o crear un archivo de lotes que ejecute ese comando. Crea un archivo de texto plano, copia la línea anterior y guardalo con la extensión .BAT, por ejemplo en el escritorio para tenerlo a mano y así podrás realizar la sincronización cuando quieras. Por supuesto, puedes añadir tantas líneas (con nombres de calendario diferentes) como quieras.</p>
<p>Para personalizar el aspecto se pueden descargar muchas pieles en <a href="http://customize.org/rainlendar">Customize.org</a>. Aunque yo me quedo con la original, que es la más simple, en la versión en español.</p>
<p>Y si utilizas Linux también puedes usarlo, ya que Rainlendar tiene versión para el pingüino.</p>
<p><strong>Vía</strong>: una anotación antigua de <a href="http://mundogeek.net/archivos/2006/10/18/google-calendar-en-el-escritorio/">Mundo Geek</a>.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Rainlendar]]></title>
<link>http://neziniukas.wordpress.com/2007/10/18/rainlendar/</link>
<pubDate>Thu, 18 Oct 2007 10:35:46 +0000</pubDate>
<dc:creator>neziniukas</dc:creator>
<guid>http://neziniukas.lt.wordpress.com/2007/10/18/rainlendar/</guid>
<description><![CDATA[
Rainlendar - tai darbastalio kalendorius, neryjantis resursų.
Privalumai:
1. Jo nereikia ieškoti ]]></description>
<content:encoded><![CDATA[<p><a href="http://neziniukas.wordpress.com/files/2007/10/rainlendar.gif" title="rainlendar.gif"><img src="http://neziniukas.wordpress.com/files/2007/10/rainlendar.gif" alt="rainlendar.gif" border="0" /></a></p>
<p><strong>Rainlendar </strong>- tai darbastalio kalendorius, neryjantis resursų.</p>
<p>Privalumai:</p>
<p>1. Jo nereikia ieškoti - sėdi darbastalyje<br />
2. Gali būti daug kalendorių - pvz darbinis, asmeninis ir t.t.<br />
3. Darbų sąrašai, įvykiai įvedami tiesiai iš darbastalio, pele užėjus ant datos, matosi dienos įvykiai. Yra priminimo funkcija.<br />
4. Platus "skinų" pasirinkimas, lietuvių kalba - dalinai, nors liet. raides rodo<br />
5. Tinka Windows, Linux OS<br />
6. Modifikuojamas</p>
<p>Man gavosi taip:</p>
<p><a href="http://neziniukas.wordpress.com/files/2007/10/rainlendar1.jpg" title="rainlendar1.jpg"><img src="http://neziniukas.wordpress.com/files/2007/10/rainlendar1.jpg" alt="rainlendar1.jpg" /></a></p>
<p>Plačiau - <a href="http://www.rainlendar.net/cms/index.php">Rainlendar</a> svetainėje.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Rainlendar Metal Vista]]></title>
<link>http://infowindows.wordpress.com/2007/07/20/rainlendar-metal-vista/</link>
<pubDate>Fri, 20 Jul 2007 23:18:05 +0000</pubDate>
<dc:creator>-BoRiS-</dc:creator>
<guid>http://infowindows.lt.wordpress.com/2007/07/20/rainlendar-metal-vista/</guid>
<description><![CDATA[Por: ~tytynono: Um Skin Para o Rainlendar Muito Bonita para Combinar com o Tema para WindowsBlinds M]]></description>
<content:encoded><![CDATA[<p align="justify"><strong>Por: ~<a href="http://tytynono.deviantart.com/">tytynono</a>: Um Skin Para o Rainlendar Muito Bonita para Combinar com o Tema para WindowsBlinds <a href="http://www.deviantart.com/deviation/60206588/?qo=0&#38;q=in%3Acustomization%2Fskins%2Fwindows%2Fwindowblindsxp+sort%3Atime"><font color="#0000ff"><u><em>Metal Vista</em></u></font></a>!</strong></p>
<p align="center"> <img src="http://fc01.deviantart.com/fs16/i/2007/201/b/2/Metal_Vista_Rainy_by_Lovely62.jpg" height="206" width="236" /></p>
<p align="justify"><img src="http://tpdesk.wordpress.com/files/2007/06/download.png" border="1" height="20" width="150" /> - <a href="http://www.deviantart.com/download/60221088/Metal_Vista_Rainy_by_Lovely62.zip"><font color="#0000ff"><em><u>C</u><u>lique Aqui Para Iniciar o Download</u></em></font></a>! [15.2Kb]</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Zmieniamy pulpit]]></title>
<link>http://pitm.wordpress.com/2007/05/20/zmieniamy-pulpit/</link>
<pubDate>Sat, 19 May 2007 23:30:55 +0000</pubDate>
<dc:creator>Piotr</dc:creator>
<guid>http://pitm.lt.wordpress.com/2007/05/20/zmieniamy-pulpit/</guid>
<description><![CDATA[Będąc użytkownikiem Windows, po dłuższym czasie obcowania z systemem, zacząłem myśleć o bar]]></description>
<content:encoded><![CDATA[<p>Będąc użytkownikiem Windows, po dłuższym czasie obcowania z systemem, zacząłem myśleć o bardziej spersonalizowanym i dostosowanym do moich potrzeb interfejsie.</p>
<p>W około zaczęły krążyć ostatnio Visty, OSX i inne Beryle kusząc efektami i ciesząc oko. Co jednak ma zrobić użytkownik posiadający Windows XP, nie mający ochoty na zmianę systemu, a chcący go odświeżyć wizualnie i dostosować interfejs całkowicie do własnych potrzeb i wyobrażeń? Szybki przewodnik do szczęścia przedstawiam poniżej :)</p>
<p><!--more--></p>
<p>Wiele czasu i prób zajęło mi znalezienie odpowiedniego oprogramowania, które byłoby plastyczne i jednocześnie nie obciążyło znacznie systemu. Sprawdzałem różne możliwości takie jak: DesktopX, Talisman 2, czy Aston. W końcu znalazłem to czego szukałem - Litestep. Po kilku miesiącach eksperymentowania postanowiłem podzielić się z Wami moim doświadczeniem.</p>
<p><strong>1. Zmieniamy interfejs pulpitu </strong></p>
<p>LiteStep, to program zastępujący explorera w kwesti obsługi całego pulpitu. Zastępuje go właściwie dosłownie, ponieważ przy starcie systemu proces explorera nie jest w ogóle uruchamiany. Zamiast niego ładuje się nam LiteStep używający, o dziwo, mniej pamięci operacyjnej niż środowisko pierwotne (LS 10-20MB w zależności od wybranego tematu, a explorer 20-30MB). Co ciekawe - samo zalogowanie się i ujrzenie pulpitu jest znacznie szybsze.</p>
<p>LiteStep do niedawna nie posiadał instalatora - trzeba było samemu grzebać w rejestrze itd. Jednak te czasy już mamy za sobą. LiteStep na starcie oferuje bardzo duże możliwości konfiguracyjne. Jako, że program korzysta ze skórek, możliwe jest również stworzenie własnego interfejsu.</p>
<p><a href="http://pitm.files.wordpress.com/2007/05/ls.jpg" target="_blank"><img style="border:1px solid black;width:128px;height:96px;" src="http://pitm.wordpress.com/files/2007/05/ls.thumbnail.jpg" alt="LiteStep" width="128" height="96" align="right" /></a> Po zainstalowaniu widoczny jest temat będący hybrydą klasycznego Windows i Linuxa (a raczej środowiska KDE). Skórka ta jest bardzo funkcjonalna, posiada ciekawe możliwości, takie jak obsługa wirtualnych pulpitów, statystyki, sterowanie winampem i inne. Wizualnie nie jest niestety spełnieniem moich marzeń designerskich, dlatego jakiś czas temu zabrałem się za stworzenie własnej.</p>
<p>Tworzenie tematów graficznych jest jednak dosyć skomplikowane i wymaga zapoznania się z dokumentacją odpowiednich plików, przez co przeznaczone jest raczej dla zaawansowanych użytkowników. Prawdę powiedziawszy bardziej przypomina (proste) programowanie niż pracę z grafiką, ale to pewnie dlatego sama aplikacja jest bardzo szybka i wydajna. Poświęcając trochę czasu możemy uzyskać naprawdę ciekawe efekty i sporo satysfakcji :) Można oczywiście używać gotowych tematów jak choćby stworzonego przeze mnie "pmGlassDark" (UPDATE: proponuje najnowszą wersję <a href="http://pitm.wordpress.com/2008/07/30/pmglassdarkslim-2/" target="_blank">pmGlassDarkSlim 2</a>).</p>
<p>Dlaczego warto używać LS:</p>
<ul>
<li>szybsze logowanie do systemu</li>
<li>mniejsze zużycie pamięci niż explorer</li>
<li>skórki - tworzenie, dowolna edycja, plastyczność</li>
<li>dowolne menu start i prawego klawisza myszy (kliknięcie na pulpicie)</li>
<li>hotkeys - uruchamianie programów/plików po wciśnieciu przypisanego klawisza np. u mnie: WIN+W uruchamia przeglądarke www lub WIN+E klienta e-mail itd. Oszczędza to naprawdę dużo czasu i klikania.</li>
<li>efekt końcowy może być mocno "dżezi" :)</li>
</ul>
<p>To by było Litestep w pigułce. Możliwości są naprawdę szerokie.</p>
<p><strong>2. Zmiana wyglądu okienek</strong></p>
<p>Litestep ogranicza się do zastąpienia pulpitu i dodania różnych ciekawych funkcjonalności. Co jednak zrobić kiedy chcdmy pójść dalej - zmienić wygląd okienek? No właśnie. Czy nie jesteście znudzeni dwoma wartymi uwagi skórkami Windows (klasyczna i niebieska XP)? Ja owszem. Dlatego skorzystałem z aplikacji UX Theme Multi Patcher, która odblokowuje w Windows XP możliwość instalacji nieautoryzowanych przez Microsoft tematów graficznych dla okienek. Jest ich całe mnóstwo, ale ja po miesiącach skakania z jednej na drugą w końcu znalazłem tę jedyną - Luna Element 5 Black. Piękna, stonowana, estetyczna, dopracowana. UX Theme Multi Patcher nie wpływa na zasoby systemu, podmienia jedynie odpowiedni plik Windows na taki bez blokady, po czym znika.</p>
<p><strong>3. Gadżety</strong></p>
<p>Kochamy je (prawie) wszyscy. Są to niewielkie,  miłe dla oka programy, dostarczające wszelkiego rodzaju informacji. Ja wybrałem SysMetrix mając na celu stworzenie odpowiednika Vistowego sidebaru.</p>
<p><a href="http://pitm.files.wordpress.com/2008/07/sysmetrix.jpg" target="_blank"><img class="alignright size-thumbnail wp-image-163" style="border:1px solid black;" src="http://pitm.wordpress.com/files/2008/07/sysmetrix.jpg?w=82" alt="" width="82" height="96" /></a><a href="http://www.xymantix.com/sysmetrix/" target="_blank">Sysmetrix</a>, to bardzo dobrze napisana aplikacja pozwalająca uzyskać moc informacji o systemie, pogodzie, poczcie itp. Program daje się łatwo i intuicyjnie ubrać w skórkę własnej produkcji, dając przy tym jednocześnie bardzo duże możliwości i satysfakcję.</p>
<p><a href="http://pitm.files.wordpress.com/2008/07/rainlendar.jpg" target="_blank"><img class="alignright size-thumbnail wp-image-162" style="border:1px solid black;" src="http://pitm.wordpress.com/files/2008/07/rainlendar.jpg?w=102" alt="" width="102" height="96" /></a>Drugim bardzo przydatnym, malutkim programikiem, jest znany wielu osobom <a href="http://www.rainlendar.net/" target="_blank">Rainlendar</a> - kalendarz widoczny na pulpicie. W tym przypadku nie bawiłem się w tworzenie skórki ponieważ znalazłem idealnie pasującą do moich potrzeb temat "Lucid" i "Lucid Smoked".</p>
<p><a href="http://pitm.files.wordpress.com/2008/07/rocketdock.jpg" target="_blank"><img class="alignright size-thumbnail wp-image-160" style="border:1px solid black;" src="http://pitm.wordpress.com/files/2008/07/rocketdock.jpg?w=128" alt="" width="128" height="48" /></a>Trzecim i ostatnim programem, o którym chciałem wspomnieć jest <a title="rocketdock" href="http://rocketdock.com/" target="_blank">RocketDock</a>. Co robi RocketDock? Wiernie kopiuje ideę znaną z komputerów Apple. Tzn. tworzy pasek z ikonami programów, które zgrabnie powiększają się po najechaniu myszą. Dodatkowo można za jego pomącą opróżniać kosz itp. Programik jest bardzo efektowny i działa naprawdę zgrabnie.</p>
<p><strong><a href="http://pitm.files.wordpress.com/2007/05/0705-1.jpg" target="_blank"><img style="border:1px solid black;width:128px;height:96px;" src="http://pitm.wordpress.com/files/2007/05/0705-1.thumbnail.jpg" alt="" width="128" height="96" align="right" /></a>4. Efekt końcowy</strong></p>
<p>Efekt końcowy, moi drodzy, to właściwie nowy Windows. Coś pomiędzy Vistą, a OSX. Oczywiście nie do końca, bo sama zasada działania systemu pozostaje naturalnie bez zmian. Jednak odbiór interfejsu i praca w tak zmodyfikowanym systemie jest  nieporównywalnie bardziej przyjemna, komfortowa... i dżezi :)</p>
<p><a href="http://pitm.files.wordpress.com/2007/05/0705-2.jpg" target="_blank"><img style="border:1px solid black;width:128px;height:96px;" src="http://pitm.wordpress.com/files/2007/05/0705-2.thumbnail.jpg" alt="pulpit2" width="128" height="96" align="right" /></a>Info: Pasek zadań, menu start, tray oraz data z godziną pojawiają się po najechaniu myszą na stosowny obszar. Sidebar posiada dynamiczne moduły np. klikając na zegar zmieniamy jego wygląd; na strzałkę w prawym górnym rogu zmieniamy tło całego sidebarka; na pogodę zastępujemy ją sprawdzaniem poczty i z powrotem. Kosz opróżniamy prawym przyciskiem myszy itd. Miłej zabawy :)</p>
<p><a href="http://pitm.files.wordpress.com/2007/05/0705-3.jpg" target="_blank"><img style="border:1px solid black;width:128px;height:96px;" src="http://pitm.wordpress.com/files/2007/05/0705-3.thumbnail.jpg" alt="pulpit3" width="128" height="96" align="right" /></a><strong>5. Pliki do pobrania</strong></p>
<ul>
<li><a href="http://www.litestep.net/download.php?mod=79,module">LiteStep Installer</a></li>
<li><a href="http://www.deviantart.com/download/55688383/pmGlassDark_by_PM_FX.zip" target="_blank">LiteStep pmGlassDark skin</a></li>
<li><a href="http://www.deviantart.com/download/78293437/pmGlassDark_Slim___PL_by_PM_FX.zip" target="_blank">LiteStep pmGlassDarkSlim skin</a></li>
<li><a href="http://www.deviantart.com/download/93906920/pmGlassDarkSlim_2_1_polski_by_PM_FX.zip" target="_blank">LiteStep pmGlassDarkSlim 2 skin</a></li>
<li><a href="http://www.box.net/shared/ijcdo811up" target="_blank">UX Theme Multi-Patcher</a></li>
<li><a href="http://www.box.net/shared/8yk99a2lvs" target="_blank">Luna Element 5 Visual Style</a></li>
<li><a href="http://www.xymantix.com/sysmetrix/sysmetrix-3.41.exe">SysMetrix Installer</a></li>
<li><a href="http://www.box.net/shared/1nnvvt2x9m" target="_blank">SysMetrix pmWinVistaSidebar1024 skin</a></li>
<li><a href="http://www.deviantart.com/download/67622163/pmSimpleStat___PL_by_PM_FX.zip" target="_blank">SysMetrix pmSimpleStat skin</a></li>
<li><a href="http://www.box.net/shared/clvy6p4jzt" target="_blank">Rainlendar</a></li>
<li><a href="http://www.box.net/shared/ejeno1tatb" target="_blank">Rainlendar Lucid skin</a></li>
<li><a href="http://rocketdock.com/download" target="_blank">RocketDock</a></li>
<li><a href="http://www.box.net/shared/6j4sb3ba9g" target="_blank">Tapety ala Vista</a></li>
</ul>
<p><a href="http://pitm.files.wordpress.com/2008/07/pmglassdark_slim___pl_by_pm_fx.jpg" target="_blank"><img class="size-thumbnail wp-image-158 alignright" style="border:1px solid black;" src="http://pitm.wordpress.com/files/2008/07/pmglassdark_slim___pl_by_pm_fx.jpg?w=128" alt="" width="128" height="80" /></a></p>
<p><strong>6. Podsumowanie</strong></p>
<p>Powyższe informacje są tylko ogólnym i dość szybkim przedstawieniem możliwości jakie stawia przed nami taki zestaw aplikacji (głównie Litestep), dlatego po więcej odsyłam Was do Google i dokumentacji powyższych programów. Powodzenia i dobrej zabawy! :)</p>
<p><a href="http://pitm.files.wordpress.com/2008/08/pmglassdarkslim_2_1_polski_by_pm_fx.png" target="_blank"><img class="alignright size-thumbnail wp-image-251" style="border:1px solid black;" src="http://pitm.wordpress.com/files/2008/08/pmglassdarkslim_2_1_polski_by_pm_fx.png?w=128" alt="" width="128" height="80" /></a>Strona LiteStep: <a href="http://www.litestep.net/" target="_blank">http://www.litestep.net/</a><br />
SysMetrix: <a href="http://www.xymantix.com/sysmetrix/" target="_blank">http://www.xymantix.com/sysmetrix/</a><br />
Rainlendar:  <a href="http://www.rainlendar.net/" target="_blank">http://www.rainlendar.net/</a><br />
RocketDock: <a href="http://rocketdock.com/" target="_blank">http://rocketdock.com/</a></p>
<p>PS.: <a href="http://pitm.wordpress.com/2008/02/10/zmieniamy-pulpit-update/">Zobaczcie również update wpisu</a>.</p>
<p><!-- technorati tags begin --></p>
<p style="font-size:10px;text-align:right;">technorati tags:<a rel="tag" href="http://technorati.com/tag/litestep">litestep</a>, <a rel="tag" href="http://technorati.com/tag/sysmetrix">sysmetrix</a>, <a rel="tag" href="http://technorati.com/tag/rainlendar">rainlendar</a>, <a rel="tag" href="http://technorati.com/tag/skins">skins</a>, <a rel="tag" href="http://technorati.com/tag/desktop">desktop</a>, <a rel="tag" href="http://technorati.com/tag/pulpit">pulpit</a>, <a rel="tag" href="http://technorati.com/tag/zmiana">zmiana</a>, <a rel="tag" href="http://technorati.com/tag/interfejs">interfejs</a></p>
<p><!-- technorati tags end --></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Journey to the end of the night.]]></title>
<link>http://fireyedboy.wordpress.com/2007/03/31/journey-to-the-end-of-the-night/</link>
<pubDate>Sun, 01 Apr 2007 00:23:12 +0000</pubDate>
<dc:creator>Sean Hallaren</dc:creator>
<guid>http://fireyedboy.lt.wordpress.com/2007/03/31/journey-to-the-end-of-the-night/</guid>
<description><![CDATA[
My current desktop looks pretty awesome. After chatting a bit about ObjectDock with Paul and discov]]></description>
<content:encoded><![CDATA[<p><a href="http://flickr.com/photos/fireeyedboy/441270102/"><img src="http://img.photobucket.com/albums/v411/gallick/desktop033106.jpg" height="338" width="450" /></a></p>
<p>My current desktop looks pretty awesome. After chatting a bit about <a href="http://www.stardock.com/products/objectdock/">ObjectDock</a> with Paul and discovering that my new nVidia drivers somehow allow me to push my desktop resolution past what I thought was my monitor's max 1024x768 resolution, I decided to give the Mac OS X ripoff dock another shot. My issue previously was that trying to run a window maximized would allow you to see through the dock to the desktop, and in some cases overlap the dock, and it would look really bad, so I got rid of it. Now that I'm magically running 1280x960, maximizing windows isn't at all necessary, so it doesn't look like crap anymore. And of course, I am still rocking my <a href="http://www.rainlendar.net/cms/index.php">Rainlendar</a>. For anyone who is like me and can't remember basic things like what day it is and when you work next, Rainlendar is a godsend. It's simple, customizable, and looks snazzy as hell. I'm really going to miss it when I make the jump to Mac in a few months' time. From what I've heard, iCal is not quite the same, but hey, I guess I'll just have to deal.</p>
<p>Speaking of the great Mac leap and the Macbook I plan to purchase, I think I'm going to wait at least until Apple speaks a peep of some sort regarding the Mac OS X 10.5 Leopard, which is due out in the next few months. They haven't had any sort of event or press release for months--their last public peep was regarding the iPhone--so who knows what kind of goodies they have in store. Alot of people are predicting a refresh to most or all of the Mac lineup, as every version of their machines is either nearing the end of a normal Mac life cycle or is already overdue for a hardware refresh. So until that happens, I think I'll keep on keepin' on with old PC (which actually seems to be running better these last couple of days since I removed a ton of software and scoured the shit out of it), at least until there's a fresh batch of info from Apple regarding the OS or new models.</p>
<p>It looks like the second job at HMV didn't go through as they wanted someone that could work 40 hours a week long-term, and I wasn't really wanting to leave my position at Staples, seeing as I enjoy it there, the people are cool, and I can probably get a transfer to a Vancouver location in the fall when moving time comes. However, I'm still on the potential lookout for a second (part time) job to supplement my current cash flow, so if your work is cool and hiring, let me know.</p>
<p>Something else I should mention: if anyone out there has got some furniture (particularily a futon, coffee table, dining table, chairs, end tables) or some appliances (particularily a cheap barbecue) they want to get rid of, let me know. We're trying to horde as much cheap furniture as we possibly can before we go so we don't have to get everything new and thus spend a ton of money. We've already got a few things, but if your family has got some crap taking up room in your crawlspace that is in relatively good condition, I'd love to take it off your hands.</p>
<p>There is also a whole crop of pictures from New Years' up to the present that I got off Brie's camera that are now on <a href="http://www.flickr.com/photos/fireeyedboy/">Flickr</a>. Go.</p>
<p>That's about it for today. I need to get around to writing reviews for 300, and the new Modest Mouse, Arcade Fire and Explosions in the Sky album. Expect those... tommorow. Oh, and my maneki neko still needs a name. Seriously!</p>
<p><a href="http://www.flickr.com/photos/fireeyedboy/441329810/"><img src="http://farm1.static.flickr.com/198/441329810_374fb63973.jpg" /></a></p>
]]></content:encoded>
</item>

</channel>
</rss>
