Showing posts with label Free. Show all posts
Showing posts with label Free. Show all posts

7/12/2010

Installing Lighttpd With PHP5 And MySQL Support On Debian Etch

best manual I ever found is there

6/01/2010

[FIX] #1153 – Got a packet bigger than ‘max_allowed_packet’ bytes

If you get such king of error #1153 – Got a packet bigger than ‘max_allowed_packet’ bytes

there are the steps how to fix this

1. login into your server
2. enter into mysql

set this 2 variables

set global max_allowed_packet=1000000000;
set global net_buffer_length=1000000;

3. exit from mysql

4. add this line into my.cnf

max_allowed_packet=16M

5 restart mysql

/etc/init.d/mysql restart

6. upload dump :)

5/01/2010

installation fcgi with ruby

This is a small how to install  fcgi to work with ruby and rails.

first of all you should have ruby and rails installed on your server. In my case I installed ruby and rails using standard Debian command

 

apt-get install ruby gem rails

 

to make sure that you use the latest version of rails I recommend to check installation with gem:

 

gem install rails

 

after that I was ready to install fcgi on my server:

 

cd /temp
wget http://www.fastcgi.com/dist/fcgi-2.4.0.tar.gz
tar -zxvf fcgi-2.4.0.tar.gz
cd fcgi-2.4.0
./configure --prefix=/usr/local/fcgi --exec-prefix=/usr/local/fcgi
make
make install

 

Now you can install the fcgi gem (this is a long command which your browser may line-wrap here -- beware that the command is all on the same line):

 

gem install fcgi -r -- --with-fcgi-lib=/usr/local/fcgi/lib --with-fcgi-include=/usr/local/fcgi/include

 

You also need to install the FastCGI module for Apache. Make sure you have Perl installed on your shared host, you need it to run apxs!

cd /temp
wget http://www.fastcgi.com/dist/mod_fastcgi-2.4.2.tar.gz
tar -zxvf mod_fastcgi-2.4.2.tar.gz
cd mod_fastcgi-2.4.2
/usr/sbin/apxs -o mod_fastcgi.so -c *.c
/usr/sbin/apxs -i -a -n fastcgi mod_fastcgi.so
You may need to add the following block to "/etc/apache2/apache2.conf":
<IfModule mod_fastcgi.c>
FastCgiIpcDir /tmp/fcgi_ipc/
AddHandler fastcgi-script .fcgi
</IfModule>
And finally, you need to configure your Rails project to use FastCGI. Edit the file "(your_rails_app)/public/.htaccess", changing the line:
RewriteRule ^(.*)$ dispatch.cgi [QSA,L]
to:
RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]

You'll need to restart Apache before the changes will take effect:

 

/etc/init.d/apache2 restart

3/24/2010

Mielophone

Mielophone small AIR application.

Mielophone can:

  • looking for tracks by authors
  • looking for tracks by albums
  • looking for tracks by genre
  • play tracks
  • download tracks 
  • looking for video and play it
  • create playlist based on selected author
  • LastFM scrubbing

Using Windows Live Writer with Joomla

What is Windows Live Writer?

Windows Live Writer is a desktop blogging application that enables you to write content for your website from the Windows Live Writer application.

Why use Windows Live Writer with Joomla?

Windows Live Writer makes the process of adding content to your website a breeze.

Rather than having to log into the Joomla backend and write your new content in a cumbersome WYSIWYG editor, you can use the familiar office style writing environment. Once you've written your content, you simply need to press 'publish' button from within Windows Live Writer and your article will be online.

How to setup Windows Live Writer in Joomla 1.5

4/19/2009

Convert flac/ape to mp3 in Windows

 

How to convert flac/ape to mp3 in windows.

1. mp3 player without lossless-format support

2. flac/ape file with .cue file

a. download and install Medieval CUE Splitter, then run it and open .cue file, finally ‘cut’ source flac/ape file.

b. download foobar2000 with Lame support.

Convert flac files to mp3.

2/05/2009

WINE & QIP infinum

How to:

install Wine (i.e. yum install wine)
download QIP infinum (www.qip.ru)
run with such params: LANG=uk_UA.KOI8-U env WINEPREFIX="/home/username/.wine" wine "C:\Program Files\QIP Infium\infium.exe"

by bshyshka@

1/04/2009

Nokia and Mac OS X 10.5.x

Щасливим власникам Мас mini інколи хочеться підключити свій телефон нокія до цього маленького чуда

Для нормальної роботи вам юуде мотрібно

