<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-8271844383356348806</id><updated>2025-10-21T00:16:43.491-07:00</updated><category term="Recommended Software"/><category term="Open Source"/><category term="Windows"/><category term="Ubuntu"/><category term="Security"/><category term="CCTV"/><category term="CUPS"/><category term="Freeware"/><category term="Macbook"/><category term="OS X"/><category term="Office Productivity"/><category term="driver"/><category term="zoneminder"/><category term="AG-MX70"/><category term="Antivirus"/><category term="Audio Editor"/><category term="Audio Video"/><category term="Canon ip1980"/><category term="Church Audio Video Technology"/><category term="Church magazine"/><category term="Email Client"/><category term="FSCK"/><category term="GUI"/><category term="HP Laserjet on Ubuntu"/><category term="HPLIP"/><category term="Mac"/><category term="Messenger"/><category term="Multimedia"/><category term="OS"/><category term="Panasonic"/><category term="Player"/><category term="Portable Software"/><category term="Setup"/><category term="System Optimizer"/><category term="Video Mixer"/><category term="Worship Software"/><category term="apache2"/><category term="apple"/><category term="bootcamp"/><category term="error"/><category term="kTouch E329"/><category term="magic mouse"/><category term="reverse proxy"/><category term="server"/><category term="tips"/><category term="webmin"/><title type='text'>Church Go Open Source</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default?redirect=false'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><link rel='next' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default?start-index=26&amp;max-results=25&amp;redirect=false'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>30</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-8271844383356348806.post-5071842083841107459</id><published>2010-12-05T00:24:00.000-08:00</published><updated>2010-12-05T03:15:08.424-08:00</updated><title type='text'>Install WebHTB on Ubuntu 10.04</title><content type='html'>Assume here your Ubuntu LAMP, PHP5, have been running well.&lt;br /&gt;&lt;br /&gt;1. Download webhtb &quot;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;wget http://www.webhtb.ro/downloads/WebHTB_V2.9.bz2&lt;/span&gt;&quot;&lt;br /&gt;&lt;br /&gt;2. Extract to directory /var/www/ &quot;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;sudo tar -jxvf WebHTB_V2.9.bz2 /var/www/&lt;/span&gt;&quot;&lt;br /&gt;&lt;br /&gt;3. Change directory ownership &quot;&lt;span style=&quot;color: rgb(153, 0, 0); font-style: italic;&quot;&gt;sudo chown -R www-data:www-data /var/www/webhtb&lt;/span&gt;&quot;&lt;br /&gt;&lt;br /&gt;4. Activate SSL module on Apache2 &quot;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;sudo a2enmod ssl&lt;/span&gt;&quot;&lt;br /&gt;&lt;br /&gt;5. Generate SSL key for apache2&lt;br /&gt;&quot;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;sudo apt-get install openssl ssl-cert&lt;/span&gt;&quot;&lt;br /&gt;&quot;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;sudo mkdir -p /etc/apache2/ssl&lt;/span&gt;&quot;&lt;br /&gt;&quot;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;sudo make-ssl-cert /usr/share/ssl-cert/ssleay.cnf /etc/apache2/ssl/apache.pem&lt;/span&gt;&quot;&lt;br /&gt;&lt;br /&gt;6. Create Virtual Host for Webhtb &quot;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;sudo vim /etc/apache2/sites-available/webhtb&lt;/span&gt;&quot;&lt;br /&gt;&lt;pre&gt;NameVirtualHost *:443&lt;br /&gt;&lt;virtualhost&gt;&lt;br /&gt;      SSLEngine On&lt;br /&gt;      SSLCertificateFile /etc/apache2/ssl/apache.pem&lt;br /&gt;    &lt;br /&gt;      ServerAdmin webmaster@localhost&lt;br /&gt;      DocumentRoot /var/www/webhtb/&lt;br /&gt;      &lt;directory&gt;&lt;br /&gt;              Options FollowSymLinks&lt;br /&gt;              AllowOverride All&lt;br /&gt;      &lt;/directory&gt;&lt;br /&gt;      &lt;directory&gt;&lt;br /&gt;              Options Indexes FollowSymLinks MultiViews&lt;br /&gt;              AllowOverride All&lt;br /&gt;              Order allow,deny&lt;br /&gt;              allow from all&lt;br /&gt;      &lt;/directory&gt;&lt;br /&gt;&lt;br /&gt;      ScriptAlias /cgi-bin/ /usr/lib/cgi-bin/&lt;br /&gt;      &lt;directory&gt;&lt;br /&gt;              AllowOverride None&lt;br /&gt;              Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch&lt;br /&gt;              Order allow,deny&lt;br /&gt;              Allow from all&lt;br /&gt;      &lt;/directory&gt;&lt;br /&gt;&lt;br /&gt;      ErrorLog /var/log/apache2/error.log&lt;br /&gt;&lt;br /&gt;      # Possible values include: debug, info, notice, warn, error, crit,&lt;br /&gt;      # alert, emerg.&lt;br /&gt;      LogLevel warn&lt;br /&gt;&lt;br /&gt;      CustomLog /var/log/apache2/access.log combined&lt;br /&gt;      ServerSignature On&lt;br /&gt;&lt;br /&gt;&lt;/virtualhost&gt;&lt;/pre&gt;7. Activate Virtual Host WebHTB &quot;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;sudo a2ensite webhtb&lt;/span&gt;&quot;&lt;br /&gt;&lt;br /&gt;8. Reload your apache2 &quot;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;sudo /etc/init.d/apache2 force-reload&lt;/span&gt;&quot;&lt;br /&gt;&lt;br /&gt;9. Install sysvconfig php5-cli php5-snmp &quot;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;sudo apt-get install php5-cli php5-snmp&lt;/span&gt;&quot;&lt;br /&gt;&lt;br /&gt;10. Create startup script for WebHTB &quot;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;sudo cp -r /var/www/webhtb/docs/webhtb /etc/init.d/&lt;/span&gt;&quot;&lt;br /&gt;&lt;br /&gt;11. Edit startup script &quot;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;sudo vim /etc/init.d/webhtb&lt;/span&gt;&quot; #search this line dir=&quot;/var/www/html/webhtb&quot; and change into dir=&quot;/var/www/webhtb&quot;&lt;br /&gt;&lt;br /&gt;12. Make it executeable &quot;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;sudo chmod u+x /etc/init.d/webhtb&lt;/span&gt;&quot; &quot;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;chown -R www-data:www-data /var/www/webhtb&lt;/span&gt;&quot;&lt;br /&gt;&lt;br /&gt;13. Set your root password &quot;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;sudo passwd root&lt;/span&gt;&quot;&lt;br /&gt;&lt;br /&gt;14.  Browse from another computer to &lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;https://your-server-local-ip/setup/index.php&lt;/span&gt;&lt;br /&gt;Insert:&lt;br /&gt;* MySQL admin user: root&lt;br /&gt;* MySQL admin password: yourrootpassword&lt;br /&gt;* MySQL WebHTB user: &quot;leave it blank&quot;&lt;br /&gt;* MySQL WebHTB password: &quot;leave it blank&quot;&lt;br /&gt;* MySQL WebHTB password again: &quot;leave it blank&quot;&lt;br /&gt;* MySQL WebHTB databasename: webhtb&lt;br /&gt;* Default interface: eth1 ---&gt; ## Your LAN interface&lt;br /&gt;&lt;br /&gt;Now you can manage your internet bandwidth :&lt;br /&gt;1. Add interface --- add your LAN interface&lt;br /&gt;2. Create some class (This is a must!!)&lt;br /&gt;&gt;Class Name : Squid-DNS&lt;br /&gt;&gt;Bandwidth : 10240 (10Mbps)&lt;br /&gt;&gt;Limit : 10240&lt;br /&gt;&gt;Prio :0&lt;br /&gt; &gt;Que : SFQ (Stochastic Fairness Queeing)&lt;br /&gt;3. Add client&lt;br /&gt;&gt;Choose class Squid-DNS&lt;br /&gt;CLIENT : DNS-request&lt;br /&gt;BANDWITDH : 128&lt;br /&gt;LIMIT :128&lt;br /&gt;SRC IP : DNS Server Local IP / Provider (to add more than one IP click Add new src)&lt;br /&gt;4. Add your next client to your CLIENT Class and there you go!!!</content><link rel='replies' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/5071842083841107459/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://churchgoopensource.blogspot.com/2010/12/install-webhtb-on-ubuntu-1004.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/5071842083841107459'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/5071842083841107459'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/2010/12/install-webhtb-on-ubuntu-1004.html' title='Install WebHTB on Ubuntu 10.04'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8271844383356348806.post-2288084418243294762</id><published>2010-11-23T03:19:00.000-08:00</published><updated>2010-11-23T03:45:23.744-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Canon ip1980"/><category scheme="http://www.blogger.com/atom/ns#" term="CUPS"/><category scheme="http://www.blogger.com/atom/ns#" term="driver"/><category scheme="http://www.blogger.com/atom/ns#" term="Ubuntu"/><title type='text'>Install Canon iP1980 on Ubuntu 10.04</title><content type='html'>Back to another tips again today....&lt;br /&gt;Yes... like the title, here&#39;s the step :&lt;br /&gt;1. Download the Canon iP1980 driver from &lt;a href=&quot;http://gdlp01.c-wss.com/gds/0/0100001590/01/cnijfilter-common_3.00-1_i386.deb&quot;&gt;here &lt;/a&gt;and &lt;a href=&quot;http://gdlp01.c-wss.com/gds/1/0100001591/01/cnijfilter-ip1900series_3.00-1_i386.deb&quot;&gt;here&lt;/a&gt;&lt;br /&gt;2. And now repackage it using &quot;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;dpkg -i cnijfilter-common_3.00-1_i386.deb&lt;/span&gt;&quot; and yes... it&#39;s said that the package needed libcupsys2... and Hey Canon!!!! That package is obsolete and have been changed by libcups2!!!! What a shame for a big company like Canon that didn&#39;t have time for updating their driver.&lt;br /&gt;3. But it doesn&#39;t meant we giving up right!!! What we need now is just changing the dependency from Canon OLD DRIVER!!! we just have to remove the libcupsys2 and change it to libcups2&lt;br /&gt;4. First of all you will need to extract the .deb to a temporary directory (tmpdir) &quot;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;dpkg-deb -x &lt;/span&gt;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;cnijfilter-common_3.00-1_i386.deb&lt;/span&gt;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt; tmpdir&lt;/span&gt;&quot;&lt;br /&gt;5. Then we are going to pull the control file that is located in the tmp/DEBIAN/ folder. This is where you will make your dependency changes &quot;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;dpkg-deb --control &lt;/span&gt;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;cnijfilter-common_3.00-1_i386.deb&lt;/span&gt;&quot;&lt;br /&gt;6. Edit the control file using your favorite text editor &quot;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;vim tmpdir/DEBIAN/control&lt;/span&gt;&quot;&lt;br /&gt;7. Just remove the &quot;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;libcupsys2&lt;/span&gt;&quot; and change it to &quot;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;libcups2&lt;/span&gt;&quot;&lt;br /&gt;8. After edit the control file, now you can repackage it using &quot;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;dpkg -b tmpdir new-name-of-package.deb&lt;/span&gt;&quot;&lt;br /&gt;9. Just do &quot;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;dpkg -i new-name-of-package.deb&lt;/span&gt;&quot;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt; &lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;&lt;span style=&quot;font-style: italic;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;10. Do the same thing with the cnijfilter-ip1900series_3.00-1_i386.deb.&lt;br /&gt;&lt;br /&gt;For you guys who don&#39;t want to bother with the &quot;&lt;span style=&quot;font-style: italic;&quot;&gt;repackaging issue&lt;/span&gt;&quot; you guys can download the driver from &lt;a href=&quot;http://www.ziddu.com/download/12660752/cnijfilter-common.zip.html&quot;&gt;here &lt;/a&gt;and &lt;a href=&quot;http://www.ziddu.com/download/12660753/cnijfilter-1900.zip.html&quot;&gt;here&lt;span style=&quot;color: rgb(0, 0, 0); font-style: italic;&quot;&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;a href=&quot;http://www.ziddu.com/download/12660753/cnijfilter-1900.zip.html&quot;&gt;&lt;code style=&quot;font-style: italic;&quot;&gt;&lt;/code&gt;&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/2288084418243294762/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://churchgoopensource.blogspot.com/2010/11/install-canon-ip1980-on-ubuntu-1004.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/2288084418243294762'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/2288084418243294762'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/2010/11/install-canon-ip1980-on-ubuntu-1004.html' title='Install Canon iP1980 on Ubuntu 10.04'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8271844383356348806.post-3558974979886783809</id><published>2010-11-23T02:20:00.000-08:00</published><updated>2010-11-23T02:53:45.566-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="CUPS"/><category scheme="http://www.blogger.com/atom/ns#" term="HP Laserjet on Ubuntu"/><category scheme="http://www.blogger.com/atom/ns#" term="HPLIP"/><title type='text'>Install HP Laserjet 1020 on Ubuntu 10.04 Server</title><content type='html'>Wow.... after a frustrated day, finally i can install HP LaserJet on Ubuntu 10.04 Lucid Lynx.&lt;br /&gt;Straight to the step!!!&lt;br /&gt;&lt;br /&gt;1. Download the HPLip from &lt;a href=&quot;http://prdownloads.sourceforge.net/hplip/hplip-3.10.9.run&quot;&gt;here&lt;/a&gt;&lt;br /&gt;2. Execute the file &quot;&lt;span style=&quot;font-style: italic; color: rgb(153, 51, 0);&quot;&gt;sh hplip-3.10.9.run&lt;/span&gt;&quot; then just choose automatic for the installation way then follow and answer nicely every question and command :).&lt;br /&gt;3. After the re-plug (or if you fail or choose to restart, you could just run &quot;&lt;span style=&quot;font-style: italic; color: rgb(153, 0, 0);&quot;&gt;sudo hp-setup -i&lt;/span&gt;&quot; again) and choose usb (for me).&lt;br /&gt;4. If the hp-setup asking for the plugin, just choose to download it and it will be downloaded automatically.&lt;br /&gt;5. After the installation is finished, YOU MUST HAVE SWITCH-OFF AND THEN SWITCH-ON AGAIN your printer!!!! This is what i miss and make the headache all the day, after that just try to print a test page from your CUPS.&lt;br /&gt;&lt;br /&gt;Hope to save your days guys, have a nice ministry....:)</content><link rel='replies' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/3558974979886783809/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://churchgoopensource.blogspot.com/2010/11/install-hp-laserjet-1020-on-ubuntu-1004.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/3558974979886783809'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/3558974979886783809'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/2010/11/install-hp-laserjet-1020-on-ubuntu-1004.html' title='Install HP Laserjet 1020 on Ubuntu 10.04 Server'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8271844383356348806.post-7968500419984907121</id><published>2010-11-16T19:34:00.000-08:00</published><updated>2010-11-16T19:44:28.855-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="apple"/><category scheme="http://www.blogger.com/atom/ns#" term="bootcamp"/><category scheme="http://www.blogger.com/atom/ns#" term="Macbook"/><category scheme="http://www.blogger.com/atom/ns#" term="magic mouse"/><category scheme="http://www.blogger.com/atom/ns#" term="tips"/><category scheme="http://www.blogger.com/atom/ns#" term="Windows"/><title type='text'>Install Magic Mouse on Apple Bootcamp</title><content type='html'>&lt;span style=&quot;font-family:trebuchet ms;&quot;&gt;Hello All,&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-family:trebuchet ms;&quot;&gt; I received my Magic Mouse and it works great under OSX but I couldn&#39;t  get it working under Windows at all. Searching here and around the web,  I&#39;ve compiled a guide on how I got it working. Hopefully, Apple will  release proper drivers in the future but for now, here is what I did:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;1. Remove your Magic Mouse from your OS X bluetooth device (i don&#39;t know why Windows connected with my OS X)&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-family:trebuchet ms;&quot;&gt; 2. On Windows Turn mouse off...if you have already tried installing, remove the device  and then turn the mouse off. To remove it, open Start, type &quot;Devices&quot;  and press enter. Select &quot;remove device&quot;...Now let&#39;s get started:&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-family:trebuchet ms;&quot;&gt; 1) Update the Bluetooth Driver. &lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family:trebuchet ms;&quot;&gt; Open Device Manager.&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-family:trebuchet ms;&quot;&gt; Start &gt; (Right Click Computer) &gt; Properties. Click Device Manager  in upper left of this window. Double click (Bluetooth Radios), Right  click on &quot;Generic Bluetooth&quot; and select &quot;Properties&quot;. Open the Driver  tab and then select &quot;Update Driver&quot;. Click &quot;Browse my computer for  driver software&quot;. On the next screen, towards the bottom, click on &quot;Let  me pick from a list of device drivers...&quot;. Uncheck &quot;Show compatible  hardware&quot;. Select &quot;Apple&quot; and then &quot;Apple built in bluetooth&quot;. Done&lt;/span&gt;&lt;br /&gt;(You don&#39;t have to do this step if you already installed Bootcamp 3.1)&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-family:trebuchet ms;&quot;&gt; 2)In the notification area of the task bar, right click on Bluetooth  icon and select &quot;Add a device&quot;. Turn on your mouse. It will show up on  screen. Right click on the mouse icon. Select Properties. Select the  &quot;Services&quot; tab and check the &quot;Drivers for keyboard, mice, etc&quot;. The  mouse may disappear from the screen since it&#39;s been added. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-family:trebuchet ms;&quot;&gt; 3) Disable power management for Bluetooth Radio. Open device manager,  open Bluetooth Radios and right click on &quot;Apple Bluetooth&quot;. Select the  &quot;Power Management&quot;. Uncheck &quot;Allow the computer to turn off this device  to save power&quot;.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-family:trebuchet ms;&quot;&gt; 4) Mouse should be working in Windows 7/Vista now. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;For addition if you want some hack for smoother experience on your magic mouse,&lt;span style=&quot;text-decoration: underline;&quot;&gt; &lt;/span&gt;&lt;a href=&quot;http://uneasysilence.com/archive/2009/11/14588/&quot; target=&quot;_blank&quot;&gt;UneasySilence&lt;/a&gt; have managed to hack the driver to make it run on PCs running any version of Windows from XP to 7, you can get it here for &lt;a href=&quot;http://uneasysilence.com/media/2009/11/AppleWirelessMouse2.exe&quot;&gt;32bit &lt;/a&gt;and &lt;a href=&quot;http://uneasysilence.com/media/2009/11/AppleWirelessMouse642.exe&quot;&gt;64bit&lt;/a&gt;&lt;br /&gt;Next time if you want to connect your Magic mouse to your Windows or OS X, just power up your magic mouse and wait for 3 seconds, then just left click 4 times... and viola!! &quot;It&#39;s just works!!!&quot;</content><link rel='replies' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/7968500419984907121/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://churchgoopensource.blogspot.com/2010/11/install-magic-mouse-on-apple-bootcamp.html#comment-form' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/7968500419984907121'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/7968500419984907121'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/2010/11/install-magic-mouse-on-apple-bootcamp.html' title='Install Magic Mouse on Apple Bootcamp'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8271844383356348806.post-7113911558549265547</id><published>2010-10-27T04:16:00.000-07:00</published><updated>2010-10-27T04:31:58.470-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="apache2"/><category scheme="http://www.blogger.com/atom/ns#" term="reverse proxy"/><title type='text'>Reverse Proxy on Apache2</title><content type='html'>&lt;span style=&quot;font-weight: bold; color: rgb(0, 0, 102);font-size:130%;&quot; &gt;What is reverse proxy?&lt;/span&gt;&lt;br /&gt;According to &lt;a href=&quot;http://www.apachetutor.org/admin/reverseproxies&quot;&gt;Apachetutor&lt;/a&gt; reverse proxy is a gateway for servers, and enables one web server    to provide content from another transparently&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold; color: rgb(0, 0, 102);font-size:130%;&quot; &gt;In what scenario it can be use?&lt;/span&gt;&lt;br /&gt;Company example.com has a website at www.example.com, which has a    public IP address and DNS entry, and can be accessed from anywhere    on the Internet. &lt;div class=&quot;content&quot; id=&quot;c6&quot;&gt;&lt;p&gt;    The company also has a couple of application servers which have    private IP addresses and unregistered DNS entries, and are inside the    firewall. The application servers are visible within the network -    including the webserver, as &quot;internal1.example.com&quot; and    &quot;internal2.example.com&quot;, But because they have no public DNS entries,    anyone looking at internal1.example.com from outside the company    network will get a &quot;no such host&quot; error. &lt;/p&gt;&lt;p&gt;    A decision is taken to enable Web access to the application servers.    But they should not be exposed to the Internet directly, instead they    should be integrated with the webserver, so that    http://www.example.com/app1/any-path-here is mapped internally to    http://internal1.example.com/any-path-here and    http://www.example.com/app2/other-path-here is mapped internally to    http://internal2.example.com/other-path-here. This is a typical    reverse-proxy situation.&lt;br /&gt;&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(0, 0, 102);font-size:130%;&quot; &gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;How do i enable Apache2 for proxy?&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;To enable Apache2 for proxy, you need to enable this modules :&lt;br /&gt;&lt;/p&gt; &lt;/div&gt;&lt;ul&gt;&lt;li&gt;mod_proxy: The core module deals with proxy infrastructure and        configuration and managing a proxy request.&lt;/li&gt;&lt;li&gt;mod_proxy_http: This handles fetching documents with HTTP and        HTTPS.&lt;/li&gt;&lt;li&gt;mod_proxy_ftp: This handles fetching documents with FTP.&lt;/li&gt;&lt;li&gt;mod_proxy_connect: This handles the CONNECT method for secure        (SSL) tunneling.&lt;/li&gt;&lt;li&gt;mod_proxy_ajp: This handles the AJP protocol for Tomcat        and similar backend servers.&lt;/li&gt;&lt;li&gt;mod_proxy_balancer implements clustering and load-balancing        over multiple backends.&lt;/li&gt;&lt;li&gt;mod_cache, mod_disk_cache, mod_mem_cache: These deal with managing        a document cache. To enable caching requires mod_cache and one or        both of disk_cache and mem_cache.&lt;/li&gt;&lt;li&gt;mod_proxy_html: This rewrites HTML links into a proxy&#39;s address        space.&lt;/li&gt;&lt;li&gt;mod_xml2enc: This supports internationalisation (i18n) on behalf        of mod_proxy_html and other markup-filtering modules.        space.&lt;/li&gt;&lt;li&gt;mod_headers: This modifies HTTP request and response headers.&lt;/li&gt;&lt;li&gt;mod_deflate: Negotiates compression with clients and backends.&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;After enabling those modules, we need to edit httpd.conf and insert line like these (do not forget to create the folder you specified below!!!) :&lt;br /&gt;&lt;br /&gt;         &lt;span style=&quot;font-weight: bold; font-style: italic;font-size:85%;&quot; &gt;ProxyPass /news/ http://news_server.domain.lan/news/&lt;br /&gt;          ProxyPassReverse /news/ http://news_server.domain.lan/news/&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;And the final step is to edit our&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;span style=&quot;font-style: italic; font-weight: bold;&quot;&gt; mods-enabled/proxy.conf &lt;/span&gt;&lt;/span&gt;:&lt;br /&gt;        &lt;ifmodule&gt;&lt;br /&gt;        ProxyRequest Off&lt;br /&gt;        &lt;proxy&gt;&lt;br /&gt;            Order deny,allow&lt;br /&gt;            Allow from all&lt;br /&gt;        &lt;/proxy&gt;&lt;br /&gt;        ProxyVia On&lt;br /&gt;       &lt;ifmodule&gt;&lt;br /&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&lt;br /&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/7113911558549265547/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://churchgoopensource.blogspot.com/2010/10/reverse-proxy-on-apache2.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/7113911558549265547'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/7113911558549265547'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/2010/10/reverse-proxy-on-apache2.html' title='Reverse Proxy on Apache2'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8271844383356348806.post-4825054129700541433</id><published>2010-06-26T02:53:00.000-07:00</published><updated>2010-06-30T10:00:54.392-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="error"/><category scheme="http://www.blogger.com/atom/ns#" term="FSCK"/><category scheme="http://www.blogger.com/atom/ns#" term="Ubuntu"/><title type='text'>How to FSCK - fix error LVM volume</title><content type='html'>&lt;div&gt;Boot from a CD&lt;br /&gt;Boot from a CD with Ubuntu Desktop (or another desktop distro) on it, and run it from the CD. Then none of your filesystems are mounted, you can&#39;t run fsck on a mounted filesystem.&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;If you&#39;ve used the Linux LVM to create your partitions, you&#39;ll need to make those accessible before you run fsck:&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;color:#006600;&quot;&gt;&quot;lvm pvscan&quot;&lt;br /&gt;&quot;lvm vgscan&quot;&lt;br /&gt;&quot;lvm lvchange -ay &#39;NameOfYourVolumeGroup&#39; &quot;&lt;br /&gt;&quot;lvm lvscan&quot;&lt;/span&gt;&lt;br /&gt;Then you can run fsck:&lt;br /&gt;&lt;br /&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;color:#006600;&quot;&gt;&quot;fsck -f NameOfYourVolumeGroup&quot;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;color:#006600;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;color:#330000;&quot;&gt;simply wait for the fsck process and boot into your Linux box again :)&lt;/span&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/4825054129700541433/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://churchgoopensource.blogspot.com/2010/06/how-to-fsck-fix-error-lvm-volume.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/4825054129700541433'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/4825054129700541433'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/2010/06/how-to-fsck-fix-error-lvm-volume.html' title='How to FSCK - fix error LVM volume'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8271844383356348806.post-2057737356491898929</id><published>2010-05-01T21:26:00.000-07:00</published><updated>2010-07-11T04:13:09.522-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="CCTV"/><category scheme="http://www.blogger.com/atom/ns#" term="Open Source"/><category scheme="http://www.blogger.com/atom/ns#" term="Security"/><category scheme="http://www.blogger.com/atom/ns#" term="zoneminder"/><title type='text'>Installing Zoneminder on Ubuntu 9.04 32bit &amp; 10.04 32bit - The open source surveillance system</title><content type='html'>Yes... you may have heard the Linux is going into CCTV world! On this tutorial we are going to&lt;br /&gt;install zoneminder on Ubuntu 9.04 32bit.&lt;br /&gt;Note that this walkthrough is taken from &lt;a href=&quot;http://www.zoneminder.com/wiki/index.php/Ubuntu_9.04_server_32bit&quot;&gt;http://www.zoneminder.com/wiki/index.php/Ubuntu_9.04_server_32bit&lt;/a&gt; with some modification due to update to ffmpeg module.&lt;br /&gt;This also a solution to ffmpeg error on compiling zoneminder.We assume here you guys already installed the Ubuntu Server with LAMP and the SSH server if you guys want to do remote SSH,and change the IP of your server to static IP.&lt;br /&gt;&lt;br /&gt;- Do the &quot;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;apt-get update&lt;/span&gt;&quot; and then &quot;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;apt-get upgrade&lt;/span&gt;&quot; to update your distribution to the latest&lt;br /&gt;one.&lt;br /&gt;&lt;br /&gt;- After that install webmin (optional), install sysvconfig: &quot;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;apt-get install sysvconfig&lt;/span&gt;&quot;, enter; now&lt;br /&gt;run it: &quot;sysvconfig&quot;, enter , now choose &quot;enable/disable&quot;, also&lt;br /&gt;ensure webmin is checked if you want it; back to the main screen, hit &quot;finished&quot; to save; exit it;&lt;br /&gt;&lt;br /&gt;- Ensure you had your capture card recognized, in my case i&#39;m using Kodicom 8800 DVR card.&lt;br /&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;root@myhomeCCTV:/home/myhome# find /dev -name video*&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;/dev/video1&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;/dev/video7&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;/dev/video6&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;/dev/video5&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;/dev/video4&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;/dev/video3&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;/dev/video2&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;/dev/video0&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;/dev/.udev/names/video1&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;/dev/.udev/names/video7&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;/dev/.udev/names/video6&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;/dev/.udev/names/video5&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;/dev/.udev/names/video4&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;/dev/.udev/names/video3&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;/dev/.udev/names/video2&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;/dev/.udev/names/video0&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;root@myhomeCCTV:/home/myhome# lspci -v | grep Multimedia&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;04:08.0 Multimedia video controller: Brooktree Corporation Bt878 Video Capture (rev 11)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;04:08.1 Multimedia controller: Brooktree Corporation Bt878 Audio Capture (rev 11)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;04:09.0 Multimedia video controller: Brooktree Corporation Bt878 Video Capture (rev 11)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;04:09.1 Multimedia controller: Brooktree Corporation Bt878 Audio Capture (rev 11)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;04:0a.0 Multimedia video controller: Brooktree Corporation Bt878 Video Capture (rev 11)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;04:0a.1 Multimedia controller: Brooktree Corporation Bt878 Audio Capture (rev 11)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;04:0b.0 Multimedia video controller: Brooktree Corporation Bt878 Video Capture (rev 11)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;04:0b.1 Multimedia controller: Brooktree Corporation Bt878 Audio Capture (rev 11)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;04:0c.0 Multimedia video controller: Brooktree Corporation Bt878 Video Capture (rev 11)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;04:0c.1 Multimedia controller: Brooktree Corporation Bt878 Audio Capture (rev 11)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;04:0d.0 Multimedia video controller: Brooktree Corporation Bt878 Video Capture (rev 11)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;04:0d.1 Multimedia controller: Brooktree Corporation Bt878 Audio Capture (rev 11)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;04:0e.0 Multimedia video controller: Brooktree Corporation Bt878 Video Capture (rev 11)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;04:0e.1 Multimedia controller: Brooktree Corporation Bt878 Audio Capture (rev 11)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;04:0f.0 Multimedia video controller: Brooktree Corporation Bt878 Video Capture (rev 11)&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;04:0f.1 Multimedia controller: Brooktree Corporation Bt878 Audio Capture (rev 11)&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;ZM Installation :&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;echo &quot;/usr/local/lib&quot; &gt; /etc/ld.so.conf.d/ffmpeg.conf&lt;br /&gt;&lt;br /&gt;echo &quot;LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH&quot; &gt;&gt; /etc/bash.bashrc&lt;br /&gt;&lt;br /&gt;echo &quot;export LD_LIBRARY_PATH&quot; &gt;&gt; /etc/bash.bashrc&lt;br /&gt;&lt;br /&gt;ldconfig&lt;br /&gt;&lt;br /&gt;aptitude install build-essential linux-headers-`uname -r` automake perl libnetssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl libmd5-perl libmysqlclient15-dev libarchive-zip-perl libdate-manip-perl libdevice-serialport-perl libjpeg62 libjpeg62-dev libmime-perl libstdc++6 libwww-perl zlib1g zip unzip patch ntp openssl libpcre3-dev libssl-dev libjpeg-progs libcurl4-gnutls-dev munin munin-node libmime-lite-perl netpbm libbz2-dev subversion yasm&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Install Perl Modules&lt;br /&gt;type &quot;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;perl -MCPAN -e shell&lt;/span&gt;&lt;/span&gt;&quot;, enter&lt;br /&gt;(accept yes when prompted)&lt;br /&gt;type &quot;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;install CPAN&lt;/span&gt;&lt;/span&gt;&quot;, enter&lt;br /&gt;(accept yes when prompted)&lt;br /&gt;type &quot;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;exit&lt;/span&gt;&quot;, enter&lt;br /&gt;type &quot;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;perl -MCPAN -e shell&lt;/span&gt;&quot;, enter&lt;br /&gt;type &quot;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;install YAML PHP::Serialization Module::Load X10::ActiveHome&lt;/span&gt;&quot;, enter&lt;br /&gt;(accept yes when prompted,and yes again to fix dependencies problems if so)&lt;br /&gt;type &quot;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;exit&lt;/span&gt;&quot;, enter&lt;br /&gt;&lt;br /&gt;FFmpeg &amp;amp; ZoneMinder from SVN&lt;br /&gt;Install FFmpeg&lt;br /&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;cd /usr/src&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;svn checkout svn://svn.mplayerhq.hu/ffmpeg/trunk ffmpeg&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;cd ffmpeg&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;echo &quot;Checked out external at revision 29318 - Checked out revision 18890&quot; &gt; xxx_SVN_info.txt&lt;br /&gt;&lt;br /&gt;./configure --enable-gpl --enable-shared --enable-pthreads&lt;br /&gt;&lt;br /&gt;make&lt;br /&gt;&lt;br /&gt;make install&lt;br /&gt;&lt;br /&gt;make install-libs&lt;br /&gt;&lt;br /&gt;cd /lib&lt;br /&gt;&lt;br /&gt;ln -s /usr/local/lib/libswscale.so.0&lt;br /&gt;ln -s /usr/local/lib/libavformat.so.52&lt;br /&gt;ln -s /usr/local/lib/libavcodec.so.52&lt;br /&gt;ln -s /usr/local/lib/libavutil.so.50&lt;br /&gt;ln -s /usr/local/lib/libavdevice.so.52&lt;/span&gt;&lt;br /&gt;(all commands ran smooth, no broken symbolic links so far)&lt;br /&gt;&lt;br /&gt;Install &amp;amp; Config ZoneMinder&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;cd /usr/src&lt;br /&gt;&lt;br /&gt;svn co http://svn.zoneminder.com/svn/zm/trunk zm&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;cd zm&lt;br /&gt;&lt;br /&gt;echo &quot;Checked out revision 2887&quot; &gt; xxx_SVN_info.txt&lt;br /&gt;&lt;br /&gt;./configure --with-webdir=/var/www/zm --with-cgidir=/usr/lib/cgi-bin --withffmpeg=/usr/src/ffmpeg CPPFLAGS=&quot;-D__STDC_CONSTANT_MACROS&quot; ZM_DB_HOST=localhost ZM_DB_NAME=zm ZM_DB_USER=zmuser ZM_DB_PASS=zmpass --enable-debug=yes --withwebgroup=www-data --with-webuser=www-data&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;autoconf&lt;/span&gt;&lt;br /&gt;(ok, outputs nothing here)&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;aclocal&lt;br /&gt;&lt;br /&gt;automake&lt;/span&gt;&lt;br /&gt;(now, the most important step, that takes about 3 minutes compiling)&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;&lt;br /&gt;make&lt;/span&gt;&lt;br /&gt;(so far so good, lets now create the initial db; when prompted, use the **root&lt;br /&gt;MySQL** password you created before;)&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;&lt;br /&gt;mysql -u root -p &lt;&gt; db/zm_create.sql&lt;br /&gt;&lt;br /&gt;mysql -u root -p&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;&lt;br /&gt;grant select,insert,update,delete on zm.* to &#39;zmuser&#39;@localhost identified by &#39;zmpass&#39;;&lt;br /&gt;&lt;br /&gt;quit&lt;br /&gt;&lt;br /&gt;make install&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Post Install&lt;br /&gt;Install Cambozola&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;cd /usr/src&lt;br /&gt;&lt;br /&gt;wget http://www.charliemouse.com:8080/code/cambozola/cambozola-latest.tar.gz&lt;br /&gt;&lt;br /&gt;tar -xzvf cambozola-latest.tar.gz&lt;br /&gt;&lt;br /&gt;cp cambozola-0.70/dist/cambozola.jar /var/www/zm&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Make sure ZoneMinder starts automatically&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;vim /etc/init.d/zm&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;color: rgb(0, 0, 153);font-size:85%;&quot; &gt;#!/bin/sh&lt;br /&gt;# description: Control ZoneMinder as a Service&lt;br /&gt;# chkconfig: 2345 99 99&lt;br /&gt;# Source function library.&lt;br /&gt;#. /etc/rc.d/init.d/functions&lt;br /&gt;prog=ZoneMinder&lt;br /&gt;ZM_PATH_BIN=&quot;/usr/local/bin&quot;&lt;br /&gt;command=&quot;$ZM_PATH_BIN/zmpkg.pl&quot;&lt;br /&gt;start() {&lt;br /&gt;echo -n &quot;Starting $prog: &quot;&lt;br /&gt;$command start&lt;br /&gt;RETVAL=$?&lt;br /&gt;[ $RETVAL = 0 ] &amp;amp;&amp;amp; echo success&lt;br /&gt;[ $RETVAL != 0 ] &amp;amp;&amp;amp; echo failure&lt;br /&gt;return $RETVAL&lt;br /&gt;}&lt;br /&gt;stop() {&lt;br /&gt;echo -n &quot;Stopping $prog: &quot;&lt;br /&gt;$command stop&lt;br /&gt;RETVAL=$?&lt;br /&gt;[ $RETVAL = 0 ] &amp;amp;&amp;amp; echo success&lt;br /&gt;[ $RETVAL != 0 ] &amp;amp;&amp;amp; echo failure&lt;br /&gt;}&lt;br /&gt;status() {&lt;br /&gt;result=`$command status`&lt;br /&gt;if [ &quot;$result&quot; = &quot;running&quot; ]; then&lt;br /&gt;echo &quot;ZoneMinder is running&quot;&lt;br /&gt;RETVAL=0&lt;br /&gt;else&lt;br /&gt;echo &quot;ZoneMinder is stopped&quot;&lt;br /&gt;RETVAL=1&lt;br /&gt;fi&lt;br /&gt;}&lt;br /&gt;case &quot;$1&quot; in&lt;br /&gt;&#39;start&#39;)&lt;br /&gt;start&lt;br /&gt;;;&lt;br /&gt;&#39;stop&#39;)&lt;br /&gt;stop&lt;br /&gt;;;&lt;br /&gt;&#39;restart&#39;)&lt;br /&gt;stop&lt;br /&gt;start&lt;br /&gt;;;&lt;br /&gt;&#39;status&#39;)&lt;br /&gt;status&lt;br /&gt;;;&lt;br /&gt;*)&lt;br /&gt;echo &quot;Usage: $0 { start | stop | restart | status }&quot;&lt;br /&gt;RETVAL=1&lt;br /&gt;;;&lt;br /&gt;esac&lt;br /&gt;exit $RETVAL&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Make /etc/init.d/zm executable:&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;chmod 755 /etc/init.d/zm&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Make zm &quot;automatic start on boot&quot; -- Webmin -&gt; System -&gt; Bootup and Shutdown&lt;br /&gt;&lt;br /&gt;Notes :&lt;br /&gt;- There are some fix to also include support for Safari users or people surfing with the iPhone&#39;s built in Safari browser.Also, there is no need to do anything for Google chrome because its being detected as Mozilla\firefox.If you are using the JPEG streaming mode (Motion JPEG) with the browser Opera or Safari, or even using your iPhone, there is no reason to use cambozola because all those browsers support MJPEG natively.The problem: with ZM&#39;s CAN_STREAM setting set to &quot;auto&quot;, ZM&#39;s auto detection believes those browsers don&#39;t support MJPEG, although they do.This is because ZM&#39;s auto detection is slightly outdated and this fix will update it.&lt;br /&gt;You can do the changes manually or use the patch below.EDIT: If after this fix you experience flickering in Opera, here is how you fix it:&lt;br /&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;a href=&quot;http://www.zoneminder.com/forums/viewtopic.php?p=61493&quot;&gt;http://www.zoneminder.com/forums/viewtopic.php?p=61493&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;(or if you want the easiest way, you can download the&lt;br /&gt;functions.php file from &lt;a href=&quot;http://www.ziddu.com/downloadlink/10664717/functions.php.zip&quot;&gt;HERE&lt;/a&gt;, and overwrite the file function.php on /var/www/zm/includes/function.php)&lt;br /&gt;- In file include/functions.php, change the following which is at around line 823 (May vary from  installation to installation):&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;elseif (ereg( &#39;Opera ([0-9].[0-9]{1,2})&#39;,$_SERVER[&#39;HTTP_USER_AGENT&#39;],$logVersion))&lt;/span&gt;&lt;br /&gt;to&lt;br /&gt;&lt;span style=&quot;font-size:85%;&quot;&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;elseif (ereg( &#39;Opera/([0-9].[0-9]{1,2})&#39;,$_SERVER[&#39;HTTP_USER_AGENT&#39;],&lt;/span&gt;&lt;span style=&quot;color: rgb(153, 0, 0);&quot;&gt;$logVersion))&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;- In around line 876 (May vary from installation to installation),change:&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;function canStreamNative()&lt;br /&gt;{&lt;br /&gt;return( ZM_CAN_STREAM == &quot;yes&quot; || ( ZM_CAN_STREAM == &quot;auto&quot;&lt;br /&gt;&amp;amp;&amp;amp; (isNetscape() || isKonqueror()) ) );&lt;br /&gt;}&lt;/span&gt;&lt;br /&gt;to&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;function canStreamNative()&lt;br /&gt;{&lt;br /&gt;return( ZM_CAN_STREAM == &quot;yes&quot; || ( ZM_CAN_STREAM == &quot;auto&quot; &amp;amp;&amp;amp; (isNetscape&lt;br /&gt;() || isKonqueror() || isOpera() || isSafari()) )&lt;br /&gt;);&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;- In around line 840 (May vary from installation to installation),find this:&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;function isNetscape()&lt;br /&gt;{&lt;br /&gt;getBrowser( $browser, $version );&lt;br /&gt;return( $browser == &quot;mozilla&quot; );&lt;br /&gt;}&lt;/span&gt;&lt;br /&gt;to&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;function isOpera() {&lt;br /&gt;getBrowser( $browser, $version );&lt;br /&gt;return( $browser == &quot;opera&quot; );&lt;br /&gt;}&lt;br /&gt;function isSafari() {&lt;br /&gt;getBrowser( $browser, $version );&lt;br /&gt;return( $browser == &quot;safari&quot; );&lt;br /&gt;}&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;- For Kodicom KMC-8800 there&#39;s a fix, make a new file on /etc/modprobe.d/bttv.conf and place the option, for&lt;br /&gt;&lt;br /&gt;for 1 card :&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;options i2c-algo-bit bit_test=1&lt;span style=&quot;font-family:monospace;&quot;&gt;&lt;br /&gt;&lt;/span&gt;options bttv gbuffers=16 card=102,102,102,102,102,102,102,102 radio=0,0,0,0,0,0,0,0 tuner=4,4,4,4,4,4,4,4 chroma_agc=1 combfilter=2 full_luma_range=1 coring=1 autoload=0&lt;/span&gt;&lt;br /&gt;for 2 card :&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;options i2c-algo-bit bit_test=1&lt;span style=&quot;font-family:monospace;&quot;&gt;&lt;br /&gt;&lt;/span&gt;options bttv gbuffers=16 card=102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102 radio=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 tuner=4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4 chroma_agc=1 combfilter=2 full_luma_range=1 coring=1 autoload=0&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;- There&#39;s a issue with shared memory with my installation - i don&#39;t know if you guys got the same issue too, if so... just insert below line to /etc/sysctl.conf&lt;span style=&quot;font-family:monospace;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;vim /etc/sysctl.conf&lt;br /&gt;&lt;span style=&quot;color: rgb(0, 0, 0);&quot;&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;then insert :&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;kernel.shmall = 134217728&lt;span style=&quot;font-family:monospace;&quot;&gt;&lt;br /&gt;&lt;/span&gt;kernel.shmmax = 134217728&lt;br /&gt;&lt;/span&gt;to load this setting immediately&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;sysctl -p&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;- If you want to use another partition as storage just create a symlink from /var/www/zm/events to zoneminder default folder :&lt;br /&gt;&lt;span style=&quot;color: rgb(153, 0, 0);font-size:85%;&quot; &gt;ln -s /path/to/your/partition /var/www/zm/events&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/2057737356491898929/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://churchgoopensource.blogspot.com/2010/05/installing-zoneminder-on-ubuntu-904.html#comment-form' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/2057737356491898929'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/2057737356491898929'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/2010/05/installing-zoneminder-on-ubuntu-904.html' title='Installing Zoneminder on Ubuntu 9.04 32bit &amp; 10.04 32bit - The open source surveillance system'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8271844383356348806.post-453796808657988948</id><published>2010-04-16T09:52:00.000-07:00</published><updated>2010-07-11T00:38:25.176-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="CCTV"/><category scheme="http://www.blogger.com/atom/ns#" term="Open Source"/><category scheme="http://www.blogger.com/atom/ns#" term="Security"/><category scheme="http://www.blogger.com/atom/ns#" term="Ubuntu"/><category scheme="http://www.blogger.com/atom/ns#" term="zoneminder"/><title type='text'>Digital Surveilance with Zoneminder 1.23</title><content type='html'>After several time our church congregation got stolen, we decide to upgrade our CCTV - yes we&#39;ve been using the CCTV, but the quality is very poor (we seen the theft but the picture quality is very poor and the way to retrieve the recording isn&#39;t very comfortable - we&#39;ve to search every single frame and there&#39;s no other way to skip it). Then we decide to upgrade the CCTV using computerize system which we find out will be doing more good for us.&lt;br /&gt;&lt;br /&gt;My choice drop to &lt;a href=&quot;http://www.zoneminder.com/&quot;&gt;Zoneminder&lt;/a&gt;, the fact of it being open source and it ran on LINUX also!!! has been always makes me believe we&#39;re not going wrong direction. As you guys know, we are non-profit organization and our budget come from the congregation, thats why we&#39;ve to consider well every penny we spent and mostly because it ran on Linux which have been famous because of it&#39;s stability and robustness.&lt;br /&gt;&lt;br /&gt;The hardware we choose this time is a set of computer (motherboard with onboard graphic card should be enough as we&#39;re going to install a server) and a DVR card - we choose Kodicom KMC-8800 8 channel DVR card.&lt;br /&gt;Here is the &lt;a href=&quot;http://www.zoneminder.com/wiki/index.php/Supported_hardware&quot;&gt;list of supported hardware &lt;/a&gt;by Zoneminder&lt;br /&gt;&lt;br /&gt;This time i choose Ubuntu 9.04 LAMP 32bit - Jaunty Jackalope as our base system. I&#39;m not going to tell you guys about how to install it because the installation is pretty straight forward and well documented on internet. After the installation - make sure you guys give your server a static address, and change the repository to the local one (choose the closest one to you guys).&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Once again!!! make sure you guys choose to install LAMP (Linux, Apache, mysql, PHP)!!!!&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;After that as usually, do some package update &quot;&lt;span style=&quot;font-weight: bold;&quot;&gt;sudo apt-get update&lt;/span&gt;&quot; and the the upgrade &quot;&lt;span style=&quot;font-weight: bold;&quot;&gt;sudo apt-get upgrade&lt;/span&gt;&quot; -  &lt;a href=&quot;http://churchgoopensource.blogspot.com/2010/05/installing-webmin-on-ubuntu.html&quot;&gt;install webmin&lt;/a&gt; to help us configure our system.&lt;br /&gt;&lt;br /&gt;Now we&#39;re going to the install the zoneminder, installation is pretty straight forward also - we&#39;re going to make our life easier by installing it from debian repository &quot;&lt;span style=&quot;font-weight: bold;&quot;&gt;sudo apt-get install zoneminder&lt;/span&gt;&quot; and if it asking for dependency  fire up some command &quot;&lt;span style=&quot;font-weight: bold;&quot;&gt;sudo apt-get install -f&lt;/span&gt;&quot; and try install the zoneminder again with &quot;&lt;span style=&quot;font-weight: bold;&quot;&gt;sudo apt-get install zoneminder&lt;/span&gt;&quot;.&lt;br /&gt;&lt;br /&gt;After the installation progress is finish, try to link Apache with Zoneminder&lt;br /&gt;&lt;pre&gt;&quot;&lt;span style=&quot;font-weight: bold;&quot;&gt;sudo ln -s /etc/zm/apache.conf /etc/apache2/conf.d/zoneminder.conf&lt;/span&gt;&quot; and the reload apache &quot;&lt;span style=&quot;font-weight: bold;&quot;&gt;/etc/init.d/apache force-reload&lt;/span&gt;&quot;&lt;br /&gt;&lt;br /&gt;Notes :&lt;br /&gt;&lt;/pre&gt;&lt;ul&gt;&lt;li&gt;For Kodicom KMC-8800 we&#39;ve to make bttv.conf file on /etc/modprobe.d/ and write down&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;pre&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;     options i2c-algo-bit bit_test=1&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;     options bttv gbuffers=16 card=102,102,102,102,102,102,102,102 radio=0,0,0,0,0,0,0,0 tuner=4,4,4,4,4,4,4,4 chroma_agc=1 combfilter=2 full_luma_range=1 coring=1 autoload=0&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;   for 1 card - The 8 inputs are from /dev/video0 channel 0 to /dev/video7 channel 0, and&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;     options i2c-algo-bit bit_test=1&lt;/span&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;     options bttv gbuffers=16 card=102,102,102,102,102,102,102,102,102,102,102,102,102,102,102,102 radio=0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 tuner=4,4,4,4,4,4,4,4,4,4,4,4,4,4,4,4 chroma_agc=1 combfilter=2 full_luma_range=1 coring=1 autoload=0&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;   for 2 card - The 16 inputs are from /dev/video0 channel &lt;b&gt;0&lt;/b&gt; to /dev/video15&lt;br /&gt;   channel &lt;b&gt;0&lt;/b&gt;.&lt;br /&gt;   At this time it appears its not possible to install more than 2 cards of this card in the same computer, the computer will detect no more than 16 BT878 chips.&lt;/pre&gt;&lt;pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/pre&gt;</content><link rel='replies' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/453796808657988948/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://churchgoopensource.blogspot.com/2010/05/digital-surveilance-with-zoneminder-123.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/453796808657988948'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/453796808657988948'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/2010/05/digital-surveilance-with-zoneminder-123.html' title='Digital Surveilance with Zoneminder 1.23'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8271844383356348806.post-2528326756439381395</id><published>2010-04-12T09:41:00.000-07:00</published><updated>2010-04-12T10:04:10.864-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Macbook"/><category scheme="http://www.blogger.com/atom/ns#" term="OS X"/><title type='text'>Install Final Cut Pro/Studio on Macbook</title><content type='html'>&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:arial;&quot;&gt;Some of you may have facing some problem when installing Final Cut Pro on older Macbook white, yes the Final Cut Pro require us to have 128 MB of VRAM - &lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot; ;font-size:medium;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:arial;&quot;&gt;As many of you know already, in many cases Apple&#39;s &#39;requirements&#39; (and installer checks) for OS&#39;s, Apps, etc. are steeper than what the software will actualy run on (although not all features may work, or performance may be poor on some hardware).&lt;/span&gt;&lt;/span&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:medium;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:arial;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:medium;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-style: italic; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:arial;&quot;&gt;The &lt;/span&gt;&lt;a href=&quot;http://www.apple.com/finalcutstudio/specs/&quot; target=&quot;ext&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:arial;&quot;&gt;FCS 3 Install requirements&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:arial;&quot;&gt; lists &quot;ATI or NVIDIA graphics processor (integrated Intel graphics processors not supported)&quot; and &quot;128MB of VRAM&quot;. They also list a higher minimum res (1280x800) display recommendation than FCS2 did (1024x768 min). And there&#39;s higher &quot;requirements&quot; listed for some apps like Color.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:medium;&quot;&gt;&lt;i&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:arial;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:Times, serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-size:medium;&quot;&gt;&lt;i&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot; font-style: normal; font-family:Times;&quot;&gt;&lt;p&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:arial;&quot;&gt;I copied the entire installation disk to my hard drive and deleted the installation check file from the FinalCutPro.mpkg file. (&lt;/span&gt;&lt;i&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:arial;&quot;&gt;right click/&quot;show package contents&quot;, etc.&lt;/span&gt;&lt;/i&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:arial;&quot;&gt;), and then go to &quot;Content&quot; - &quot;Resources&quot; and rename &quot;Requirement Checker&quot; file. Then the installer ran normally. After it was installed, I had to open up the applications&#39; packages and change the &quot;MRCheckPro.bundle&quot; from the respective Contents/Resources folders (this is slightly different from older versions) with the one from &lt;a href=&quot;http://www.ziddu.com/download/9419725/Resources.zip.html&quot;&gt;here&lt;/a&gt;.&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:arial;&quot;&gt;I should note that many newer Macbooks have more than 64MB shared VRAM, so people may not have to jump through these hoops on those models. &lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:arial;&quot;&gt;By the way, my experience with FCS 2 on this Macbook was that &quot;almost&quot; everything ran perfectly -- there were one or two filters (like &quot;Bloom&quot;) that wouldn&#39;t render, but other than that, it was virtually indistinguishable from a Macbook Pro (and I should mention I have seen Mac Pros that couldn&#39;t render the Bloom filter either). I suspect this version will be similar...&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;Apple-style-span&quot;  style=&quot;font-family:arial, serif;&quot;&gt;Ok, have a great ministry with your Macbook.&lt;/span&gt;&lt;/p&gt;&lt;/span&gt;&lt;/i&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/2528326756439381395/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://churchgoopensource.blogspot.com/2010/04/install-final-cut-prostudio-on-macbook.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/2528326756439381395'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/2528326756439381395'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/2010/04/install-final-cut-prostudio-on-macbook.html' title='Install Final Cut Pro/Studio on Macbook'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8271844383356348806.post-2427634989850432689</id><published>2010-04-09T03:55:00.000-07:00</published><updated>2010-04-09T04:06:43.156-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="AG-MX70"/><category scheme="http://www.blogger.com/atom/ns#" term="Panasonic"/><category scheme="http://www.blogger.com/atom/ns#" term="Setup"/><category scheme="http://www.blogger.com/atom/ns#" term="Video Mixer"/><title type='text'>Panasonic AG-MX70 DSK (Down Stream Keyer)</title><content type='html'>Yes it&#39;s a bit confusing for the first time we using the DSK function on AG-MX70, me either need about one week to figure out how to set the DSK on AG-MX70.&lt;br /&gt;&lt;br /&gt;Here&#39;s the step :&lt;br /&gt;1. Connect the source of your DSK by using Composite or Component to &quot;EXT IN&quot; jack at the back of your AG-MX70 (&quot;Key&quot; for &quot;Composite&quot; and &quot;Y Pb Pr&quot; for &quot;Component&quot;&lt;br /&gt;2. Next is the setup of your video mixer section, go to &quot;Setup&quot; setting by pressing the &quot;Set up&quot; button under the LCD and change the &quot;Gen. Lock&quot; -- &quot;Ref In&quot; into &quot;Ext Key&quot;&lt;br /&gt;3. Next go to &quot;DSK Fade&quot; setting by pressing the &quot;DSK Fade&quot; button under the LCD and change the &quot;DSK Source&quot; -- &quot;Key&quot; into &quot;EXT&quot; and &quot;Fill&quot; into &quot;BodMat&quot; (this will make sure your text color match your desired color.&lt;br /&gt;4. To change your text color just go to the &quot;PATTERN&quot; setting (&quot;Mix&quot; ussually for the church) by pressing the &quot;Mix&quot; button under the PATTERN setting , and change &quot;Pattern Edge&quot; -- &quot;Color&quot; into the color you want (&quot;Yellow&quot; for me).&lt;br /&gt;Yes you can change the color into the color you desired.&lt;br /&gt;5. To start using the DSK, send the text to mixer (i&#39;m using Easy Woship from one computer connected to my video mixer by using S-Video to RCA cable custom build). The text must using black background.&lt;br /&gt;&lt;br /&gt;I know the result of AG-MX70 is a litle bit crappy, and if your church have budget, just plan to buy one more video switcher with Chroma Key function other than using DSK function on AG-MX70 (There just a plain text with no shadow under it)</content><link rel='replies' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/2427634989850432689/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://churchgoopensource.blogspot.com/2010/04/panasonic-ag-mx70-dsk-down-stream-keyer.html#comment-form' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/2427634989850432689'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/2427634989850432689'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/2010/04/panasonic-ag-mx70-dsk-down-stream-keyer.html' title='Panasonic AG-MX70 DSK (Down Stream Keyer)'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8271844383356348806.post-635558565208656147</id><published>2010-04-01T10:17:00.000-07:00</published><updated>2010-07-11T00:39:00.792-07:00</updated><title type='text'>Installing Webmin on ubuntu</title><content type='html'>&lt;div class=&quot;post-body&quot;&gt;&lt;p&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Webmin is a web-based interface for system administration for Unix. Using any browser that support tables and forms (and Java for the File Manager module), you can setup user accounts, Apache, DNS, Squid, file sharing and so on.&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;&lt;p&gt;Webmin consists of a simple web server, and a  number of CGI programs which directly update system files like  /etc/inetd.conf and /etc/passwd. The web server and all CGI programs are  written in Perl version 5, and use no non-standard Perl modules.&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;fullpost&quot; style=&quot;display: inline;&quot;&gt;&lt;br /&gt;&lt;strong&gt;Preparing Your  System&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;You need to install the following packages&lt;br /&gt;&lt;br /&gt;sudo  apt-get install perl libnet-ssleay-perl openssl libauthen-pam-perl  libpam-runtime libio-pty-perl libmd5-perl&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Install Webmin  in Ubuntu&lt;br /&gt;&lt;/strong&gt;&lt;br /&gt;You can use the above procedure but if you  want to install latest version of .deb package you can download from  webmin site under &lt;a linkindex=&quot;5&quot; href=&quot;http://www.webmin.com/download.html&quot; target=&quot;_blank&quot;&gt;Download  Section&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Download latest webmin using the following command&lt;br /&gt;&lt;br /&gt;&lt;span&gt;wget  &lt;a linkindex=&quot;6&quot; href=&quot;http://prdownloads.sourceforge.net/webadmin/webmin_1.340_all.deb&quot; class=&quot;smarterwiki-linkify&quot;&gt;http://prdownloads.sourceforge.net/webadmin/webmin_1.500_all.deb&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Now  we have webmin_1.500_all.deb package you need to install using the  following command&lt;br /&gt;&lt;br /&gt;sudo dpkg -i *.deb&lt;br /&gt;&lt;br /&gt;If your server  complains that there is some library things does not find. Just run the  following command&lt;br /&gt;&lt;br /&gt;sudo apt- get install -f&lt;br /&gt;&lt;br /&gt;&lt;span&gt;You  should now be able to login to Webmin at the URL &lt;a linkindex=&quot;7&quot; href=&quot;https://localhost:10000/&quot; class=&quot;smarterwiki-linkify&quot;&gt;https://localhost:10000/&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/635558565208656147/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://churchgoopensource.blogspot.com/2010/05/installing-webmin-on-ubuntu.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/635558565208656147'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/635558565208656147'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/2010/05/installing-webmin-on-ubuntu.html' title='Installing Webmin on ubuntu'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8271844383356348806.post-752946630728686504</id><published>2010-03-28T00:44:00.000-07:00</published><updated>2010-04-08T19:36:58.463-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="driver"/><category scheme="http://www.blogger.com/atom/ns#" term="kTouch E329"/><category scheme="http://www.blogger.com/atom/ns#" term="Mac"/><category scheme="http://www.blogger.com/atom/ns#" term="OS X"/><title type='text'>kTouch E329 Mac OS X Driver</title><content type='html'>Yes, some of you may have been looking for ages - driver for kTouch E329 on MAC OS X 10.6 (Snow Leopard). Yes after doing some searching and research, finally i got the driver. The installation is a bit tricky but overall it&#39;s not very hard.&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Allright let&#39;s download the file &lt;a href=&quot;http://www.ziddu.com/download/9196232/kTouchEVDOModemDriver.pkg.zip.html&quot;&gt;here&lt;/a&gt; (make sure your kTouch E329 isn&#39;t connected to your Mac)&lt;/div&gt;&lt;div&gt;after installing the driver, now it&#39;s time to configure your phone :&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;  &lt;/span&gt;1. Enter the engineering mode by pressing *#3641# (don&#39;t mess with anything else or &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;  &lt;/span&gt;    you will break the phone).&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;  &lt;/span&gt;2. Go to option no.6 &quot;USB Switch&quot;.&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;  &lt;/span&gt;3. And choose QSC (this will make sure every time you connect your phone, it &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;  &lt;/span&gt;    &lt;span class=&quot;Apple-tab-span&quot; style=&quot;white-space:pre&quot;&gt;  &lt;/span&gt;    automatically switch to &quot;modem&quot; mode.&lt;/div&gt;&lt;div&gt;after that connect your phone and there will be system preference window which asked you to configure your new modem.&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;choose kTouch E329 &lt;b&gt;modem &lt;/b&gt;and use #777 as phone number and smart as username and password.&lt;/div&gt;&lt;div&gt;viola!!! now you have been connected&lt;/div&gt;&lt;div&gt;&lt;br /&gt;&lt;/div&gt;&lt;div&gt;Notes : everytime you got asked when connecting your phone via USB repeat 1-3 step (configure your phone for QSC mode once again even though it&#39;s already QSC - just press &quot;OK&quot; on QSC mode. This is the bugs on this phone - hope the factory will repair it soon)&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/752946630728686504/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://churchgoopensource.blogspot.com/2010/03/ktouch-e329-mac-os-x-driver.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/752946630728686504'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/752946630728686504'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/2010/03/ktouch-e329-mac-os-x-driver.html' title='kTouch E329 Mac OS X Driver'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8271844383356348806.post-6953715356887659229</id><published>2010-02-05T22:50:00.000-08:00</published><updated>2010-03-04T05:11:22.844-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="GUI"/><category scheme="http://www.blogger.com/atom/ns#" term="server"/><category scheme="http://www.blogger.com/atom/ns#" term="Ubuntu"/><category scheme="http://www.blogger.com/atom/ns#" term="webmin"/><title type='text'>How to Install Webmin in Ubuntu</title><content type='html'>&lt;h3 class=&quot;post-title&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot; font-weight: normal; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: medium;&quot;&gt;Webmin is a web-based interface for system administration for Unix. Using any browser that support tables and forms (and Java for the File Manager module), you can setup user accounts, Apache, DNS, Squid, file sharing and so on.&lt;/span&gt;&lt;/span&gt;&lt;/h3&gt;&lt;div class=&quot;post-body&quot;&gt;&lt;p&gt;Webmin consists of a simple web server, and a number of CGI programs which directly update system files like /etc/inetd.conf and /etc/passwd. The web server and all CGI programs are written in Perl version 5, and use no non-standard Perl modules.&lt;/p&gt;&lt;p&gt;&lt;span class=&quot;fullpost&quot; style=&quot;display: inline; &quot;&gt;&lt;br /&gt;&lt;strong&gt;Preparing Your System&lt;/strong&gt;&lt;br /&gt;&lt;br /&gt;You need to install the following packages&lt;br /&gt;&lt;br /&gt;sudo apt-get install perl libnet-ssleay-perl openssl libauthen-pam-perl libpam-runtime libio-pty-perl libmd5-perl&lt;br /&gt;&lt;br /&gt;&lt;strong&gt;Install Webmin in Ubuntu&lt;br /&gt;&lt;/strong&gt;&lt;br /&gt;You can use the above procedure but if you want to install latest version of .deb package you can download from webmin site under &lt;a linkindex=&quot;5&quot; href=&quot;http://www.webmin.com/download.html&quot; target=&quot;_blank&quot;&gt;Download Section&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Download latest webmin using the following command&lt;br /&gt;&lt;br /&gt;&lt;span&gt;wget &lt;a linkindex=&quot;6&quot; href=&quot;http://prdownloads.sourceforge.net/webadmin/webmin_1.340_all.deb&quot; class=&quot;smarterwiki-linkify&quot;&gt;http://prdownloads.sourceforge.net/webadmin/webmin_1.500_all.deb&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Now we have webmin_1.340_all.deb package you need to install using the following command&lt;br /&gt;&lt;br /&gt;sudo dpkg -i *.deb&lt;br /&gt;&lt;br /&gt;If your server complains that there is some library things does not find. Just run the following command&lt;br /&gt;&lt;br /&gt;sudo apt- get install -f&lt;br /&gt;&lt;br /&gt;&lt;span&gt;You should now be able to login to Webmin at the URL &lt;a linkindex=&quot;7&quot; href=&quot;https://localhost:10000/&quot; class=&quot;smarterwiki-linkify&quot;&gt;https://localhost:10000/&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/6953715356887659229/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://churchgoopensource.blogspot.com/2010/02/how-to-install-webmin-in-ubuntu.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/6953715356887659229'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/6953715356887659229'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/2010/02/how-to-install-webmin-in-ubuntu.html' title='How to Install Webmin in Ubuntu'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8271844383356348806.post-5409943402756375374</id><published>2009-06-25T20:28:00.000-07:00</published><updated>2010-07-20T20:18:20.929-07:00</updated><title type='text'>SIS191 ethernet chipset problem on ubuntu</title><content type='html'>After 3 days struggling with &lt;span style=&quot;font-weight: bold;&quot;&gt;Ubuntu 9.04&lt;/span&gt; installation over one of our church desktop computer, finally we find the solution. (i&#39;m using &lt;span style=&quot;font-weight: bold;&quot;&gt;Asus P5S-MX SE&lt;/span&gt; motherboard which use &lt;span style=&quot;font-weight: bold;&quot;&gt;SIS191&lt;/span&gt; as it&#39;s ethernet chipset another computer which use the same chipset and probably get the same problem is &lt;b&gt;Acer Aspire SA90&lt;/b&gt;)&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;The problem begin when i&#39;m choosing to switch our church office desktop to switch to Ubuntu Linux 9.04, the installation going very smooth and everything seems going very well, but when i try to update the package manager... here&#39;s come the problem.. strangely the updater just like hangs... it can&#39;t get package from the internet... At first i assume that there&#39;s a network problem on our church.. but after do some investigation i find out that there&#39;s no problem with the network, and finally i try to do some network tools like ping, dig (to find out if there&#39;s a problem with my dns) and strangely.. everything just going well (the computer can ping and resolve domain name).&lt;br /&gt;And finally after some reinstallations of &lt;span style=&quot;font-weight: bold;&quot;&gt;Ubuntu 9.04&lt;/span&gt; and some googling - i find out that there&#39;s a bug (i don&#39;t know if we&#39;ve to call it a bug or problem with the SIS), the old kernel (&lt;span style=&quot;font-weight: bold;&quot;&gt;2.6 kernel&lt;/span&gt;) just can&#39;t recognize the &lt;span style=&quot;font-weight: bold;&quot;&gt;SIS191. &lt;/span&gt;&lt;br /&gt;&lt;br /&gt;There&#39;s a solution for this problem on &lt;a href=&quot;http://www.howtoforge.com/creating-the-sis191-gigabit-ethernet-driver-on-linux-2.6&quot;&gt;HowtoForge&lt;/a&gt; regarding to this problem, but it&#39;s just seems to complicated for regular users - so i decided to install some network card to my ubuntu (i&#39;m using TP-Link PCI ethernet card which only cost me 4 bucks) and it&#39;s instantly recognized by Ubuntu and after that we do some upgrade to the distro, and viola.. it&#39;s just work again and we can remove the network card and use the onboard one.</content><link rel='replies' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/5409943402756375374/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://churchgoopensource.blogspot.com/2009/06/sis191-ethernet-chipset-problem-on.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/5409943402756375374'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/5409943402756375374'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/2009/06/sis191-ethernet-chipset-problem-on.html' title='SIS191 ethernet chipset problem on ubuntu'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8271844383356348806.post-7779688246494730552</id><published>2009-04-26T23:54:00.000-07:00</published><updated>2009-04-27T00:27:42.210-07:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Audio Video"/><category scheme="http://www.blogger.com/atom/ns#" term="Church Audio Video Technology"/><category scheme="http://www.blogger.com/atom/ns#" term="Church magazine"/><title type='text'>Magazine for Audio Video on church</title><content type='html'>&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: medium;&quot;&gt;After several checking on what&#39;s the best free magazine for church, my choices turn to &lt;/span&gt;&lt;a href=&quot;http://www.worshipfacilities.com/&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: medium;&quot;&gt;Worship Facilities&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: medium;&quot;&gt; and &lt;/span&gt;&lt;a href=&quot;http://www.lightingandsoundamerica.com&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: medium;&quot;&gt;Lighting and Sound America&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: medium;&quot;&gt; - the first one (Worship Facilities) focus on &lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial; line-height: 21px; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: medium;&quot;&gt;design, construction, operation and maintenance magazine for today’s house of worship. You guys can subscribe for free at their website - for international user you guys can subscribe from their &lt;/span&gt;&lt;a href=&quot;https://ss42.shared.server-system.net/~ehsecure.com/wfforms/sub_paid_intl.html&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: medium;&quot;&gt;online subscription form&lt;/span&gt;&lt;/a&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: medium;&quot;&gt; (subscription is free for qualified church), and the other one (Lighting and Sound International) focusing on &lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 16px; &quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: medium;&quot;&gt;the entertainment technology industry with intelligence, wit, and professionalism, which is applicable to church audio video technology (i believe most of latest audio video technology targeted on church and congregations nowadays), you guys can also subscribe for free from &lt;a href=&quot;https://www.ezsubscription.com/lsa/subscribe.asp?type=qualify&quot;&gt;here&lt;/a&gt;.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial; line-height: 16px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Arial; line-height: 16px;&quot;&gt;For online magazine i also reccomend &lt;a href=&quot;http://tvtechnology.com/&quot;&gt;TV Technology&lt;/a&gt;, &lt;a href=&quot;http://www.christianvideomag.com/&quot;&gt;Christian Video Magazine&lt;/a&gt;, &lt;a href=&quot;http://www.ccmag.com/&quot;&gt;Christian Computing Magazine&lt;/a&gt;, &lt;a href=&quot;http://www.churchproduction.com/&quot;&gt;Church Production Magazine&lt;/a&gt;.&lt;/span&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/7779688246494730552/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://churchgoopensource.blogspot.com/2009/04/magazine-for-audio-video-on-church.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/7779688246494730552'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/7779688246494730552'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/2009/04/magazine-for-audio-video-on-church.html' title='Magazine for Audio Video on church'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8271844383356348806.post-43059551219057205</id><published>2009-01-22T23:32:00.000-08:00</published><updated>2009-01-22T23:40:29.027-08:00</updated><title type='text'>Video DownloadHelper 4.0.2</title><content type='html'>The easy way to download and convert Web videos from hundreds of YouTube-like sites.&lt;br /&gt;This works also for audio and picture galleries.&lt;br /&gt;&lt;br /&gt;&lt;h4&gt;Long Description&lt;/h4&gt;     &lt;p&gt;DownloadHelper is a tool for web content extraction. Its purpose is to capture video and image files from many sites.&lt;br /&gt;&lt;br /&gt;Just surf the Web as you are used to, when DownloadHelper detects it can do something for you, the icon gets animated and a menu allows you to download files by simply clicking an item&lt;br /&gt;&lt;br /&gt;For instance, if you go to a YouTube page, you&#39;ll be able to download the video directly on your file system. It also works with MySpace, Google videos, DailyMotion, Porkolt, iFilm, DreamHost and others.&lt;br /&gt;&lt;br /&gt;Since version 3.1, you can setup the extension to automatically convert the downloaded movies to your preferred video format.&lt;br /&gt;&lt;br /&gt;When you are on a page containing links to images or movies, you can download some or all of them at once. Moving the mouse over the items in the menu will highlights the links directly in the page to make sure they are the ones you want to pick up.&lt;br /&gt;&lt;br /&gt;DownloadHelper also allows you to download files one by one, so that you keep bandwidth to surf for other stuff to download.&lt;br /&gt;&lt;br /&gt;To modify your preferences, like changing the download directory, right-click on the icon and choose &quot;Preferences&quot;.&lt;br /&gt;&lt;br /&gt;When you first install the extension, your browser is redirected to a welcome page with links to a user manual at http://www.downloadhelper.net/manual.php and a faq at http://www.downloadhelper.net/faq.php&lt;br /&gt;&lt;br /&gt;This does not change your homepage setting and the welcome page won&#39;t appear anymore.&lt;br /&gt;&lt;br /&gt;Support can be obtained from http://www.downloadhelper.net/support.php&lt;br /&gt;&lt;/p&gt;      &lt;div class=&quot;app_compat&quot;&gt;     &lt;h4&gt;Works with:&lt;/h4&gt;     &lt;ul&gt;&lt;li&gt;             Firefox:             1.5 – 3.2a1pre        &lt;/li&gt;&lt;/ul&gt; &lt;/div&gt;      &lt;a href=&quot;https://addons.mozilla.org/en-US/firefox/downloads/file/45283/video_downloadhelper-4.0.2-fx.xpi&quot;&gt;&lt;span style=&quot;font-size:130%;&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Download Link&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/43059551219057205/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://churchgoopensource.blogspot.com/2009/01/video-downloadhelper-402.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/43059551219057205'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/43059551219057205'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/2009/01/video-downloadhelper-402.html' title='Video DownloadHelper 4.0.2'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8271844383356348806.post-8095530990181601431</id><published>2009-01-22T23:25:00.000-08:00</published><updated>2009-01-22T23:29:06.838-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Freeware"/><category scheme="http://www.blogger.com/atom/ns#" term="Portable Software"/><category scheme="http://www.blogger.com/atom/ns#" term="Recommended Software"/><category scheme="http://www.blogger.com/atom/ns#" term="Windows"/><title type='text'>FLV Extract</title><content type='html'>Extracts video and audio from FLV files without decompressing or recompressing. The video is saved as AVI (H.263/FLV1 and VP6/VP6F) or raw elementary stream (H.264/AVC). The audio is saved as MP3, AAC (with ADTS headers), or WAV (PCM).&lt;br /&gt;&lt;br /&gt;&lt;b&gt;NOTE:&lt;/b&gt; If you simply want to convert FLV to AVI including audio, the FLV Input Plugin for VirtualDub (see below) is most likely a better choice. FLV Extract currently writes out separate video/audio files which you would have to join. Also, FLV Input Plugin is able to maintain synch in variable framerate videos by inserting drop frames. However, it doesn&#39;t yet support H.264 or AAC.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;NOTE:&lt;/b&gt;  The AVIs will not play unless you have the right decoders.  &lt;a href=&quot;http://ffdshow-tryout.sourceforge.net/&quot;&gt;ffdshow-tryouts&lt;/a&gt; can decode FLV1, VP6F, and H.264; make sure they&#39;re enabled in its configuration dialog.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;NOTE:&lt;/b&gt; The extracted MP3s may appear to have an incorrect duration in your audio player. This is because FLV Extract doesn&#39;t generate a VBR header, but the files are perfectly valid nonetheless. To add a VBR header you can load an MP3 in &lt;a href=&quot;http://www.foobar2000.org/&quot;&gt;foobar2000&lt;/a&gt;, right click on it, go to Utils, and click &quot;Fix VBR MP3 Header&quot;.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Changes:&lt;/b&gt;&lt;br /&gt;&lt;br /&gt;1.4.0 (2008-Nov-16):&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Supports H.264/AVC, written as a raw elementary stream.&lt;/li&gt;&lt;li&gt;Supports AAC, written as .aac with ADTS headers.&lt;/li&gt;&lt;li&gt;Extracts VP6 alpha channel to a separate file.&lt;/li&gt;&lt;li&gt;Prompts before overwriting files.&lt;/li&gt;&lt;/ul&gt; 1.3.0 (2008-Feb-26):&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Added dialog that lists the status of all files, replaces the message box that was shown for each file.&lt;/li&gt;&lt;li&gt;Doesn&#39;t leave files open upon error.&lt;/li&gt;&lt;li&gt;Better handling of incomplete files.&lt;/li&gt;&lt;li&gt;Changed VP6 FourCC from FLV4 to VP6F.&lt;/li&gt;&lt;li&gt;A few fixes for rare files.&lt;/li&gt;&lt;/ul&gt;&lt;a href=&quot;http://www.moitah.net/download/latest/FLV_Extract.zip&quot;&gt;&lt;span style=&quot;font-size:130%;&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Download Link&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/8095530990181601431/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://churchgoopensource.blogspot.com/2009/01/flv-extract.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/8095530990181601431'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/8095530990181601431'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/2009/01/flv-extract.html' title='FLV Extract'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8271844383356348806.post-6469909127399334432</id><published>2009-01-21T03:30:00.000-08:00</published><updated>2009-01-21T03:32:12.322-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Multimedia"/><category scheme="http://www.blogger.com/atom/ns#" term="Player"/><category scheme="http://www.blogger.com/atom/ns#" term="Recommended Software"/><category scheme="http://www.blogger.com/atom/ns#" term="Windows"/><title type='text'>K-Lite Codec Pack</title><content type='html'>K-Lite Codec Pack is a collection of codecs and related tools. Codecs are required to encode and/or decode (play) audio and video. The K-Lite Codec Pack is designed as a user-friendly solution for playing all your movie files. With the K-Lite Codec Pack you should be able to play 99% of all the movies that you download from the internet.&lt;br /&gt;&lt;br /&gt;The K-Lite Codec Pack has a couple of major advantages compared to other codec packs:&lt;br /&gt;- It it always up-to-date with the latest versions of the codecs.&lt;br /&gt;- It is very user-friendly and the installation is fully customizable, meaning that you can install only those components that you really want.&lt;br /&gt;- It has been very well tested, so that the package doesn&#39;t contain any conflicting codecs.&lt;br /&gt;- It is a very complete package, containing everything you need to play your movies.&lt;br /&gt;&lt;br /&gt;There are three versions of the K-Lite Codec Pack: Basic, Standard and Full.&lt;br /&gt;• &lt;b&gt;K-Lite Codec Pack Basic&lt;/b&gt; contains only the most essential things. It contains everything you need to be able to play the most popular and widespread formats. It is small enough to fit on a single floppy. Also great for including on your movie CDs.&lt;br /&gt;• &lt;b&gt;K-Lite Codec Pack Standard&lt;/b&gt; contains everything you need to play all the commonly used formats. This package should be enough for the average user.&lt;br /&gt;• &lt;b&gt;K-Lite Codec Pack Full&lt;/b&gt; contains even more codecs. It also has encoding support for the various formats. This package is for power users and people who do their own encodings.&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Features of K-Lite Codec Pack 4.5.3 FULL version&lt;/b&gt; :&lt;br /&gt;&lt;br /&gt;• &lt;b&gt;Player&lt;/b&gt; :&lt;br /&gt;- Media Player Classic [version 6.4.9.1 rev. 85]&lt;br /&gt;- Media Player Classic Home Cinema [version 1.2.972.0]&lt;br /&gt;• &lt;b&gt;FFDShow&lt;/b&gt; :&lt;br /&gt;- ffdshow [revision 2624]&lt;br /&gt;- ffdshow VFW interface&lt;br /&gt;- extra plugins&lt;br /&gt;• &lt;b&gt;DirectShow video filters&lt;/b&gt; :&lt;br /&gt;- XviD [version 1.2.0 build 2008-01-10]&lt;br /&gt;- DivX [version 6.8.5]&lt;br /&gt;- On2 VP6 [version 6.4.2.0]&lt;br /&gt;- On2 VP7 [version 7.0.10.0]&lt;br /&gt;- MPEG-2 (Cyberlink) [version 8.1.0.1608]&lt;br /&gt;- MPEG-2 (Gabest) [version 1.0.0.4]&lt;br /&gt;- MPEG-1 (MainConcept) [version 1.0.0.78]&lt;br /&gt;• &lt;b&gt;DirectShow audio decoding filters&lt;/b&gt;:&lt;br /&gt;- AC3/DTS/LPCM/MP1/MP2 (AC3Filter) [version 1.51a]&lt;br /&gt;- Vorbis (CoreVorbis) [version 1.1.0.79]&lt;br /&gt;- AAC (MONOGRAM) [version 0.9.5.0]&lt;br /&gt;• &lt;b&gt;DirectShow audio parsers&lt;/b&gt;:&lt;br /&gt;- MusePack (MONOGRAM) [version 0.9.1.2 | 0.3.1.2]&lt;br /&gt;- WavPack (CoreWavPack) [version 1.1.1]&lt;br /&gt;- FLAC (madFLAC) [version 1.8]&lt;br /&gt;- Monkey&#39;s Audio (DCoder) [version 1.0]&lt;br /&gt;- OptimFROG (RadLight) [version 1.0.0.1]&lt;br /&gt;- DC-Bass Source [version 1.2.0]&lt;br /&gt;- AC3/DTS Source (AC3File) [version 0.5b]&lt;br /&gt;- AMR (MONOGRAM) [version 1.0.1.0]&lt;br /&gt;• &lt;b&gt;DirectShow source filters&lt;/b&gt;:&lt;br /&gt;- AVI splitter (Gabest) [version 1.0.0.9]&lt;br /&gt;- AVI splitter (Haali Media Splitter) [version 1.8.122.18]&lt;br /&gt;- MP4 splitter (Haali Media Splitter) [version 1.8.122.18]&lt;br /&gt;- MP4 splitter (Gabest) [version 1.0.0.4]&lt;br /&gt;- Matroska splitter (Haali Media Splitter) [version 1.8.122.18]&lt;br /&gt;- Matroska splitter (Gabest) [version 1.0.3.0]&lt;br /&gt;- Ogg splitter (Haali Media Splitter) [version 1.8.122.18]&lt;br /&gt;- Ogg splitter (Gabest) [version 1.0.0.1]&lt;br /&gt;- MPEG PS/TS splitter (Gabest) [version 1.0.0.4]&lt;br /&gt;- MPEG PS/TS splitter (Haali Media Splitter) [version 1.8.122.18]&lt;br /&gt;- FLV splitter (Gabest) [version 1.0.0.5]&lt;br /&gt;- CDXA Reader (Gabest) [version 1.0.0.2]&lt;br /&gt;• &lt;b&gt;DirectShow subtitle filter&lt;/b&gt;:&lt;br /&gt;- DirectVobSub (a.k.a. VSFilter) [version 2.39]&lt;br /&gt;- DirectVobSub (a.k.a. VSFilter) [version 2.33]&lt;br /&gt;• &lt;b&gt;Other filters&lt;/b&gt;:&lt;br /&gt;- Haali Video Renderer [version 1.9.42.1]&lt;br /&gt;• &lt;b&gt;VFW video codecs&lt;/b&gt;:&lt;br /&gt;- XviD [version 1.2.0 build 2008-01-10]&lt;br /&gt;- DivX [version 6.8.5]&lt;br /&gt;- x264 [revision 1024]&lt;br /&gt;- On2 VP6 [version 6.4.2.0]&lt;br /&gt;- On2 VP7 [version 7.0.10.0]&lt;br /&gt;- Intel Indeo 4 [version 4.51.16.2]&lt;br /&gt;- Intel Indeo 5 [version 5.2562.15.54]&lt;br /&gt;- Intel I.263 [version 2.55.1.16]&lt;br /&gt;- huffyuv [version 2.1.1 CCE Patch 0.2.5]&lt;br /&gt;- YV12 (Helix) [version 1.2]&lt;br /&gt;• &lt;b&gt;ACM audio codecs&lt;/b&gt;:&lt;br /&gt;- MP3 (Fraunhofer) [version 3.4.0.0]&lt;br /&gt;- MP3 (LAME) [version 3.98.2]&lt;br /&gt;- AC3ACM [version 1.4]&lt;br /&gt;- Vorbis [version 0.0.3.6]&lt;br /&gt;- DivX ;) Audio [version 4.2.0.0]&lt;br /&gt;• &lt;b&gt;Tools&lt;/b&gt;:&lt;br /&gt;- Codec Tweak Tool [version 2.2.9]&lt;br /&gt;- GSpot Codec Information Appliance [version 2.70a]&lt;br /&gt;- MediaInfo Lite [version 0.7.7.8]&lt;br /&gt;- VobSubStrip [version 0.11]&lt;br /&gt;- GraphStudio [0.2.9.0]&lt;br /&gt;- Haali Muxer&lt;br /&gt;- FourCC Changer&lt;br /&gt;- Bitrate Calculator&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Changes from K-Lite Codec Pack 4.4.5 FULL to K-Lite Codec Pack 4.5.3 FULL&lt;/b&gt; :&lt;br /&gt;&lt;br /&gt;- Updated Media Player Classic Homecinema to version 1.2.972.0&lt;br /&gt;- Updated ffdshow to revision 2624&lt;br /&gt;- Added option to use experimental MT version of ffdshow. That has better H.264 decoding performance on multi-core processors&lt;br /&gt;- Updated Haali Media Splitter to version 1.9.42.1&lt;br /&gt;- Updated Ogg splitter (Gabest) to version 1.2.972.0&lt;br /&gt;- Updated MPEG splitter (Gabest) to version 1.2.972.0&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Features of K-Lite Codec Pack 4.5.3 STANDARD version&lt;/b&gt; :&lt;br /&gt;&lt;br /&gt;• &lt;b&gt;Player&lt;/b&gt; :&lt;br /&gt;- Media Player Classic [version 6.4.9.1 rev. 85]&lt;br /&gt;- Media Player Classic Home Cinema [version 1.2.972.0]&lt;br /&gt;• &lt;b&gt;FFDShow&lt;/b&gt; :&lt;br /&gt;- FFDShow [rev. 2624]&lt;br /&gt;• &lt;b&gt;DirectShow video decoding filters&lt;/b&gt; :&lt;br /&gt;- MPEG-2 (Cyberlink) [version 8.1.0.1608]&lt;br /&gt;• &lt;b&gt;DirectShow source filters&lt;/b&gt; :&lt;br /&gt;- AVI splitter (Gabest) [version 1.0.0.9]&lt;br /&gt;- AVI splitter (Haali Media Splitter) [version 1.8.122.18]&lt;br /&gt;- MP4 splitter (Haali Media Splitter) [version 1.8.122.18]&lt;br /&gt;- MP4 splitter (Gabest) [version 1.0.0.4]&lt;br /&gt;- Matroska splitter (Haali Media Splitter) [version 1.8.122.18]&lt;br /&gt;- Ogg splitter (Haali Media Splitter) [version 1.8.122.18]&lt;br /&gt;- FLV splitter (Gabest) [version 1.0.0.5]&lt;br /&gt;- MPEG PS/TS splitter (Gabest) [version 1.0.0.4]&lt;br /&gt;- MPEG PS/TS splitter (Haali Media Splitter) [version 1.8.122.18]&lt;br /&gt;• &lt;b&gt;DirectShow subtitle filter&lt;/b&gt; :&lt;br /&gt;- DirectVobSub (a.k.a. VSFilter) [version 2.39]&lt;br /&gt;• &lt;b&gt;Other filters&lt;/b&gt; :&lt;br /&gt;- Haali Video Renderer [version 1.9.42.1]&lt;br /&gt;• &lt;b&gt;Tools&lt;/b&gt; :&lt;br /&gt;- Codec Tweak Tool [version 2.2.9]&lt;br /&gt;- MediaInfo Lite [version 0.7.7.8]&lt;br /&gt;- VobSubStrip [version 0.11]&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Changes from K-Lite Codec Pack 4.4.5 STANDARD to K-Lite Codec Pack 4.5.3&lt;/b&gt; :&lt;br /&gt;&lt;br /&gt;- Updated Media Player Classic Homecinema to version 1.2.972.0&lt;br /&gt;- Removed regular version of MPC&lt;br /&gt;- Updated ffdshow to revision 2624&lt;br /&gt;- Added madFLAC (version 1.8)&lt;br /&gt;- Added CoreWavPack (version 1.1.1)&lt;br /&gt;- Updated Haali Media Splitter to version 1.9.42.1&lt;br /&gt;- Updated MPEG splitter (Gabest) to version 1.2.972.0&lt;br /&gt;- Removed AVI splitter (Gabest)&lt;br /&gt;- The &quot;Auto-load VSFilter&quot; setting for Haali Media Splitter is now enabled by default&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Features of K-Lite Codec Pack 4.5.3 BASIC version&lt;/b&gt; :&lt;br /&gt;&lt;br /&gt;- ffdshow [revision 2624]&lt;br /&gt;• &lt;b&gt;DirectShow source filters&lt;/b&gt;:&lt;br /&gt;- AVI splitter (Haali Media Splitter) [version 1.8.122.18]&lt;br /&gt;- MP4 splitter (Haali Media Splitter) [version 1.8.122.18]&lt;br /&gt;- MP4 splitter (Gabest) [version 1.0.0.5]&lt;br /&gt;- Matroska splitter (Haali Media Splitter) [version 1.8.122.18]&lt;br /&gt;- Ogg splitter (Haali Media Splitter) [version 1.8.122.18]&lt;br /&gt;- MPEG PS/TS splitter (Haali Media Splitter) [version 1.8.122.18]&lt;br /&gt;- FLV splitter (Gabest) [version 1.0.0.5]&lt;br /&gt;• &lt;b&gt;DirectShow subtitle filter&lt;/b&gt;:&lt;br /&gt;- DirectVobSub (a.k.a. VSFilter) [version 2.39]&lt;br /&gt;• &lt;b&gt;Tools&lt;/b&gt;:&lt;br /&gt;- Codec Tweak Tool [version 2.2.9]&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Changes from K-Lite Codec Pack 4.4.5 BASIC to K-Lite Codec Pack 4.5.3&lt;/b&gt; :&lt;br /&gt;&lt;br /&gt;- Updated ffdshow to revision 2624&lt;br /&gt;- Updated Haali Media Splitter to version 1.9.42.1&lt;br /&gt;- The &quot;Auto-load VSFilter&quot; setting for Haali Media Splitter is now enabled by default&lt;br /&gt;&lt;br /&gt;&lt;b&gt;Important Note&lt;/b&gt; :&lt;br /&gt;&lt;br /&gt;- The K-Lite Codec Pack works only on Windows 2000/XP/2003/Vista.&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://www.free-codecs.com/K_lite_codec_pack_download.htm&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Download Link&lt;/span&gt;&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/6469909127399334432/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://churchgoopensource.blogspot.com/2009/01/k-lite-codec-pack.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/6469909127399334432'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/6469909127399334432'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/2009/01/k-lite-codec-pack.html' title='K-Lite Codec Pack'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8271844383356348806.post-8385874482699374827</id><published>2009-01-21T02:04:00.000-08:00</published><updated>2009-01-21T02:31:10.289-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Freeware"/><category scheme="http://www.blogger.com/atom/ns#" term="Recommended Software"/><category scheme="http://www.blogger.com/atom/ns#" term="System Optimizer"/><category scheme="http://www.blogger.com/atom/ns#" term="Windows"/><title type='text'>Smart Defrag 1.10</title><content type='html'>&lt;span style=&quot;font-weight: bold;&quot;&gt;&lt;span style=&quot;font-size:180%;&quot;&gt;Smart Defrag&lt;br /&gt;The World’s Most Efficient Defragmenter&lt;/span&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;What’s the primary cause of slow/unstable PC performance? It’s disk fragmentation. Smart Defrag helps defragment your hard drives more efficiently than any other product on the market –– free or not.&lt;br /&gt;&lt;br /&gt;This powerful, award-winning free defragmenter is 100% safe and clean with no adware, spyware, or viruses.&lt;br /&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Key Benefits&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;table style=&quot;margin: 20px 0pt 0pt;&quot; width=&quot;300&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; height=&quot;24&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td width=&quot;40&quot;&gt;&lt;img src=&quot;http://www.iobit.com/Images/benefits.gif&quot; width=&quot;32&quot; height=&quot;26&quot; /&gt;&lt;/td&gt;&lt;td style=&quot;font-weight: bold;&quot; class=&quot;style7&quot; width=&quot;260&quot;&gt;Extremely Easy to Use&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;Install it and forget it. This powerful, free defragmenter works continuously, automatically and quietly in the background on your PC. Its intuitive interface makes Smart Defrag the ideal utility for complete computer dummies. &lt;table style=&quot;margin: 20px 0pt 0pt;&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; height=&quot;24&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td width=&quot;40&quot;&gt;&lt;img src=&quot;http://www.iobit.com/Images/benefits.gif&quot; width=&quot;32&quot; height=&quot;26&quot; /&gt;&lt;/td&gt;&lt;td class=&quot;style7&quot;&gt;&lt;strong&gt;Exceptionally Efficient Defragmentation&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;Smart Defrag has the world’s fastest defragmenting engine. It’s been specially designed for modern, large hard drives, so it eliminates long waiting times. &lt;table style=&quot;margin: 20px 0pt 0pt;&quot; width=&quot;300&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; height=&quot;24&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td style=&quot;height: 3px;&quot; width=&quot;40&quot;&gt;&lt;img src=&quot;http://www.iobit.com/Images/benefits.gif&quot; width=&quot;32&quot; height=&quot;26&quot; /&gt;&lt;/td&gt;&lt;td class=&quot;style7&quot; style=&quot;height: 3px; font-weight: bold;&quot; width=&quot;260&quot;&gt;Optimize Disk Performance&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;Smart Defrag doesn’t just use simple defragmentation. It also streamlines your file system, places the frequently used files and directories into the fastest area of the disk, enabling your computer to run at top speed with the most stability. &lt;table style=&quot;margin: 20px 0pt 0pt;&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; height=&quot;24&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td width=&quot;40&quot;&gt;&lt;img src=&quot;http://www.iobit.com/Images/benefits.gif&quot; width=&quot;32&quot; height=&quot;26&quot; /&gt;&lt;/td&gt;&lt;td style=&quot;font-weight: bold;&quot; class=&quot;style7&quot;&gt;Always-on to Work Automatically&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;Smart Defrag works automatically and quietly in the background, so it continually and constantly keeps your computer fragment-free. &lt;table style=&quot;margin: 20px 0pt 0pt;&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; height=&quot;24&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td width=&quot;40&quot;&gt;&lt;img src=&quot;http://www.iobit.com/Images/benefits.gif&quot; width=&quot;32&quot; height=&quot;26&quot; /&gt;&lt;/td&gt;&lt;td style=&quot;font-weight: bold;&quot; class=&quot;style7&quot;&gt;Data Safe and Reliability Guaranteed&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;Smart Defrag uses the commercial-level standard to move data and does not damage any file in your disk. Besides, unlike other &quot;Automated&quot; Defragmenters, Smart Defrag does NOT constantly perform analysis and defragment, which does damage your hard drive and shorten its life. Smart Defrag has a &quot;Safe Intelligence&quot; technology that can assure the health of your disk by deciding When and How to start defragmentation. &lt;table style=&quot;margin: 20px 0pt 0pt;&quot; width=&quot;300&quot; border=&quot;0&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; height=&quot;24&quot;&gt;&lt;tbody&gt;&lt;tr&gt;&lt;td width=&quot;40&quot;&gt;&lt;img src=&quot;http://www.iobit.com/Images/benefits.gif&quot; width=&quot;32&quot; height=&quot;26&quot; /&gt;&lt;/td&gt;&lt;td style=&quot;font-weight: bold;&quot; class=&quot;style7&quot; width=&quot;260&quot;&gt;Free Defragmenter Forever&lt;/td&gt;&lt;/tr&gt;&lt;/tbody&gt;&lt;/table&gt;Smart Defrag is 100% freeware. Download, use, and update it absolutely free for your personal computers, business or enterprise servers –– it won’t cost you a penny.&lt;br /&gt;&lt;br /&gt;&lt;p style=&quot;font-weight: bold;&quot; class=&quot;style8&quot;&gt;Designed for Windows Vista, XP, 2000. and Windows 7&lt;/p&gt;&lt;p style=&quot;font-weight: bold;&quot; class=&quot;style8&quot;&gt;&lt;a href=&quot;http://www.download.com/Smart%20Defrag/3000-2094_4-10759533.html?part=dl-6271865&amp;amp;subj=dl&amp;amp;tag=button&quot;&gt;Download Link&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/8385874482699374827/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://churchgoopensource.blogspot.com/2009/01/smart-defrag-110.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/8385874482699374827'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/8385874482699374827'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/2009/01/smart-defrag-110.html' title='Smart Defrag 1.10'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8271844383356348806.post-3089100331674543803</id><published>2008-12-27T00:28:00.000-08:00</published><updated>2009-01-21T03:01:18.897-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Email Client"/><category scheme="http://www.blogger.com/atom/ns#" term="Office Productivity"/><category scheme="http://www.blogger.com/atom/ns#" term="Open Source"/><category scheme="http://www.blogger.com/atom/ns#" term="Recommended Software"/><title type='text'>Thunderbird - Best Email Client</title><content type='html'>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://www.mozilla.com/img/thunderbird/features/message-tags.png&quot;&gt;&lt;img style=&quot;margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 250px; height: 178px;&quot; src=&quot;http://www.mozilla.com/img/thunderbird/features/message-tags.png&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://www.mozilla.com/img/thunderbird/features/advanced-folder-view.png&quot;&gt;&lt;img style=&quot;margin: 0pt 0pt 10px 10px; float: right; cursor: pointer; width: 250px; height: 199px;&quot; src=&quot;http://www.mozilla.com/img/thunderbird/features/advanced-folder-view.png&quot; alt=&quot;&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;Still using old way to get your email inbox?&lt;br /&gt;Now get your email to your computer and read it whenever you want without have to open your web browser.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;font-size:130%;&quot; &gt;Mozilla Thunderbird 2 is reloaded and more powerful than ever. It’s now even easier to organize, secure and customize your mail.&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-size:130%;&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Keep Your Vital Information Organized&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;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.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-size:130%;&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Advanced Folder Views&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Thunderbird 2 offers a variety of ways for you to organize and display your folders, whether by favorites, recently viewed or folders containing unread messages. As always, you can also set up RSS and newsgroup folders to stay on top of news and your interests. Thunderbird 2 also allows you to maximize your message view pane by opting for a folder drop down menu instead of the traditional sidebar.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-size:130%;&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Message Tagging&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Thunderbird 2 allows you to “tag” messages with descriptors such as “To Do” or “Done” or even create your own tags that are specific to your needs. Tags can be combined with saved searches and mail views to make it easier to organize email.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-size:130%;&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Message History Navigation&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Thunderbird 2 offers message history navigation that allows you to click “forward” and “back” much like in your Web browser. You can now quickly toggle between messages and folder views.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Improved Search&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Thunderbird 2 features a find as you type pane that speeds up searches within displayed messages. Thunderbird also offers quick search, which starts showing search results as soon as you start typing in search terms.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Saved Searches&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Do you find yourself searching for the same subject or message content over and over? Thunderbird 2 saves you time by allowing you to store this search as a folder. Rerunning the search is just a matter of clicking on the saved search folder in the folder pane.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Stay Informed&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Thunderbird 2 has been updated to provide more informative and relevant message alerts containing sender, subject and message text for newly arrived messages. Folders provide a pop up summarizing new messages in that folder.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Easy Access to Popular Web Mail Services&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Thunderbird 2 makes it even easier to integrate and use various Web mail accounts from one inbox. Gmail and .Mac users can access their accounts in Thunderbird by simply providing their user names and passwords.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Secure and Protect Your Mail&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Mozilla has bolstered Thunderbird’s acclaimed security and privacy measures to ensure that your communications and identity remain safe. It’s like having your own security guard online.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Phishing Protection&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Thunderbird protects you from email scams which try to trick users into handing over personal and confidential information by indicating when a message is a potential phishing attempt. As a second line of defense, Thunderbird warns you when you click on a link which appears to be taking you to a different Web site than the one indicated by the URL in the message.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Robust Privacy&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Thunderbird 2 offers improved support for user privacy and remote image protection. To ensure a user’s privacy, Thunderbird 2 automatically blocks remote images in email messages.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Cutting Out the Junk&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Mozilla has updated Thunderbird’s popular junk mail folders to stay ahead of spam. Each email you receive passes through Thunderbird&#39;s leading-edge junk mail filters. Each time you mark messages as spam, Thunderbird “learns” and improves its filtering so you can spend more time reading the mail that matters. Thunderbird can also use your mail provider&#39;s spam filters to keep junk mail out of your inbox.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Open Source, More Secure&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;At the heart of Thunderbird is an open source development process driven by thousands of passionate, experienced developers and security experts spread all over the world. Our openness and active community of experts helps to ensure our products are more secure and updated quickly, while also enabling us to take advantage of the best third party security scanning and evaluation tools to further bolster overall security.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Automated Update&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Thunderbird’s update system checks to see if you’re running the latest version, and notifies you when a security update is available. These security updates are small (usually 200KB - 700KB), giving you only what you need and making the security update quick to download and install. The automated update system provides updates for Thunderbird on Windows, Mac OS X, and Linux in over 30 different languages.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Get Your Mail, Your Way&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Thunderbird allows you to customize your email to suit your specific needs whether it’s how you search and find messages or listening to music right out of your inbox.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Outfit Your Inbox&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Thunderbird users can increase Thunderbird’s functionality and appearance using hundreds of add-ons. A Thunderbird add-on can let you manage contacts, place voice over IP calls, listen to music, and keep track of birthdates all from your inbox. You can even change the appearance of Thunderbird to suit your tastes.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Message Templates&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;Thunderbird 2 allows you to easily set up message templates to save you time – especially if you have to send the same mail message repeatedly.&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Add-ons Manager for Extensions and Themes&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;The new Add-ons Manager improves the user interface for managing extensions and themes, making it even easier for you to customize Thunderbird 2. Install, uninstall, enable and disable your add-ons in a single place.&lt;br /&gt;&lt;br /&gt;&lt;div id=&quot;content&quot;&gt;&lt;div class=&quot;corner-box&quot;&gt;&lt;p&gt;&lt;a href=&quot;http://www.mozilla.com/en-US/press/awards.html&quot;&gt;&lt;span style=&quot;font-size:100%;&quot;&gt;See Thunderbird Award&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;/p&gt;  &lt;/div&gt;  &lt;/div&gt;&lt;a href=&quot;http://www.spreadthunderbird.com/aff/338/9&quot;&gt;&lt;img alt=&quot;www.spreadthunderbird.com&quot; title=&quot;www.spreadthunderbird.com&quot; src=&quot;http://www.spreadthunderbird.com/sites/default/files/images/stb_blue_0.png&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/3089100331674543803/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://churchgoopensource.blogspot.com/2008/12/thunderbird-best-email-client.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/3089100331674543803'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/3089100331674543803'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/2008/12/thunderbird-best-email-client.html' title='Thunderbird - Best Email Client'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8271844383356348806.post-7589139392751522053</id><published>2008-12-27T00:05:00.000-08:00</published><updated>2008-12-27T00:28:21.048-08:00</updated><title type='text'>Firefox - The Best Web Browser</title><content type='html'>&lt;span style=&quot;font-weight: bold;font-size:130%;&quot; &gt;With more than 15,000 improvements, Firefox 3 is faster, safer and smarter than ever before.&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;p&gt;&lt;strong&gt;&lt;u&gt;Three Distinct Firefox Advantages&lt;/u&gt;&lt;br /&gt;&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt;1. Security&lt;br /&gt;&lt;/strong&gt;Main point:&lt;br /&gt;•    Firefox is the safest way to use the Internet.&lt;/p&gt; &lt;p&gt;Supporting points:&lt;br /&gt;•    We start with safety – We engage security experts before we even start development so we can identify and address potential problems before a single line of code is written.&lt;br /&gt;•    We build Firefox to be safe – Keeping people safe online is a big reason why Firefox exists. We take security very seriously, which is why we open our development process to allow security researchers to contribute at any point and on any topic. If a critical bug is discovered, we’ll make it public so it can be fixed as soon as possible.&lt;br /&gt;•    We actively work to keep Firefox safe – Security doesn’t stop once the product has shipped. We’re constantly monitoring threats and releasing new Firefox updates to stay ahead of the bad guys. Because we’re open source, we have an entire community of users around the world who help us make your web browsing safer.&lt;/p&gt; &lt;p&gt;Other Considerations:&lt;br /&gt;•    It’s important to give concrete examples of potential threats rather than just mentioning the abstract concept of “security”. People can easily relate to the ideas of identity theft, stolen credit cards, viruses, spyware and phishing, so explaining how Firefox helps prevent these things is key. &lt;br /&gt;•    Specific Firefox security features include anti-phishing and anti-malware protection, one click site ID, protection from spyware, automatic security updates and more.&lt;br /&gt;•    The reality is that there are people out there who want to steal your personal information. That’s why we’re constantly refining Firefox with security updates every 6-8 weeks (and more often if a fix is needed to address a critical issue) to stay one step ahead.&lt;br /&gt;•    The main reason Firefox is safer is because of our open process, which allows us to identify, acknowledge and fix bugs more quickly than the competition.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;2. Customization&lt;br /&gt;&lt;/strong&gt;Main point:&lt;br /&gt;•    When it comes to web browsing, we believe that one size doesn’t fit all. &lt;/p&gt; &lt;p&gt;Supporting points:&lt;br /&gt;•    Firefox has the most ways to customize your online experience specifically for the way you use the web.&lt;br /&gt;•    Add-ons (small pieces of software that augment Firefox to meet your unique needs) enhance the browser so you can be more productive, have more fun and be more creative online. For example, you can use the 3000+ Firefox add-ons to:&lt;br /&gt;     - communicate and stay in touch&lt;br /&gt;     - find the best shopping deals&lt;br /&gt;     - listen to music&lt;br /&gt;     - protect your kids from inappropriate sites&lt;br /&gt;     - access the latest news and weather reports&lt;br /&gt;     - and much more…&lt;br /&gt;•    There are also many different themes that let you express yourself by decorating your browser in a variety of ways.&lt;/p&gt; &lt;p&gt;Other considerations:&lt;br /&gt;•    The key challenge is getting people to think about the browser in a new way…that it’s more than just a utility. The browser isn’t just a static window to the Internet, it can be an active part of the Internet itself.&lt;br /&gt;•    It’s important to demonstrate the specific benefits of add-ons…the message isn’t customization, it’s why customization makes people’s Internet experiences better.&lt;br /&gt;•    It’s also important to remember the audience here…for consumer messaging, we want to focus on add-ons that are easy to explain and have the broadest possible appeal. In other words, this means referencing ones like eBay, FotoFox, FoxyTunes, etc rather than the more developer-centric ones.&lt;br /&gt;•    Using a familiar, non-technical analogy to convey a fairly technical concept is a very effective way of communicating the role add-ons can play in your web experience. For example, using add-ons is like designing your living space at work or building with blocks.&lt;/p&gt; &lt;p&gt;&lt;strong&gt;3. 100% Organic Software&lt;br /&gt;&lt;/strong&gt;Main point:&lt;br /&gt;•    Firefox is good for you: it stands for openness, innovation and freedom on the Internet.&lt;/p&gt; &lt;p&gt;Supporting points:&lt;br /&gt;•    We’re a public benefit, not-for-profit organization devoted to enriching people’s lives by preserving choice and innovation on the Internet (as opposed to being motivated by profits, shareholder value, usage of proprietary technology, etc.)&lt;br /&gt;•    We’re a global, grassroots effort – Mozilla’s products are a result of a collaboration between employees, volunteers, universities, foundations and corporate partners. Firefox was created by an international movement of hundreds of thousands of people from wildly different backgrounds, all seeking to develop the world’s best browser.&lt;br /&gt;•    Open source means a better browser for the 200 million regular Firefox users. We open up our process to anyone and everyone in order to encourage the innovation and development of exciting new technologies that will keep pushing the web forward and making it a better place for all.&lt;/p&gt; &lt;p&gt;Other considerations:&lt;br /&gt;•    The “100% organic software” concept sums up a fairly complex situation using a metaphor people can easily recognize. Organic stands for something that’s better for you, something trusted, something of higher quality…all key ingredients of Mozilla and Firefox.&lt;br /&gt;•    We need to focus less on the technical aspects of open source, which is hard for people to understand, and concentrate more on the tangible user benefits – innovation, accessibility, freedom, a better web, etc – to reach more potential users.&lt;br /&gt;•    A great example of the power of open source is the fact that Mozilla only has roughly 175 employees, yet is able to compete with some of the biggest companies in the world because of our amazing international community.&lt;br /&gt;•    Although the 100% organic concept really applies to the Mozilla organization as a whole, for our consumer messaging we need to show how this process ties back in to Firefox…the organic nature of our software development has created a healthier, higher quality browser that makes the web better for you.&lt;/p&gt;&lt;p&gt;&lt;span style=&quot;color: rgb(204, 0, 0);font-size:130%;&quot; &gt;&lt;a href=&quot;http://www.mozilla.com/en-US/press/awards.html&quot;&gt;See Firefox Awards&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;&lt;span style=&quot;font-weight: bold;font-size:130%;&quot; &gt;&lt;a href=&quot;http://www.mozilla.com/firefox?from=sfx&amp;amp;uid=253438&amp;amp;t=308&quot;&gt;&lt;img alt=&quot;Spreadfirefox Affiliate Button&quot; src=&quot;http://sfx-images.mozilla.org/affiliates/Buttons/firefox3/200x32_browser-all.png&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/7589139392751522053/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://churchgoopensource.blogspot.com/2008/12/firefox-best-web-browser.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/7589139392751522053'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/7589139392751522053'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/2008/12/firefox-best-web-browser.html' title='Firefox - The Best Web Browser'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8271844383356348806.post-154452294808578205</id><published>2008-12-26T23:41:00.000-08:00</published><updated>2009-01-22T23:31:23.608-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Office Productivity"/><category scheme="http://www.blogger.com/atom/ns#" term="Open Source"/><category scheme="http://www.blogger.com/atom/ns#" term="Recommended Software"/><title type='text'>Open Office - open source replacement for Microsoft Office</title><content type='html'>&lt;span id=&quot;intellitxt&quot;&gt;&lt;a title=&quot;OpenOffice.org&quot; href=&quot;http://www.pcmag.com/topic/0,2944,t=OpenOfficeorg&amp;amp;s=1739,00.asp&quot;&gt;OpenOffice.org&lt;/a&gt;, now released in its long-awaited 3.0 version, is a free, open-source replacement for &lt;!-- start ziffarticle //--&gt;&lt;a href=&quot;http://www.pcmag.com/article2/0,2817,2052255,00.asp&quot;&gt;Microsoft Office&lt;/a&gt;&lt;!-- end ziffarticle //--&gt;—and the first and only application suite that can be seriously considered to be a substitute for the massive power and flexibility of Microsoft&#39;s suite. OpenOffice.org used to look clunky and work slowly, but the 3.0 version, which I tested in its final Release Candidate version (RC4), is sleek and fast. It still retains the essential look and feel of&lt;!-- start ziffarticle //--&gt; &lt;a href=&quot;http://www.pcmag.com/article2/0,2817,921806,00.asp&quot;&gt;Microsoft Office 2003&lt;/a&gt;&lt;!-- end ziffarticle //--&gt; and earlier versions, instead of imitating the new ribbon interface of Office 2007, but that&#39;s a plus for many users who want as much continuity as possible when switching to a new application. OpenOffice.org doesn&#39;t include all of Office&#39;s features, but it adds some conveniences that Office can&#39;t provide, such as built-in PDF export and a single interface for opening and editing word-processing documents, HTML files, worksheets, presentations, and drawings.&lt;br /&gt;&lt;/span&gt;&lt;p&gt; For governments and corporations that don&#39;t want to be dependent on Microsoft&#39;s formats and don&#39;t want to continue paying Microsoft&#39;s prices, OpenOffice.org 3.0 is a serious contender. If you&#39;re a private individual or small business already using Microsoft&#39;s product, I doubt you&#39;ll want to switch, but if your company or agency has been buying Office for thousands of desktops, or if you work for or with a government that requires open-source formats, download OpenOffice.org and don&#39;t look back. &lt;/p&gt;&lt;p&gt; OpenOffice.org 3.0 has six basic components: Writer, a word processor and HTML editor; Calc, a spreadsheet; Draw, a graphics editor; Impress, a presentations program; Math, an equation editor; and Base, a database application. When evaluating the product, though, I wasn&#39;t really aware of six separate programs, because all document types open in the same window, just with slightly different menus on the top line. The only exception is the Base application, where the form and query designer has created a separate interface—you work with the actual database forms, however, in the same window that you use for the other applications. &lt;/p&gt;&lt;p&gt;I like the way the interface hews closely to the familiar Microsoft Office 2003 standard, and it places some features more logically, so that, for example, headers and footers are on the Insert menu instead of the View menu. I&#39;m less impressed with the word processor&#39;s view options. These are limited to a Web view (in which the text fills the window and there&#39;s no indication of what the text will look like on a printed page) and a full-page view, complete with top and bottom margins and a quarter-inch-thick gray bar between each page. There&#39;s no equivalent of a Word option that that preserves page layout on screen but doesn&#39;t waste space or add distractions by showing top and bottom margins. Nor will you find a matching capability for a powerful and little-known feature in Word that lets you view different parts of a document in two panes of the same window. &lt;/p&gt;&lt;p&gt;In OpenOffice.org&#39;s spreadsheet, I missed the graphic flexibility of Excel&#39;s conditional formatting, but I managed well enough with the low-frills, 20th-century conditional-formatting features. And I liked the simple elegance of the charting—it&#39;s almost as elegant as the charting in Google Docs—but got frustrated by uninformative error messages that told me nothing more than &quot;This function cannot be completed with the selected objects.&quot; I was also disappointed that the charting feature was a lot less clever than Excel&#39;s in figuring out which columns to use as labels and which to use as data, but the resulting problems were easy enough to fix. &lt;/p&gt;&lt;p&gt;Compared with earlier versions, OpenOffice.org 3.0 marks an impressive, though uneven advance in features and performance—with some features potentially far in advance of the corresponding features in Microsoft Office. For example, when you insert a graphic in a word-processing document or HTML, you can attach automated actions to specific events that are related to the graphic. Clicking on the graphic will cause some programmed action, such as typing some text or opening a new window, to be performed automatically. In the Release Candidate version I couldn&#39;t get this feature to work reliably: Some of the supplied macros and some of my own recorded macros would run correctly, while others wouldn&#39;t, and I couldn&#39;t see any pattern to the success or failure. &lt;/p&gt;&lt;p&gt; Overall, I found performance to be impressively fast, on a par with that of Microsoft Office but with some limitations. On a Vista system with 4GB of RAM and a fast dual-core processor, I had to wait a surprisingly long time for the charting module to update a simple chart when I changed a display option. But file loading and saving, in all parts of the application, was almost instantaneous.&lt;/p&gt;&lt;p&gt;&lt;span id=&quot;intellitxt&quot;&gt;One attractive feature of OpenOffice.org is that it&#39;s the only major application suite that runs on Windows, Mac OS X, and Linux with almost exactly the same feature set on all platforms. Microsoft stripped out support for Visual Basic macros when it created Microsoft Office 2008 for the Macintosh, but OpenOffice.org now offers limited Basic support in all versions, including a shiny new Macintosh one that runs natively as an OS X application. Earlier versions of OpenOffice.org for the Mac required the user-unfriendly X11 environment. A third-party OS X port called NeoOffice is also available, but it&#39;s always a few minor versions behind.&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span id=&quot;intellitxt&quot;&gt;&lt;p&gt; Earlier releases of OpenOffice.org used annoyingly cramped and uninformative dialog boxes better suited to the limited screen real-estate of nineties-era computers than today&#39;s generous screens. Version 3.0 tends to use more spacious and informative dialogs, but they&#39;re still not informative enough. For example, I had to dig deep into the help file to figure out what &quot;Register-True&quot; means in the Paragraph Format dialog (it means that the bottom of each line of type will be aligned to an invisible page grid). &lt;/p&gt;&lt;p&gt; The Help system looks as if it&#39;s rich in details, but in fact, some cross-references lead nowhere. The help page about the new version&#39;s very limited support for Office-style Visual Basic for Applications programming has a promising-looking link to a page on the &quot;Basic IDE&quot; (Integrated Development Environment)—but when I clicked on the link, it took me to a page containing a few sentences about programming OpenOffice.org and nothing at all about the Basic IDE. No doubt some of this will be fixed in the shipping version or in future updates. &lt;/p&gt;&lt;p&gt;For anyone thinking of switching from Office to OpenOffice.org, the biggest question is, How well will OpenOffice.org handle your old Office documents and worksheets? The answer is, astonishingly well, even with the new Office 2007 formats—but only when the original document includes no features that OpenOffice.org doesn&#39;t support. For example, I was deeply impressed by the way OpenOffice.org retained all the complex formatting and embedded images of a newsletter that I had originally created in Word. Every page break and column break was exactly where it belonged—a feat I hadn&#39;t seen in any other Office alternative. Inserted graphics in formats like JPEG and BMP imported perfectly. But OpenOffice.org ignores any Office 2007 Smart Art or any of the scalable line-art created by Office&#39;s drawing feature. &lt;/p&gt;&lt;p&gt; Similarly, OpenOffice.org managed to open most—but not all—the features in my spreadsheet-killer worksheet, a prize-winning monster created by former &lt;i&gt;PC Magazine&lt;/i&gt; technical editor Ben Gottesman. OpenOffice.org displayed the complex chart and data without a hiccup, although it choked on the complex Excel pivot table in the original, and it didn&#39;t even try to convert it into the OpenOffice.org equivalent, called DataPilot. &lt;/p&gt;&lt;p&gt;PowerPoint presentations opened equally well if the original files were in the Office 2003 file format. OpenOffice.org could open presentations in the Office 2007 format, but Office 2007 presentations aren&#39;t officially supported, and the Office 2007–format presentations that I imported into OpenOffice.org had defective formatting and missing data. When I exported the same 2007-format presentations from PowerPoint 2007 into the Office 2003 format, OpenOffice.org opened them perfectly. &lt;/p&gt;&lt;p&gt;I don&#39;t plan on switching to OpenOffice.org 3.0 anytime soon, if ever. But for the first time, I&#39;m ready to recommend this new version as a viable alternative to Microsoft&#39;s offering. It still has rough edges, but it has an impressive feature set, a generally lucid interface, pure open-source credentials, and—in the current economic climate—the decisive advantage of being absolutely free.&lt;/p&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;font-style: italic; font-weight: bold;&quot; class=&quot;byline&quot;&gt;&lt;span style=&quot;font-size:78%;&quot;&gt;&lt;span class=&quot;bylineBy&quot;&gt;By&lt;/span&gt; &lt;a href=&quot;mailto:emendelson_pcmag@hotmail.com&quot;&gt;Edward Mendelson&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;font-weight: bold;&quot; class=&quot;byline&quot;&gt;&lt;span style=&quot;font-size:130%;&quot;&gt;&lt;span id=&quot;intellitxt&quot;&gt;&lt;a href=&quot;http://download.openoffice.org/other.html#en-US&quot;&gt;Download Link&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p style=&quot;font-weight: bold;&quot; class=&quot;byline&quot;&gt;&lt;span style=&quot;font-size:130%;&quot;&gt;&lt;span id=&quot;intellitxt&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;p&gt;&lt;span id=&quot;intellitxt&quot;&gt;&lt;/span&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/154452294808578205/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://churchgoopensource.blogspot.com/2008/12/openoffice.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/154452294808578205'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/154452294808578205'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/2008/12/openoffice.html' title='Open Office - open source replacement for Microsoft Office'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8271844383356348806.post-2690333168015505288</id><published>2008-12-24T21:32:00.000-08:00</published><updated>2008-12-26T21:49:34.733-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Audio Editor"/><category scheme="http://www.blogger.com/atom/ns#" term="Open Source"/><category scheme="http://www.blogger.com/atom/ns#" term="Recommended Software"/><title type='text'>Audacity</title><content type='html'>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://3.bp.blogspot.com/_wVTpXBpXqrM/SVMbsoLXQgI/AAAAAAAAABY/qhGJSU2OCqQ/s1600-h/Audacity-logo-r_50pct.jpg&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 253px; height: 100px;&quot; src=&quot;http://3.bp.blogspot.com/_wVTpXBpXqrM/SVMbsoLXQgI/AAAAAAAAABY/qhGJSU2OCqQ/s320/Audacity-logo-r_50pct.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5283597241348997634&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;span style=&quot;font-size:180%;&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;About Audacity&lt;/span&gt;&lt;/span&gt;&lt;p&gt;Audacity is a free, easy-to-use audio editor and recorder for Windows, Mac OS X, GNU/Linux and other operating systems. You can use Audacity to:&lt;/p&gt;&lt;h3&gt;Recording&lt;/h3&gt; &lt;p&gt;Audacity can record live audio through a microphone or mixer, or digitize recordings from cassette tapes, vinyl records, or minidiscs. With some sound cards, it can also capture streaming audio.&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Record from microphone, line input, or other sources.&lt;/li&gt;&lt;li&gt;Dub over existing tracks to create multi-track recordings.&lt;/li&gt;&lt;li&gt;Record up to 16 channels at once (requires multi-channel hardware).&lt;/li&gt;&lt;li&gt;Level meters can monitor volume levels before, during, and after recording.&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Import and Export&lt;/h3&gt; &lt;p&gt;Import sound files, edit them, and combine them with other files or new recordings. Export your recordings in several common file formats.&lt;/p&gt; &lt;ul&gt;&lt;li&gt;Import and export WAV, AIFF, AU, and &lt;a href=&quot;http://vorbis.com/&quot;&gt;Ogg Vorbis&lt;/a&gt; files.&lt;/li&gt;&lt;li&gt;Import MPEG audio (including MP2 and MP3 files) with &lt;a href=&quot;http://www.underbit.com/products/mad/&quot;&gt;libmad&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;Export MP3s with the optional LAME encoder library.&lt;/li&gt;&lt;li&gt;Create WAV or AIFF files suitable for burning to CD.&lt;/li&gt;&lt;li&gt;Import and export all file formats supported by &lt;a href=&quot;http://www.mega-nerd.com/libsndfile/&quot;&gt;libsndfile&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;Open raw (headerless) audio files using the “Import Raw” command.&lt;/li&gt;&lt;li&gt;&lt;strong&gt;Note:&lt;/strong&gt;  Audacity does not currently support WMA, AAC, or most other proprietary or restricted file formats.&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Editing&lt;/h3&gt; &lt;ul&gt;&lt;li&gt;Easy editing with Cut, Copy, Paste, and Delete.&lt;/li&gt;&lt;li&gt;Use unlimited Undo (and Redo) to go back any number of steps.&lt;/li&gt;&lt;li&gt;Very fast editing of large files.&lt;/li&gt;&lt;li&gt;Edit and mix an unlimited number of tracks.&lt;/li&gt;&lt;li&gt;Use the Drawing tool to alter individual sample points.&lt;/li&gt;&lt;li&gt;Fade the volume up or down smoothly with the Envelope tool.&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Effects&lt;/h3&gt; &lt;ul&gt;&lt;li&gt;Change the pitch without altering the tempo, or vice-versa.&lt;/li&gt;&lt;li&gt;Remove static, hiss, hum, or other constant background noises.&lt;/li&gt;&lt;li&gt;Alter frequencies with Equalization, FFT Filter, and Bass Boost effects.&lt;/li&gt;&lt;li&gt;Adjust volumes with Compressor, Amplify, and Normalize effects.   &lt;/li&gt;&lt;li&gt;Other built-in effects include:     &lt;ul&gt;&lt;li&gt;Echo&lt;/li&gt;&lt;li&gt;Phaser&lt;/li&gt;&lt;li&gt;Wahwah&lt;/li&gt;&lt;li&gt;Reverse&lt;/li&gt;&lt;/ul&gt;   &lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Sound Quality&lt;/h3&gt; &lt;ul&gt;&lt;li&gt;Record and edit 16-bit, 24-bit, and 32-bit (floating point) samples.&lt;/li&gt;&lt;li&gt;Record at up to 96 kHz.&lt;/li&gt;&lt;li&gt;Sample rates and formats are converted using high-quality resampling and dithering.&lt;/li&gt;&lt;li&gt;Mix tracks with different sample rates or formats, and Audacity will convert them automatically in realtime.&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Plug-Ins&lt;/h3&gt; &lt;ul&gt;&lt;li&gt;Add new effects with &lt;a href=&quot;http://www.ladspa.org/&quot;&gt;LADSPA plug-ins&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;Audacity includes some sample plug-ins by &lt;a href=&quot;http://plugin.org.uk/&quot;&gt;Steve Harris&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;Load VST plug-ins for Windows and Mac, with the optional &lt;a href=&quot;http://audacityteam.org/vst/&quot;&gt;VST Enabler&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;Write new effects with the built-in &lt;a href=&quot;http://audacity.sourceforge.net/help/nyquist&quot;&gt;Nyquist&lt;/a&gt; programming language.&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Analysis&lt;/h3&gt; &lt;ul&gt;&lt;li&gt;Spectrogram mode for visualizing frequencies.&lt;/li&gt;&lt;li&gt;“Plot Spectrum” command for detailed frequency analysis.&lt;/li&gt;&lt;/ul&gt;&lt;h3&gt;Free and Cross-Platform&lt;/h3&gt; &lt;ul&gt;&lt;li&gt;Licensed under the &lt;a href=&quot;http://audacity.sourceforge.net/about/license&quot;&gt;GNU General Public License (GPL)&lt;/a&gt;.&lt;/li&gt;&lt;li&gt;Runs on Mac OS X, Windows, and GNU/Linux.&lt;/li&gt;&lt;/ul&gt;&lt;span style=&quot;font-size:130%;&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Screenshot&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://3.bp.blogspot.com/_wVTpXBpXqrM/SVMb_73STgI/AAAAAAAAABw/jZFAHf_6g4E/s1600-h/audacity-macosx-small.jpg&quot;&gt;&lt;img style=&quot;cursor: pointer; width: 245px; height: 185px;&quot; src=&quot;http://3.bp.blogspot.com/_wVTpXBpXqrM/SVMb_73STgI/AAAAAAAAABw/jZFAHf_6g4E/s320/audacity-macosx-small.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5283597573051010562&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://3.bp.blogspot.com/_wVTpXBpXqrM/SVMb_vXLCeI/AAAAAAAAABo/rXxnbfEmLbw/s1600-h/audacity-windows-small.jpg&quot;&gt;&lt;img style=&quot;cursor: pointer; width: 223px; height: 185px;&quot; src=&quot;http://3.bp.blogspot.com/_wVTpXBpXqrM/SVMb_vXLCeI/AAAAAAAAABo/rXxnbfEmLbw/s320/audacity-windows-small.jpg&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5283597569695091170&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style=&quot;font-style: italic;font-family:verdana;font-size:78%;&quot;  &gt;&lt;br /&gt;source: http://audacity.sourceforge.net/&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://audacity.sourceforge.net/download/&quot;&gt;&lt;span style=&quot;font-weight: bold;font-family:verdana;&quot; &gt;Download Link&lt;/span&gt;&lt;/a&gt;</content><link rel='replies' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/2690333168015505288/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://churchgoopensource.blogspot.com/2008/12/audacity.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/2690333168015505288'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/2690333168015505288'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/2008/12/audacity.html' title='Audacity'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_wVTpXBpXqrM/SVMbsoLXQgI/AAAAAAAAABY/qhGJSU2OCqQ/s72-c/Audacity-logo-r_50pct.jpg" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8271844383356348806.post-7524449045904648542</id><published>2008-12-24T02:24:00.000-08:00</published><updated>2008-12-26T21:49:34.745-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Messenger"/><category scheme="http://www.blogger.com/atom/ns#" term="Open Source"/><category scheme="http://www.blogger.com/atom/ns#" term="Recommended Software"/><title type='text'>Pidgin</title><content type='html'>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://1.bp.blogspot.com/_wVTpXBpXqrM/SVIQl5wl2iI/AAAAAAAAABI/7wirASKYcJI/s1600-h/Pidgin.gif&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 289px; height: 113px;&quot; src=&quot;http://1.bp.blogspot.com/_wVTpXBpXqrM/SVIQl5wl2iI/AAAAAAAAABI/7wirASKYcJI/s320/Pidgin.gif&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5283303556204845602&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;b&gt;Pidgin&lt;/b&gt; (formerly named &lt;b&gt;Gaim&lt;/b&gt;) is a multi-platform &lt;a href=&quot;http://en.wikipedia.org/wiki/Instant_messaging&quot; title=&quot;Instant messaging&quot;&gt;instant messaging&lt;/a&gt; &lt;a href=&quot;http://en.wikipedia.org/wiki/Client_%28computing%29&quot; title=&quot;Client (computing)&quot;&gt;client&lt;/a&gt;. The software has limited support for many commonly used instant messaging &lt;a href=&quot;http://en.wikipedia.org/wiki/Protocol_%28computing%29&quot; title=&quot;Protocol (computing)&quot;&gt;protocols&lt;/a&gt;, allowing the user to log into various different services from one application. &lt;p&gt;The number of Pidgin users was estimated to be over 3 million in 2007. Released under the terms of the &lt;a href=&quot;http://en.wikipedia.org/wiki/GNU_General_Public_License&quot; title=&quot;GNU General Public License&quot;&gt;GNU General Public License&lt;/a&gt;, Pidgin is &lt;a href=&quot;http://en.wikipedia.org/wiki/Free_software&quot; title=&quot;Free software&quot;&gt;free software&lt;/a&gt;.&lt;/p&gt;&lt;p&gt;Pidgin supports multiple &lt;a href=&quot;http://en.wikipedia.org/wiki/Operating_system&quot; title=&quot;Operating system&quot;&gt;operating systems&lt;/a&gt;, including &lt;a href=&quot;http://en.wikipedia.org/wiki/Microsoft_Windows&quot; title=&quot;Microsoft Windows&quot;&gt;Windows&lt;/a&gt; as well as many &lt;a href=&quot;http://en.wikipedia.org/wiki/Unix-like&quot; title=&quot;Unix-like&quot;&gt;Unix-like&lt;/a&gt; systems such as &lt;a href=&quot;http://en.wikipedia.org/wiki/Linux&quot; title=&quot;Linux&quot;&gt;Linux&lt;/a&gt;, &lt;a href=&quot;http://en.wikipedia.org/wiki/Berkeley_Software_Distribution&quot; title=&quot;Berkeley Software Distribution&quot;&gt;BSD&lt;/a&gt;, &lt;a href=&quot;http://en.wikipedia.org/wiki/Mac_OS_X&quot; title=&quot;Mac OS X&quot;&gt;Mac OS X&lt;/a&gt; and &lt;a href=&quot;http://en.wikipedia.org/wiki/AmigaOS&quot; title=&quot;AmigaOS&quot;&gt;AmigaOS&lt;/a&gt; (through the &lt;a href=&quot;http://en.wikipedia.org/wiki/X11&quot; title=&quot;X11&quot; class=&quot;mw-redirect&quot;&gt;X11&lt;/a&gt; engine). It is notable for its support for multiple instant messaging &lt;a href=&quot;http://en.wikipedia.org/wiki/Network_protocol&quot; title=&quot;Network protocol&quot; class=&quot;mw-redirect&quot;&gt;protocols&lt;/a&gt;. It has built-in support for &lt;a href=&quot;http://en.wikipedia.org/wiki/Network_Security_Services&quot; title=&quot;Network Security Services&quot;&gt;NSS&lt;/a&gt;, offering client-to-server message encryption for protocols that support it. The program is extendable through &lt;a href=&quot;http://en.wikipedia.org/wiki/Plugins&quot; title=&quot;Plugins&quot; class=&quot;mw-redirect&quot;&gt;plugins&lt;/a&gt;, including &quot;&lt;a href=&quot;http://en.wikipedia.org/wiki/Off-the-Record_Messaging&quot; title=&quot;Off-the-Record Messaging&quot;&gt;Off-the-Record Messaging&lt;/a&gt;&quot; and Pidgin encryption&lt;sup id=&quot;cite_ref-1&quot; class=&quot;reference&quot;&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Pidgin_%28software%29#cite_note-1&quot; title=&quot;&quot;&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/sup&gt;, providing end-to-end message encryption.&lt;/p&gt; &lt;p&gt;Pidgin features some of the standard tools for an instant messaging client, such as tabbed conversations, a &lt;a href=&quot;http://en.wikipedia.org/wiki/Contact_list&quot; title=&quot;Contact list&quot;&gt;Contact list&lt;/a&gt;, file transfer on supported protocols, and conversation and chat logging.&lt;/p&gt; &lt;p&gt;Tabbed conversations is an optional feature on Pidgin. The IM window consists of the message window, formatting tools, and an edit box.&lt;/p&gt; &lt;p&gt;Contacts (usually known as &quot;Buddies&quot;) are added by the &quot;Buddy List&quot; window or by the IM window. As a client that supports IRC and other chat programs, it can also add different IRC channels and IM Chats. Contacts with multiple protocols can be grouped into one single contact instead of managing multiple protocols and contacts can be given aliases as well or placed into groups.&lt;/p&gt; &lt;p&gt;To reach users as they log on or a status change occurs (such as moving from &quot;Away&quot; to &quot;Available&quot;), Pidgin supports on-action automated scripts called &lt;i&gt;Buddy Pounces&lt;/i&gt; to automatically reach the user in customizable ways.&lt;/p&gt; &lt;p&gt;Pidgin supports some file transfers, with the ability to pause, resume, and cancel transfers and observe multiple transfers in a separate window, lacking more advanced features like folder sharing from Yahoo. However, when used through the MSN protocol, file transfers are slow, as data is routed through MSN servers to the receiver, instead of utilizing a faster peer-to-peer functionality. A &lt;a href=&quot;http://en.wikipedia.org/wiki/Google_Summer_of_Code&quot; title=&quot;Google Summer of Code&quot;&gt;Google Summer of Code&lt;/a&gt; project aimed to add peer-to-peer functionality in 2007. Support for &lt;a href=&quot;http://en.wikipedia.org/wiki/MSNP&quot; title=&quot;MSNP&quot; class=&quot;mw-redirect&quot;&gt;MSNP15&lt;/a&gt; was added in version 2.5.0 but did not include support for peer-to-peer transfers.&lt;/p&gt; &lt;p&gt;Further features include support for themes, &lt;a href=&quot;http://en.wikipedia.org/wiki/Emoticon&quot; title=&quot;Emoticon&quot;&gt;emoticons&lt;/a&gt;, &lt;a href=&quot;http://en.wikipedia.org/wiki/Spell_checker&quot; title=&quot;Spell checker&quot;&gt;spell checking&lt;/a&gt; and notification area integration.&lt;/p&gt; &lt;p&gt;&lt;a name=&quot;Supported_protocols&quot; id=&quot;Supported_protocols&quot;&gt;&lt;/a&gt;&lt;/p&gt; &lt;h3&gt;&lt;span class=&quot;editsection&quot;&gt;&lt;/span&gt; &lt;span class=&quot;mw-headline&quot;&gt;Supported protocols&lt;/span&gt;&lt;/h3&gt; &lt;ul&gt;&lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Bonjour_%28software%29&quot; title=&quot;Bonjour (software)&quot;&gt;Bonjour&lt;/a&gt; (Apple&#39;s implementation of &lt;a href=&quot;http://en.wikipedia.org/wiki/Zeroconf&quot; title=&quot;Zeroconf&quot; class=&quot;mw-redirect&quot;&gt;Zeroconf&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Gadu-Gadu&quot; title=&quot;Gadu-Gadu&quot;&gt;Gadu-Gadu&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Internet_Relay_Chat&quot; title=&quot;Internet Relay Chat&quot;&gt;Internet Relay Chat&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Lotus_Sametime&quot; title=&quot;Lotus Sametime&quot; class=&quot;mw-redirect&quot;&gt;Lotus Sametime&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/MySpaceIM&quot; title=&quot;MySpaceIM&quot;&gt;MySpaceIM&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/.NET_Messenger_Service&quot; title=&quot;.NET Messenger Service&quot;&gt;.NET Messenger Service&lt;/a&gt; (commonly known as &lt;i&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/MSN_Messenger&quot; title=&quot;MSN Messenger&quot; class=&quot;mw-redirect&quot;&gt;MSN Messenger&lt;/a&gt; or &lt;a href=&quot;http://en.wikipedia.org/wiki/Windows_Live_Messenger&quot; title=&quot;Windows Live Messenger&quot;&gt;Windows Live Messenger&lt;/a&gt;&lt;/i&gt;) (no multimedia support)&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Novell_GroupWise&quot; title=&quot;Novell GroupWise&quot;&gt;Novell GroupWise&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/OSCAR_protocol&quot; title=&quot;OSCAR protocol&quot;&gt;OSCAR&lt;/a&gt; (&lt;a href=&quot;http://en.wikipedia.org/wiki/AOL_Instant_Messenger&quot; title=&quot;AOL Instant Messenger&quot;&gt;AIM&lt;/a&gt;/&lt;a href=&quot;http://en.wikipedia.org/wiki/ICQ&quot; title=&quot;ICQ&quot;&gt;ICQ&lt;/a&gt;/&lt;a href=&quot;http://en.wikipedia.org/wiki/.Mac&quot; title=&quot;.Mac&quot; class=&quot;mw-redirect&quot;&gt;.Mac&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/QQ&quot; title=&quot;QQ&quot; class=&quot;mw-redirect&quot;&gt;QQ&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/SIMPLE&quot; title=&quot;SIMPLE&quot;&gt;SIMPLE&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/SILC_%28protocol%29&quot; title=&quot;SILC (protocol)&quot;&gt;SILC&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Extensible_Messaging_and_Presence_Protocol&quot; title=&quot;Extensible Messaging and Presence Protocol&quot;&gt;XMPP&lt;/a&gt; (&lt;a href=&quot;http://en.wikipedia.org/wiki/Jabber&quot; title=&quot;Jabber&quot; class=&quot;mw-redirect&quot;&gt;Jabber&lt;/a&gt;, &lt;a href=&quot;http://en.wikipedia.org/wiki/Google_Talk&quot; title=&quot;Google Talk&quot;&gt;Google Talk&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Yahoo%21_Messenger&quot; title=&quot;Yahoo! Messenger&quot;&gt;Yahoo!&lt;/a&gt; (only basic chat and file transfers)&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;http://en.wikipedia.org/wiki/Zephyr_%28software%29&quot; title=&quot;Zephyr (software)&quot;&gt;Zephyr&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;&lt;a name=&quot;Plugins&quot; id=&quot;Plugins&quot;&gt;&lt;/a&gt;&lt;/p&gt; &lt;span id=&quot;intelliTxt&quot;&gt;&lt;br /&gt;&lt;span style=&quot;font-size:78%;&quot;&gt;source: http://en.wikipedia.org&lt;/span&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href=&quot;http://downloads.sourceforge.net/pidgin/pidgin-2.5.3.exe&quot;&gt;&lt;span style=&quot;font-weight: bold;&quot;&gt;Download Link&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;&lt;/span&gt;</content><link rel='replies' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/7524449045904648542/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://churchgoopensource.blogspot.com/2008/12/pidgin.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/7524449045904648542'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/7524449045904648542'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/2008/12/pidgin.html' title='Pidgin'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_wVTpXBpXqrM/SVIQl5wl2iI/AAAAAAAAABI/7wirASKYcJI/s72-c/Pidgin.gif" height="72" width="72"/><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-8271844383356348806.post-7835552333934632050</id><published>2008-12-24T01:48:00.000-08:00</published><updated>2008-12-26T21:49:34.786-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Open Source"/><category scheme="http://www.blogger.com/atom/ns#" term="Recommended Software"/><category scheme="http://www.blogger.com/atom/ns#" term="Windows"/><title type='text'>CCleaner</title><content type='html'>&lt;a onblur=&quot;try {parent.deselectBloggerImageGracefully();} catch(e) {}&quot; href=&quot;http://1.bp.blogspot.com/_wVTpXBpXqrM/SVIIScC7apI/AAAAAAAAAA4/jKvmLLPyBsw/s1600-h/CCleaner.gif&quot;&gt;&lt;img style=&quot;margin: 0pt 10px 10px 0pt; float: left; cursor: pointer; width: 223px; height: 99px;&quot; src=&quot;http://1.bp.blogspot.com/_wVTpXBpXqrM/SVIIScC7apI/AAAAAAAAAA4/jKvmLLPyBsw/s320/CCleaner.gif&quot; alt=&quot;&quot; id=&quot;BLOGGER_PHOTO_ID_5283294425718155922&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;span style=&quot;font-size:180%;&quot;&gt;PC WORLD Editor&#39;s Review of CCleaner&lt;br /&gt;&lt;/span&gt;&lt;p&gt; Somewhere under the layers of software detritus, your PC is vigorous and eager to work. CCleaner searches through a number of programs and removes useless files. It&#39;s highly configurable, allowing you to select which problems to look for and which items to ignore. &lt;/p&gt;&lt;p&gt;Many cleaners scrub out just your browser cache or your temporary files folder, but CCleaner goes further. It cleans temporary files from common third-party applications as well. The vendor&#39;s list of cleaned programs includes Adobe products (Flash Player, Photoshop, and Reader to name a few), Ad-Aware SE, eMule, Firefox, Google Toolbar, Kazaa, Microsoft Office, Nero, Norton Antivirus, OpenOffice, Real Player, WinAce, Windows Media Player, WinRAR, WinZip, and Google, Windows Live, and Yahoo Toolbars. &lt;/p&gt;&lt;p&gt; CCleaner goes beyond the basic wash and polish with extra mini-tools. A registry scanner removes old and unused entries, including ActiveX Controls, fonts, installers, shared DLLs, fonts, help files, application paths, icons, unused file extensions, and invalid shortcuts. CCleaner also includes an uninstaller and a list of deletable startup entry keys (the latter is something you&#39;ll want to evaluate carefully before removing a mystery key that turns out to be helpful.) &lt;/p&gt; &lt;p&gt;&lt;b&gt;Note: &lt;/b&gt; CCleaner includes an optional Yahoo toolbar that you may choose to install along with the program. Installing this toolbar may trigger alerts from some antispyware programs. CCleaner&#39;s makers assert that CCleaner is spyware-free. This file is donationware. If you donate a certain amount (ten pounds sterling or 20 USD at the time I write this) through the vendor&#39;s site, the vendor pledges to send you links to all new releases before they&#39;re publicly available for download. &lt;/p&gt; &lt;p&gt;&lt;i&gt;--Laura Blackwell&lt;/i&gt;&lt;/p&gt;&lt;p&gt;&lt;a style=&quot;font-weight: bold;&quot; href=&quot;http://www.filehippo.com/download_ccleaner/download/d1565b7fb77b48a3692a199d871845fd/&quot;&gt;Download link&lt;/a&gt;&lt;i&gt;&lt;br /&gt;&lt;/i&gt;&lt;/p&gt;</content><link rel='replies' type='application/atom+xml' href='http://churchgoopensource.blogspot.com/feeds/7835552333934632050/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://churchgoopensource.blogspot.com/2008/12/ccleaner.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/7835552333934632050'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/8271844383356348806/posts/default/7835552333934632050'/><link rel='alternate' type='text/html' href='http://churchgoopensource.blogspot.com/2008/12/ccleaner.html' title='CCleaner'/><author><name>Unknown</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_wVTpXBpXqrM/SVIIScC7apI/AAAAAAAAAA4/jKvmLLPyBsw/s72-c/CCleaner.gif" height="72" width="72"/><thr:total>0</thr:total></entry></feed>