<?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>ria-coder.com &#187; Linux</title>
	<atom:link href="http://ria-coder.com/blog/category/linux/feed" rel="self" type="application/rss+xml" />
	<link>http://ria-coder.com/blog</link>
	<description></description>
	<lastBuildDate>Wed, 21 Apr 2010 19:35:08 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>VirtualBox Guest Additions woes</title>
		<link>http://ria-coder.com/blog/virtualbox-guest-additions-woes</link>
		<comments>http://ria-coder.com/blog/virtualbox-guest-additions-woes#comments</comments>
		<pubDate>Mon, 18 Jan 2010 21:41:26 +0000</pubDate>
		<dc:creator>Danny Kopping</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[virtualbox]]></category>

		<guid isPermaLink="false">http://ria-coder.com/blog/?p=529</guid>
		<description><![CDATA[Sigh... I wish that computers would just work all the time!]]></description>
			<content:encoded><![CDATA[<p>Sigh&#8230; I wish that computers would just work all the time!</p>
<p>Today i booted my machine, launched my snazzy Linux virtual machine, proceeded to start my XAMPP stack and mount my shared folder so that my Linux VM can communicate with my host OS (sigh) Windows&#8230; This works 99.9% of the time, but to my horror:</p>
<blockquote><p>/sbin/mount.vboxsf: mounting failed with the error: No such device</p></blockquote>
<p>FUCK! What now? So i <a title="Google 1" href="http://www.google.com/search?rlz=1C1GGLS_enZA330ZA330&amp;sourceid=chrome&amp;ie=UTF-8&amp;q=/sbin/mount.vboxsf:+mounting+failed+with+the+error:+No+such+device" target="_blank">google</a> and <a title="Google 2" href="http://www.google.com/search?hl=en&amp;rlz=1C1GGLS_enZA330ZA330&amp;q=error+loading+vboxguestadditions+linux+vboxsf&amp;aq=f&amp;oq=&amp;aqi=" target="_blank">google</a>, but nothing works&#8230;</p>
<p>I&#8217;m now bashing my head in frustration against my desk, spilling my coffee and rubbing my blood-red forehead, but that didn&#8217;t help either&#8230; I try mount VBoxGuestAdditions via VirtualBox, nothing. Nothing, nothing, nothing! <strong>NOTHING!</strong></p>
<p>By now i&#8217;m getting so irritated that i&#8217;m drinking coffee after coffee and smoking vociferously&#8230; and then&#8230;. -cue lightbulb- if you can&#8217;t take the horse to the water (mount VBoxGuestAdditions in Linux), pick the fucker up and dump him in there (download the fucking thing from Linux and run it from Linux). So, i dig around looking for the URL, eventually find it, mount the ISO file (help instructions on mounting an ISO file in Linux <a title="Mounting an ISO" href="http://www.cyberciti.biz/tips/how-to-mount-iso-image-under-linux.html" target="_blank">here</a>), run the installation script, reboot and <strong>IT WORKS</strong>!! &#8230;and the children lived happily ever after.</p>
]]></content:encoded>
			<wfw:commentRss>http://ria-coder.com/blog/virtualbox-guest-additions-woes/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP Process Viewer for Unix</title>
		<link>http://ria-coder.com/blog/php-process-viewer-for-unix</link>
		<comments>http://ria-coder.com/blog/php-process-viewer-for-unix#comments</comments>
		<pubDate>Sun, 04 Oct 2009 17:35:28 +0000</pubDate>
		<dc:creator>Danny Kopping</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://ria-coder.com/blog/?p=424</guid>
		<description><![CDATA[While working on a project lately, i needed a script that would allow me to find certain processes with PHP and inspect their running times, etc.]]></description>
			<content:encoded><![CDATA[<p>While working on a project lately, i needed a script that would allow me to find certain processes with PHP and inspect their running times, etc. After struggling for a little bit, i came up with the following script that can output a plain view, JSON or XML of the running processes whose names match a regular expression passed to the script. The script can also kill all processes that match the search term.</p>
<p>This script is by no means complete, but i thought i&#8217;d share it with my readers <img src='http://ria-coder.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Save it as <strong>process_viewer</strong> and run it from the command line.</p>
<p>Please keep in mind that this script is still in a very rough form and should not be used on enterprise products; it&#8217;s merely a bit of buggering around for fun <img src='http://ria-coder.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Click <a title="process_viewer" href="http://ria-coder.com/blog/wp-content/uploads/2009/10/process_viewer" target="_blank">here</a> to download the script.</p>
<p>Usage:</p>
<p>process_viewer [search_regex] [mode] -o [format]</p>
<ul>
<li><strong>search_regex &#8211; </strong>search term to find running processes (<em>defaults to <strong>.+</strong><span style="font-style: normal;">)</span></em></li>
<li><strong>mode &#8211; </strong>script mode (<em>defaults to </em><strong><em>view</em></strong>)
<ul>
<li>view | kill</li>
</ul>
</li>
<li><strong>-o</strong> &#8211; flag to indicate that the script must output in a specified format</li>
<li><strong>format</strong> &#8211; output format (<em>defaults to </em><strong><em>plain</em></strong>)
<ul>
<li>plain | json | xml</li>
</ul>
</li>
</ul>
<p>Sample usage:</p>
<p>./process_viewer bash view -o xml</p>
]]></content:encoded>
			<wfw:commentRss>http://ria-coder.com/blog/php-process-viewer-for-unix/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>XAMPP 1.7.2 Released</title>
		<link>http://ria-coder.com/blog/xampp-1-7-2-released</link>
		<comments>http://ria-coder.com/blog/xampp-1-7-2-released#comments</comments>
		<pubDate>Thu, 20 Aug 2009 19:32:56 +0000</pubDate>
		<dc:creator>Danny Kopping</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://ria-coder.com/blog/?p=379</guid>
		<description><![CDATA[It's finally here! The new version of the XAMPP stack has been released...]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s finally here! The new version of the <a title="XAMPP Stack" href="http://www.apachefriends.org/en/xampp.html" target="_blank">XAMPP stack</a> has been released&#8230;</p>
<p>This new version includes PHP 5.3.0, Apache 2.2.12, MySQL 5.1.37 &amp; phpMyAdmin 3.2.0.1 (amongst a myriad of other features). You can check out the new stack <a title="XAMPP Stack" href="http://www.apachefriends.org/en/xampp.html" target="_blank">here</a>. I wouldn&#8217;t recommend upgrading if you are using AMFPHP or CodeIgniter as the new version of PHP (5.3.0) will mess up quite a few things &#8211; i learnt the hard way.</p>
<p>I upgraded from 1.7.1 to the new version on my Linux Mint virtual server that i run within my Vista installation (damn you Adobe! Just release your software on Linux already!) and i came across an error in one of my AMFPHP installations on a project that i&#8217;m working on at the moment:</p>
<blockquote><p>(mx.rpc::Fault)#0<br />
errorID = 0<br />
faultCode = &#8220;Client.Error.DeliveryInDoubt&#8221;<br />
faultDetail = &#8220;Channel disconnected before an acknolwedgement was received&#8221;<br />
faultString = &#8220;Channel disconnected&#8221;<br />
message = &#8220;faultCode:Client.Error.DeliveryInDoubt faultString:&#8217;Channel disconnected&#8217; faultDetail:&#8217;Channel disconnected before an acknolwedgement was received&#8217;&#8221;<br />
name = &#8220;Error&#8221;<br />
rootCause = (null)</p></blockquote>
<p>I think that AMFPHP is still the simplest and easiest way to use Flex remoting with PHP (i recently wrote an article for <a title="FFDMag" href="http://ffdmag.com/" target="_blank">FFDMag </a>on this topic &#8211; look out for it in the September edition). However, it doesn&#8217;t have the greatest error handling mechanism ever&#8230;</p>
<p>Using <a title="Charles Proxy" href="http://www.charlesproxy.com/" target="_blank">Charles Proxy</a>, i managed to find the real root of the error, and it appears that there is some sort of discrepancy with the dates/timezones in Gateway.php in the core of AMFPHP.</p>
<p>To resolve this issue, open the <em>Gateway.php</em> file in the core/amf/app folder in your AMFPHP installation and go to line 213. You need to tell PHP which timezone you&#8217;re in, and you can paste the following code:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #990000;">date_default_timezone_set</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;Africa/Johannesburg&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>above this line:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000088;">$dateStr</span> <span style="color: #339933;">=</span> <span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;D, j M Y &quot;</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #990000;">date</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;H:i:s&quot;</span><span style="color: #339933;">,</span> <span style="color: #990000;">strtotime</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;-2 days&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>I reside in Johannesburg, South Africa so that timezone will apply to me, but if you live anywhere else, you&#8217;ll have to find the pertinent timezone to use.</p>
<p>That should fix things up&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://ria-coder.com/blog/xampp-1-7-2-released/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Union Platform &#8211; Part I (Installation)</title>
		<link>http://ria-coder.com/blog/union-platform-part-i-installation</link>
		<comments>http://ria-coder.com/blog/union-platform-part-i-installation#comments</comments>
		<pubDate>Wed, 08 Jul 2009 18:40:57 +0000</pubDate>
		<dc:creator>Danny Kopping</dc:creator>
				<category><![CDATA[ActionScript 3.0]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[as3]]></category>
		<category><![CDATA[union]]></category>

		<guid isPermaLink="false">http://ria-coder.com/blog/?p=327</guid>
		<description><![CDATA[In this part of the series on the Union Platform i will be showing you how to install the Union server on your *nix machines and Window$ machines.]]></description>
			<content:encoded><![CDATA[<p>We&#8217;ve all heard about Colin Moock at some point in our Flash/Flex development career. Colin has authored a great many ActionScript books throughout the years and as a consequence has helped thousands &#8211; including myself &#8211; to learn ActionScript. Now Colin has hit the community with something incredible&#8230; the <em>Union Platform</em>.</p>
<p>Here is the official definition of the Union Platform from <a title="Union Platform" href="http://www.unionplatform.com" target="_blank">http://www.unionplatform.com</a>: &#8220;Union is a development platform for creating multiuser applications. It includes the Union Server, a multiuser communications server, and Reactor, a framework for creating Adobe Flash client applications.&#8221;</p>
<p>Essentially what this means is&#8230; you can now build realtime chat applications, MMORPG games, and anything else that could use a little realtime flavour <img src='http://ria-coder.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<hr />
<h3>Installation</h3>
<p>In this part of the series on the <em>Union Platform</em> i will be showing you how to install the Union server on your *nix machines and Window$ machines. Let&#8217;s leave the hideous beast (Window$) for last, and begin with a <em>real</em> operating system that is actually a pleasure to work with, and doesn&#8217;t make you praise whichever god you worship that your legs can&#8217;t bend backwards at the knees to kick yourself in the balls for ever getting roped into <em>that</em> shitty OS.</p>
<p>I&#8217;ll be <strong><a title="Linux Mint" href="http://www.linuxmint.com">Linux Mint</a> </strong>for my *nix installation explanation, and this will work on Macs too in much the same way.</p>
<p>The <em>Union</em> <em>Platform Server</em> is a Java application that will run on your server and listen on port 9100 and 9101 for traffic. Be sure to check that your firewall doesn&#8217;t block this port before you begin&#8230;<br />
First things first, head over to the <a href="http://www.unionplatform.com/?page_id=437">downloads page</a> on the Union site and download the GZipped tarball to your desktop.</p>
<p style="text-align: center; ">
<p style="text-align: center; "><a rel="lightbox" href="http://ria-coder.com/temp/wp-content/uploads/2009/07/desktop.png"><img class="aligncenter size-medium wp-image-329" title="desktop" src="http://ria-coder.com/blog/wp-content/uploads/2009/07/desktop-300x225.png" alt="desktop" width="300" height="225" /></a></p>
<p style="text-align: left; ">Next, unzip the tarball&#8217;s contents (<strong>tar -xf union_1.0.0_alpha2.tar.gz</strong>). This will create a folder called <strong>union</strong> on your desktop. Now, move either the folder in its entireity or the contents to a folder somewhere on your machine.</p>
<p style="text-align: center; "><a rel="lightbox" href="http://ria-coder.com/temp/wp-content/uploads/2009/07/unzip.png"><img class="aligncenter size-medium wp-image-332" title="unzip" src="http://ria-coder.com/blog/wp-content/uploads/2009/07/unzip-300x210.png" alt="unzip" width="300" height="210" /></a></p>
<p style="text-align: left; ">Perfect. So now we have all the files we need. Make sure that you have Java installed and working correctly on your machine or otherwise this will not work. You will need to make sure that this folder had execute permissions, so issue the command <strong>chmod 775 * </strong>to give all the files the necessary permissions.</p>
<hr />
<h3>Usage</h3>
<p style="text-align: left; ">Once this is done, we&#8217;re done! To start the <em>Union Platform Server</em> issue this command: <strong>./</strong><strong>startserver.sh </strong>from inside the folder you unzipped. You will now see your terminal bombarded with debug messages notifying you of <em>Union</em>&#8216;s successful start.</p>
<p style="text-align: center;"><a rel="lightbox" href="http://ria-coder.com/temp/wp-content/uploads/2009/07/start.png"><img class="aligncenter size-medium wp-image-334" title="start" src="http://ria-coder.com/blog/wp-content/uploads/2009/07/start-300x215.png" alt="start" width="300" height="215" /></a></p>
<p style="text-align: left;">Window$ users please note: the instructions above are pretty much the same for Window$; merely extract the files to your machine and run the batch file <strong>startserver.bat</strong>.</p>
<hr />
<h3>Administration Panel</h3>
<p style="text-align: left;">Colin Moock and crew have been generous enough to provide us with a Flex administration panel for the server, and you can find it <a href="http://www.unionplatform.com/releases/unionadmin/UnionAdmin.swf">here</a>. Download the SWF, and open it in your browser. You will be met with a login screen like this:</p>
<p style="text-align: center;"><a rel="lightbox" href="http://ria-coder.com/temp/wp-content/uploads/2009/07/admin-panel.png"><img class="aligncenter size-medium wp-image-343" title="admin-panel" src="http://ria-coder.com/blog/wp-content/uploads/2009/07/admin-panel-300x215.png" alt="admin-panel" width="300" height="215" /></a></p>
<p style="text-align: left;">NOTE: If you look in the <strong>union.xml</strong> configuration file, you will find the password that is used by the server. By default it is <strong>password</strong>. Also note that the administration panel runs on port <strong>9110</strong>.</p>
<p style="text-align: left;">Once you have logged in, you will see a screen like this:</p>
<p style="text-align: center; "><a rel="lightbox" href="http://ria-coder.com/temp/wp-content/uploads/2009/07/admin-detail.png"><img class="aligncenter size-medium wp-image-344" title="admin-detail" src="http://ria-coder.com/blog/wp-content/uploads/2009/07/admin-detail-300x215.png" alt="admin-detail" width="300" height="215" /></a></p>
<p style="text-align: center;">
<p style="text-align: left;">Pretty bloody cool if you ask me!</p>
<p style="text-align: left;">Join me in the next part of this series when i will be demonstrating how to build a simple realtime chat application!</p>
]]></content:encoded>
			<wfw:commentRss>http://ria-coder.com/blog/union-platform-part-i-installation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Which Linux distro best suits you?</title>
		<link>http://ria-coder.com/blog/which-linux-distro-best-suits-you</link>
		<comments>http://ria-coder.com/blog/which-linux-distro-best-suits-you#comments</comments>
		<pubDate>Fri, 13 Mar 2009 08:10:17 +0000</pubDate>
		<dc:creator>Danny Kopping</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[distros]]></category>
		<category><![CDATA[test]]></category>

		<guid isPermaLink="false">http://ria-coder.com/blog/?p=170</guid>
		<description><![CDATA[I stumbled upon a very interesting test today that asks you a series of questions and then offers you advice as to which linux distros would suit you, and why.]]></description>
			<content:encoded><![CDATA[<p>I stumbled upon a very interesting test today that asks you a series of questions and then offers you advice as to which linux distros would suit you, and why.</p>
<p>Go to <a title="Linux Distrobution Chooser" href="http://www.zegeniestudios.net/ldc/index.php" target="_blank">http://www.zegeniestudios.net/ldc/index.php</a> to take the test.</p>
<p>Here are my results:</p>
<p style="text-align: center;"><a href="http://www.zegeniestudios.net/ldc/index.php"><img class="aligncenter size-medium wp-image-171" title="ldc" src="http://ria-coder.com/blog/wp-content/uploads/2009/03/ldc-300x299.png" alt="ldc" width="300" height="299" /></a><br />
&#8230; and as i expected, Linux Mint is my perfect match <img src='http://ria-coder.com/blog/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://ria-coder.com/blog/which-linux-distro-best-suits-you/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using SWFTools on Linux</title>
		<link>http://ria-coder.com/blog/using-swftools-on-linux</link>
		<comments>http://ria-coder.com/blog/using-swftools-on-linux#comments</comments>
		<pubDate>Tue, 27 Jan 2009 18:30:53 +0000</pubDate>
		<dc:creator>Danny Kopping</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[swf]]></category>
		<category><![CDATA[swftools]]></category>

		<guid isPermaLink="false">http://ria-coder.com/blog/?p=123</guid>
		<description><![CDATA[SWFTools is a fantastic library of SWF manipulation utilities. It contains the following packages: PDF2SWF A PDF to SWF Converter. Generates one frame per page. Enables you to have fully formatted text, including tables, formulas etc. inside your Flash Movie. It&#8217;s based on the xpdf PDF parser from Derek B. Noonburg. SWFCombine A tool for]]></description>
			<content:encoded><![CDATA[<p>SWFTools is a fantastic library of SWF manipulation utilities. It contains the following packages:</p>
<ul>
<li><strong>PDF2SWF</strong> A PDF to SWF Converter. Generates one frame per page. Enables you to    have fully formatted text, including tables, formulas etc. inside your   Flash Movie. It&#8217;s based on the <a href="http://www.foolabs.com/xpdf">xpdf</a> PDF   parser from Derek B. Noonburg.</li>
<li><strong>SWFCombine</strong> A tool for inserting SWFs into Wrapper SWFs. (Templates)    E.g. for including the pdf2swf SWFs in some sort of Browsing-SWF.</li>
<li><strong>SWFStrings</strong> Scans SWFs for text data.</li>
<li><strong>SWFDump</strong> Prints out various informations about SWFs.</li>
<li><strong>JPEG2SWF</strong> Takes one or more JPEG pictures and generates a SWF slideshow.</li>
<li><strong>PNG2SWF</strong> Like JPEG2SWF, only for PNGs.</li>
<li><strong>GIF2SWF</strong> Converts GIFs to SWF. Also able to handle animated gifs.</li>
<li><strong>WAV2SWF</strong> Converts WAV audio files to SWFs, using the   <a href="http://www.mp3dev.org/mp3/">L.A.M.E.</a> MP3 encoder library.</li>
<li><strong>AVI2SWF</strong> Converts AVI animation files to SWF.    It supports Flash MX H.263 compression.   Some examples can be found at <a href="http://www.swftools.org/examples.html">examples.html</a>.</li>
<li><strong>Font2SWF</strong> Converts font files (TTF, Type1) to SWF.</li>
<li><strong>SWFBBox</strong> Allows to readjust SWF bounding boxes.</li>
<li><strong>SWFC</strong> A tool for creating SWF files from simple script files.</li>
<li><strong>SWFExtract</strong> Allows to extract Movieclips, Sounds, Images etc. from SWF files.</li>
<li><strong>RFXSWF Library </strong> A fully featured library which can be used for standalone SWF generation.   Includes support for Bitmaps, Buttons, Shapes, Text, Fonts, Sound etc.   It also has support for ActionScript using the <a href="http://www.opaque.net/ming/"> Ming </a> ActionCompiler.</li>
</ul>
<p>You can download the tarball from their site (<a title="SWFTools" href="http://www.swftools.org" target="_blank">http://www.swftools.org</a>) or using the Synaptic Package Manager on your Linux distro. The installation is fairly straightforward, so i&#8217;ll just skip to using the package.</p>
<p>All the exercise files i will be using in this post are available <a title="swftools-files" href="http://ria-coder.com/blog/downloads/swftools.tar.gz" target="_blank">here</a>.</p>
<p>The tools i will be highlighting are:</p>
<ul>
<li>PDF2SWF</li>
<li>SWFDump</li>
</ul>
<h3>PDF2SWF</h3>
<p>This is probably the most useful tool in the entire package. As the name implies, it will convert the inputted PDF and convert it into a SWF. Refer to the PDF2SWF.pdf and PDF2SWF.swf files in the exercise files.</p>
<p>You can find the manual for PDF2SWF <a title="PDF2SWF" href="http://www.swftools.org/pdf2swf.html" target="_blank">here</a>.</p>
<p><strong>Usage:</strong> <em>pdf2swf [options] input-file.pdf -o output-file.swf</em></p>
<p><strong>Useful arguments:<br />
</strong></p>
<ul>
<li>-P &#8211; Decrypt the SWF with a password</li>
<li>-p &#8211; Pages to convert</li>
<li>-T &#8211; Set the Flash Player version</li>
</ul>
<h3>SWFDump</h3>
<p>This is a very neat tool! It can tell you a whole lot about your SWF, such as the width, height, fonts, and it can even generate (X)HTML code for you for embedding your SWF.</p>
<p>The documentation for this tool can be found <a title="SWFDump" href="http://www.swftools.org/swfdump.htm" target="_blank">here</a>.</p>
<p>This is a very interesting package for all of the experimenting Flash/Flex developers working on or with Linux. The package is available for a plethora of operating systems though, but it&#8217;s always cooler on Linux <img src='http://ria-coder.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://ria-coder.com/blog/using-swftools-on-linux/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
