<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Netflow Developments</title>
	<atom:link href="http://blog.netflowdevelopments.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.netflowdevelopments.com</link>
	<description>The latest and greatest happenings in the world of Science, Technology and everything else Geek</description>
	<lastBuildDate>Thu, 04 Mar 2010 08:37:04 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>The State of the Internet</title>
		<link>http://blog.netflowdevelopments.com/2010/03/04/the-state-of-the-internet/</link>
		<comments>http://blog.netflowdevelopments.com/2010/03/04/the-state-of-the-internet/#comments</comments>
		<pubDate>Thu, 04 Mar 2010 08:37:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[facts]]></category>
		<category><![CDATA[jess3 saves]]></category>
		<category><![CDATA[jesse saves]]></category>
		<category><![CDATA[spam]]></category>
		<category><![CDATA[state of the internet]]></category>
		<category><![CDATA[viriii]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://blog.netflowdevelopments.com/?p=422</guid>
		<description><![CDATA[Some interesting little numbers to do with the place some of us live.

]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;">Some interesting little numbers to do with the place some of us live.</p>
<p style="text-align: center;"><p><a href="http://blog.netflowdevelopments.com/2010/03/04/the-state-of-the-internet/"><em>Click here to view the embedded video.</em></a></p></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.netflowdevelopments.com/2010/03/04/the-state-of-the-internet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to mount a USB External NTFS Hard Drive that won&#8217;t mount in Ubuntu</title>
		<link>http://blog.netflowdevelopments.com/2010/02/19/how-to-mount-a-usb-external-ntfs-hard-drive-that-wont-mount-in-ubuntu/</link>
		<comments>http://blog.netflowdevelopments.com/2010/02/19/how-to-mount-a-usb-external-ntfs-hard-drive-that-wont-mount-in-ubuntu/#comments</comments>
		<pubDate>Fri, 19 Feb 2010 07:53:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[can't]]></category>
		<category><![CDATA[external]]></category>
		<category><![CDATA[failed]]></category>
		<category><![CDATA[hard drive]]></category>
		<category><![CDATA[mount]]></category>
		<category><![CDATA[ntfs]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[usb]]></category>

		<guid isPermaLink="false">http://blog.netflowdevelopments.com/?p=419</guid>
		<description><![CDATA[So I was having a problem with my external USB hard drive lately.  The USB connectors on this LG laptop are a bit shady so things get disconnected if you bump them and this would happen with my hard drive.. The problem being that if the Hard drive was disconnected like this and not properlyy [...]]]></description>
			<content:encoded><![CDATA[<p>So I was having a problem with my external USB hard drive lately.  The USB connectors on this LG laptop are a bit shady so things get disconnected if you bump them and this would happen with my hard drive.. The problem being that if the Hard drive was disconnected like this and not properlyy unmounted that it wouldn&#8217;t come back up 50% of the time when I plugged it back in.</p>
<p>It would show up when I run fdisk -l and in dmesg but when I try to mount the drive it would return with the error &#8217;special device does not exist&#8217;.  The only way I could get it back online was to reboot the machine, until now! <img src='http://blog.netflowdevelopments.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I tried installed usbmount and pmount but neither fixed the problem.</p>
<p>After some research I discovered the MAKEDEV command.  So what I tried was to run MAKEDEV from inside of /dev/ and it would give me an error: &#8220;.udevdb or .udev presence implies active udev.  Aborting MAKEDEV invocation.&#8221;</p>
<p>So I went on and looked into /dev/.udev/ and found a /failed/ directory which had a blocked file in there referring to the hard drive that wasn&#8217;t mounting.  For some reason I ran the MAKEDEV [device] command here and VIOLA, it worked.  Apparently it just needs to be run in a directory that doesn&#8217;t have a .udev subdirectory in it</p>
<p>So for me the command was MAKEDEV /dev/sdd and it created sdd1 through sdd10.  Not sure what the other ones are for but I was able to mount sdd1 properly and access my hard drive.  I mean this is a pretty backwards work around but I can access my hard drive without rebooting, so I&#8217;m good to go!</p>
<p>So to sum it up, if you have a device that isn&#8217;t mounting properly but you can see the device with #sudo fdisk -l then:</p>
<ol>
<li> try creating a temporary directory for your new mount points</li>
<li>Then run MAKEDEV [device] inside of that directory.  So if the partition your trying to mount is say /dev/sda1 then you&#8217;ll want to run MAKEDEV /dev/sda and hopefully that gives you access without needing to reboot.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://blog.netflowdevelopments.com/2010/02/19/how-to-mount-a-usb-external-ntfs-hard-drive-that-wont-mount-in-ubuntu/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Switching from Evolution to Thunderbird &#8211; importing the works</title>
		<link>http://blog.netflowdevelopments.com/2010/02/10/switching-from-evolution-to-thunderbird-importing-the-works/</link>
		<comments>http://blog.netflowdevelopments.com/2010/02/10/switching-from-evolution-to-thunderbird-importing-the-works/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 19:59:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[calander]]></category>
		<category><![CDATA[contacts]]></category>
		<category><![CDATA[evolution]]></category>
		<category><![CDATA[export]]></category>
		<category><![CDATA[import]]></category>
		<category><![CDATA[mail]]></category>
		<category><![CDATA[migrate]]></category>
		<category><![CDATA[mozila]]></category>
		<category><![CDATA[switch]]></category>
		<category><![CDATA[thunderbird]]></category>

		<guid isPermaLink="false">http://blog.netflowdevelopments.com/?p=416</guid>
		<description><![CDATA[So today was the last straw with Evolution.  It is just too buggy and too unstable of an email platform for me to use anymore so I began the dreaded migration of 1.1 GB of emails to a different client.  Thanks to the awesome walkthrough below it turned out to be a lot [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" title="thunderbird" src="http://blog.bounceweb.com/wp-content/uploads/2009/02/thunderbird.jpg" alt="" width="400" height="400" />So today was the last straw with Evolution.  It is just too buggy and too unstable of an email platform for me to use anymore so I began the dreaded migration of 1.1 GB of emails to a different client.  Thanks to the awesome walkthrough below it turned out to be a lot less painful than I had imagined.</p>
<p>If you are using Evolution and are getting fed up of the little bugs and instabilities here and there then check out the article below on how to switch to Thunderbird:</p>
<p><a href="http://maketecheasier.com/how-to-migrate-from-evolution-to-thunderbird-in-ubuntu-intrepid/2008/12/04" target="_blank">http://maketecheasier.com/how-to-migrate-from-evolution-to-thunderbird-in-ubuntu-intrepid/2008/12/04</a></p>
<p>A quick highlight :</p>
<h3>Migrate local mail from Evolution</h3>
<p>First, we will migrate the Evolution mails that are stored locally in your hard disk.</p>
<p>Open up two Nautilus windows (if you like, you can open two tabs instead of two windows). Press <em>Ctrl + H</em> to reveal the hidden folders. In one window, navigate to the <em>.mozilla-thunderbird</em> folder. You should see a folder with name similar to <em>i7bqvbzk.default</em>. Click on that folder, followed by <em>Mail</em> and <em>Local Folder</em>s. You should see some files like <em>Inbox</em>, <em>Trash</em>, <em>Unsent Message</em> etc.</p>
<p><img title="thunderbird-folder" src="http://images.maketecheasier.com/2008/12/thunderbird-folder.jpg" alt="thunderbird-folder" width="560" height="259" /></p>
<p>In the second window, navigate to <em>.evolution -&gt; mail -&gt; local</em> folder. Similarly, you will find files such as <em>Inbox</em>, <em>Outbox</em>, <em>Sent</em>, <em>Trash</em> etc.</p>
<p><img title="evolution-folder" src="http://images.maketecheasier.com/2008/12/evolution-folder.jpg" alt="evolution-folder" width="560" height="374" /></p>
<p>Now copy the five files <em>Inbox</em>, <em>Outbox</em>, <em>Drafts</em>, <em>Templates</em>, <em>Sent</em> from the Evolution folder to the Thunderbird folder. If it prompts you whether to replace the existing files, click <em>Replace All</em>.</p>
<p>If you have used any subfolders in your Evolution, you should see a folder with a <em>.sbd</em> extension (such as <em>#evolution.sbd</em>). In your Thunderbird folder, create a similar folder with the same name. Back to your Evolution folder, copy and paste all the files in the subfolder that don’t have a file extension to the Thunderbird subfolder.</p>
<p>That’s it. Restart your Thunderbird. You should see all your Evolution mails imported over.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.netflowdevelopments.com/2010/02/10/switching-from-evolution-to-thunderbird-importing-the-works/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bill Gates on Cnet &#8211; Talks about why he&#8217;s fired up</title>
		<link>http://blog.netflowdevelopments.com/2010/01/24/bill-gates-on-cnet-talks-about-why-hes-fired-up/</link>
		<comments>http://blog.netflowdevelopments.com/2010/01/24/bill-gates-on-cnet-talks-about-why-hes-fired-up/#comments</comments>
		<pubDate>Mon, 25 Jan 2010 06:35:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Inspiring]]></category>
		<category><![CDATA[africa]]></category>
		<category><![CDATA[aids]]></category>
		<category><![CDATA[bill gates]]></category>
		<category><![CDATA[cnet]]></category>
		<category><![CDATA[foundation]]></category>
		<category><![CDATA[interview]]></category>

		<guid isPermaLink="false">http://blog.netflowdevelopments.com/?p=411</guid>
		<description><![CDATA[In a recent video interview Bill Gates did with CNET , he talks about this work with his foundation, what&#8217;s getting him fired up and how to tackle some of these bleak challenges facing the world today.
I find it interesting just to sit and watch this man talk, such an unassuming guy that I&#8217;ve really [...]]]></description>
			<content:encoded><![CDATA[<p>In a recent video interview Bill Gates did with CNET , he talks about this work with his foundation, what&#8217;s getting him fired up and how to tackle some of these bleak challenges facing the world today.</p>
<p>I find it interesting just to sit and watch this man talk, such an unassuming guy that I&#8217;ve really not seen a lot of in close and personal videos.  You have to almost remind yourself that &#8216;oh ya, this is one of the most powerful men in the world&#8217;.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="364" height="280" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="wmode" value="transparent" /><param name="allowFullScreen" value="true" /><param name="FlashVars" value="playerType=embedded&amp;type=id&amp;value=50082652" /><param name="src" value="http://www.cnet.com/av/video/flv/universalPlayer/universalSmall.swf" /><param name="flashvars" value="playerType=embedded&amp;type=id&amp;value=50082652" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="364" height="280" src="http://www.cnet.com/av/video/flv/universalPlayer/universalSmall.swf" flashvars="playerType=embedded&amp;type=id&amp;value=50082652" allowfullscreen="true" wmode="transparent"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.netflowdevelopments.com/2010/01/24/bill-gates-on-cnet-talks-about-why-hes-fired-up/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Open Source Alternatives to Commercial Software</title>
		<link>http://blog.netflowdevelopments.com/2010/01/24/open-source-alternatives-to-commercial-software/</link>
		<comments>http://blog.netflowdevelopments.com/2010/01/24/open-source-alternatives-to-commercial-software/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 14:26:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[free games]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[gnu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[replace]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://blog.netflowdevelopments.com/?p=401</guid>
		<description><![CDATA[I found this article today and wanted to reproduce it and share it around even more as it is such a wicked list.  More and more we are getting to a place where there are so many great alternatives to commercial software that you can almost see the business model starting to collapse.
Enjoy

Graphic Applications
ACDSee 9

Imgv [...]]]></description>
			<content:encoded><![CDATA[<p>I found<a href="http://downloadpedia.org/Open_Source_Alternative_to_Commercial_Software" target="_blank"> this article</a> today and wanted to reproduce it and share it around even more as it is such a wicked list.  More and more we are getting to a place where there are so many great alternatives to commercial software that you can almost see the business model starting to collapse.</p>
<p>Enjoy</p>
<h2></h2>
<h2>Graphic Applications</h2>
<p><strong>ACDSee 9</strong></p>
<p><a title="Image:Imgv.png" href="http://downloadpedia.org/Image:Imgv.png"><img longdesc="/Image:Imgv.png" src="http://downloadpedia.org/images/a/ac/Imgv.png" alt="Image:Imgv.png" width="200" height="210" /></a></p>
<p><a title="http://imgv.sourceforge.net/" rel="nofollow" href="http://imgv.sourceforge.net/">Imgv</a> is a unique and feature rich Image Viewer. It is released as free software with full source code. Imgv is portable and can run on Windows, Linux, BSD, OSX, and other operating systems. Features include a GUI that doesn&#8217;t get in the way of viewing your images, a file browser, slideshows, zooming, rotating, on-the-fly Exif viewing, histograms, fullscreen support, wallpaper setting, the ability to view 4 images on the screen at once, adjustable thumbnail sizes, playlists, view and download images from Web sites, movie playing, file searching/filtering, multiple directory loading, transitional effects, image hiding and more.</p>
<p><a title="http://wxglade.sourceforge.net/extra/cornice.html" rel="nofollow" href="http://wxglade.sourceforge.net/extra/cornice.html">Cornice</a> is a cross-platform image viewer written in Python + wxPython + PIL. It doesn&#8217;t pretend to be complete, fast, or even useful, but I like it and it is the viewer I use on both Linux and Windows. It has been inspired by the famous Windows-only ACDSee.<br />
<strong>Adobe After Effects</strong></p>
<p><a title="http://www.jahshaka.org/" rel="nofollow" href="http://www.jahshaka.org/">Jahshaka</a> is an editing and effects system. It allows to edit with flexibility and speed, create effects in real time, animate with unlimited features, paint and design on moving video, create music with all the tools the pros use, work in any format at any resolution.<br />
<strong>Adobe FrameMaker and QuarkXPress</strong></p>
<p><a title="Image:Scribus.png" href="http://downloadpedia.org/Image:Scribus.png"><img longdesc="/Image:Scribus.png" src="http://downloadpedia.org/images/7/7b/Scribus.png" alt="Image:Scribus.png" width="324" height="89" /></a></p>
<p><a title="http://www.scribus.net/" rel="nofollow" href="http://www.scribus.net/">Scribus</a> is an open-source program that brings award-winning professional page layout to Linux/Unix, MacOS X, OS/2 and Windows desktops with a combination of &#8220;press-ready&#8221; output and new approaches to page layout. Underneath the modern and user friendly interface, Scribus supports professional publishing features, such as CMYK color, separations, ICC color management and versatile PDF creation.<br />
<a title="http://www.koffice.org/kword/" rel="nofollow" href="http://www.koffice.org/kword/">KWord</a> is a frame-based word-processing and desktop publishing application. KWord is capable of creating demanding and professional looking documents. Whether you are a corporate or home user, production artist or student, KWord will prove a valuable and easy to use tool for all your word processing and layout needs. KWord is a wordprocessor based on frames. This can be used to place components in precise locations, as with many professional DTP applications. KWord can also handle huge amounts of texts and allows you to do professional markup with ease.<br />
<strong>Adobe Illustrator and Corel Draw</strong></p>
<p><a title="http://www.xaraxtreme.org/" rel="nofollow" href="http://www.xaraxtreme.org/">Xara Xtreme for Linux</a>is a powerful, general purpose graphics program for Unix platforms including Linux, FreeBSD and (in development) OS-X.</p>
<p><a title="http://www.inkscape.org/" rel="nofollow" href="http://www.inkscape.org/">Inkscape</a> is an Open Source vector graphics editor, with capabilities similar to Illustrator, CorelDraw, or Xara X, using the W3C standard Scalable Vector Graphics (SVG) file format. Inkscape supports many advanced SVG features (markers, clones, alpha blending, etc.) and great care is taken in designing a streamlined interface. It is very easy to edit nodes, perform complex path operations, trace bitmaps and much more.</p>
<p><a title="http://www.nongnu.org/skencil/" rel="nofollow" href="http://www.nongnu.org/skencil/">Skencil</a> is an interactive vector drawing appliction. Known to run on GNU/Linux and other UNIX-compatible systems, it is a flexible and powerful tool for illustrations, diagrams and other purposes. A somewhat unique (for a drawing program) feature of Skencil is that it is implemented almost completely in a very high-level, interpreted language, Python. Python is powerful, object-oriented and yet easy to use.<br />
<strong>Adobe Photoshop and Corel Paint Shop Pro</strong></p>
<p><a title="http://www.getpaint.net/" rel="nofollow" href="http://www.getpaint.net/">Paint.NET</a> is free image and photo editing software for computers that run Windows. It features an intuitive and innovative user interface with support for layers, unlimited undo, special effects, and a wide variety of useful and powerful tools. An active and growing online community provides friendly help, tutorials, and plugins.</p>
<p><a title="http://www.cinepaint.org/" rel="nofollow" href="http://www.cinepaint.org/">CinePaint</a> is a collection of free open source software tools for deep paint manipulation and image processing. CinePaint is used for motion picture frame-by-frame retouching, dirt removal, wire rig removal, render repair, background plates, and 3d model textures. It&#8217;s been used on many feature films, including The Last Samurai where it was used to add flying arrows. It&#8217;s also being used by pro photographers who need greater color fidelity than is available in other tools.</p>
<p><a title="http://www.koffice.org/krita/" rel="nofollow" href="http://www.koffice.org/krita/">Krita</a> is a painting and image editing application for KOffice. Krita is part of KOffice since version 1.4. It contains both ease-of-use and fun features like guided painting (never before has it been so easy to airbrush a straight line!) and high-end features like support for 16 bit images, CMYK, L*a*b and even OpenEXR HDR images. Krita supports many managed colorspaces, like rgb, grayscale, cmyk, lab, ycbcr and lms, in 8 and 16 bits per channel. Some colorspaces even support 32 bits per channel.</p>
<p><a title="http://www.gimp.org/" rel="nofollow" href="http://www.gimp.org/">GIMP</a> is the GNU Image Manipulation Program. It is a freely distributed piece of software for such tasks as photo retouching, image composition and image authoring. It works on many operating systems, in many languages. It has many capabilities. It can be used as a simple paint program, an expert quality photo retouching program, an online batch processing system, a mass production image renderer, an image format converter, etc.</p>
<p><a title="http://www.gimpshop.com/download.shtml" rel="nofollow" href="http://www.gimpshop.com/download.shtml">Gimpshop</a> is a free graphics editor for Mac OS X 10.3/10.4, Linux, Solaris/SPARC and Windows. GIMPShop is a Gimp modification that features menu layouts, dialogs and naming conventions similar to those found in Adobe Photoshop. Photoshop users should feel right at home using Gimpshop. (This is a better alternative to GIMP if you are used to using PhotoShop.)<br />
<strong>Adobe Photoshop Camera Raw</strong></p>
<p><a title="http://ufraw.sourceforge.net/" rel="nofollow" href="http://ufraw.sourceforge.net/">Unidentified Flying Raw</a> (UFRaw) is a utility to read and manipulate raw images from digital cameras. It can be used on its own or as a Gimp plug-in. It reads raw images using Dave Coffin&#8217;s raw conversion utility &#8211; DCRaw. UFRaw supports color management workflow based on Little CMS, allowing the user to apply ICC color profiles. For Nikon users UFRaw has the advantage that it can read the camera&#8217;s tone curves.<br />
<strong>Adobe Premiere, Final Cut Pro and Microsoft Movie Maker</strong></p>
<p><a title="Image:Kino.png" href="http://downloadpedia.org/Image:Kino.png"><img longdesc="/Image:Kino.png" src="http://downloadpedia.org/images/8/8e/Kino.png" alt="Image:Kino.png" width="441" height="69" /></a></p>
<p><a title="http://www.kinodv.org/" rel="nofollow" href="http://www.kinodv.org/">Kino</a> is a non-linear DV editor for GNU/Linux. It features excellent integration with IEEE-1394 for capture, VTR control, and recording back to the camera. It captures video to disk in Raw DV and AVI format, in both type-1 DV and type-2 DV (separate audio stream) encodings. You can load multiple video clips, cut and paste portions of video/audio, and save it to an edit decision list (SMIL XML format). Most edit and navigation commands are mapped to equivalent vi key commands. Kino can export the composite movie in a number of formats: DV over IEEE 1394, Raw DV, DV AVI, still frames, WAV, MP3, Ogg Vorbis, MPEG-1, MPEG-2, and MPEG-4. Still frame import and export uses gdk-pixbuf, which has support for BMG, GIF, JPEG, PNG, PPM, SVG, Targa, TIFF, and XPM. MP3 requires lame. Ogg Vorbis requires oggenc. MPEG-1 and MPEG-2 require mjpegtools or ffmpeg. MPEG-4 requires ffmpeg.<br />
<a title="http://avidemux.sourceforge.net/" rel="nofollow" href="http://avidemux.sourceforge.net/">Avidemux</a> is a free video editor designed for simple cutting, filtering and encoding tasks. It supports many file types, including AVI, DVD compatible MPEG files, MP4 and ASF, using a variety of codecs. Tasks can be automated using projects, job queue and powerful scripting capabilities. Avidemux is available for Linux, BSD, Mac OS X and Microsoft Windows under the GNU GPL license.<br />
<a title="http://www.virtualdub.org/" rel="nofollow" href="http://www.virtualdub.org/">VirtualDub</a> is a video capture/processing utility for 32-bit Windows platforms (95/98/ME/NT4/2000/XP), licensed under the GNU General Public License (GPL). It lacks the editing power of a general-purpose editor such as Adobe Premiere, but is streamlined for fast linear operations over video. It has batch-processing capabilities for processing large numbers of files and can be extended with third-party video filters. VirtualDub is mainly geared toward processing AVI files, although it can read MPEG-1 and also handle sets of BMP images.<br />
<a title="http://www.heroinewarrior.com/cinelerra.php3" rel="nofollow" href="http://www.heroinewarrior.com/cinelerra.php3">Cinelerra</a> is a free and open source software non-linear video editing system for the Linux operating system. (However, it has also been successfully ported to Mac OS X.) It is produced by Heroine Virtual, and is distributed under the GNU General Public License. Cinelerra also includes a video compositing engine, allowing the user to perform common compositing operations such as keying and mattes.</p>
<p><strong>Anime Studio and Toon Boom Studio</strong></p>
<p><a title="http://ktoon.toonka.com/" rel="nofollow" href="http://ktoon.toonka.com/">KToon</a> is a 2D Animation Toolkit designed by animators (Toonka Films ) for animators, focused to the Cartoon Industry. This project is covered by the GPL License using G++, OpenGL and QT as programming resources from KDevelop as the development platform. By now, KToon is only available for Unix systems but we expect to make it works on Windows systems too someday.</p>
<p><a title="http://www.synfig.com/" rel="nofollow" href="http://www.synfig.com/">Synfig</a> is a powerful, industrial-strength vector-based 2D animation software package, designed from the ground-up for producing feature-film quality animation with fewer people and resources.<br />
<strong>Autodesk 3ds Max</strong></p>
<p><a title="Image:Blender.png" href="http://downloadpedia.org/Image:Blender.png"><img longdesc="/Image:Blender.png" src="http://downloadpedia.org/images/3/39/Blender.png" alt="Image:Blender.png" width="200" height="64" /></a></p>
<p><a title="http://www.blender.org/" rel="nofollow" href="http://www.blender.org/">Blender</a> is the free open source 3D content creation suite, available for all major operating systems under the GNU General Public License.<br />
<strong>Autodesk AutoCAD</strong></p>
<p><a title="http://www.ribbonsoft.com/qcad.html" rel="nofollow" href="http://www.ribbonsoft.com/qcad.html">QCad</a> is an application for computer aided drafting in two dimensions (2d). With QCad you can create technical drawings such as plans for buildings, interiors, mechanical parts or schemas and diagrams. QCad works on Windows, Mac OS X and many Linux and Unix Systems. The source code of the QCad community edition is released under the GPL.</p>
<p><a title="http://brlcad.org/" rel="nofollow" href="http://brlcad.org/">BRL-CAD</a> package is a powerful Constructive Solid Geometry (CSG) solid modeling system with over 20 years development and production use by the U.S. military. BRL-CAD includes an interactive geometry editor, parallel ray-tracing support for rendering and geometric analysis, path-tracing for realistic image synthesis, network distributed framebuffer support, image-processing and signal-processing tools. The entire package is distributed in source code form.<br />
<strong>Autodesk Maya</strong></p>
<p><a title="http://www.blender.org/" rel="nofollow" href="http://www.blender.org/">Blender</a> is the free open source 3D content creation suite, available for all major operating systems under the GNU General Public License.<br />
<strong>Corel Trace</strong></p>
<p><a title="http://potrace.sourceforge.net/" rel="nofollow" href="http://potrace.sourceforge.net/">Potrace</a> is a utility for tracing a bitmap, which means, transforming a bitmap into a smooth, scalable image. The input is a bitmap (PBM, PGM, PPM, or BMP format), and the default output is an encapsulated PostScript file (EPS). A typical use is to create EPS files from scanned data, such as company or university logos, handwritten notes, etc. The resulting image is not &#8220;jaggy&#8221; like a bitmap, but smooth. It can then be rendered at any resolution. Potrace can currently produce the following output formats: EPS, PostScript, PDF, SVG (scalable vector graphics), Xfig, Gimppath, and PGM (for easy antialiasing).<br />
<strong>Adobe Flash Professional (formerly Macromedia)</strong></p>
<p><a title="http://www.openlaszlo.org/" rel="nofollow" href="http://www.openlaszlo.org/">OpenLaszlo</a> is an open source platform for creating zero-install web applications with the user interface capabilities of desktop client software. OpenLaszlo programs are written in XML and JavaScript and transparently compiled to Flash and, with OpenLaszlo 4, DHTML. The OpenLaszlo APIs provide animation, layout, data binding, server communication, and declarative UI. An OpenLaszlo application can be as short as a single source file, or factored into multiple files that define reusable classes and libraries.</p>
<p><a title="http://www.openoffice.org/product/impress.html" rel="nofollow" href="http://www.openoffice.org/product/impress.html">IMPRESS</a> is a truly outstanding tool for creating effective multimedia presentations. Your presentations will stand out with 2D and 3D clip art, special effects, animation, and high-impact drawing tools. IMPRESS has a complete range of easy-to-use drawing and diagramming tools to spice up your presentation. Slide show Animation and Effects bring your presentation to life. Fontworks provides stunning 2D and 3D images from text. Create lifelike 3D images with astounding speed and response.<br />
<strong>Macromedia Freehand MX</strong></p>
<p><a title="http://www.inkscape.org/" rel="nofollow" href="http://www.inkscape.org/">Inkscape</a> is an Open Source vector graphics editor, with capabilities similar to Illustrator, CorelDraw, or Xara X, using the W3C standard Scalable Vector Graphics (SVG) file format. Inkscape supports many advanced SVG features (markers, clones, alpha blending, etc.) and great care is taken in designing a streamlined interface. It is very easy to edit nodes, perform complex path operations, trace bitmaps and much more.</p>
<p><a title="http://www.koffice.org/karbon/" rel="nofollow" href="http://www.koffice.org/karbon/">Karbon</a> is a vector-based drawing application for KOffice. It allows artists to create complex drawings without losing image quality when zooming in on, or resizing the drawing. You can use Karbon to add finishing touches to diagrams created using Kivio or charts created using KChart.</p>
<p><a title="http://www.nongnu.org/skencil/" rel="nofollow" href="http://www.nongnu.org/skencil/">Skencil</a> is an interactive vector drawing appliction. Known to run on GNU/Linux and other UNIX-compatible systems, it is a flexible and powerful tool for illustrations, diagrams and other purposes. A somewhat unique (for a drawing program) feature of Skencil is that it is implemented almost completely in a very high-level, interpreted language, Python. Python is powerful, object-oriented and yet easy to use.</p>
<p><a title="http://www.xaraxtreme.org/" rel="nofollow" href="http://www.xaraxtreme.org/">Xara Xtreme for Linux</a>is a powerful, general purpose graphics program for Unix platforms including Linux, FreeBSD and (in development) OS-X.<br />
<strong>Microsoft Publisher</strong></p>
<p><a title="http://www.openoffice.org/product/draw.html" rel="nofollow" href="http://www.openoffice.org/product/draw.html">DRAW</a> &#8211; from a quick sketch to a complex plan, DRAW gives you the tools to communicate with graphics and diagrams. You can manipulate objects, rotate in two or three dimensions; the 3D controller puts spheres, rings, cubes, etc. at your disposal. Arrange objects: group, ungroup, regroup, and edit objects while grouped. Sophisticated rendering let you create photorealistic images with your own texture, lighting effects, transparency, perspective, and so on. Smart connectors make short work of flowcharts, organisation charts, network diagrams, etc. Define your own &#8216;glue points&#8217; for connectors to &#8217;stick&#8217; to.</p>
<p><a title="http://www.scribus.net/" rel="nofollow" href="http://www.scribus.net/">Scribus</a> is an open-source program that brings award-winning professional page layout to Linux/Unix, MacOS X, OS/2 and Windows desktops with a combination of &#8220;press-ready&#8221; output and new approaches to page layout. Underneath the modern and user friendly interface, Scribus supports professional publishing features, such as CMYK color, separations, ICC color management and versatile PDF creation.<br />
<strong>Microsoft Visio</strong></p>
<p><a title="http://argouml.tigris.org/" rel="nofollow" href="http://argouml.tigris.org/">ArgoUML</a> is the leading open source UML modeling tool and includes support for all standard UML 1.4 diagrams. It runs on any Java platform and is available in ten languages. ArgoUML provides constraint modeling support on UML Classes and Features. The Dresden OCL toolkit enables ArgoUML to perform syntax and type checking on those constraints. Diagrams can be saved as GIF, PNG, PostScript, Encapsulated PS, PGML and SVG.</p>
<p><a title="http://live.gnome.org/Dia" rel="nofollow" href="http://live.gnome.org/Dia">Dia</a> can be used to draw many different kinds of diagrams. It currently has special objects to help draw entity relationship diagrams, UML diagrams, flowcharts, network diagrams, and many other diagrams. It is also possible to add support for new shapes by writing simple XML files, using a subset of SVG to draw the shape. It can load and save diagrams to a custom XML format (gzipped by default, to save space), can export diagrams to a number of formats, including EPS, SVG, XFIG, WMF and PNG, and can print diagrams (including ones that span multiple pages).</p>
<p><a title="http://www.openoffice.org/product/draw.html" rel="nofollow" href="http://www.openoffice.org/product/draw.html">DRAW</a> &#8211; from a quick sketch to a complex plan, DRAW gives you the tools to communicate with graphics and diagrams. You can manipulate objects, rotate in two or three dimensions; the 3D controller puts spheres, rings, cubes, etc. at your disposal. Arrange objects: group, ungroup, regroup, and edit objects while grouped. Sophisticated rendering let you create photorealistic images with your own texture, lighting effects, transparency, perspective, and so on. Smart connectors make short work of flowcharts, organisation charts, network diagrams, etc. Define your own &#8216;glue points&#8217; for connectors to &#8217;stick&#8217; to.</p>
<p><a title="http://www.koffice.org/kivio/" rel="nofollow" href="http://www.koffice.org/kivio/">Kivio</a> is an easy to use diagramming and flowcharting application with tight integration to the other KOffice applications. It enables you to create network diagrams, organisation charts, flowcharts and more. Features: scriptable stencils using Python, support for Dia stencils, plugin framework for adding more functionality.</p>
<p><a title="http://staruml.sourceforge.net/en/" rel="nofollow" href="http://staruml.sourceforge.net/en/">StarUML</a> is an open source project to develop fast, flexible, extensible, featureful, and freely-available UML/MDA platform running on Win32 platform. The goal of the StarUML project is to build a software modeling tool and also platform that is a compelling replacement of commercial UML tools such as Rational Rose, Together and so on.<br />
<strong>Pixar RenderMan</strong></p>
<p><a title="http://www.blender.org/" rel="nofollow" href="http://www.blender.org/">Blender</a> is the free open source 3D content creation suite, available for all major operating systems under the GNU General Public License.</p>
<p><a title="http://www.cs.utexas.edu/~okan/Pixie/pixie.htm" rel="nofollow" href="http://www.cs.utexas.edu/%7Eokan/Pixie/pixie.htm">Pixie</a> is an open source RenderMan renderer for generating photorealistic images. You can compile Pixie on Windows (using Visual Studio 2005), Linux and on OSX (using XCode or unix style configure script). Pixie now has a new raytracing engine that automatically tesselates surfaces on the fly to a desired accuracy determined using the ray differentials. This means rays tracing blurry reflections or computing global illumination are faster to trace and sharp reflections and shadows are more accurate. Pixie also contains a memory manager that keeps the memory that is used to keep these tesselations around under control. Similar to texture caching, Pixie will maintain a set of active surfaces and only those surfaces will consume raytracing memory.</p>
<p><a title="http://ayam.sourceforge.net/" rel="nofollow" href="http://ayam.sourceforge.net/">Ayam</a> is a free 3D modeling environment for the RenderMan interface, distributed under the BSD license. This means that neither the author nor any contributors make money out of this software. We need your (yes your!) feedback to keep this project alive. If you use Ayam, please submit your pictures, bug reports, or comments.</p>
<p>The current stable version is 1.14, released 4. Apr 2008.</p>
<p>Ayam currently runs on Unix (Linux, IRIX, FreeBSD tested), Win32 (Win95-Win2000, XP), and Mac OS X (Aqua and X11).</p>
<div></div>
<div><span id="more-401"></span></div>
<p><a name="Internet_.26_Networking"></a></p>
<h2>Internet &amp; Networking</h2>
<p><strong>Check Point VPN-1</strong></p>
<p><a title="http://openvpn.net/" rel="nofollow" href="http://openvpn.net/">OpenVPN</a> is a full-featured SSL VPN solution which can accomodate a wide range of configurations, including remote access, site-to-site VPNs, WiFi security, and enterprise-scale remote access solutions with load balancing, failover, and fine-grained access-controls. OpenVPN implements OSI layer 2 or 3 secure network extension using the industry standard SSL/TLS protocol, supports flexible client authentication methods based on certificates, smart cards, and/or 2-factor authentication, and allows user or group-specific access control policies using firewall rules applied to the VPN virtual interface. OpenVPN is not a web application proxy and does not operate through a web browser.<br />
<strong>Citrix Presentation Server and Microsoft Remote Desktop for Windows</strong></p>
<p><a title="http://sourceforge.net/projects/osxvnc" rel="nofollow" href="http://sourceforge.net/projects/osxvnc">Vine Server</a>(OSXvnc) is a robust, full-featured VNC server for MacOS X. It allows any VNC client to remotely view or control the machine. It is provided by Redstone Software, for use with Vine Viewer and Eggplant for cross-platform testing and automation.<br />
<strong>CommView</strong></p>
<p><a title="http://www.wireshark.org/" rel="nofollow" href="http://www.wireshark.org/">Wireshark</a> is the world&#8217;s foremost network protocol analyzer, and is the standard in many industries. Wireshark&#8217;s powerful features make it the tool of choice for network troubleshooting, protocol development, and education worldwide. Wireshark was written by an international group of networking experts, and is an example of the power of open source. It runs on Windows, Linux, UNIX, and other platforms.<br />
<strong>CuteFTP and WS_FTP Professional</strong></p>
<p><a title="http://cyberduck.ch/" rel="nofollow" href="http://cyberduck.ch/">Cyberduck</a> is an open source FTP and SFTP (SSH Secure File Transfer) browser licenced under the GPL with an easy to use interface, integration with external editors and support for many Mac OS X system technologies such as Spotlight, Bonjour, the Keychain and AppleScript. Protocols: FTP (File Transfer Protocol), FTP/TLS (FTP secured over SSL/TLS) and SFTP (SSH Secure File Transfer).</p>
<p><a title="http://winscp.net/eng/index.php" rel="nofollow" href="http://winscp.net/eng/index.php">WinSCP</a> is an open source free SFTP client and FTP client for Windows. Legacy SCP protocol is also supported. Its main function is safe copying of files between a local and a remote computer.</p>
<p><a title="http://filezilla-project.org/index.php" rel="nofollow" href="http://filezilla-project.org/index.php">FileZilla</a> Client is a fast and reliable cross-platform FTP, FTPS and SFTP client with lots of useful features and an intuitive interface. The features of FileZilla include the following: it&#8217;s easy to use, supports FTP, FTP over SSL/TLS (FTPS) and SSH File Transfer Protocol (SFTP). Runs on Windows, Linux, *BSD, OSX and more. FileZilla is available in many languages.<br />
<strong>FeedDemon</strong></p>
<p><a title="Image:Rssowl.png" href="http://downloadpedia.org/Image:Rssowl.png"><img longdesc="/Image:Rssowl.png" src="http://downloadpedia.org/images/f/fd/Rssowl.png" alt="Image:Rssowl.png" width="300" height="90" /></a></p>
<p><a title="http://www.rssowl.org/" rel="nofollow" href="http://www.rssowl.org/">RSSOwl</a> is an applications that collects data from RSS-compliant sites . RSSOwl lets you gather, organize, update, and store information from any compliant source in a convenient, easy to use interface, save selected information in various formats for offline viewing and sharing, and much more. It&#8217;s easy to configure, available in many many languages and the best of all: It&#8217;s platform-independent.<br />
<a title="http://www.mozilla.com/en-US/thunderbird/" rel="nofollow" href="http://www.mozilla.com/en-US/thunderbird/">Mozilla’s Thunderbird</a> email application 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. 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.</p>
<p><strong>GroundWork Monitor Open Source</strong></p>
<p><a title="http://www.groundworkopensource.com/" rel="nofollow" href="http://www.groundworkopensource.com/">&#8220;GroundWork Monitor&#8221;</a> is an open source systems and network management suite that ensures IT infrastructure uptime by identifying issues before they become real problems. It unifies open source tools including Nagios, Nmap, SNMP TT, PHP, Apache, MySQL and more — through PHP/AJAX-based components and an integrated user interface to deliver the extensible functionality you require.<br />
<strong>HP OpenView Network Node Manager</strong></p>
<p><a title="Image:Pandora.png" href="http://downloadpedia.org/Image:Pandora.png"><img longdesc="/Image:Pandora.png" src="http://downloadpedia.org/images/9/94/Pandora.png" alt="Image:Pandora.png" width="246" height="73" /></a></p>
<p><a title="http://pandora.sourceforge.net/en/index.php" rel="nofollow" href="http://pandora.sourceforge.net/en/index.php">Pandora FMS</a> is a monitoring Open Source software. It watches your systems and applications, and allows you to know the status of any element of those systems. Pandora could detect a network interface down, a defacement in your website, a memory leak in one of your server app, or the movement of any value of the NASDAQ new technology market. If you want, Pandora could send out SMS message when your systems fails.</p>
<p><a title="http://www.opennms.org/index.php/Main_Page" rel="nofollow" href="http://www.opennms.org/index.php/Main_Page">OpenNMS</a> is the world&#8217;s first enterprise grade network management platform developed under the open source model. It consists of a community supported open-source project as well as a commercial services, training, and support organization.</p>
<p><a title="http://www.nedi.ch/doku.php" rel="nofollow" href="http://www.nedi.ch/doku.php">NeDi</a>is an open source network management framework which uses scheduled discovery to examine your network. All data is store in a SQL database and through the web-based user interface your can access maps of your network and query for current status. Syslog messeges and SNMP-traps are also available through this interface. Management of device configuration is also possible.</p>
<p><a title="http://www.nagios.org/" rel="nofollow" href="http://www.nagios.org/">Nagios</a> is an Open Source host, service and network monitoring program. It is designed to inform you of network problems before your clients, end-users or managers do. It has been designed to run under the Linux operating system, but works fine under most *NIX variants as well. The monitoring daemon runs intermittent checks on hosts and services you specify using external &#8220;plugins&#8221; which return status information to Nagios. When problems are encountered, the daemon can send notifications out to administrative contacts in a variety of different ways (email, instant message, SMS, etc.). Current status information, historical logs, and reports can all be accessed via a web browser.<br />
<strong>ICQ, MSN Messenger and Trillian Pro</strong></p>
<p><a title="Image:Adium.png" href="http://downloadpedia.org/Image:Adium.png"><img longdesc="/Image:Adium.png" src="http://downloadpedia.org/images/9/91/Adium.png" alt="Image:Adium.png" width="124" height="139" /></a></p>
<p><a title="http://www.adiumx.com/" rel="nofollow" href="http://www.adiumx.com/">Adium</a> is a free instant messaging application for Mac OS X, released under the GNU GPL and developed by the Adium team. With Adium, you can connect to any number of messaging accounts on any combination of supported messaging services and then chat with other people using those services.</p>
<p><a title="http://www.miranda-im.org/" rel="nofollow" href="http://www.miranda-im.org/">Miranda IM</a> is a multi protocol instant messenger client for Windows. Miranda IM uses very little memory and is extremely fast. It requires no installation and can be fitted on a single floppy disc. Its powerful plugin system makes Miranda IM very flexible. Only the most basic features are built in, but there are currently more than 350 free plugins available for download that allows users to extend the functionality of Miranda IM.</p>
<p><a title="http://www.pidgin.im/" rel="nofollow" href="http://www.pidgin.im/">Pidgin</a> is a multi-protocol Instant Messaging client that allows you to use all of your IM accounts at once. Pidgin can work with: AIM, Bonjour, Gadu-Gadu, Google Talk, Groupwise, ICQ, IRC, MSN, MySpaceIM, QQ, SILC, SIMPLE, Sametime, XMPP, Yahoo!, Zephyr. Pidgin can log in to multiple accounts on multiple IM networks simultaneously. This means that you can be chatting with friends on AIM, talking to a friend on Yahoo Messenger, and sitting in an IRC channel all at the same time.</p>
<p><a title="http://psi-im.org/" rel="nofollow" href="http://psi-im.org/">Psi</a> is the premiere Instant Messaging application designed for Microsoft Windows, Apple Mac OS X and GNU/Linux. Built upon an open protocol named Jabber, Psi is a fast and lightweight messaging client that utilises the best in open source technologies. The goal of the Psi project is to create a powerful, yet easy-to-use Jabber/XMPP client that tries to strictly adhere to the XMPP drafts and Jabber JEPs. This means that in most cases, Psi will not implement a feature unless there is an accepted standard for it in the Jabber community. Doing so ensures that Psi will be compatible, stable, and predictable, both from an end-user and developer standpoint.<br />
<strong>Microsoft Exchange Server</strong></p>
<p><a title="Image:Zimbra.png" href="http://downloadpedia.org/Image:Zimbra.png"><img longdesc="/Image:Zimbra.png" src="http://downloadpedia.org/images/a/aa/Zimbra.png" alt="Image:Zimbra.png" width="220" height="77" /></a></p>
<p><a title="http://www.zimbra.com/" rel="nofollow" href="http://www.zimbra.com/">Zimbra</a> is open source server and client software for messaging and collaboration &#8211; email, group calendaring, contacts, and web document management and authoring. The Zimbra server is available for Linux, Mac OS X, appliances, and virtualization platforms. The Zimbra Web Ajax client runs on Firefox, Safari, and IE, and features easy integration / mash-ups of web portals, business applications, and VoIP using web services.<br />
<strong>Microsoft Internet Explorer</strong></p>
<p><a title="Image:SeaMonkey.png" href="http://downloadpedia.org/index.php?title=Special:Upload&amp;wpDestFile=SeaMonkey.png">Image:SeaMonkey.png</a></p>
<p><a title="http://www.mozilla.org/projects/seamonkey/" rel="nofollow" href="http://www.mozilla.org/projects/seamonkey/">SeaMonkey</a> project is a community effort to deliver production-quality releases of code derived from the application formerly known as &#8220;Mozilla Application Suite&#8221;. It provides Web-browser, advanced e-mail and newsgroup client, IRC chat client, and HTML editing made simple &#8212; all your Internet needs in one application.</p>
<p><a title="http://www.mozilla.com/en-US/firefox/" rel="nofollow" href="http://www.mozilla.com/en-US/firefox/">Firefox</a> is the award-winning Web browser which is is now faster, more secure, and fully customizable to your online life. You can choose from over a thousand useful add-ons that enhance Firefox. It’s easy to personalize Firefox to make it your own.<br />
<strong>Microsoft Internet Information Services</strong></p>
<p><a title="Image:Apache.png" href="http://downloadpedia.org/Image:Apache.png"><img longdesc="/Image:Apache.png" src="http://downloadpedia.org/images/7/72/Apache.png" alt="Image:Apache.png" width="350" height="51" /></a></p>
<p><a title="http://httpd.apache.org/" rel="nofollow" href="http://httpd.apache.org/">Apache HTTP Server</a> is a collaborative software development effort aimed at creating a robust, commercial-grade, featureful, and freely-available source code implementation of an HTTP (Web) server. The project is jointly managed by a group of volunteers located around the world, using the Internet and the Web to communicate, plan, and develop the server and its related documentation. This project is part of the Apache Software Foundation. In addition, hundreds of users have contributed ideas, code, and documentation to the project. This file is intended to briefly describe the history of the Apache HTTP Server and recognize the many contributors.<br />
<strong>Microsoft Outlook</strong></p>
<p><a title="http://www.gnome.org/projects/evolution/" rel="nofollow" href="http://www.gnome.org/projects/evolution/">Evolution</a> provides integrated mail, addressbook and calendaring functionality to users of the GNOME desktop. With Evolution&#8217;s junk filtering, you&#8217;re free to read the email you want and not see much of the email you don&#8217;t. Bayesian-based junk filtering with optional remote rules get rid of all of the emails which bug you most. Evolution includes support for signing and encrypting mail via GPG (GNU Privacy Guard) and S/MIME. Encrypting mail helps you protect your privacy and helps those receiving your mail know its really from you. Evolution 2.0 includes a handy interface to help you manage your GPG keys and S/MIME certificates as well as a place to manage keys and certificates which have been shared to you.</p>
<p><a title="http://www.mozilla.org/projects/seamonkey/" rel="nofollow" href="http://www.mozilla.org/projects/seamonkey/">SeaMonkey</a> project is a community effort to deliver production-quality releases of code derived from the application formerly known as &#8220;Mozilla Application Suite&#8221;. It provides Web-browser, advanced e-mail and newsgroup client, IRC chat client, and HTML editing made simple &#8212; all your Internet needs in one application.</p>
<p><a title="http://www.mozilla.com/en-US/thunderbird/" rel="nofollow" href="http://www.mozilla.com/en-US/thunderbird/">Thunderbird</a><br />
<strong>mIRC</strong></p>
<p><a title="Image:Xchat.png" href="http://downloadpedia.org/Image:Xchat.png"><img longdesc="/Image:Xchat.png" src="http://downloadpedia.org/images/d/dc/Xchat.png" alt="Image:Xchat.png" width="200" height="159" /></a></p>
<p><a title="http://www.xchat.org/" rel="nofollow" href="http://www.xchat.org/">XChat</a> is an IRC chat program for both Linux and Windows. It allows you to join multiple IRC channels (chat rooms) at the same time, talk publicly, private one-on-one conversations etc. Even file transfers are possible. XChat also support DCC &#8211; a method for transferring file between users on IRC. And for the more advanced users plug-ins can be written and implemented to perform different automated tasks. The scripts can act as bots, which look like normal users on a channel &#8211; but a actually a computer program that e.g. keeps an eye out for your friends and forward messages to them if you are offline. Note: XChat for Windows costs money!<br />
<strong>Skype</strong></p>
<p><a title="http://www.openwengo.org/" rel="nofollow" href="http://www.openwengo.org/">WengoPhone</a> is an open source softphone for telephony over the internet also know as ip telephony and voip. It provides free PC-to-PC calls as well as chat and video conferencing. Through Wengo it provides both SMS and call-out features that allows you to call/communicate with any phone at extremly reasonably prices. WengoPhone uses SIP for it&#8217;s voip service.<br />
<strong>Symantec Norton Personal Firewall</strong></p>
<p><a title="http://wipfw.sourceforge.net/" rel="nofollow" href="http://wipfw.sourceforge.net/">WIPFW</a> is a firewall for Windows based on IPFW for FreeBSD unix and it provides virtually the same features, functionality and user interface.<br />
<strong>VanDyke SecureCRT</strong></p>
<p><a title="http://www.chiark.greenend.org.uk/~sgtatham/putty/" rel="nofollow" href="http://www.chiark.greenend.org.uk/%7Esgtatham/putty/">PuTTY</a>is a free implementation of Telnet and SSH for Win32 and Unix platforms, along with an xterm terminal emulator. PuTTY is light-weight and simple. It only provides the features you need.</p>
<p><a title="http://en.poderosa.org/" rel="nofollow" href="http://en.poderosa.org/">Poderosa</a>is an open source tabbed based terminal emulator. Poderosa allows you to work with split windows, so that you can easily run multiple sessions at once. It can be used as a local shell for cygwin. All typical terminal protocols are supported: telnet, SSH1/SSH2 and serial ports. Poderosa also provides a plug-in architecture allowing 3rd party developers to easily contribute new features and functionality.</p>
<div></div>
<p><a name="Multimedia_.26_Audio"></a></p>
<h2>Multimedia &amp; Audio</h2>
<p><strong>Adobe Soundbooth (formerly Adobe Audition)</strong></p>
<p><a title="Image:Audacity.png" href="http://downloadpedia.org/Image:Audacity.png"><img longdesc="/Image:Audacity.png" src="http://downloadpedia.org/images/f/fd/Audacity.png" alt="Image:Audacity.png" width="265" height="113" /></a></p>
<p><a title="http://audacity.sourceforge.net/" rel="nofollow" href="http://audacity.sourceforge.net/">Audacity</a> is free, open source software for recording and editing sounds. It is available for Mac OS X, Microsoft Windows, GNU/Linux, and other operating systems. You can use Audacity to: record live audio, convert tapes and records into digital recordings or CDs, edit Ogg Vorbis, MP3, and WAV sound files, cut, copy, splice, and mix sounds together, change the speed or pitch of a recording, and more</p>
<p><a title="http://www.ardour.org/" rel="nofollow" href="http://www.ardour.org/">Ardour</a> is a digital audio workstation. You can use it to record, edit and mix multi-track audio. You can produce your own CDs, mix video soundtracks, or just experiment with new ideas about music and sound. Ardour capabilities include: multichannel recording, non-destructive editing with unlimited undo/redo, full automation support, a powerful mixer, unlimited tracks/busses/plugins, timecode synchronization, and hardware control from surfaces like the Mackie Control Universal.<br />
<strong>Adobe Encore (formerly Adobe EncoreDVD)</strong></p>
<p><a title="http://dvdstyler.de/" rel="nofollow" href="http://dvdstyler.de/">DVDStyler</a> is a cross-platform DVD authoring application that makes possible for video enthusiasts to create professional-looking DVDs. You can drag and drop MPEG files directly, create NTSC/PAL menus, import image file for background, place text and images anywhere on the menu screen, change font/color, put buttons, change font and colors, copy and paste any menu object you can set chapters for each movie, change post command for each movie.<br />
<strong>Apple iTunes, Microsoft Windows Media Player and Winamp</strong></p>
<p><a title="Image:Amarok.png" href="http://downloadpedia.org/Image:Amarok.png"><img longdesc="/Image:Amarok.png" src="http://downloadpedia.org/images/9/97/Amarok.png" alt="Image:Amarok.png" width="146" height="145" /></a></p>
<p><a title="http://amarok.kde.org/" rel="nofollow" href="http://amarok.kde.org/">Amarok</a> is the music player for Linux and Unix with an intuitive interface. Amarok utilizes your existing album covers and displays them nicely in Context browser. If you do not have a cover, Amarok can download the appropriate one from the internet. It automatically downloads and stores lyrics for your songs, thanks to the advanced and flexible scripting system. Amarok is one of the first applications which featured Wikipedia integration.</p>
<p><a title="http://www.musikcube.com/" rel="nofollow" href="http://www.musikcube.com/">musikCube</a> is an mp3 player for the modern generation. It helps you just listen to what you want to hear, while offering innovative features not seen elsewhere. For the technical user, musikCube is based on an embedded SQL database engine known as sqlite. For the non technical user, that means its fast. Really fast. &#8220;Dynamic playlists&#8221; allow fully automatic, randomized playback of songs based on your observed listening habits. The more you listen, the smarter it gets. It also features browsable, user reorderable playlists. Cube also makes transferring audio between home and work very easy with it&#8217;s unique support for removable storage devices. A &#8220;removable storage device&#8221; is any flash memory, thumb drive, or portable mp3 player that acts as a hard disk when you plug it in.</p>
<p><a title="http://banshee-project.org/Main_Page" rel="nofollow" href="http://banshee-project.org/Main_Page">Banshee</a> allows to import, organize, play, and share your music using its simple, powerful interface. Rip CDs, play and sync your iPod, create playlists, and burn audio and MP3 CDs. Most portable music devices are supported. Banshee also has support for podcasting, smart playlists, music recommendations, and much more.</p>
<p><a title="http://www.songbirdnest.com/" rel="nofollow" href="http://www.songbirdnest.com/">Songbird</a> is a desktop Web player, a digital jukebox and Web browser mash-up. Like Winamp, it supports extensions and skins feathers. Like Firefox®, it is built from Mozilla®, cross-platform and open source.<br />
<strong>CyberLink PowerDVD and InterVideo WinDVD</strong></p>
<p><a title="http://www.videolan.org/vlc/" rel="nofollow" href="http://www.videolan.org/vlc/">VLC media player</a> is a highly portable multimedia player for various audio and video formats (MPEG-1, MPEG-2, MPEG-4, DivX, mp3, ogg, &#8230;) as well as DVDs, VCDs, and various streaming protocols. It can also be used as a server to stream in unicast or multicast in IPv4 or IPv6 on a high-bandwidth network.</p>
<p><a title="http://www.mplayerhq.hu/design7/news.html" rel="nofollow" href="http://www.mplayerhq.hu/design7/news.html">MPlayer</a> is a movie player which runs on many systems (see the documentation). It plays most MPEG/VOB, AVI, Ogg/OGM, VIVO, ASF/WMA/WMV, QT/MOV/MP4, RealMedia, Matroska, NUT, NuppelVideo, FLI, YUV4MPEG, FILM, RoQ, PVA files, supported by many native, XAnim, and Win32 DLL codecs. You can watch VideoCD, SVCD, DVD, 3ivx, DivX 3/4/5 and even WMV movies. Another great feature of MPlayer is the wide range of supported output drivers. It works with X11, Xv, DGA, OpenGL, SVGAlib, fbdev, AAlib, DirectFB, but you can use GGI, SDL (and this way all their drivers), VESA (on every VESA compatible card, even without X11!) and some low level card-specific drivers (for Matrox, 3Dfx and ATI), too! Most of them support software or hardware scaling, so you can enjoy movies in fullscreen. MPlayer supports displaying through some hardware MPEG decoder boards, such as the Siemens DVB, DXR2 and DXR3/Hollywood+.<br />
<strong>Fraps</strong></p>
<p><a title="http://taksi.sourceforge.net/" rel="nofollow" href="http://taksi.sourceforge.net/">Taksi</a> is a utility that allows you to take screenshots and record video clips of your favourite games and other 3D-graphics applications. Taksi aims to provide an open source alternative to that great tool. Taksi can support live video compression with any VFW video codec your system has installed (i.e. XVid, DivX, MS Mpeg4, etc). Supports user-specified key mapping, allowing user to assign almost any key to a particular function (such as video start/stop, screenshot trigger, etc.). Runtime re-mapping of the keys is supported via GUI: user can change keys without having to restart the game.<br />
<strong>Microsoft Windows XP Media Center Edition</strong></p>
<p><a title="Image:MythTV.png" href="http://downloadpedia.org/Image:MythTV.png"><img longdesc="/Image:MythTV.png" src="http://downloadpedia.org/images/7/7f/MythTV.png" alt="Image:MythTV.png" width="178" height="75" /></a></p>
<p><a title="http://www.mythtv.org/" rel="nofollow" href="http://www.mythtv.org/">MythTV</a>is a homebrew PVR project that I&#8217;ve been working on in my spare time. It&#8217;s been under heavy development for almost four years, and is now quite useable and featureful. It has support for multiple tuner cards and multiple simultaneous recordings. It compresses video in software using rtjpeg (from Nuppelvideo) or mpeg4 (from libavcodec). Full support for Hardware MPEG-2 encoder cards (Hauppauge PVR-250 / PVR-350). Preliminary support for DVB cards and the new pcHDTV tuner card.</p>
<p><a title="http://www.team-mediaportal.com/" rel="nofollow" href="http://www.team-mediaportal.com/">MediaPortal</a> is an Open Source application ideal for turning your PC / TV into a very advanced Media Center. MediaPortal allows you to listen to your favorite music &amp; radio, watch and store your videos and DVDs, view, schedule and record live TV as a digital video recorder and much much more. You get MediaPortal as Open Source software. This means you can help in developing MediaPortal or tweak it for your own needs with lots of innovating plugins from our great community.</p>
<p><a title="http://freevo.sourceforge.net/" rel="nofollow" href="http://freevo.sourceforge.net/">Freevo</a> allows you to manage your entire digital media collection &#8211; music, videos, photos etc. via a remote controlled TV interface and through the built in web interface you can also access your media, view your TV guide and schedule recordings from anywhere in the world. The benefit of freevo above other HTPC solutions is that freevo is 100% DRM free, plays video in 99.99% of formats, and most of all puts you in control of the television. As an open-source home theatre PC platform, Freevo employs a number of open-source audio/video tools, MPlayer and/or Xine are used to play audio and video files in most popular formats. Freevo can be used both for a standalone HTPC computer with a TV+remote, as well as on a regular desktop computer or laptop using the monitor and keyboard.<br />
<strong>Nero Recode</strong></p>
<p><a title="http://handbrake.m0k.org/" rel="nofollow" href="http://handbrake.m0k.org/">HandBrake</a> is an open-source, GPL-licensed, multiplatform, multithreaded DVD to MPEG-4 converter, available for MacOS X, Linux and Windows. Supported sources:any DVD-like source: VIDEO_TS folder, DVD image or real DVD (encrypted or unencrypted, but protection methods other than CSS are not supported and must be handled externally with third-party software), and some .VOB and .TS files, PAL or NTSC, AC-3, DTS, LPCM or MPEG audio tracks.<br />
<strong>Steinberg Cubase</strong></p>
<p><a title="Image:Ardour.png" href="http://downloadpedia.org/Image:Ardour.png"><img longdesc="/Image:Ardour.png" src="http://downloadpedia.org/images/d/d7/Ardour.png" alt="Image:Ardour.png" width="358" height="78" /></a></p>
<p><a title="http://www.ardour.org/" rel="nofollow" href="http://www.ardour.org/">Ardour</a> is a digital audio workstation. You can use it to record, edit and mix multi-track audio. You can produce your own CDs, mix video soundtracks, or just experiment with new ideas about music and sound. Ardour capabilities include: multichannel recording, non-destructive editing with unlimited undo/redo, full automation support, a powerful mixer, unlimited tracks/busses/plugins, timecode synchronization, and hardware control from surfaces like the Mackie Control Universal. If you&#8217;ve been looking for a tool similar to ProTools, Nuendo, Pyramix, or Sequoia, you might have found it.</p>
<p><a title="http://www.rosegardenmusic.com/" rel="nofollow" href="http://www.rosegardenmusic.com/">Rosegarden</a> is a professional audio and MIDI sequencer, score editor, and general-purpose music composition and editing environment. Rosegarden is an easy-to-learn, attractive application that runs on Linux, ideal for composers, musicians, music students, and small studio or home recording environments.</p>
<p><a title="http://frinika.sourceforge.net/" rel="nofollow" href="http://frinika.sourceforge.net/">Frinika</a> is an open source (GPL), complete music workstation software for Linux, Windows, Mac OSX Tiger and other operating systems running Java 1.5 (J2SE5.0). It features sequencer, soft-synths, realtime effects and audio recording. Frinika is compact, self-contained and simple &#8211; yet powerful enough to boost your musical creativity. <a title="http://frinika.sourceforge.net/launch/launch.jnlp" rel="nofollow" href="http://frinika.sourceforge.net/launch/launch.jnlp">Launch Frinika now!</a></p>
<div></div>
<p><a name="Security_.26_Privacy"></a></p>
<h2>Security &amp; Privacy</h2>
<p><strong>CommView</strong></p>
<p><a title="Image:Wireshark.png" href="http://downloadpedia.org/Image:Wireshark.png"><img longdesc="/Image:Wireshark.png" src="http://downloadpedia.org/images/d/d2/Wireshark.png" alt="Image:Wireshark.png" width="340" height="104" /></a></p>
<p><a title="http://www.wireshark.org/" rel="nofollow" href="http://www.wireshark.org/">Wireshark</a> is the world&#8217;s foremost network protocol analyzer, and is the standard in many industries.<br />
<strong>Kaspersky Anti-Virus Personal, Symantec Norton AntiVirus</strong></p>
<p><a title="Image:Clamwin.png" href="http://downloadpedia.org/Image:Clamwin.png"><img longdesc="/Image:Clamwin.png" src="http://downloadpedia.org/images/d/d9/Clamwin.png" alt="Image:Clamwin.png" width="331" height="113" /></a></p>
<p><a title="http://www.clamwin.com/" rel="nofollow" href="http://www.clamwin.com/">ClamWin</a> is a Free Antivirus program for Microsoft Windows 98/Me/2000/XP and 2003.ClamWin Free Antivirus comes with an easy installer and open source code. You may download and use it absolutely free of charge. It features: high detection rates for viruses and spyware; scanning Scheduler; automatic downloads of regularly updated Virus Database; standalone virus scanner and right-click menu integration to Microsoft Windows Explorer;</p>
<p><a title="http://www.clamav.net/" rel="nofollow" href="http://www.clamav.net/">Clam AntiVirus</a> is an open source (GPL) anti-virus toolkit for UNIX, designed especially for e-mail scanning on mail gateways. It provides a number of utilities including a flexible and scalable multi-threaded daemon, a command line scanner and advanced tool for automatic database updates. The core of the package is an anti-virus engine available in a form of shared library.</p>
<p><a title="http://winpooch.free.fr/page/home.php?lang=en&amp;page=home" rel="nofollow" href="http://winpooch.free.fr/page/home.php?lang=en&amp;page=home">Winpooch</a> is a Windows watchdog, free and open source. Anti spyware and anti trojan, it gives a full protection against local or external attacks by scanning the activity of programs in real time. Associated with ClamWin antivirus, Winpooch keeps safe your computer against virus. Winpooch uses the API Hooking method. It spies programs when they are running and gives to the user a powerful control of their activity.For example, you can forbide a program to write in a system directory or in the registry, or else to connect to internet. That makes the difference between others anti spywares using a database of known signatures.<br />
<strong>Lavasoft Ad-Aware SE</strong></p>
<p><a title="http://winpooch.free.fr/page/home.php?lang=en&amp;page=home" rel="nofollow" href="http://winpooch.free.fr/page/home.php?lang=en&amp;page=home">Winpooch</a> is a Windows watchdog, free and open source. Anti spyware and anti trojan, it gives a full protection against local or external attacks by scanning the activity of programs in real time.</p>
<p><a title="http://www.safer-networking.org/" rel="nofollow" href="http://www.safer-networking.org/">Spybot Search &amp; Destroy</a> is great for removing spyware and other malware.</p>
<p><a title="http://www.microsoft.com/athome/security/spyware/software/default.mspx" rel="nofollow" href="http://www.microsoft.com/athome/security/spyware/software/default.mspx">Windows Defender</a> is the Microsoft free anti-spyware program which when used in conjunction with another spyware scanning software can improve spyware removal chances.</p>
<p><strong>PGP Desktop</strong></p>
<p><a title="Image:Gnupg.png" href="http://downloadpedia.org/Image:Gnupg.png"><img longdesc="/Image:Gnupg.png" src="http://downloadpedia.org/images/7/7e/Gnupg.png" alt="Image:Gnupg.png" width="250" height="93" /></a></p>
<p><a title="http://www.gnupg.org/" rel="nofollow" href="http://www.gnupg.org/">GnuPG</a> is the GNU project&#8217;s complete and free implementation of the OpenPGP standard as defined by RFC2440 . GnuPG allows to encrypt and sign your data and communication, features a versatile key managment system as well as access modules for all kind of public key directories. GnuPG, also known as GPG, is a command line tool with features for easy integration with other applications. A wealth of frontend applications and libraries are available. Version 2 of GnuPG also provides support for S/MIME.</p>
<p><strong>Email Cryption (Thunderbird)</strong></p>
<p><a title="https://addons.mozilla.org/en-US/thunderbird/addon/71" rel="nofollow" href="https://addons.mozilla.org/en-US/thunderbird/addon/71">Enigmail</a> is an add-on you can utilize for encrypting email once you&#8217;ve installed PGP.</p>
<p><strong>PGP Whole Disk Encryption</strong></p>
<p><a title="http://www.truecrypt.org/" rel="nofollow" href="http://www.truecrypt.org/">TrueCrypt</a> is free open-source disk encryption software for Windows Vista/XP/2000 and Linux. Main Features: creates a virtual encrypted disk within a file and mounts it as a real disk, encrypts an entire hard disk partition or a storage device such as USB flash drive. Encryption is automatic, real-time (on-the-fly) and transparent.</p>
<p><a title="http://www.freeotfe.org/" rel="nofollow" href="http://www.freeotfe.org/">FreeOTFE</a> is a free, open source, &#8220;on-the-fly&#8221; transparent disk encryption program for PCs and PDAs. Using this software, you can create one or more &#8220;virtual disks&#8221; on your PC/PDA. These disks operate exactly like a normal disk, with the exception that anything written to one of them is transparently, and securely, encrypted before being stored on your computer&#8217;s hard drive.<br />
<strong>Sunbelt iHateSpam</strong></p>
<p><a title="http://www.mozilla.com/en-US/thunderbird/" rel="nofollow" href="http://www.mozilla.com/en-US/thunderbird/">Mozilla’s Thunderbird</a> email application features many new enhancements to help you better manage your unruly inbox, and stay informed.</p>
<p><a title="http://assp.sourceforge.net/" rel="nofollow" href="http://assp.sourceforge.net/">The Anti-Spam SMTP Proxy</a> (ASSP) Server project aims to create an open source platform-independent SMTP Proxy server which implements whitelists, Bayesian, and basic anti-virus filtering to rid the planet of the blight of unsolicited email (UCE).</p>
<h2>System Utilities</h2>
<p><strong>Acronis Partition Expert</strong></p>
<p><a title="http://gparted.sourceforge.net/" rel="nofollow" href="http://gparted.sourceforge.net/">GParted</a> is the Gnome Partition Editor application. Before attempting to use it, here is some basic background information. A hard disk is usually subdivided into one or more partitions. These partitions are normally not re-sizable (making one larger and the adjacent one smaller) The purpose of GParted is to allow the individual to take a hard disk and change the partition organization therein, while preserving the partition contents. GParted is an industrial-strength package for creating, destroying, resizing, moving, checking and copying partitions, and the filesystems on them. This is useful for creating space for new operating systems, reorganizing disk usage, copying data residing on hard disks and mirroring one partition with another (disk imaging).<br />
<strong>Adobe Acrobat Reader</strong></p>
<p><a title="Image:Xpdf.png" href="http://downloadpedia.org/Image:Xpdf.png"><img longdesc="/Image:Xpdf.png" src="http://downloadpedia.org/images/2/27/Xpdf.png" alt="Image:Xpdf.png" width="216" height="152" /></a></p>
<p><a title="http://www.foolabs.com/xpdf/" rel="nofollow" href="http://www.foolabs.com/xpdf/">Xpdf</a> is an open source viewer for Portable Document Format (PDF) files. (These are also sometimes also called &#8216;Acrobat&#8217; files, from the name of Adobe&#8217;s PDF software.) The Xpdf project also includes a PDF text extractor, PDF-to-PostScript converter, and various other utilities. Xpdf runs under the X Window System on UNIX, VMS, and OS/2. The non-X components (pdftops, pdftotext, etc.) also run on Win32 systems and should run on pretty much any system with a decent C++ compiler. Xpdf is designed to be small and efficient. It can use Type 1, TrueType, or standard X fonts. Xpdf should work on pretty much any system which runs X11 and has Unix-like (POSIX) libraries.</p>
<p><a title="http://www.foxitsoftware.com/pdf/rd_intro.php" rel="nofollow" href="http://www.foxitsoftware.com/pdf/rd_intro.php">Foxit Reader</a> Foxit Reader is a free PDF document viewer and printer, with incredible small size (only 2.1 M download size), breezing-fast launch speed and amazingly rich feature set. Foxit Reader supports Windows 98/Me/2000/XP/2003/Vista. Its core function is compatible with PDF Standard 1.7.</p>
<p><a title="http://blog.kowalczyk.info/software/sumatrapdf/" rel="nofollow" href="http://blog.kowalczyk.info/software/sumatrapdf/">Sumatra PDF</a> is a slim, free, open-source PDF viewer for Windows. Sumatra has a minimalistic design. Simplicity has a higher priority than a lot of features. It&#8217;s small and starts up very fast. It&#8217;s designed for portable use: it&#8217;s just one file with no external dependencies so you can easily run it from external USB drive.</p>
<p><a title="http://pages.cs.wisc.edu/~ghost/" rel="nofollow" href="http://pages.cs.wisc.edu/%7Eghost/">Ghostscript</a> is an interpreter for the PostScript language and for PDF, and related software and documentation.<br />
<strong>Camtasia Studio and Macromedia Captivate</strong></p>
<p><a title="http://xvidcap.sourceforge.net/" rel="nofollow" href="http://xvidcap.sourceforge.net/">xvidcap</a> is a small tool to capture things going on on an X-Windows display to either individual frames or an MPEG video. On Windows machines there are commercial tools like Lotus ScreenCam or Camtasia which do a very good job esp. for the purpose I was needing such a tool for: Software documentation, esp. installation procedures and such.</p>
<p><a title="http://camstudio.org/" rel="nofollow" href="http://camstudio.org/">CamStudio</a> is able to record all screen and audio activity on your computer and create industry-standard AVI video files and using its built-in SWF Producer can turn those AVIs into lean, mean, bandwidth-friendly Streaming Flash videos (SWFs)<br />
<strong>Google Desktop Search</strong></p>
<p><a title="http://docfetcher.sourceforge.net/" rel="nofollow" href="http://docfetcher.sourceforge.net/">DocFetcher</a> is a desktop search application: It allows you to quickly access documents on your computer by typing keywords. &#8211; You can think of it as Google for your local document repository. The application is currently available for Windows and GTK-based Linux distributions.<br />
<strong>Hummingbird Exceed</strong></p>
<p><a title="Image:Xming.png" href="http://downloadpedia.org/Image:Xming.png"><img longdesc="/Image:Xming.png" src="http://downloadpedia.org/images/0/0c/Xming.png" alt="Image:Xming.png" width="155" height="61" /></a></p>
<p><a title="http://www.straightrunning.com/XmingNotes/" rel="nofollow" href="http://www.straightrunning.com/XmingNotes/">Xming</a> is the leading free unlimited X Window server for Microsoft Windows (XP/2003/Vista). Xming is fully featured, light and fast, simple to install and because it is standalone native Microsoft Windows, easily transported portable as a Pocket PC X server. It is totally secure when used with SSH and optionally includes an enhanced PuTTY Link SSH client and a portable PuTTY replacement package.<br />
<strong>Macrovision InstallShield</strong></p>
<p><a title="http://www.jrsoftware.org/isinfo.php" rel="nofollow" href="http://www.jrsoftware.org/isinfo.php">Inno Setup</a> is a free installer for Windows programs. First introduced in 1997, Inno Setup today rivals and even surpasses many commercial installers in feature set and stability. It supports all versions of Windows in use today: Vista, XP, 2003, 2000, Me, 98, 95, and NT 4.0. (No service packs are required.)</p>
<p><a title="http://www.installjammer.com/" rel="nofollow" href="http://www.installjammer.com/">InstallJammer</a> is a multiplatform GUI installer designed to be completely cross-platform and function on Windows and most all versions of UNIX with eventual support for Mac OS X. It features a very powerful install builder with support for multiple themes and a high level of configurability for installers. Installers are built as single executable files for easy distribution over the web and handle installing everything you need for your application in a simple, cross-platform way.</p>
<p><a title="http://launch4j.sourceforge.net/" rel="nofollow" href="http://launch4j.sourceforge.net/">Launch4j</a> is a cross-platform tool for wrapping Java applications distributed as jars in lightweight Windows native executables. The executable can be configured to search for a certain JRE version or use a bundled one, and it&#8217;s possible to set runtime options, like the initial/max heap size. The wrapper also provides better user experience through an application icon, a native pre-JRE splash screen, a custom process name, and a Java download page in case the appropriate JRE cannot be found.</p>
<p><a title="http://nsis.sourceforge.net/Main_Page" rel="nofollow" href="http://nsis.sourceforge.net/Main_Page">NSIS</a> (Nullsoft Scriptable Install System) is a professional open source system to create Windows installers. It is designed to be as small and flexible as possible and is therefore very suitable for internet distribution. NSIS is script-based and allows you to create the logic to handle even the most complex installation tasks. Many plug-ins and scripts are already available: you can create web installers, communicate with Windows and other software components, install or update shared components and more.<br />
<strong>Nero Burning Rom and Roxio RecordNow</strong></p>
<p><a title="http://www.k3b.org/" rel="nofollow" href="http://www.k3b.org/">K3b</a> is the CD/DVD creator for Linux &#8211; optimized for KDE &#8211; licensed under the GPL.</p>
<p><a title="http://infrarecorder.sourceforge.net/" rel="nofollow" href="http://infrarecorder.sourceforge.net/">InfraRecorder</a> is a free CD/DVD burning solution for Microsoft Windows. It offers a wide range of powerful features; all through an easy to use application interface and Windows Explorer integration.</p>
<p><a title="http://burn-osx.sourceforge.net/" rel="nofollow" href="http://burn-osx.sourceforge.net/">Burn</a> is a burning application for Mac OS X</p>
<p><a title="http://cdrdao.sourceforge.net/" rel="nofollow" href="http://cdrdao.sourceforge.net/">Cdrdao</a> records audio or data CD-Rs in disk-at-once (DAO) mode based on a textual description of the CD contents.<br />
<strong>StarNet X-Win32 version</strong></p>
<p><a title="http://www.straightrunning.com/XmingNotes/" rel="nofollow" href="http://www.straightrunning.com/XmingNotes/">Xming</a> is the leading free unlimited X Window server for Microsoft Windows (XP/2003/Vista).<br />
<strong>Symantec Norton Ghost</strong></p>
<p><a title="http://www.partimage.org/Main_Page" rel="nofollow" href="http://www.partimage.org/Main_Page">Partimage</a> is a Linux utility which saves partitions having a supported filesystem to an image file. Most Linux and Windows filesystems are supported. The image file can be compressed with the gzip / bzip2 programs to save disk space, and they can be splitted into multiple files to be copied on CDs / DVDs. Partitions can also be saved across the network since version 0.6.0 using the partimage network support, or using Samba / NFS. If you don&#8217;t want to install Partimage, you can download and burn SystemRescueCd. It&#8217;s a livecd that allows to use Partimage immediately even if your computer has no operating system installed (useful to restore an image), and it allows to save an image on a DVD on the fly.</p>
<p><a title="http://www.feyrer.de/g4u/" rel="nofollow" href="http://www.feyrer.de/g4u/">g4u</a> (&#8220;ghosting for unix&#8221;) is a NetBSD-based bootfloppy/CD-ROM that allows easy cloning of PC harddisks to deploy a common setup on a number of PCs using FTP. The floppy/CD offers two functions. The first is to upload the compressed image of a local harddisk to a FTP server, the other is to restore that image via FTP, uncompress it and write it back to disk. Network configuration is fetched via DHCP. As the harddisk is processed as an image, any filesystem and operating system can be deployed using g4u. Easy cloning of local disks as well as partitions is also supported.<br />
<strong>Symantec Veritas NetBackup</strong></p>
<p><a title="Image:Bacula.png" href="http://downloadpedia.org/Image:Bacula.png"><img longdesc="/Image:Bacula.png" src="http://downloadpedia.org/images/e/e9/Bacula.png" alt="Image:Bacula.png" width="400" height="57" /></a></p>
<p><a title="http://www.bacula.org/" rel="nofollow" href="http://www.bacula.org/">Bacula</a> is a set of computer programs that permit you (or the system administrator) to manage backup, recovery, and verification of computer data across a network of computers of different kinds. Bacula is relatively easy to use and efficient, while offering many advanced storage management features that make it easy to find and recover lost or damaged files.</p>
<p><a title="http://www.amanda.org/" rel="nofollow" href="http://www.amanda.org/">AMANDA</a>, the Advanced Maryland Automatic Network Disk Archiver, is a backup system that allows the administrator to set up a single master backup server to back up multiple hosts over network to tape drives/changers or disks or optical media. Amanda uses native dump and/or GNU tar facilities and can back up a large number of workstations running multiple versions of Unix. Amanda uses Samba or Cygwin to back up Microsoft Windows desktops and servers.</p>
<p><a title="http://storageim.olocity.com/" rel="nofollow" href="http://storageim.olocity.com/">StorageIM</a> is an open source monitoring and reporting tool for storage systems and storage networks built around the CIM/SMI-S industry standards and is designed for use as a development aid within the IT vendor community. StorageIM is the first storage configuration and resource monitoring tool in the industry to be built with these rapidly emerging standards as its core. As a result StorageIM supports HBAs, Arrays, Switches, and Tape Libraries across vendor’s products with a high degree of interoperability and reliability. StorageIM uses the highly scalable xIM architecture as its core and thus, can be rapidly expanded with new capabilities.<br />
<strong>UltraEdit-32</strong></p>
<p><a title="http://notepad-plus.sourceforge.net/uk/site.htm" rel="nofollow" href="http://notepad-plus.sourceforge.net/uk/site.htm">Notepad++</a> is a free source code editor (and Notepad replacement), which supports several programming languages, running under the MS Windows environment. This project, based on the Scintilla edit component (a very powerful editor component), written in C++ with pure win32 api and STL (that ensures the higher execution speed and smaller size of the program), is under the GPL Licence.</p>
<p><a title="http://www.scintilla.org/SciTE.html" rel="nofollow" href="http://www.scintilla.org/SciTE.html">SciTE</a>is a SCIntilla based Text Editor. Originally built to demonstrate Scintilla, it has grown to be a generally useful editor with facilities for building and running programs. It is best used for jobs with simple configurations &#8211; I use it for building test and demonstration programs as well as SciTE and Scintilla, themselves. SciTE is currently available for Intel Win32 and Linux compatible operating systems with GTK+. It has been run on Windows 95, NT 4.0, Windows 2000, and on Red Hat Linux 8 and 9 with GTK+ 1.2 and 2.0.</p>
<p><a title="http://www.jedit.org/" rel="nofollow" href="http://www.jedit.org/">jEdit</a> is a text editor with hundreds (counting the time developing plugins) of person-years of development behind it. To download, install, and set up jEdit as quickly and painlessly as possible, go to the Quick Start page. While jEdit beats many expensive development tools for features and ease of use, it is released as free software with full source code, provided under the terms of the GPL 2.0.<br />
<strong>VMware Server ESX</strong></p>
<p><a title="Image:Virtualbox.png" href="http://downloadpedia.org/Image:Virtualbox.png"><img longdesc="/Image:Virtualbox.png" src="http://downloadpedia.org/images/5/51/Virtualbox.png" alt="Image:Virtualbox.png" width="153" height="156" /></a></p>
<p><a title="http://www.virtualbox.org/" rel="nofollow" href="http://www.virtualbox.org/">VirtualBox</a> is a family of powerful x86 virtualization products for enterprise as well as home use. Not only is VirtualBox an extremely feature rich, high performance product for enterprise customers, it is also the only professional solution that is freely available as Open Source Software under the terms of the GNU General Public License (GPL). VirtualBox runs on Windows, Linux and Macintosh hosts and supports a large number of guest operating systems including but not limited to Windows (NT 4.0, 2000, XP, Server 2003, Vista), DOS/Windows 3.x, Linux (2.4 and 2.6), and OpenBSD.</p>
<p><a title="http://www.colinux.org/" rel="nofollow" href="http://www.colinux.org/">Cooperative Linux</a> is the first working free and open source method for optimally running Linux on Microsoft Windows natively. More generally, Cooperative Linux (short-named coLinux) is a port of the Linux kernel that allows it to run cooperatively alongside another operating system on a single machine. For instance, it allows one to freely run Linux on Windows 2000/XP, without using a commercial PC virtualization software such as VMware, in a way which is much more optimal than using any general purpose PC virtualization software.</p>
<p><a title="http://openvz.org/" rel="nofollow" href="http://openvz.org/">OpenVZ</a> is an Operating System-level server virtualization solution, built on Linux. OpenVZ creates isolated, secure virtual environments — VEs (otherwise known as virtual private servers, or VPSs) on a single physical server enabling better server utilization and ensuring that applications do not conflict. Each VE performs and executes exactly like a stand-alone server; VEs can be rebooted independently and have root access, users, IP addresses, memory, processes, files, applications, system libraries and configuration files.<br />
<strong>WinRAR and WinZip</strong></p>
<p><a title="http://www.7-zip.org/" rel="nofollow" href="http://www.7-zip.org/">7-Zip</a> is open source software. Most of the source code is under the GNU LGPL license. The AES code is under a BSD LICENSE. The unRAR code is under a mixed license: GNU LGPL + unRAR restrictions.</p>
<h2>Business Applications</h2>
<p><strong>SAP, Sage, Microsoft Dynamics, Infor, Netsuite, Lawson, Epicor</strong></p>
<p><a title="http://www.compiere.com" rel="nofollow" href="http://www.compiere.com/">Compiere</a> is the leading provider of open source and cloud-based ERP solutions to enterprises of all sizes around the globe. It delivers a rich set of integrated business functionality on a global-ready platform. Manage any number of organizations, warehouses, languages, currencies, and accounting rules. The scalable and adaptable Compiere platform handles the high volumes and business complexity required by demanding businesses of all sizes. With a highly interactive, web-based user experience, our software provides secure access from any web browser. Integration with other applications is easy using Compiere&#8217;s service oriented architecture (SOA) and web services. Compiere&#8217;s revolutionary design enables applications to be easily customized and extended without programming &#8211; a first in the ERP industry. Applications are defined as objects in an Active Data Dictionary rather than programmed as 3GL code. Your IT staff will easily embrace the techniques required to extend Compiere. Our software&#8217;s innovative design reduces the cost and effort associated with upgrading business applications; letting you automatically deploy the latest Compiere software versions while preserving all your business-specific extensions. <a title="http://www.compiere.com/products/free-erp-trials-downloads/index.php" rel="nofollow" href="http://www.compiere.com/products/free-erp-trials-downloads/index.php">Try Compiere ERP Today</a>.<br />
<strong>Salesforce.com and Siebel SFA</strong></p>
<p><a title="http://www.sugarcrm.com" rel="nofollow" href="http://www.sugarcrm.com/">SugarCRM</a> is an open source CRM software targeted for small to medium size business. Sugar Community Edition 5 adopted the GNU General Public License (GPL) version 3. The software is available in three separate editions: enterprise, professional and community. It is designed around Sales Force Automation and allows creating marketing campaigns, maintaining accounts, contacts and leads and processing of incoming emails and web forms. Download it with the wizard or directly: <a title="http://www.sugarcrm.com/crm/download/sugar-suite.html" rel="nofollow" href="http://www.sugarcrm.com/crm/download/sugar-suite.html">Download Sugar OSS</a>.<br />
<strong>Remedy, Vantive and Sage</strong></p>
<p><a title="http://www.queplix.com" rel="nofollow" href="http://www.queplix.com/">Queplix</a> is an enterprise grade open source Customer Care software targeted for small to large enterprise. Queplix QueWeb is built in Java 2 Enterprise Edition and is based on the Google engine (GWT: <a title="http://googlewebtoolkit.blogspot.com/2007/04/updates-from-gwt-land.html" rel="nofollow" href="http://googlewebtoolkit.blogspot.com/2007/04/updates-from-gwt-land.html">Google Web Toolkit</a>). GWT allows a clear separation between application core, its business and presentation layers which utilize variety of Google widgets. Because Queplix QueWeb 3.1 uses AJAX and WEB 2.0 technology it presents feature-rich and intuitive interface with powerful searches, intuitive navigation and tons of Customer Care features. Queplix software integrates with most back office software as well as <a title="http://www.igoogle.com" rel="nofollow" href="http://www.igoogle.com/">Google Portal</a>. You can download Queplix Open source edition from <a title="http://code.google.com/p/queplix" rel="nofollow" href="http://code.google.com/p/queplix">Google Code site</a>. Enterprise edition also offers a migration tool for automated conversion of most legacy CRM software to open source QueWeb. Queplix QueWeb OSS is based on <a title="http://www.queplix.com/solutions/commercial-open-source/queplix-public-license/" rel="nofollow" href="http://www.queplix.com/solutions/commercial-open-source/queplix-public-license/">QPL</a> (Mozilla Open Source License).<br />
<strong>PeopleSoft HCM</strong></p>
<p><a title="Image:OrangeHRMLogo.jpg" href="http://downloadpedia.org/Image:OrangeHRMLogo.jpg"><img longdesc="/Image:OrangeHRMLogo.jpg" src="http://downloadpedia.org/images/b/b2/OrangeHRMLogo.jpg" alt="Image:OrangeHRMLogo.jpg" width="269" height="58" /></a></p>
<p><a title="http://www.orangehrm.com" rel="nofollow" href="http://www.orangehrm.com/">OrangeHRM</a> is an open source Human Resource Management software targeted for small to medium size business. The software covers employee information management, employee self service, leave, time &amp; attendance, benefits, and recruitment. OrangeHRM is developed on SourceForge, and is under the GNU General Public License.<br />
<strong>Microsoft Sharepoint</strong></p>
<p><a title="http://www.opengoo.org" rel="nofollow" href="http://www.opengoo.org/">OpenGoo</a> is an open source web-based solution focused on improving productivity, collaboration, communication and team management. One of the main objectives of the project is to focus on usability and user-friendliness. The software covers task management and sharing of all kinds of information such as documents, contacts, e-mail and calendars. Users can manage project progress, track time, and bill customers. OpenGoo is developed and serviced by <a title="http://www.fengoffice.com" rel="nofollow" href="http://www.fengoffice.com/">Feng Office</a> using SourceForge as its main repository. OpenGoo&#8217;s license is GPL-compatible.</p>
<p><a name="Recreational_Applications"></a></p>
<h2>Recreational Applications</h2>
<p><strong>Civilization</strong></p>
<p><a title="http://freeciv.wikia.com/wiki/More_distributions" rel="nofollow" href="http://freeciv.wikia.com/wiki/More_distributions">FreeCiv</a> is a Free and Open Source empire-building strategy game inspired by the history of human civilization. The game commences in prehistory and your mission is to lead your tribe from the stone age to the space age&#8230; Windows/Mac/Linux</p>
<p><strong>Dance Dance Revolution</strong></p>
<p><a title="http://www.stepmania.com/" rel="nofollow" href="http://www.stepmania.com/">StepMania</a> is a free dance and rhythm game for Windows, Mac, and Linux. It features 3D graphics, keyboard and &#8220;dance pad&#8221; support, and an editor for creating your own steps.<br />
<strong>Doom</strong></p>
<p><a title="http://alientrap.org/nexuiz/" rel="nofollow" href="http://alientrap.org/nexuiz/">Nexuiz</a> is a free open-source first person shooter that runs on Windows, Linux and OSX. Nexuiz is a 3d deathmatch game that has been in development since the summer of 2002. The goal of the project is to create a high quality first person shooter that can be played freely across all platforms in one package: PC, Mac, and can be even included in Linux distributions. The game is entirely open source, with the sources of the engine, gamecode, map files, and compiling tools, all included with the download, all under the GPL license. The gameplay is deathmatch with the most excessive possible speeds and weapons, giving incredibly intense fast paced action. Along with deathmatch, there are muitple gamemodes such as team deathmatch, capture the flag, domination, and many mutators and weapon options like rocket arena and instagib. The user can fight through the single player campaign, going through over 20 levels, or play online with our server browser. Nexuiz is based on the Darkplaces engine, built on OpenGL technology. The darkplaces engine is an advanced Quake1 based engine developed mainly by Forest &#8220;LordHavoc&#8221; Hale, who has been working with the Quake1 engine for many years. A few of Darkplaces main features are Quake3bsp support, realtime lighting and shadowing, new particle effects, advanced menu system, and Md3 model support.<br />
<strong>Dungeons &amp; Dragons</strong></p>
<p><a title="http://www.wesnoth.org/" rel="nofollow" href="http://www.wesnoth.org/">The Battle for Wesnoth</a> is a turn-based strategy game with a fantasy theme. Build up a great army, gradually turning raw recruits into hardened veterans. In later games, recall your toughest warriors and form a deadly host against whom none can stand! Choose units from a large pool of specialists, and hand-pick a force with the right strengths to fight well on different terrains against all manner of opposition. Fight to regain the throne of Wesnoth, of which you are the legitimate heir, or use your dread power over the Undead to dominate the land of mortals, or lead your glorious Orcish tribe to victory against the humans who dared despoil your lands … Wesnoth has many different sagas waiting to be played out. You can create your own custom units, and write your own scenarios – or even full-blown campaigns. You can also challenge your friends – or strangers – and fight in epic multi-player fantasy battles. Windows/Mac/Linux</p>
<p><strong>Freelancer</strong></p>
<p><a title="http://vegastrike.sourceforge.net/" rel="nofollow" href="http://vegastrike.sourceforge.net/">Vega Strike</a> is an Open Source 3D Action-Space-Sim that lets you trade, fight, and explore in a vast universe. Vega Strike is built on top of OpenGL and runs on Win/Lin/Mac platforms. Vega Strike (the game) is currently in a playable state, but both game engine and dataset are under continued development. Windows/Mac/Linux</p>
<p><strong>Flight Simulator X</strong></p>
<p>The <a title="http://www.flightgear.org/" rel="nofollow" href="http://www.flightgear.org/">FlightGear</a> flight simulator project is an open-source, multi-platform, cooperative flight simulator development project. Source code for the entire project is available and licensed under the GNU General Public License. The goal of the FlightGear project is to create a sophisticated flight simulator framework for use in research or academic environments, for the development and pursuit of other interesting flight simulation ideas, and as an end-user application. We are developing a sophisticated, open simulation framework that can be expanded and improved upon by anyone interested in contributing. There are many exciting possibilities for an open, free flight sim. We hope that this project will be interesting and useful to many people in many areas. Windows/Mac/Linux</p>
<p><strong> GT Pro Series</strong></p>
<p><a title="http://torcs.sourceforge.net/" rel="nofollow" href="http://torcs.sourceforge.net/">T.O.R.C.S.</a> is The Open Racing Car Simulator. TORCS is a highly portable multi platform car racing simulation. It is used as ordinary car racing game, as AI racing game and as research platform. It runs on Linux (x86, AMD64 and PPC), FreeBSD, MacOSX and Windows. The source code of TORCS is licensed under the GPL (&#8220;Open Source&#8221;).</p>
<p><strong>The Marathon Trilogy</strong></p>
<p><a title="http://marathon.sourceforge.net/" rel="nofollow" href="http://marathon.sourceforge.net/">Aleph One</a> is an open-source descendant of Bungie&#8217;s Marathon 2 first person 3D shooting game. Aleph One supports Marathon 2 and Marathon Infinity data files (available below). A conversion of Marathon 1 called M1A1 and many third party scenarios and net maps are also available. Aleph One features software and OpenGL rendering, Internet play, Lua scripting, and much more. It is available under the GNU General Public License (GPL). To play, download the engine and some game content and copy the engine into the directory with the game content. Windows/Mac/Linux</p>
<p><strong>Singstar</strong></p>
<p><a title="http://www.ultrastardeluxe.org/" rel="nofollow" href="http://www.ultrastardeluxe.org/">UltraStar Deluxe</a> is Karaoke Software for PC like Singstar for PS2. It evaluates your singing by analyzing your voice pitch. Songs can be created with integrated Editor. This is a Fork of the UltraStar Project with many massive improvements. (Windows ONLY) <a title="http://seo-training-blog.blogspot.com/" rel="nofollow" href="http://seo-training-blog.blogspot.com/">seo training</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.netflowdevelopments.com/2010/01/24/open-source-alternatives-to-commercial-software/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Science Fiction as a tool for human survival</title>
		<link>http://blog.netflowdevelopments.com/2010/01/24/science-fiction-tool-survival/</link>
		<comments>http://blog.netflowdevelopments.com/2010/01/24/science-fiction-tool-survival/#comments</comments>
		<pubDate>Sun, 24 Jan 2010 09:48:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Inspiring]]></category>
		<category><![CDATA[Science]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[adoption]]></category>
		<category><![CDATA[alex rivera]]></category>
		<category><![CDATA[district 9]]></category>
		<category><![CDATA[sci-fi]]></category>
		<category><![CDATA[science fiction]]></category>
		<category><![CDATA[sleep dealer]]></category>
		<category><![CDATA[soylent green]]></category>
		<category><![CDATA[speculative fiction]]></category>
		<category><![CDATA[star trek]]></category>
		<category><![CDATA[star wars]]></category>
		<category><![CDATA[survival]]></category>
		<category><![CDATA[what if]]></category>

		<guid isPermaLink="false">http://blog.netflowdevelopments.com/?p=396</guid>
		<description><![CDATA[  It was like film directors and authors realized this magic lamp where they could very surreptitiously put these unquestioned injustices into peoples minds and make them question them for the first time.  I wouldn't call this a 'golden age' of sci-fi but it certainly was a purer age. ]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft" title="sleep" src="http://triangulations.files.wordpress.com/2009/12/sleep_dealer.jpg" alt="" width="266" height="392" /> &#8220;S<cite>leep Dealer</cite> is remarkably topical for a film set in the future (albeit one described by Rivera as taking place &#8220;five minutes from now&#8221;). Central themes include outsourcing, corporate ownership of water, remote warfare, confessional internet diaries and military contractors who are accountable to no one. It&#8217;s the rare political film without any reference to contemporary politics; like <cite>Blade Runner</cite> and other big-brained sci-fi flicks, it&#8217;s about ideas, not selling merchandise.&#8221;</p>
<p>&#8220;Films like <cite>Star Wars</cite> use terms like <em>empire</em> and <em>rebellion</em>, but they are bandied about in bland ways &#8212; powerful words used to describe nothing,&#8221; Rivera said. &#8220;One of the original propositions of my film is that we (create that sense) of a world divided between wealth and power.&#8221;</p>
<p>&#8220;I love gnomes and goblins and elves,&#8221; said Rivera, who&#8217;s made a name for himself touring museums and festivals with his <a href="http://www.invisibleamerica.com/movies.html">award-winning shorts</a>. &#8220;But what I&#8217;m really interested in is speculative fiction. I wanted to use this film to ask the question, &#8216;Where are we going?&#8217;&#8221;</p>
<p>- <a href="http://www.wired.com/entertainment/hollywood/news/2008/01/sleep_dealer" target="_blank">Wired Article</a></p>
<p>Sci-fi has for a very long time served the purpose of framing current sensitive social and political issues and putting them into a clear perspective without making people feel preached to.  It was a way to get people to think about issues that they normally wouldn&#8217;t or didn&#8217;t want to think about for various psychological reasons.  I feel that this has always been the greatest strength of the genre and during the 60&#8217;s, 70&#8217;s and 80&#8217;s, with the exception of Star Wars and a few other more trivial pieces, the genre as a whole set out to bring a multitude of social issues into the spotlight.  It was like film directors and authors realized this magic lamp where they could very surreptitiously put these unquestioned injustices into peoples minds and make them question them for the first time.  I wouldn&#8217;t call this a &#8216;golden age&#8217; of sci-fi but it certainly was a purer age.  There was less science fiction being produced(as there were less movies in general being produced) but on a per capita basis they were overwhelmingly more thought provoking and taking full advantage of the above-mentioned strength of the medium.</p>
<p>Today however that is changed, and not that it is necessarily a bad thing as the more Sci-fi blockbusters we have the more</p>
<div id="attachment_397" class="wp-caption alignright" style="width: 151px"><img class="size-medium wp-image-397 " title="star-trek-posters-1" src="http://blog.netflowdevelopments.com/wp-content/uploads/2010/01/star-trek-posters-1-201x300.jpg" alt="" width="141" height="210" /><p class="wp-caption-text">The porno of the sci-fi world</p></div>
<p>interest and acceptance the genre has as a whole and the easier it will be for <em>true</em> science fiction to get funded, but today is certainly a different age where Sci-fi is big business.  We have more and more pieces of strictly eye candy, where the strength of the medium to affect change in our thinking and society in general is thrown out for the ability to create big explosions and satisfy the increasingly shrinking attention span and ever expanding mental laziness of the developed world.  People don&#8217;t want to think, they want to be distracted from thinking by exploding starships and revenge seeking Romulans(referring of course to the latest Star Trek Film &#8211; thanks Abrahms).</p>
<p>However this isn&#8217;t a doom and gloom article, this is an article of hope for as I mentioned the more play these pieces of porno-graphic eye-candy get the more interest there will be in the genre overall and we are starting to see more and more thought provoking sci-fi than ever before.  While it may seem like the 60&#8217;s,70&#8217;s and 80&#8217;s were pumping out great sci-fi at a faster rate, it certainly wasn&#8217;t so.. There were so many classics made in this era no doubt but they were certainly spaced out over a long period separated by years at times.</p>
<div class="wp-caption alignleft" style="width: 200px"><img class="    " style="border: 2px solid black;" title="9" src="http://z.about.com/d/movies/1/0/H/h/T/district9poster.jpg" alt="" width="190" height="286" /><p class="wp-caption-text">Turn on your brain</p></div>
<p style="text-align: left;">Whereas we are seeing 2-3 fairly profound films coming out almost yearly now and even some of the frivolous eye candy such as Avatar will have an obvious and simplistic thought provoking message behind it.</p>
<p style="text-align: center;">Here&#8217;s a great resource that lays out a timeline of the SF era of the past: <a href="http://www.magicdragon.com/UltimateSF/timeline1960.html" target="_blank">http://www.magicdragon.com/UltimateSF/timeline1960.html</a><br />
<a href="http://http//www.magicdragon.com/UltimateSF/timeline1970.html" target="_blank">http://www.magicdragon.com/UltimateSF/timeline1970.html</a><br />
<a href="http://http//www.magicdragon.com/UltimateSF/timeline1980.html" target="_blank"> http://www.magicdragon.com/UltimateSF/timeline1980.html</a></p>
<p style="text-align: left;">Because of this evolution of the genre I feel that we are going to see a clear divide coming down between Sci-fi action flicks such as the last Star Trek, or Avatar and then the sci-fi that attempts to shine light on these dark recesses of our mind that we so conveniently block out such as District 9 or Soylent Green.</p>
<p style="text-align: left;">Alex Rivera, in the linked article at the top of this post mentioned &#8216;<a href="http://en.wikipedia.org/wiki/Speculative_fiction" target="_blank">Speculative Fiction</a>&#8216; which is a great term to show the other greatest strength of this medium.  As apposed to regular fiction or fantasy Sci-fi and speculative fiction forces us to look forward instead of being stuck in the mud of the past or present, but more importantly it forces us to look forward to where we are going and ask ourselves &#8216;Is that really where we want to go?&#8217; .  I think that is where we are going to see a divide forming even stronger than before between Science Fiction and Speculative Fiction.  The latter intending to provoke debate and thought about our evolving society and the former meant to simply turn off your brain and take you on a mini-vacation from your everyday.  Both certainly having merits but I feel it is going to be incredibly dangerous to undervalue the importance of the former over the latter.</p>
<div id="attachment_398" class="wp-caption alignright" style="width: 220px"><img class="size-medium wp-image-398" style="border: 2px solid black;" title="coyote" src="http://blog.netflowdevelopments.com/wp-content/uploads/2010/01/coyote-e1264325546667-300x196.jpg" alt="" width="210" height="137" /><p class="wp-caption-text">What cliff?</p></div>
<p style="text-align: left;">We live in a world that is incredibly frightening for a growing portion of the population because of the exponential rate of change and development we are experiencing.  So much so that <a href="http://blog.netflowdevelopments.com/2009/02/17/juan-enriquez-introduces-homo-evolutis-at-ted/" target="_blank">some scientists playfully predict the emergence of a species of humans, homo evolutis, engineered by us</a>. Our world is changing so fast now that we often don&#8217;t have time to contemplate the full ramification that come with the increasingly rapid adoption of new technologies and social changes.  Most often this is simply because these changes are being introduced almost one after another after another without any time to breath.  Speculative fiction however, if widely adopted makes it almost instinctive that we think about these situations and possible outcomes before they even arise.  It puts our brains into a future simulator of sorts where we are running through countless of possible outcomes for our society every week, culminating to subconscious database of sorts of &#8216;what if&#8217; scenarios that we carry around with us.  Without this database in our heads we blindly charge forward through the jungle of our progress without any regard of potential cliffs that lay ahead until it is too late.  With a mind that is constantly being challenged with deep thought-provoking what if scenarios we will hopefully be able to recognize some of the signs of these impending cliffs before we are spinning our tires in mid air about to drop 1000 meters to our doom.</p>
<p style="text-align: center;"><img class="aligncenter" title="boom" src="http://nassautea.files.wordpress.com/2009/11/mushroom-cloud.jpg" alt="" width="350" height="267" /></p>
<p style="text-align: left;">Clearly I am not saying that Speculative Fiction is going to single-handedly save this world however with the current rate of adoption of technology, a rate which is increasing exponentially, we can no longer afford to live in the past or even the present for that matter.  The logical part of our brains must exist 100% in the future at all times, not just one future but many possible futures.  A failure to do this could very likely destroy our future all together.</p>
<p style="text-align: left;">
<p style="text-align: left;">
]]></content:encoded>
			<wfw:commentRss>http://blog.netflowdevelopments.com/2010/01/24/science-fiction-tool-survival/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>The dire situation in Haiti &#8211; What can you do?</title>
		<link>http://blog.netflowdevelopments.com/2010/01/15/the-dire-situation-in-haiti-what-can-you-do/</link>
		<comments>http://blog.netflowdevelopments.com/2010/01/15/the-dire-situation-in-haiti-what-can-you-do/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 03:36:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Links]]></category>
		<category><![CDATA[disaster]]></category>
		<category><![CDATA[donate]]></category>
		<category><![CDATA[earthquake]]></category>
		<category><![CDATA[haiti]]></category>
		<category><![CDATA[relief]]></category>
		<category><![CDATA[sms]]></category>
		<category><![CDATA[txt]]></category>

		<guid isPermaLink="false">http://blog.netflowdevelopments.com/?p=393</guid>
		<description><![CDATA[
According to recent stories we may be seeing up to 200,000+ people dead in Haiti and over 1/3 of their capital city needing to be rebuilt, which ranks it in as one of the deadliest natural disasters in human history and in the top 10 deadliest earthquakes ever recorded.  With the advent of microbloggin and [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" style="border: 2px solid #000000;" title="haiti" src="http://uk.reuters.com/resources/r/?m=02&amp;d=20100115&amp;t=2&amp;i=46135803&amp;w=450&amp;r=2010-01-15T235202Z_01_BTRE60E1LEY00_RTROPTP_0_QUAKE-HAITI" alt="" width="450" height="277" /></p>
<p>According to <a href="http://uk.reuters.com/article/idUKTRE60B5JQ20100115" target="_blank">recent stories</a> we may be seeing up to 200,000+ people dead in Haiti and over 1/3 of their capital city needing to be rebuilt, which ranks it in as one of the <a href="http://en.wikipedia.org/wiki/List_of_natural_disasters_by_death_toll#Ten_deadliest_natural_disasters" target="_blank">deadliest natural disasters in human history</a> and in the top 10 deadliest earthquakes ever recorded.  With the advent of microbloggin and the explosive use of SMS in recent years we are witnessing an almost immediate outpouring of support in amounts never before seen in comparable time frames.</p>
<p>So I wanted to just share some of the ways that you can give to those survivors in Haiti to help the Red Cross and other organizations do their part.  It is good to know that this money isn&#8217;t going to the Haitian government, which has devolved to a sess pool of corruption, in large part responsible for the death tolls being as high as they are.  I can only hope that this event will push the people of Haiti over the edge to stand up for their long corrupt government that has been profiteering off of their hardship while keeping the entire country at sub-human conditions for far too long.</p>
<ol>
<li><strong>From your Mobile phone simple text  HAITI to 90999 to donate $10 to RedCross relief</strong></li>
<li><strong>Through the Yele Campaign you can donate online to a more customizable amount:  Go here for more info: </strong><a href="https://co.clickandpledge.com/advanced/default.aspx?wid=23093" target="_blank"><strong>https://co.clickandpledge.com/advanced/default.aspx?wid=23093</strong></a><img class="aligncenter" title="yele" src="http://i.i.com.com/cnwk.1d/i/bto/20100115/Yele.png" alt="" width="276" height="185" /></li>
</ol>
<p>The UN is saying they need over 500 million dollars to adequately handle relief efforts in Haiti so that gives us a goal to shoot<img class="alignright" title="haiti" src="http://www.cbc.ca/gfx/images/news/photos/2010/01/14/cp-7937609at220px.jpg" alt="" width="220" height="307" /> for, if you are able do your part and chip in to help these extremely unfortunate souls who are surviving the post-apocalyptic aftermath of this tragic event.</p>
<p>Email this to friends and family, retweet it or repost it on facebook to get more of the word out so people who want to help don&#8217;t feel helpless and do nothing.</p>
<p>Cheers</p>
<p>Ryan</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.netflowdevelopments.com/2010/01/15/the-dire-situation-in-haiti-what-can-you-do/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Shortcut problem / changing shortcut keys in Evolution</title>
		<link>http://blog.netflowdevelopments.com/2010/01/10/shortcut-problem-changing-shortcut-keys-in-evolution/</link>
		<comments>http://blog.netflowdevelopments.com/2010/01/10/shortcut-problem-changing-shortcut-keys-in-evolution/#comments</comments>
		<pubDate>Sun, 10 Jan 2010 18:05:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://blog.netflowdevelopments.com/?p=390</guid>
		<description><![CDATA[So for the past two days I have had this problem in Evolution, my email client, where &#8216;m&#8217; was the new shortcut for add attachment.. Not Ctrl+M but just M.  So everytime M was pretty it would stop what I was typing and open up the add attachment dialogue box, obviously making it impossible to [...]]]></description>
			<content:encoded><![CDATA[<p>So for the past two days I have had this problem in Evolution, my email client, where &#8216;m&#8217; was the new shortcut for add attachment.. Not Ctrl+M but just M.  So everytime M was pretty it would stop what I was typing and open up the add attachment dialogue box, obviously making it impossible to write an email with any word containing the letter m in it.  I couldn&#8217;t figure out for the life of me how to change the shortcut keys for these sorts of things but today I just randomly stumbled upon it and thought I would share.</p>
<p>What you do is with a new email open go into the insert menu (alt+i) and use the arrow keys to highlight(but don&#8217;t press enter) then with the command select press your hotkey combination.  Or in my case I simply press the &#8216;m&#8217; key with add attachment selected and then it bound m to that action.</p>
<p>It&#8217;s an awesome way to handle shortcuts but there is a distinct lack of documentation on it so hopefully this article will find its way onto some google searches of people with a similar dilema.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.netflowdevelopments.com/2010/01/10/shortcut-problem-changing-shortcut-keys-in-evolution/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to turn off / Disable your touchpad while typing in linux</title>
		<link>http://blog.netflowdevelopments.com/2010/01/04/how-to-turn-off-disable-your-touchpad-while-typing-in-linux/</link>
		<comments>http://blog.netflowdevelopments.com/2010/01/04/how-to-turn-off-disable-your-touchpad-while-typing-in-linux/#comments</comments>
		<pubDate>Mon, 04 Jan 2010 13:24:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[accident]]></category>
		<category><![CDATA[disable]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[syndaemon]]></category>
		<category><![CDATA[touchpad]]></category>
		<category><![CDATA[typing]]></category>
		<category><![CDATA[ubuntu]]></category>

		<guid isPermaLink="false">http://blog.netflowdevelopments.com/?p=385</guid>
		<description><![CDATA[So after having the edge of my hand touch my touchpad and mess up an email for the upteenth time today I went around and did some research to see if there was a quick shortcut key or something I could press to turn the bloody thing off and then on again when I was [...]]]></description>
			<content:encoded><![CDATA[<p>So after having the edge of my hand touch my touchpad and mess up an email for the upteenth time today I went around and did some research to see if there was a quick shortcut key or something I could press to turn the bloody thing off and then on again when I was done typing.  Well let me tell you I found something so much better!  There&#8217;s a command in shell that will automatically disable the touchpad if you&#8217;ve been typing for a set amount of time and then turn it back on automatically when you&#8217;re done..  Genius!  Genius I say!!  But what is this command you ask?  How do you enable it to save yourself endless frustration?  Well I&#8217;m glad you asked because I was just about to explain it:</p>
<p>The program is syndaemon and it can be enabled in shell by typing: syndaemon -i 3 -d</p>
<p>Where</p>
<ul>
<li>-i parameter defines number of seconds to wait after keyboard is used – ( 3 seconds suites me. )</li>
<li>-d  parameter is used for running syndaemon in background mode ( as a daemon ).</li>
</ul>
<p>If above command throws some error then you are using other than 9.04 release. To get it working type in terminal,</p>
<div>
<div>
<pre>wget http://people.ubuntuwire.com/~fujitsu/syndaemon
chmod +x syndaemon
sudo mv syndaemon /usr/bin/
syndaemon -i 3 -d</pre>
</div>
</div>
<p>Again type the syndaemon command in terminal, it shouldn`t give any error messages.</p>
<p>Above command has to be executed each time machine is rebooted. To execute above command automatically we can create a tiny bash script and add it to startup items.</p>
<p>1. Create a new file somewhere ( My BSD habits puts files like this in /usr/local/etc/rc.d/ but that&#8217;s just me ) and copy paste following into it.</p>
<div>
<div>
<pre>#!/bin/bash
syndaemon -i 2.5 -d</pre>
</div>
</div>
<p>2. To add above script to startup items, go to System &gt; Preferences &gt; Startup Applicaitons &gt;  Add. In new  pop-up box name it something meaningful and type in the path and command.. After that click “Add”.</p>
<p>There you go, done like dinner <img src='http://blog.netflowdevelopments.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />    Enjoy not having the hell of your cursor selecting 2 paragraphs of text and typing over it before you know what&#8217;s going on!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.netflowdevelopments.com/2010/01/04/how-to-turn-off-disable-your-touchpad-while-typing-in-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cool Rolltop Laptop Concept</title>
		<link>http://blog.netflowdevelopments.com/2009/11/20/cool-rolltop-laptop-concept/</link>
		<comments>http://blog.netflowdevelopments.com/2009/11/20/cool-rolltop-laptop-concept/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 05:16:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technology]]></category>
		<category><![CDATA[concept]]></category>
		<category><![CDATA[laptop]]></category>
		<category><![CDATA[rolltop]]></category>

		<guid isPermaLink="false">http://blog.netflowdevelopments.com/?p=383</guid>
		<description><![CDATA[ 
Found a concept design for tomorrow&#8217;s laptop today and thought it was cool enough to share.  What I like about this is that it doens&#8217;t just look cool and look pretty in a futuristic way but it incorporates common sense technology that not only makes sense but will be feasible very very shortly if [...]]]></description>
			<content:encoded><![CDATA[<p><script src="http://widgets.fbshare.me/files/fbshare.js"></script> <script src="http://digg.com/tools/diggthis.js" type="text/javascript"></script></p>
<p><!-- google_ad_section_start -->Found a concept design for tomorrow&#8217;s laptop today and thought it was cool enough to share.  What I like about this is that it doens&#8217;t just look cool and look pretty in a futuristic way but it incorporates common sense technology that not only makes sense but will be feasible very very shortly if not already.  The design was created by <a href="http://www.orkin-design.de/" target="_blank">Orkin Design</a>, a german design firm.  Either way very cool</p>
<p><img title="Rolltop: A Laptop Concept that Can be Rolled and Carried" src="http://www.walyou.com/blog/wp-content/uploads/2009/10/rolltop.jpg" alt="rolltop Rolltop: A Laptop Concept that Can be Rolled and Carried" width="423" height="296" /></p>
<p><img title="Rolltop: A Laptop Concept that Can be Rolled and Carried" src="http://www.walyou.com/blog/wp-content/uploads/2009/10/rolltop-laptop.jpg" alt="rolltop laptop" width="437" height="286" /></p>
<p><a href="http://www.orkin-design.de/" target="_blank">Orkin Design</a> has unveiled the rolltop concept with the support of Schlagheck-Design and the device comes with a flexible display which can be rolled and carried wherever you want.</p>
<p><img title="Rolltop: A Laptop Concept that Can be Rolled and Carried" src="http://www.walyou.com/blog/wp-content/uploads/2009/10/rolltop-monitor.jpg" alt="rolltop monitor" width="423" height="342" /></p>
<p>Thanks to its OLED-Display technology and a multi touch screen, it can be used a laptop while it weighs as much as mini notebook. It comes with a 13 inch screen while being used a laptop and when being used as a monitor, you could get a cool 17 inches screen. Power supply, multi media integrated pen and even a holding belt are integrated in the ROLL TOP and it certainly is an all-in-one gadget.</p>
<p><img title="Rolltop: A Laptop Concept that Can be Rolled and Carried" src="http://www.walyou.com/blog/wp-content/uploads/2009/10/rolltop-tablet.jpg" alt="rolltop tablet" width="434" height="283" /></p>
<p><img title="Rolltop: A Laptop Concept that Can be Rolled and Carried" src="http://www.walyou.com/blog/wp-content/uploads/2009/10/rolltop-laptop-backside.jpg" alt="rolltop laptop backside" width="442" height="355" /></p>
<p><a href="http://blog.netflowdevelopments.com/2009/11/20/cool-rolltop-laptop-concept/"><em>Click here to view the embedded video.</em></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.netflowdevelopments.com/2009/11/20/cool-rolltop-laptop-concept/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