а) Nokia Multimedia Transfer

і б) для тих хто юзає карти нокія  Nokia Map Loader for Mac

 

Дерзайте

11/22/2008

JoomFish 2 RC & Joomla 1.5.8

Сьогодні ставив сабж і при встановленні стикнувся з проблемою :

Fatal error: Maximum execution time of 30 seconds exceeded in ....

мега фікс полягає в едітанні php.ini:

;;;;;;;;;;;;;;;;;;;
; Resource Limits ;
;;;;;;;;;;;;;;;;;;;

max_execution_time = 120     ; Maximum execution time of each script, in seconds (було 30 сек стало 120)
max_input_time = 60 ; Maximum amount of time each script may spend parsing request data
memory_limit = 40M      ; Maximum amount of memory a script may consume (8MB) (було 24 стало 40)

9/25/2008

Створення шаблону для Joomla! 1.5

Пропонуємо Вашій увазі невеликий мануал-введення по створенню шаблонів для Joomla! 1.5. Стаття описує базовий функціонал розділення логіки та дизайну для тих, хто займається створенням шаблонів.­

­ ­­­

Шаблон

Структура шаблону практично не змінилася. Шаблони лежать у папці /templates. У папці Вашого шаблону обов'язково повинні бути наступні файли: index.php і templateDetails.xml (саме так з D у верхньому регістрі).

Папки для CSS і опис своїх типів відображення модулів (див. нижче) називаються css і html відповідно.

Структура:

  • templates
    • my_template
      • css
      • html
      • index.php
      • templateDetails.xml

