<?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>Fusion Swift</title>
	<atom:link href="http://www.fusionswift.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.fusionswift.com</link>
	<description>Integrating math and technology</description>
	<lastBuildDate>Thu, 17 May 2012 22:19:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Delete File with Dash/Hyphen in Name Within Linux/Unix</title>
		<link>http://www.fusionswift.com/guides/2012/05/delete-file-with-dashhyphen-in-name-within-linuxunix/</link>
		<comments>http://www.fusionswift.com/guides/2012/05/delete-file-with-dashhyphen-in-name-within-linuxunix/#comments</comments>
		<pubDate>Wed, 16 May 2012 12:01:26 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[bash]]></category>

		<guid isPermaLink="false">http://www.fusionswift.com/?p=760</guid>
		<description><![CDATA[If you have a file named &#8220;-file&#8221; without the quotes, you would typically delete it using: rm -rf -file Except that doesn&#8217;t work. My CentOS complained to me with the following message (though not all operating systems may supply this, &#8230; <a href="http://www.fusionswift.com/guides/2012/05/delete-file-with-dashhyphen-in-name-within-linuxunix/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you have a file named &#8220;-file&#8221; without the quotes, you would typically delete it using:</p>
<pre>rm -rf -file</pre>
<p>Except that doesn&#8217;t work. My CentOS complained to me with the following message (though not all operating systems may supply this, so this is mainly for those whose OS does not supply this tip):</p>
<pre>rm: invalid option -- 'l'
Try `rm ./-file' to remove the file `-file'.
Try `rm --help' for more information.</pre>
<p>The suggested tip here works well. Simply running the following command should delete the &#8220;-file&#8221; file.</p>
<pre>rm -rf ./-file</pre>
<p>Keep in mind this limitation does not apply only to the rm command, but a large number of commands including touch and others. It is the most annoying for the rm command, since you are trying to remove the file. For these other commands, you would also have to prepend the file name with a ./ in order for this to work.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/guides/2012/05/delete-file-with-dashhyphen-in-name-within-linuxunix/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mac Trick: Invert Screen Colors</title>
		<link>http://www.fusionswift.com/guides/2012/05/mac-trick-invert-screen-colors/</link>
		<comments>http://www.fusionswift.com/guides/2012/05/mac-trick-invert-screen-colors/#comments</comments>
		<pubDate>Fri, 11 May 2012 02:19:39 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Guides]]></category>

		<guid isPermaLink="false">http://www.fusionswift.com/?p=757</guid>
		<description><![CDATA[To invert the colors on your mac, use the shortcut ⌘ (command key) + option/alt + control + 8 (all at the same time). For those not confortable with shortcuts, you can do the same by going to  (Apple &#8230; <a href="http://www.fusionswift.com/guides/2012/05/mac-trick-invert-screen-colors/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>To invert the colors on your mac, use the shortcut ⌘ (command key) + option/alt + control + 8 (all at the same time). For those not confortable with shortcuts, you can do the same by going to  (Apple logo at upper-left hand corner_ -&gt; System Preferences, and clicking &#8220;Universal Access&#8221; under Personal. From there, checking &#8216;White on Black&#8217; will have the same effect.</p>
<p><img class="alignnone size-full wp-image-763" title="Screen Shot 2012-05-10 at 22.16" src="http://www.fusionswift.com/files/2012/05/Screen-Shot-2012-05-10-at-22.16.jpg" alt="" width="550" height="486" /></p>
<p>Take a look at the two images below of what my screen normally looks like, and what my screen looks like when the colors are inverted</p>
<p><img class="alignnone size-full wp-image-758" title="Screen Shot 2012-05-09 at 21.15.55" src="http://www.fusionswift.com/files/2012/05/Screen-Shot-2012-05-09-at-21.15.55.jpg" alt="" width="550" height="309" /></p>
<p><img class="alignnone size-full wp-image-759" title="Screen Shot 2012-05-09 at 21.15.56" src="http://www.fusionswift.com/files/2012/05/Screen-Shot-2012-05-09-at-21.15.56.jpg" alt="" width="550" height="309" /></p>
<p>Do keep in mind if you take any screenshots in the &#8216;inverted color&#8217; mode, the screenshot will not come out with inverted colors. If you would like to have inverted colored screenshots, you must manually invert the image in an image editing program.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/guides/2012/05/mac-trick-invert-screen-colors/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Recordmydesktop on CentOS and RHEL</title>
		<link>http://www.fusionswift.com/guides/2012/04/installing-recordmydesktop-on-centos-and-rhel/</link>
		<comments>http://www.fusionswift.com/guides/2012/04/installing-recordmydesktop-on-centos-and-rhel/#comments</comments>
		<pubDate>Sun, 29 Apr 2012 11:50:40 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[recordmydesktop]]></category>
		<category><![CDATA[RHEL]]></category>

		<guid isPermaLink="false">http://www.fusionswift.com/?p=690</guid>
		<description><![CDATA[Recordmydesktop is a command line (and GUI) program that can be used to record a video of the CentOS Desktop (among other distros as well). To install it on CentOS, begin by installing the required dependancies: yum install gcc make &#8230; <a href="http://www.fusionswift.com/guides/2012/04/installing-recordmydesktop-on-centos-and-rhel/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Recordmydesktop is a command line (and GUI) program that can be used to record a video of the CentOS Desktop (among other distros as well). To install it on CentOS, begin by installing the required dependancies:</p>
<pre>yum install gcc make libXext-devel libSM-devel libICE-devel zlib-devel libXfixes-devel libXdamage-devel libvorbis-devel libtheora-devel</pre>
<p>Because CentOS does not official an RPM for recordmydesktop, we will have to install it from source. We will download a tar of the source code, untar the source, and remove the tar file:</p>
<pre>wget http://downloads.sourceforge.net/project/recordmydesktop/recordmydesktop/0.3.8.1/recordmydesktop-0.3.8.1.tar.gz
tar xf recordmydesktop-0.3.8.1.tar.gz
rm -rf recordmydesktop-0.3.8.1.tar.gz</pre>
<p>Now, let&#8217;s go into the folder and install Recordmydesktop.</p>
<pre>cd recordmydesktop-0.3.8.1
./configure
make
make install</pre>
<p>If you did not set a custom prefix, running /usr/bin/recordmydesktop should begin recording your desktop! Use the following command (just as with most commands) to view the options available:</p>
<pre>recordmydesktop --help</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/guides/2012/04/installing-recordmydesktop-on-centos-and-rhel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>List of Google April Fools Pranks 2012</title>
		<link>http://www.fusionswift.com/posts/2012/04/list-of-google-april-fools-pranks-2012/</link>
		<comments>http://www.fusionswift.com/posts/2012/04/list-of-google-april-fools-pranks-2012/#comments</comments>
		<pubDate>Sun, 01 Apr 2012 12:51:44 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Blog Posts]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.fusionswift.com/?p=737</guid>
		<description><![CDATA[Here&#8217;s a quick list of Google&#8217;s April Fools pranks for this year, 2012! Google Racing &#8211; Google is collaborating with NASCAR, and their self driving car will be taking part of the NASCAR race. They even have a video on &#8230; <a href="http://www.fusionswift.com/posts/2012/04/list-of-google-april-fools-pranks-2012/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick list of Google&#8217;s April Fools pranks for this year, 2012!</p>
<p><a href="http://www.google.com/racing/" target="_blank">Google Racing</a> &#8211; Google is collaborating with NASCAR, and their self driving car will be taking part of the NASCAR race. They even have a video on the official NASCAR website describing their involvement!</p>
<p><img class="alignnone size-full wp-image-744" title="Screen Shot 2012-04-01 at 08.39.36" src="http://www.fusionswift.com/files/2012/04/Screen-Shot-2012-04-01-at-08.39.36.jpg" alt="" width="550" height="373" /></p>
<p><a href="http://www.google.com/js/reallyadvanced.html" target="_blank">Really Advanced Search</a> &#8211; Allows you to be real specific about what you want to search for, right inside of Google.</p>
<p><img class="alignnone size-full wp-image-743" title="Screen Shot 2012-04-01 at 08.38.52" src="http://www.fusionswift.com/files/2012/04/Screen-Shot-2012-04-01-at-08.38.52.jpg" alt="" width="550" height="409" /></p>
<p><a href="https://mail.google.com/mail/help/promos/tap/index.html" target="_blank">Gmail Tap</a> &#8211; Use just two fingers to discreetly type an entire message in binary. Not only that, the Double Black Diamond mode allows you to type up to EIGHT messages at once!</p>
<p><img class="alignnone size-full wp-image-739" title="Screen Shot 2012-04-01 at 08.29.39" src="http://www.fusionswift.com/files/2012/04/Screen-Shot-2012-04-01-at-08.29.39.jpg" alt="" width="550" height="373" /></p>
<p><a href="http://www.google.com/apps/intl/en/business/jargon.html" target="_blank">Jargon-Bot for Google Apps</a> - Jargon-Bot for Google Apps instantly recognizes business terms and provides clear jargon translation. It works on all your devices, no matter where you are. The official page provides a few funny examples of Jargon-Bot twisting what folks are saying to their most probable intention.</p>
<p><img class="alignnone size-full wp-image-745" title="Screen Shot 2012-04-01 at 08.43.44" src="http://www.fusionswift.com/files/2012/04/Screen-Shot-2012-04-01-at-08.43.44.jpg" alt="" width="550" height="268" /></p>
<p><a href="http://www.google.com/adwords/extensions/teleport.html" target="_blank">Click to Teleport</a> &#8211; Click-To-Teleport extensions allow potential customers to instantly teleport to your location through an AdWord ad. This brand new technology puts an end to inaccurate location targeting, and introduces a revolutionized way to bring in clients.</p>
<p><img class="alignnone size-full wp-image-750" title="Screen Shot 2012-04-01 at 08.56.02" src="http://www.fusionswift.com/files/2012/04/Screen-Shot-2012-04-01-at-08.56.02.jpg" alt="" width="550" height="323" /></p>
<p><a href="https://www.google.com/intl/en/chrome/multitask.html" target="_blank">Chrome Multitask Mode</a> &#8211; Multitask mode allows you access to two mice instead of one. When a couple only has one mouse instead of two, you can both use it at the same time!</p>
<p><img class="alignnone size-full wp-image-742" title="Screen Shot 2012-04-01 at 08.36.02" src="http://www.fusionswift.com/files/2012/04/Screen-Shot-2012-04-01-at-08.36.02.jpg" alt="" width="550" height="365" /></p>
<p><a href="http://www.google.com/search?q=weather+12345" target="_blank">Google Weather Control</a> &#8211; Don&#8217;t like the weather? Simply change it!</p>
<p><img class="alignnone size-full wp-image-740" title="Screen Shot 2012-04-01 at 08.31.48" src="http://www.fusionswift.com/files/2012/04/Screen-Shot-2012-04-01-at-08.31.48.jpg" alt="" width="550" height="285" /></p>
<p><a href="http://www.howtogomo.com/goro/d/" target="_blank">Google RoGo</a> &#8211; Many folks using modern browsers have trouble accessing websites. However, Google&#8217;s studies have shown that 100% of folks using rotary phones have trouble accessing websites. Google RoGo aims to fix the problem folks using rotary phones experience when browsing the internet.</p>
<p><img class="alignnone size-full wp-image-749" title="Screen Shot 2012-04-01 at 08.52.08" src="http://www.fusionswift.com/files/2012/04/Screen-Shot-2012-04-01-at-08.52.08.jpg" alt="" width="550" height="288" /></p>
<p><a href="http://www.google.com/fiber/kansascity/index.html" target="_blank">Google Fiber</a> (nutrition bar) &#8211; Google is now getting involved with the distribution of a whole new type of fiber. Their new nutrition bar will give you up to 100 times the energy and productivity than what you have experienced before.</p>
<p><img class="alignnone size-full wp-image-747" title="Screen Shot 2012-04-01 at 08.49.41" src="http://www.fusionswift.com/files/2012/04/Screen-Shot-2012-04-01-at-08.49.41.jpg" alt="" width="550" height="300" /></p>
<p><a href="http://maps.google.com/?t=8" target="_blank">8 bit Google Maps</a> &#8211; view the entire world in 8 bit Nintendo Style</p>
<p><img class="alignnone size-full wp-image-741" title="Screen Shot 2012-04-01 at 08.34.07" src="http://www.fusionswift.com/files/2012/04/Screen-Shot-2012-04-01-at-08.34.07.jpg" alt="" width="550" height="281" /></p>
<p>Google Voice for Pets &#8211; Google Voice for Pets will allow your cats and dog to text. Together. Google&#8217;s Special Voice Communication collars will allow dogs to communicate with cats and other dogs via Wifi. Google&#8217;s Voice Transcription software also recognizes pet lingo, so can transcribe their nonsense into plain English!</p>
<p><img class="alignnone size-full wp-image-746" title="kona_fullsize" src="http://www.fusionswift.com/files/2012/04/kona_fullsize.jpg" alt="" width="550" height="291" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/posts/2012/04/list-of-google-april-fools-pranks-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Thunderbird and Firefox 10 in CentOS and RHEL</title>
		<link>http://www.fusionswift.com/guides/2012/02/thunderbird-and-firefox-10-in-centos-and-rhel/</link>
		<comments>http://www.fusionswift.com/guides/2012/02/thunderbird-and-firefox-10-in-centos-and-rhel/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 02:14:33 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[CentOS]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[RHEL]]></category>
		<category><![CDATA[thunderbird]]></category>

		<guid isPermaLink="false">http://www.fusionswift.com/?p=716</guid>
		<description><![CDATA[CentOS 6&#8242;s default repository still only has Firefox/Thunderbird version 3.1, and a lot of newer and greater versions has been released since then. To begin with, make sure you have the older version of Firefox/Thunderbird installed. This is necessary, as &#8230; <a href="http://www.fusionswift.com/guides/2012/02/thunderbird-and-firefox-10-in-centos-and-rhel/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>CentOS 6&#8242;s default repository still only has Firefox/Thunderbird version 3.1, and a lot of newer and greater versions has been released since then.</p>
<p>To begin with, make sure you have the older version of Firefox/Thunderbird installed. This is necessary, as we are going to use their launch scripts as a template to create the launch scripts for the newer version.</p>
<p>To shorten things up, I will refer to Thunderbird as TB, and Firefox as FF. For the most part, I will refer to TB instead of both TB and FF. All you have to do is change where I write &#8216;thunderbird&#8217; to &#8216;firefox&#8217; and it will most likely work. To begin with, you want to download the latest version of Thunderbird or Firefox.</p>
<ul>
<li>32 bit TB:
<pre>wget 'http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/10.0-real/linux-i686/en-US/thunderbird-10.0.tar.bz2'</pre>
</li>
<li>64 bit TB:
<pre>wget 'http://releases.mozilla.org/pub/mozilla.org/thunderbird/releases/10.0-real/linux-x86_64/en-US/thunderbird-10.0.tar.bz2'</pre>
</li>
<li>32 bit FF:
<pre>wget 'http://releases.mozilla.org/pub/mozilla.org/firefox/releases/10.0/linux-i686/en-US/firefox-10.0.tar.bz2'</pre>
</li>
<li>64 bit FF:
<pre>wget 'http://releases.mozilla.org/pub/mozilla.org/firefox/releases/10.0/linux-i686/en-US/firefox-10.0.tar.bz2'</pre>
</li>
</ul>
<p>Untar and unzip the file you just downloaded (as said before, name may vary with the product you are installing). Afterwards, delete the tar file, which is no longer necessary.</p>
<pre>tar xf thunderbird-10.0.tar.bz2
rm -rf thunderbird-10.0.tar.bz2</pre>
<p>The simplest way is to delete the current TB/FF install, and move the newly downloaded files to the old directory. This command will vary for 32 and 64 bit systems. IMPORTANT: For Firefox, change the number 3.1 to 3.6 for both architectures. As for the commands, for 32 bit:</p>
<pre>rm -rf /usr/lib/thunderbird-3.1/*
mv thunderbird/* /usr/lib/thunderbird-3.1/</pre>
<p>For 64 bit systems:</p>
<pre>rm -rf /usr/lib64/thunderbird-3.1/*
mv thunderbird/* /usr/lib64/thunderbird-3.1/</pre>
<p>Congratulations! You are more or less done. Now, you may want to get rid of the empty FF/TB folder by running the command:</p>
<pre>rm -rf thunderbird</pre>
<p>That&#8217;s pretty much all. Running command &#8216;thunderbird&#8217; or going to &#8216;Applications -&gt; Internet -&gt; Thunderbird Email&#8217; will launch the newly installed version!</p>
<p><img class="alignnone size-full wp-image-717" title="TB 10" src="http://www.fusionswift.com/files/2012/02/TB-10.jpg" alt="" width="550" height="413" /></p>
<p><img class="alignnone size-full wp-image-718" title="FF 10" src="http://www.fusionswift.com/files/2012/02/FF-10.jpg" alt="" width="550" height="413" /></p>
<p>Beyond TB/FF 10, the &#8216;automatic upgrade&#8217; feature should kick in. As you can see in the two screenshots above, TB and FF will automatically look for new versions, and will automatically upgrade when they exist. This way, you can run much newer versions than those found in the CentOS/RHEL repo.</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/guides/2012/02/thunderbird-and-firefox-10-in-centos-and-rhel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using SOCKS Proxy in Firefox</title>
		<link>http://www.fusionswift.com/guides/2011/10/using-socks-proxy-in-firefox/</link>
		<comments>http://www.fusionswift.com/guides/2011/10/using-socks-proxy-in-firefox/#comments</comments>
		<pubDate>Wed, 26 Oct 2011 00:24:54 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Firefox]]></category>
		<category><![CDATA[SOCKS Proxy]]></category>

		<guid isPermaLink="false">http://www.fusionswift.com/?p=692</guid>
		<description><![CDATA[Firefox can be configured to use various different types of proxies. To configure Firefox to use a SOCKS proxy, open the Firefox Preferences/Settings window. In Mac OS X, go to Firefox -&#62; Preferences. In the Windows version of Firefox, go &#8230; <a href="http://www.fusionswift.com/guides/2011/10/using-socks-proxy-in-firefox/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Firefox can be configured to use various different types of proxies. To configure Firefox to use a SOCKS proxy, open the Firefox Preferences/Settings window. In Mac OS X, go to <strong>Firefox -&gt; Preferences</strong>. In the Windows version of Firefox, go to <strong>Tools -&gt; Options</strong>.</p>
<p>Go under the <strong>Advanced</strong> tab, and under the <strong>Network</strong> tab. From there, click on <strong>Settings</strong>.</p>
<p><img class="alignnone size-full wp-image-694" title="Screen Shot 2011-10-08 at 20.33" src="http://www.fusionswift.com/files/2011/10/Screen-Shot-2011-10-08-at-20.33.jpg" alt="" width="550" height="524" /></p>
<p>Choose <strong>Manual proxy configuration</strong>. Leave everything empty except the <strong>SOCKS Host</strong> and <strong>Port</strong>. The SOCKS host and port should be the respective host and port.</p>
<p><img class="alignnone size-full wp-image-695" title="Screen Shot 2011-10-08 at 20.33b" src="http://www.fusionswift.com/files/2011/10/Screen-Shot-2011-10-08-at-20.33b.jpg" alt="" width="550" height="524" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/guides/2011/10/using-socks-proxy-in-firefox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>HTML5 Upload Multiple Files to PHP</title>
		<link>http://www.fusionswift.com/examples/2011/10/html5-upload-multiple-files-to-php/</link>
		<comments>http://www.fusionswift.com/examples/2011/10/html5-upload-multiple-files-to-php/#comments</comments>
		<pubDate>Sun, 23 Oct 2011 00:45:30 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Examples]]></category>
		<category><![CDATA[HTML5]]></category>
		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://www.fusionswift.com/?p=671</guid>
		<description><![CDATA[HTML5 provides us with the ability to upload multiple files with a single &#60;input&#62; element. While it has been possible to upload several files within one form field, users had to manually select the files one by one. With a &#8230; <a href="http://www.fusionswift.com/examples/2011/10/html5-upload-multiple-files-to-php/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>HTML5 provides us with the ability to upload multiple files with a single &lt;input&gt; element. While it has been possible to upload several files within one form field, users had to manually select the files one by one. With a few files that may not be an issue, but it will get tedious when uploading a larger number of files. Previously, it has been possible for web developers to implement a similar solution in Flash, but now it can be done natively with HTML5. Here is an example on how to get the &lt;input&gt; element to allow multiple files:</p>
<pre>&lt;form action="" method="post" enctype="multipart/form-data"&gt;
	&lt;input name="uploads[]" type="file" multiple="multiple"&gt;
	&lt;input type="submit" value="Upload!"&gt;
&lt;/form&gt;</pre>
<p>Note the name of the &lt;input&gt; is uploads[], with a bracket. While the bracket is not required for multiple file selection, it is required for PHP to process the files. The following PHP snippet can be used to process the files uploaded using the code above:</p>
<pre>&lt;?php
if($_SERVER['REQUEST_METHOD'] == 'POST') {
	foreach($_FILES['uploads']['name'] as $id =&gt; $name) {
		rename($_FILES['uploads']['tmp_name'][$id], 'uploads/' . $name);
		echo "&lt;p&gt;$name uploaded successfully!&lt;/p&gt;";
	}
}
?&gt;</pre>
<p>The PHP script will take all the files uploaded and place them into a folder named &#8216;uploads&#8217;. For it to work, the uploads folder will need to exist already, and needs to be writable by the web server. It&#8217;s recommended that you <strong>DO NOT</strong> use the exact PHP script in a production environment, as it&#8217;s dangerous to not check the file being uploaded. You don&#8217;t want others uploading a malicious PHP file and executing it on your server.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/examples/2011/10/html5-upload-multiple-files-to-php/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Adding Additional IP Addresses in Windows 2008</title>
		<link>http://www.fusionswift.com/guides/2011/10/adding-additional-ip-addresses-in-windows-2008/</link>
		<comments>http://www.fusionswift.com/guides/2011/10/adding-additional-ip-addresses-in-windows-2008/#comments</comments>
		<pubDate>Fri, 21 Oct 2011 13:30:31 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 2008]]></category>

		<guid isPermaLink="false">http://www.fusionswift.com/?p=443</guid>
		<description><![CDATA[Start -&#62; Control Panel Click on Network and Sharing Center. On the left side under &#8216;Tasks&#8216;, click &#8216;Manage Network Connections&#8216;. Right click on &#8216;Local Area Connection&#8216; and click &#8216;Status&#8216;. From there, click on &#8216;Details&#8216;. You will be presented with a &#8230; <a href="http://www.fusionswift.com/guides/2011/10/adding-additional-ip-addresses-in-windows-2008/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Start -&gt; Control Panel</p>
<p>Click on <strong>Network and Sharing Center</strong>.</p>
<p><img class="alignnone size-full wp-image-444" title="Screen Shot 2011-09-11 at 07.54.44" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-07.54.44-.jpg" alt="" width="550" height="413" /></p>
<p>On the left side under &#8216;<strong>Tasks</strong>&#8216;, click &#8216;<strong>Manage Network Connections</strong>&#8216;.</p>
<p><img class="alignnone size-full wp-image-445" title="Screen Shot 2011-09-11 at 07.57.27" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-07.57.27-.jpg" alt="" width="550" height="245" /></p>
<p>Right click on &#8216;<strong>Local Area Connection</strong>&#8216; and click &#8216;<strong>Status</strong>&#8216;. From there, click on &#8216;<strong>Details</strong>&#8216;.</p>
<p><img class="alignnone size-full wp-image-448" title="Screen Shot 2011-09-11 at 09.11.12" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.11.12-.jpg" alt="" width="372" height="237" /></p>
<p>You will be presented with a whole list of information. Note down the &#8216;<strong>IPv4 Subnet Mask</strong>&#8216;, &#8216;<strong>IPv4 Default Gateway</strong>&#8216;, and the two &#8216;<strong>IPv4 DNS Servers</strong>&#8216;. Afterwards, simply clock <strong>Close</strong>.</p>
<p><img class="alignnone size-full wp-image-449" title="Screen Shot 2011-09-11 at 09.13.40" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.13.40-.jpg" alt="" width="372" height="435" /></p>
<p>Right click on &#8216;<strong>Local Area Connection</strong>&#8216; again and click &#8216;<strong>Properties</strong>&#8216;. Highlight &#8216;<strong>Internet Protocol Version 4 (TCP/IPv4)</strong>&#8216; and click on <strong>Properties</strong>.</p>
<p><img class="alignnone size-full wp-image-450" title="Screen Shot 2011-09-11 at 09.15.03" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.15.03-.jpg" alt="" width="369" height="462" /></p>
<p>Choose &#8216;<strong>Use the following IP address</strong>&#8216; and fill in the fields with the information provided previously when you clicked Details. This will be the settings for your first IP address.</p>
<p><img class="alignnone size-full wp-image-451" title="Screen Shot 2011-09-11 at 09.16.40" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.16.40-.jpg" alt="" width="405" height="449" /></p>
<p>To specify the additional IP addresses, click on <strong>Advanced</strong>. Click &#8216;<strong>Add</strong>&#8216; under &#8216;<strong>IP addresses</strong>&#8216; to add more IP addresses.</p>
<p><img class="alignnone size-full wp-image-452" title="Screen Shot 2011-09-11 at 09.18.43" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.18.43-.jpg" alt="" width="406" height="210" /></p>
<p>The &#8216;<strong>IP address</strong>&#8216; should be the IP address. The &#8216;<strong>Subnet mask</strong>&#8216; should be same as the one for the first IP address.</p>
<p><img class="alignnone size-full wp-image-453" title="Screen Shot 2011-09-11 at 09.21.25" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.21.25-.jpg" alt="" width="334" height="146" /></p>
<p>From there, click Add, OK, OK (and so on) to save and apply these settings.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/guides/2011/10/adding-additional-ip-addresses-in-windows-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing IIS 7 on Windows 2008</title>
		<link>http://www.fusionswift.com/guides/2011/10/installing-iis-7-on-windows-2008/</link>
		<comments>http://www.fusionswift.com/guides/2011/10/installing-iis-7-on-windows-2008/#comments</comments>
		<pubDate>Tue, 18 Oct 2011 02:39:35 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[IIS 7]]></category>
		<category><![CDATA[to-sort]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows 2008]]></category>

		<guid isPermaLink="false">http://www.fusionswift.com/?p=458</guid>
		<description><![CDATA[To begin the installation of IIS 7, go to Start -&#62; Server Manager. Scroll down to Rolls Summary, and click Add Roles. You will be presented with the Add Roles Wizard. This wizard will guide you through the installation of &#8230; <a href="http://www.fusionswift.com/guides/2011/10/installing-iis-7-on-windows-2008/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>To begin the installation of IIS 7, go to <strong>Start</strong> -&gt; <strong>Server Manager</strong>. Scroll down to <strong>Rolls Summary</strong>, and click <strong>Add Roles</strong>.</p>
<p><img class="alignnone size-full wp-image-459" title="Screen Shot 2011-09-11 at 09.41.16" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.41.16-.jpg" alt="" width="550" height="112" /></p>
<p>You will be presented with the <strong>Add Roles Wizard</strong>. This wizard will guide you through the installation of IIS 7.</p>
<p><img class="alignnone size-full wp-image-460" title="Screen Shot 2011-09-11 at 09.41.27" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.41.27-.jpg" alt="" width="550" height="414" /></p>
<p>When on the <strong>Server Roles</strong> page, you will be able to select which roles you wish to install. In our situation, we want to install <strong>Web Server (IIS)</strong>.</p>
<p><img class="alignnone size-full wp-image-462" title="Screen Shot 2011-09-11 at 09.42.36" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.42.36-.jpg" alt="" width="550" height="413" /></p>
<p>In order to setup the IIS web server, you will have to install a few additional features as well. You just have to click <strong>Add Required Features</strong> to install those as well.</p>
<p><img class="alignnone size-full wp-image-461" title="Screen Shot 2011-09-11 at 09.41.54" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.41.54-.jpg" alt="" width="550" height="206" /></p>
<p>After choosing to install IIS, you will be presented with an introduction to the web server, which will tell you a bit about the server itself. You don&#8217;t have to read it, but you may find the information helpful to know.</p>
<p><img class="alignnone size-full wp-image-463" title="Screen Shot 2011-09-11 at 09.43.35" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.43.35-.jpg" alt="" width="550" height="414" /></p>
<p>After reading the IIS introduction, you will have an opportunity to custom your IIS install. You can include services such as ASP.NET, ASP, CGI, SSI, among many others.</p>
<p><img class="alignnone size-full wp-image-464" title="Screen Shot 2011-09-11 at 09.43.42" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.43.42-.jpg" alt="" width="550" height="414" /></p>
<p>Before the actual IIS installation takes place, you will be presented with a summary of what will be installed. After reviewing the information, click <strong>Install</strong> to finally install the server.</p>
<p><img class="alignnone size-full wp-image-465" title="Screen Shot 2011-09-11 at 09.43.54" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.43.54-.jpg" alt="" width="550" height="414" /></p>
<p>The server installation process can take a while. The speed really depends on the server you are installing it on. It isn&#8217;t a bad time to take a coffee break or something of that sort.</p>
<p><img class="alignnone size-full wp-image-466" title="Screen Shot 2011-09-11 at 09.44.03" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.44.03-.jpg" alt="" width="550" height="413" /></p>
<p>After the installation has completed, you will be presented with the <strong>Installation Results</strong> page. Hopefully it tells you everything has been installed successfully.</p>
<p><img class="alignnone size-full wp-image-467" title="Screen Shot 2011-09-11 at 09.49.46" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.49.46-.jpg" alt="" width="550" height="413" /></p>
<p>After starting the IIS server, you will be able to test it on http://localhost/!</p>
<p><img class="alignnone size-full wp-image-468" title="Screen Shot 2011-09-11 at 09.51.11" src="http://www.fusionswift.com/files/2011/09/Screen-Shot-2011-09-11-at-09.51.11-.jpg" alt="" width="550" height="424" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/guides/2011/10/installing-iis-7-on-windows-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Resolving Nginx 413 Request Entity Too Large Error</title>
		<link>http://www.fusionswift.com/guides/2011/10/resolving-nginx-413-request-entity-too-large-error/</link>
		<comments>http://www.fusionswift.com/guides/2011/10/resolving-nginx-413-request-entity-too-large-error/#comments</comments>
		<pubDate>Sun, 16 Oct 2011 22:57:41 +0000</pubDate>
		<dc:creator>Tech163</dc:creator>
				<category><![CDATA[Guides]]></category>
		<category><![CDATA[Nginx]]></category>

		<guid isPermaLink="false">http://www.fusionswift.com/?p=442</guid>
		<description><![CDATA[You may receive the error 403 &#8220;Request Entity Too Large Error&#8221; when trying to upload a large file in Nginx. By default, nginx only allows files less than 1 MB. To increase that limit, you will have to add the &#8230; <a href="http://www.fusionswift.com/guides/2011/10/resolving-nginx-413-request-entity-too-large-error/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>You may receive the error 403 &#8220;Request Entity Too Large Error&#8221; when trying to upload a large file in Nginx. By default, nginx only allows files less than 1 MB. To increase that limit, you will have to add the following to your nginx.conf file:</p>
<pre>client_max_body_size 4M;</pre>
<p>The number 4 should be changed to however megabytes you want the limit to be. Do note it&#8217;s 4M for 4 megabytes, rather than 4MB. After having added that to your configuration file, you should restart nginx for this change to take effect. Do note the command may differ, but should be the following if you installed from a RPM/DEB package or setup the startup script from our <a title="Nginx Startup Script" href="http://www.fusionswift.com/guides/2010/02/nginx-startup-script/">Nginx Startup Script</a> post.</p>
<pre>/etc/init.d/nginx restart</pre>
<p>Even after increasing nginx&#8217;s upload limit, the PHP limit may also be limiting how large of a file you can upload. You will want to change the post_max_size and upload_max_filesize values in your php.ini file as well. Note that if you make a change here, most likely you will have to restart the spawn-fcgi process to make the change live.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.fusionswift.com/guides/2011/10/resolving-nginx-413-request-entity-too-large-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