Файл templateDetails.xml містить опис шаблону (ім'я автора, дату створення та ін.) і список файлів, які містяться в шаблоні (необхідно для встановлення шаблона через Менеджер Встановлення). Файл index.php - це власне і є шаблон.

Код порожнього index.php:

<?php echo '<?xml version="1.0" encoding="utf-8"?' .'>'; ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml: dir="{LANG_DIR}" >
<head>
<jdoc:include type="head" />
<link rel="stylesheet" href="templates/{TEMPLATE}/css/template.css" type="text/css" />
</head>   <body>   </body>
</html>


Всередині теґів <body>...</body> міститься html-зміст шаблона (можливі включення PHP-коду).



Модулі



В Joomla! 1.0.x модулі виводилися так:



<?php mosLoadModules ( 'left',-1); ?>


де:




  • left - позиція модуля,


  • -1 - тип відображення модуля.



В Joomla! 1.5 відображення модулів здійснюється наступним чином:



<jdoc:include type="modules" name="right" style="-1" />


де:




  • type="modules" - говорить про те, що виводиться модуль;


  • name="right" - вказує на позицію модуля;


  • style="-1" - вказує тип висновку модуля.



Для style="..." з'явилася можливість вказування типу виводу не тільки цифрами, але й ключовими словами.



style="table" - стандартний вивід модуля в таблиці:



<table cellpadding="0" cellspacing="0" class="moduletable">
<tr>
<th valign="top">Заголовок Модуля</th>
</tr>
<tr>
<td>Зміст Модуля</td>
</tr>
</table>


де:




  • style="horz" - горизонтальний відображення.



Не побачив різниці з style="table", хоча в офіційному мануалі сказано, що формується горизонтальне відображення модуля.



style="xhtml" - вивід модуля в одному DIV із заголовком H3:



<div class="moduletable">
<h3>Заголовок Модуля</h3>
Зміст Модуля
</div>


style="rounded" - відображення модуля в чотирьох вкладених DIV (використовується для створення закруглених кутів у модулях):



<div class="module">
<div>
<div>
<div>
<h3>Заголовок Модуля</h3>
Зміст Модуля
</div>
</div>
</div>
</div>


style="raw" - буде виведений зміст модуля без заголовка, таблиць і DIV'ів:



Зміст Модуля


В Joomla 1.5 додана можливість створювати свої типи відображення модулів.



Опис типу відображення модуля знаходиться у файлі /templates/template_folder/html/modules.php. Ім'я функції обов'язково повинне починатися з modChrome_.



Приклад відображення модулів



Створимо тип відображення style="example", у якому модулі будуть виводитися в таблиці шириною 180px, заголовок модуля має червоне тло, текст заголовка виводиться в тегах <H3>…</H3>, тіло модуля має сіре тло. Весь текст у верхньому регістрі.



Код найпростішого файлу modules.php буде таким:



<?php   defined('_JEXEC') or die('Restricted access');   function modChrome_example($module, & $params)
{   ?>   <table width="180px" border="0" cellspacing="0" cellpadding="0">
<tr>
<td style="background-color:red;"><h3><?php echo $module->title ?></h3></td>
</tr>
<tr>
<td style="background-color:gray; text-transform:uppercase;"><?php echo $module->content ?></td>
</tr>
</table>   <?php   }   ?>


Контент



Відображення контента здійснюється таким чином:



В Joomla! 1.0.x



<?php mosMainBody(); ?>


В Joomla! 1.5



<jdoc:include type="component" />


Код найпростішого index.php трьохколоночного шаблону



<?php echo '<?xml version="1.0" encoding="utf-8"?' .'>'; ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml: dir="{LANG_DIR}" >
<head>
<jdoc:include type="head" />
<link rel="stylesheet" href="templates/{TEMPLATE}/css/template.css" type="text/css" />
</head>   <body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td class="left"><jdoc:include type="modules" name="left" style="raw"/></td>
<td class="center"><jdoc:include type="component" /></td>
<td class="right"><jdoc:include type="modules" name="right" style="raw"/></td>
</tr>
</table>
</body>   </html>


Трюки з відображенням модулів



Завдання:


Для зареєстрованих користувачів виводимо модулі в right для всіх інші модулі в user1.



Вирішення:


Після тегу <body> пишемо



<?php $user =& JFactory::getUser(); ?>


у тілі шаблона



<?php if($user->_id) {?>
<jdoc:include type="modules" name="right" style="raw"/>
<?php } else {?>
<jdoc:include type="modules" name="user1" style="raw"/>
<?php }?>


Завдання:


Для користувачів групи author виводимо модулі в right для всіх інші модулі в user1.



Вирішення:


Після тегу <body> пишемо



<?php $user =& JFactory::getUser(); ?>


у тілі шаблона



<?php if($user->get('usertype') == 'Author') {?>
<jdoc:include type="modules" name="right" style="raw"/>
<?php } else {?>
<jdoc:include type="modules" name="user1" style="raw"/>
<?php }?>


Завдання:


Разом з компонентом weblinks виводимо модулі в user2.



Вирішення:


Після тегу <body> пишемо



<?php  $option = JRequest::getVar( 'option' );?>


у тілі шаблона



<?php  if($option == 'com_weblinks') {?>
<jdoc:include type="modules" name="user2" style="raw"/>
<?php } ?>


Деякі змінні використовувані в шаблонах




  • $mainframe->getCfg('sitename') - назва сайту;


  • $mainframe->getCfg('mailfrom') - електронна адреса Адміністратора;


  • $mainframe->getCfg('live_site') - URL сайту;


  • $this->template - ім'я папки шаблона.



 



http://www.joomla-ua.org/content/view/113/24/

8/04/2008

Seamlessly інтеграція Windows ХР в Linux з SeamlessRDP

Оригінал: "Seamlessly integrate XP into Linux with SeamlessRDP"
Автор: Sergio Gonzalez Duran
Дата: 31 січня 2008 р.

Переклад: Михайло Веселовський

Дата перекладу: 04 серпня 2008 р.

Сьогодні користувачі мають багато варіантів запуску Windows XP і Linux на одній машині. Це можна традиційно зробити з системою з подвійним завантаженням, які завантажуються з різних дисків, але використовують певні партиції для спільного використання, чи можна використати емулятор Wine, який дозволяє встановити Windows програми на Linux . Програми віртуалізації, такі як VMware , наближають нас до ідеальної можливості використання одночасно двох систем, але одна з них завжди є – хостом, а інша – гостем, показаним у вікні. Але якщо зкомбінувати VMware сервер з деякими безплатними програмами, ми можемо запустити Windows XP з Linux не у вікні, а повністю інтегровано в Linux.

Щоб зробити це реальним нам будуть потрібні наступні програми заінсталені на нашій системі. Незважаючи на не опен сорсність, VMware сервер базплатний як пивоJ, він вимагає ліцензію яку можна отримати на сторінці звідки ви скачуєте його. (Звичайно нам потрібна ліцензійна версія Windows XP для встановлення), rdesktop – RDP клієнт який розповсюджується зі всіма дистрибутивами Linux і Cendio's SeamlessRDP – утиліта яка розповсюджується згідно GPL ліцензії і дозволяє інтегрувати rdesktop в Windows XP .

Завдяки цьому рішенню, ми підєднюємось до віртуальної машини у фоновому режимі, прицьому не відображаються ні рамка вікна, ні робочий стіл Windows XP. Ми отримуємо меню Windows XP разом з меню КДЕ чи GNOME, це створює ілюзію що обидві операційні системи працюють одночасно. На рисунку 1 показано КДЕ меню зверху а Windows XP меню знизу. Ми меємо змогу запускати програми обох операційних систем.

124908

Для початку потрібно встановити Windows XP на VMware зі стандартними опціями, також потрібно настроїти локальну мережу на NAT. Це спростить підєднання з головноної машини. Після повного встановлення Windows XP залогуйтесь і виставте пароль для користувача, завдяки цьому ми зможемо підєднюватись з Linux. Також нам потрібно дозволити віддалені з’єднання до Windows XP, це можна зробити на вкладці Start -> Control Panel -> System -> Remote tab і позначити "Allow users to connect remotely to this computer."

Тепер нам треба встановити VMware Tools для нашої Windows XP віртуальної машини. Також на потрібно знати ІР адрес який нам присвоїв VMware DHCP сервер.

Наступне що нам потрібно зробити це встановити SeamlessRDP на Windows XP. Відкрийте ваш улюблений броузер та скачайте SeamlessRDP. Створіть диресторію на диску С:\ (C:\seamless) і видобудьте архівний контент туди.

Тепер ми можемо відлогуватись з Windows XP сесії, тільки не вимикайте віртуальну машину. Як тільки Windows XP покаже Welcome screen, ви можете вимкнути консоль VMware Server, залишивши Windows XP працювати у фоновому режимі. Проста команда ps -ef | grep vmware покаже що Windows XP таки працює.

Зараз саме той час щоб використати rdesktop. Для початку ми спробуємо відкрити просту аплікацію, наприклад Блокнот. Запустіть термінальну сесію в Linux і виконайте наступну команду:

rdesktop -A -s "c:\seamless\seamlessrdpshell.exe notepad" 192.168.217.129 -u admin -p secret

Звичайно замініть ІР адресу, користувача та пароль на свої значення. Якщо все настроєно нормально повинен запуститись Блокнот.

Опція –А створює окреме вікно Х11 для кожної програми яку ви запускаєте. Опція –s вказує на оболонку яка запускає програми. Зауважте що ви використовуєте c:\seamless\seamlessrdpshell.exe яку ви раніше створили. Аргументом цієї команди є програма яку ви хочете запустити. Якщо шлях до програми на знаходиться в змінній path вам потрібно вказувати повний шлях до програми. Використання –u і –p не обовязкове. Якщо їх не використовувати вам завжди прийдеться вводити логін і пароль.

Зауваження! Якщо ви закриєте Блокнот то це не призведе до закриття сесії Windows, вам потрібно буде зайти у сесію Windows XP і завершити сеанс.

Тепер ми занаємо як завдяки rdesktop і SeamlessRDP запускати програми, чому б тепер не запустити explorer.exe. Ця програма створить нам робочий стіл в повному об’ємі(включаючи іконки, лінки на програми і картинку робочого стола), користувачі зможуть працювати використовуючи панель задач.

Звичайно нам не потрібен робочий стіл, який перекриває робочу область у Linux, ми можемо залишити тільки панель задач відредагувавши реєстр Windows. Запустіть реестр перейдіть в цю гілку HKEY_CURRENT_USER -> Software -> Microsoft -> Windows -> CurrentVersion -> Policies -> Explorer і створіть там New -> DWORD Value -> NoDesktop, встановіть значення цього ключа в 1. Перезагрузіть Windows.

Коли ви вимикаєте ваш Linux всі віртуальні машини які виконуються у фоновому режимі втрачаються, в цьому випадку вам потрібно буде стартувати VMware віртуальні машини і залишати їх працювати постійно коли ви хочете запускати Windows. Також перед запуском команди rdesktop перенесіть ваше меню вверх тому, що панель задач Windows буде знизу.

Тепер запустіть команду rdesktop:

rdesktop -A -s 'c:\seamless\seamlessrdpshell.exe c:\windows\explorer.exe' 192.168.217.129 -u admin -p secret

Voilà! За декілька секунд появиться панель задач Windows XP знизу екрану, і ви матимете змогу запускати програми з меню Пуск. Це створює ілюзію що обидві операційні системи працюють одночасно.

Цей фокус працює не тільки з VMware віртуальними машинами. Він працює також з Windows кліентами у вашій мережі та іншими програмами віртуалізації. Просто встановіть SeamlessRDP і настройте Windows XP щоб rdesktop міг приєднуватись до неї.

 

Sergio Gonzalez Duran is a Linux administrator, systems developer, and network security counselor who also teaches Linux courses and publishes the Spanish-oriented Linux and open source Web site linuxtotal.com.mx.

5/24/2008

Microsoft Office Accounting Express 2008 for free

Microsoft® Office Accounting Express is an easy to use accounting package that works with other Office applications you already know.

  • Save time on everyday tasks

    • Get started in minutes with a step by step interview wizard
    • Create invoices, track time and expenses and bank online
    • Enter data once and share it seamlessly with other Microsoft Office system programs
    • Manage payroll and accept credit cards with affordable add-on services that save you time and money
  • Get a complete view of your business

    • See customer, vendor, employee and financial data in one place
    • Get business insights with customizable reports
    • Easily share your books with your accountant through Office Live
  • Grow your business online

    • List items on eBay, manage sales and download transactions
    • Email invoices and get paid faster with PayPal
    • Process credit card payments directly in Office Accounting
http://www.ideawins.com/express.aspx

5/21/2008

Windows Live Writer у Блогері

При публікуванні записів у свій ЖЖ  я використовую Semagic. А от щоб написати щось у Блогер я змушений був користуватись веб мордою яку надає Блогер. Додавання запису у мене займає приблизно годину, що мене дуже не тішить. Промоніторивши нет я знайшов Windows Live Writer. І тепер у мене є нормальний кліент для постання топіків.

П.С. Даний запис створено у Windows Live Writer

3/05/2008

Open Sourse для Windows

Всі ми залежимо від персонального комп'ютера. Для звичайного офісу зазвичай потрібен простий набір програмного забезпечення, але як нам відомо ПЗ відомої фірми Майкрософт доволі сильно впливає на б'юджет компаній. Я не буду пропагувати перехід на *нікс системи а пропоную переглянути нижче наведені лінки і випробувати відкрите програмне забезпечення.

1. http://www.opensourcewindows.org
відмінна підбірка щоденного ПЗ для нормальної роботи, нічого зайвого.
2. http://osswin.sourceforge.net/
мега підбірка відкритого ПЗ

а далі просто підбірка (УВАГА! Англійська мова)

1. 7-zip
7-Zip is a open source file archiver program for windows. It supports packing and unpacking of 7z, ZIP, GZIP, BZIP2 and TAR format files and supports onlu unpacking of RAR, CAB, ISO, ARJ, LZH, CHM, Z, CPIO, RPM, DEB and NSIS. It provides better compression ratio than WinZip for ZIP and GZIP formats. It is an alternative to programs like WinZip

2. Audacity:
Audacity is free, open source software for recording and editing sounds.Audacity can be used to record live audio, convert tapes and records into digital recordings or CDs, edit Ogg Vorbis, MP3, and WAV sound files. cut, copy, splice, and mix sounds together.

3. Blender:
Blender is a open source free software for creating 3D animations. Blender can be used for modelling, UV unwrapping, texturing, rigging, skinning, animating, rendering, particle and creating interactive 3D applications. Blender has robust features et similar to programs like 3ds Max and Maya.

4. ClamWin:
ClamWin is a Free Antivirus for Windows 98/Me/2000/XP and 2003. ClamWin is a good alternative to commercial softwares like Norton, McAfee etc. Clamwin features include High detection rates for viruses and spyware, Scanning Scheduler, Automatic downloads of regularly updated Virus Database, Standalone virus scanner and right-click menu integration to Microsoft Windows Explorer, and Addin to Microsoft Outlook to remove virus-infected attachments automatically.

5. eMule:
eMule is a open source peer to peer file sharing (P2P) client tool.

6. Feedreader:
Feedreader is free desktop RSS aggregation tool. “Feedreader automatically downloads updates from your favorite Web sites. So, it eliminates the need for you to constantly monitor multiple Web pages, while allowing you to immediately identify and retrieve new articles”

7. Filezilla:
FileZilla is a free, open source FTP client for Windows. It supports FTP, SFTP, and FTPS protocols. It has all the essential features required for a FTP client. The main features of FileZilla are Ability to resume Uploads/Downloads, Site Manager with folders, Keep Alive system, Timeout detection, Firewall support, SOCKS4/5 and HTTP1.1 Proxy support, SSL secured connections, Upload/Download Queue, Drag&Drop.

8. Firefox:
The best cross platform supported web brwoser available on the net, it doesn’t need any introduction and many of you might be using. The wide range of Firefox Add-On’s make this the most powerful browser for all types of users. Firefox is an alternative to Microsoft Internet Explorer.

9. GIMP:
GNU Image Manipulation Program (GIMP) is free open source raster graphics editor for manipulating photos or images. GIMP is an excellent software and alternative to expensive photoshop, it is used for photo retouching, image composition and image authoring.

10. hugin:
hugin is a open source easy to use cross-platform panoramic imaging tool. Using hugin you can assemble a mosaic of photographs into as complete immersive panorama, stitch any series of overlapping pictures and much more.

11. Inkscape:
Inkscape is an open source vector graphics editor. Inkscape is a good alternative to commercial vector graphics tools like Corel Draw, Adobe Illustrator, Freehand or Xara X. Inkscape uses Scalable Vector Graphics (SVG), an open XML-based W3C standard, as the native format. It can be used to create web2.0 buttons, banners, logos, icons etc. (see earlier review)

12. Juice:
Juice is a free open source cross-platform podcast receiver application. It is used to download podcast media files, such as oggs and mp3s. Using juice you can schedule the podcast and juice will let you know when a new podcast is available. The downloaded files media files can be automatically copied to a digital audio player.

13. OpenOffice.org:
OpenOffice.org is the open source office suite similar to Microsoft office available to different platforms. OpenOffice.org is a collection of applications with the features similar to Microsoft Office. The Components include Writer, Calc, Base, Impress, Draw, Math, Quickstarter etc.

14. PDFCreator:
PDFCreator is a free program for creating PDF documents from windows programs. Once installed, it allows the user to select PDFCreator as their printer, allowing almost any application to print to PDF.

15. Pidgin:
Pidgin, formerly known as Gaim is a multi-platform instant messaging client that supports many commonly used IM protocols. Pidgin is a free software and supports IM’s including Yahoo, Google Talk, Jabber, MSN, AOL, ICQ etc.

16. Programmers Notepad:
Programmer’s Notepad is the free, open source, text editor for programmers.
some of the features of Programmers Notepad: Code Folding/Outlining, Docking tool windows, Excellent external tool support with user-configurable output matching, Export to HTML (using CSS) and RTF, Word Wrapping

17. Scribus:
Scribus is an open source desktop publishing (DTP) application. It has some nice page layout features and can be used as an alternative to Adobe PageMaker, QuarkXPress and Adobe InDesign. “It can also create animated and interactive PDF presentations and forms. Example uses include writing small newspapers, brochures, newsletters, posters and books.”

18. Sunbird:
Sunbird is open source desktop calender application from Mozilla foundation. Sunbird is a cross platform, open standards application built on Mozill Toolkit.

19. Thunderbird:
Thunderbird is the open source desktop email application from Mozilla foundation. Thunderbird has the best features in the industry. “Thunderbird 2 features many new enhancements to help you better manage your unruly inbox, and stay informed. Thunderbird 2 scales to the most sophisticated organizational needs while making it easy to find what you need.”

20. VLC Media Player:
VLC Media Player is a open source media player from VideoLan project team. It is the best media player available in the net, it plays almost any file format available. It also supports streaming protocols. It is a good alternative to different media players.

1/17/2008

web - ОС eyeOS

Ні для кого не є секретом що ми все більше і більше залежимо від таких сервісів як Google, Yahoo, Windows Live. Вони нам надають послуги пошти, зберігання і радагування документів/таблиць. Звичайно ми можемо користуватись звичайними ОС, але тепер з розповсюдженням інтренету ми хочемо мати доступ до наших даних всюди школа/університет/робота.
Як варіант щоб не користуватись сторонніми сервісами можна використати розробку eyeOS.

Основна ідея полягає в тому що ви зможете користуватись вашою ОС через веб бровзер.

The idea behind eyeOS
eyeOS is all about centering the work and entertainment to a single place. eyeOS is all about removing compatibility issues between applications and operating systems. eyeOS is all about taking your life everywhere.

Детальніше про цю ОС можна на сайті розробників http://www.eyeos.org

Приклад

12/16/2007

В поміч людям

Хочу нагадати про програмні продукти які роблять нам користувачам життя легше...
Так я пишу диплом мені потрібні деякі програми які впринципі непотрібні на компі(Візіо і тд і тп)

Он-лайн версії
Візіо
http://www.gliffy.com/

Фотошоп
http://www.splashup.com

Як згадаю ще щось то напишу