<?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>NewSourceMedia Blog</title>
	<atom:link href="http://newsourcemedia.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://newsourcemedia.com/blog</link>
	<description>Focused on Interactive Design, Development and Marketing</description>
	<lastBuildDate>Mon, 07 May 2012 01:26:28 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Use Javascript To Get Current URL Page</title>
		<link>http://newsourcemedia.com/blog/use-javascript-to-get-current-url-page/</link>
		<comments>http://newsourcemedia.com/blog/use-javascript-to-get-current-url-page/#comments</comments>
		<pubDate>Mon, 07 May 2012 01:16:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Javascripts]]></category>
		<category><![CDATA[js]]></category>
		<category><![CDATA[logic]]></category>
		<category><![CDATA[URL]]></category>

		<guid isPermaLink="false">http://newsourcemedia.com/blog/?p=941</guid>
		<description><![CDATA[I have some custom javascript functions that are included on all of my web pages; however, a few functions are only intended for the home page. So I decided to use the "window.location" object to determine if the site URL is in fact the &#8230; <a href="http://newsourcemedia.com/blog/use-javascript-to-get-current-url-page/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[I have some custom javascript functions that are included on all of my web pages; however, a few functions are only intended for the home page. So I decided to use the "window.location" object to determine if the site URL is in fact the home. See example below:

<em><strong>if(window.location=="http://domain.com/"){</strong></em>
<em><strong>// run home page functions</strong></em>
<em><strong>}</strong></em>

Here are a few other helpful JavaScript objects that expose site locations:
<ol>
	<li><a href="http://www.w3schools.com/jsref/prop_loc_hash.asp">hash</a>: Returns the anchor portion of a URL</li>
	<li><a href="http://www.w3schools.com/jsref/prop_loc_host.asp">host</a>: Returns the hostname and port of a URL</li>
	<li><a href="http://www.w3schools.com/jsref/prop_loc_hostname.asp">hostname</a>: Returns the hostname of a URL</li>
	<li><a href="http://www.w3schools.com/jsref/prop_loc_href.asp">href</a>: Returns the entire URL</li>
	<li><a href="http://www.w3schools.com/jsref/prop_loc_pathname.asp">pathname</a>: Returns the path name of a URL</li>
	<li><a href="http://www.w3schools.com/jsref/prop_loc_port.asp">port</a>: Returns the port number the server uses for a URL</li>
	<li><a href="http://www.w3schools.com/jsref/prop_loc_protocol.asp">protocol</a>: Returns the protocol of a URL</li>
	<li><a href="http://www.w3schools.com/jsref/prop_loc_search.asp">search</a>: Returns the query portion of a URL</li>
</ol>]]></content:encoded>
			<wfw:commentRss>http://newsourcemedia.com/blog/use-javascript-to-get-current-url-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Submitting Forms using JQuery and AJAX</title>
		<link>http://newsourcemedia.com/blog/submitting-forms-using-jquery-and-ajax/</link>
		<comments>http://newsourcemedia.com/blog/submitting-forms-using-jquery-and-ajax/#comments</comments>
		<pubDate>Wed, 14 Mar 2012 01:03:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[JQuery]]></category>

		<guid isPermaLink="false">http://newsourcemedia.com/blog/?p=935</guid>
		<description><![CDATA[Submit A Form Without Page Refresh using jQuery In this tutorial I’ll show you how easy it is to do just that — submit a contact form that sends an email, without page refresh using jQuery! (The actual email is &#8230; <a href="http://newsourcemedia.com/blog/submitting-forms-using-jquery-and-ajax/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h3>Submit A Form Without Page Refresh using jQuery</h3>
In this tutorial I’ll show you how easy it is to do just that — submit a contact form that sends an email, without page refresh using jQuery! (The actual email is sent with a php script that processes in the background). Let’s get started.

<a href="http://net.tutsplus.com/tutorials/javascript-ajax/submit-a-form-without-page-refresh-using-jquery/" target="_blank">View Tutorial</a>
<h3>Call SOAP-XML Web Services With jQuery Ajax</h3>
In order to call the web service, we need to supply an XML message that match the operation definition specified by the web service’s WSDL. With the operation’s schema already in hand, all that is required is to exchange the type names for the operation’s paramaters, with their actual values. The variable soapMessage contains the complete XML message that we’re going to send to the web service.

<a href="http://openlandscape.net/2009/09/25/call-soap-xm-web-services-with-jquery-ajax/" target="_blank">View Tutorial</a>
<h3>Using JQuery, AJAX and JSONP to do cross-domain calls with PHP</h3>
The easy part is setting up a PHP page to listen for incoming data and send back a result. Not only will we send back data but we will also send back the function name we want to call on the client’s browser. Here is the PHP code:

<a href="http://www.giantflyingsaucer.com/blog/?p=2682." target="_blank">View Tutorial</a>]]></content:encoded>
			<wfw:commentRss>http://newsourcemedia.com/blog/submitting-forms-using-jquery-and-ajax/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Custom Post Types and 404 Error Fix</title>
		<link>http://newsourcemedia.com/blog/wordpress-custom-post-type/</link>
		<comments>http://newsourcemedia.com/blog/wordpress-custom-post-type/#comments</comments>
		<pubDate>Mon, 27 Feb 2012 03:14:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://newsourcemedia.com/blog/?p=849</guid>
		<description><![CDATA[<span class="image-rss"><a href="http://newsourcemedia.com/blog/wordpress-custom-post-type/"><img title="WordPress Custom Post Types and 404 Error Fix" src="http://newsourcemedia.com/blog/wp-content/uploads/2012/02/Screen-Shot-2012-02-26-at-10.19.48-PM.png" alt="WordPress Custom Post Types and 404 Error Fix" width="186" height="200" /></a></span><br/>Why use custom post types over regular posts? For starters, it easer to find specific post under particular types on the left admin menu than to drill down under posts then categories. This workflow is ideal for when there are multiple contributors reducing the &#8230; <a href="http://newsourcemedia.com/blog/wordpress-custom-post-type/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<span class="image-rss"><a href="http://newsourcemedia.com/blog/wordpress-custom-post-type/"><img title="WordPress Custom Post Types and 404 Error Fix" src="http://newsourcemedia.com/blog/wp-content/uploads/2012/02/Screen-Shot-2012-02-26-at-10.19.48-PM.png" alt="WordPress Custom Post Types and 404 Error Fix" width="186" height="200" /></a></span><br/>Why use custom post types over regular posts? For starters, it easer to find specific post under particular types on the left admin menu than to drill down under posts then categories. This workflow is ideal for when there are multiple contributors reducing the amount of information needed to communicate changes or add content. Think about handing this off to your client who might not as computer literate as you or your web friends.

Here's a custom post type by the name "Tech Products". Add the following code to your "functions.php" file under your theme's directory:
<pre lang="php">add_action( 'init', 'create_post_type' );
function create_post_type() {
 register_post_type( 'techproduct',
 array(
 'labels' =&gt; array(
 'name' =&gt; __( 'Tech Products' ),
 'singular_name' =&gt; __( 'Tech Product' )
 ),
 'public' =&gt; true,
 'has_archive' =&gt; true,
 'capability_type' =&gt; 'post',
 'supports' =&gt; array('title','editor','author','custom-fields','thumbnail'))
 );
}</pre>
Above, you don't have to define 'supports'. By default, 'title' and 'editor' (eg: content) are made available when adding or editing a post type. I felt that only having those two as options made too rigid and sparse.

Once this new code has been posted to your server, you should see the new link on your left admin menu maybe under the "comments" link:

<a href="http://newsourcemedia.com/blog/wp-content/uploads/2012/02/Screen-Shot-2012-02-26-at-10.19.48-PM.png"><img class="alignnone  wp-image-859" title="WP Custom Post Type Link" src="http://newsourcemedia.com/blog/wp-content/uploads/2012/02/Screen-Shot-2012-02-26-at-10.19.48-PM.png" alt="" width="270" height="290" /></a>

Now let's add a few more bells and whistles to the mix by defining our post type columns.
<pre lang="php">add_filter("manage_edit-techproduct_columns", "my_techproduct_columns");
function my_techproduct_columns($columns)
{
 $columns = array("title" =&gt; "Product Title", 
"description" =&gt; "Description", 
"company" =&gt; "Company");
 return $columns;
}
add_action("manage_posts_custom_column", "show_techproduct_column");
function show_techproduct_column($column){
 global $post;
if ("ID" == $column) echo $post-&gt;ID;
 elseif ("description" == $column) echo $post-&gt;post_content;
 elseif ("company" == $column) echo "Adobe";
}</pre>

It should show up like so...

<a href="http://newsourcemedia.com/blog/wp-content/uploads/2012/02/Screen-Shot-2012-02-26-at-11.01.36-PM.png"><img class="alignnone  wp-image-869" title="Post Type Columns" src="http://newsourcemedia.com/blog/wp-content/uploads/2012/02/Screen-Shot-2012-02-26-at-11.01.36-PM.png" alt="" width="395" height="177" /></a>

PROBLEM WITH LINKING TO CUSTOM POST TYPES!!!!!

You may run into a problem trying to view your custom post type on your live site using Permalinks receiving a 404 error message. I found a fix by simply navigating over to the Permalinks Settings page. There's no need to Update or Save changes. I believe by viewing this page, it somehow updates it's self learning of your new custom post type.

If that does not fix your 404 error message, try removed the %category% from my permalink structure or check if your post type conflicts with a pre-existing category name.

If this does not remedy your issue, there is a long thread over on this post:

<a href="http://wordpress.org/support/topic/permalinks-404-with-custom-post-type" target="_blank">http://wordpress.org/support/topic/permalinks-404-with-custom-post-type</a>]]></content:encoded>
			<wfw:commentRss>http://newsourcemedia.com/blog/wordpress-custom-post-type/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mobile Form using CSS3 and Webkit</title>
		<link>http://newsourcemedia.com/blog/mobile-form-using-css3-and-webkit/</link>
		<comments>http://newsourcemedia.com/blog/mobile-form-using-css3-and-webkit/#comments</comments>
		<pubDate>Mon, 07 Nov 2011 02:01:47 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Mobile]]></category>

		<guid isPermaLink="false">http://newsourcemedia.com/blog/?p=844</guid>
		<description><![CDATA[<span class="image-rss"><a href="http://newsourcemedia.com/blog/mobile-form-using-css3-and-webkit/"><img title="Mobile Form using CSS3 and Webkit" src="http://newsourcemedia.com/blog/wp-content/uploads/2011/11/479-webkit_forms.png" alt="Mobile Form using CSS3 and Webkit" width="153" height="200" /></a></span><br/>Looking for a way to style your mobile website form using round radius corners, colorful gradation backgrounds and placeholder text for text fields. With the new CSS3 tag attribute, we are now able to target specific types of form tags &#8230; <a href="http://newsourcemedia.com/blog/mobile-form-using-css3-and-webkit/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<span class="image-rss"><a href="http://newsourcemedia.com/blog/mobile-form-using-css3-and-webkit/"><img title="Mobile Form using CSS3 and Webkit" src="http://newsourcemedia.com/blog/wp-content/uploads/2011/11/479-webkit_forms.png" alt="Mobile Form using CSS3 and Webkit" width="153" height="200" /></a></span><br/>Looking for a way to style your mobile website form using round radius corners, colorful gradation backgrounds and placeholder text for text fields.

With the new CSS3 tag attribute, we are now able to target specific types of form tags using the  attribute selector. See image below for the type of form you can create at the following URL: <a href="http://37signals.com/svn/posts/2609-customizing-web-forms-with-css3-and-webkit" target="_blank">http://37signals.com/...css3-and-webkit</a>

<a href="http://newsourcemedia.com/blog/wp-content/uploads/2011/11/479-webkit_forms.png"><img class="alignnone size-full wp-image-845" title="479-webkit_forms" src="http://newsourcemedia.com/blog/wp-content/uploads/2011/11/479-webkit_forms.png" alt="" width="530" height="689" /></a>

&nbsp;]]></content:encoded>
			<wfw:commentRss>http://newsourcemedia.com/blog/mobile-form-using-css3-and-webkit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Honda Social Media Graphic Chart</title>
		<link>http://newsourcemedia.com/blog/honda-social-media-graphic-chart/</link>
		<comments>http://newsourcemedia.com/blog/honda-social-media-graphic-chart/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 17:13:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://newsourcemedia.com/blog/?p=838</guid>
		<description><![CDATA[<span class="image-rss"><a href="http://newsourcemedia.com/blog/honda-social-media-graphic-chart/"><img title="Honda Social Media Graphic Chart" src="http://newsourcemedia.com/blog/wp-content/uploads/2011/11/Honda-Infographic.png" alt="Honda Social Media Graphic Chart" width="94" height="200" /></a></span><br/>]]></description>
			<content:encoded><![CDATA[<span class="image-rss"><a href="http://newsourcemedia.com/blog/honda-social-media-graphic-chart/"><img title="Honda Social Media Graphic Chart" src="http://newsourcemedia.com/blog/wp-content/uploads/2011/11/Honda-Infographic.png" alt="Honda Social Media Graphic Chart" width="94" height="200" /></a></span><br/><a href="http://newsourcemedia.com/blog/wp-content/uploads/2011/11/Honda-Infographic.png"><img class="alignnone size-full wp-image-839" title="Honda-Infographic" src="http://newsourcemedia.com/blog/wp-content/uploads/2011/11/Honda-Infographic.png" alt="Honda Social Media Graphic Chart" width="630" height="1338" /></a>]]></content:encoded>
			<wfw:commentRss>http://newsourcemedia.com/blog/honda-social-media-graphic-chart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ford Social Media Graphic Chart</title>
		<link>http://newsourcemedia.com/blog/ford-social-media-chart/</link>
		<comments>http://newsourcemedia.com/blog/ford-social-media-chart/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 17:12:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://newsourcemedia.com/blog/?p=832</guid>
		<description><![CDATA[<span class="image-rss"><a href="http://newsourcemedia.com/blog/ford-social-media-chart/"><img title="Ford Social Media Graphic Chart" src="http://newsourcemedia.com/blog/wp-content/uploads/2011/11/Ford-Infographic.png" alt="Ford Social Media Graphic Chart" width="88" height="200" /></a></span><br/>]]></description>
			<content:encoded><![CDATA[<span class="image-rss"><a href="http://newsourcemedia.com/blog/ford-social-media-chart/"><img title="Ford Social Media Graphic Chart" src="http://newsourcemedia.com/blog/wp-content/uploads/2011/11/Ford-Infographic.png" alt="Ford Social Media Graphic Chart" width="88" height="200" /></a></span><br/><a href="http://newsourcemedia.com/blog/wp-content/uploads/2011/11/Ford-Infographic.png"><img class="alignnone size-full wp-image-834" title="Ford-Infographic" src="http://newsourcemedia.com/blog/wp-content/uploads/2011/11/Ford-Infographic.png" alt="Ford Social Media Chart" width="630" height="1426" /></a>]]></content:encoded>
			<wfw:commentRss>http://newsourcemedia.com/blog/ford-social-media-chart/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrade Server Settings Sync Problem with Perallels Plesk</title>
		<link>http://newsourcemedia.com/blog/perallels-plesk-upgrade-server-problem/</link>
		<comments>http://newsourcemedia.com/blog/perallels-plesk-upgrade-server-problem/#comments</comments>
		<pubDate>Sun, 25 Sep 2011 19:12:27 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SSH]]></category>
		<category><![CDATA[Web Servers]]></category>

		<guid isPermaLink="false">http://newsourcemedia.com/blog/?p=824</guid>
		<description><![CDATA[<span class="image-rss"><a href="http://newsourcemedia.com/blog/perallels-plesk-upgrade-server-problem/"><img title="Upgrade Server Settings Sync Problem with Perallels Plesk" src="http://newsourcemedia.com/blog/wp-content/uploads/2011/09/plesk-300x163.png" alt="Upgrade Server Settings Sync Problem with Perallels Plesk" width="200" height="108" /></a></span><br/>Once I upgraded my server increasing RAM from 500 MB to 1 GB and disk space from 20 GB to 30 GB, my plesk panel was out of sync. I check that my server was upgraded viewing Godaddy's default control &#8230; <a href="http://newsourcemedia.com/blog/perallels-plesk-upgrade-server-problem/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<span class="image-rss"><a href="http://newsourcemedia.com/blog/perallels-plesk-upgrade-server-problem/"><img title="Upgrade Server Settings Sync Problem with Perallels Plesk" src="http://newsourcemedia.com/blog/wp-content/uploads/2011/09/plesk-300x163.png" alt="Upgrade Server Settings Sync Problem with Perallels Plesk" width="200" height="108" /></a></span><br/><a href="http://newsourcemedia.com/blog/wp-content/uploads/2011/09/plesk.png"><img class="alignnone size-medium wp-image-828" title="plesk" src="http://newsourcemedia.com/blog/wp-content/uploads/2011/09/plesk-300x163.png" alt="" width="300" height="163" /></a>

Once I upgraded my server increasing RAM from 500 MB to 1 GB and disk space from 20 GB to 30 GB, my plesk panel was out of sync. I check that my server was upgraded viewing Godaddy's default control panel and also logging in to my server via SSH from the terminal running <strong>df -h </strong>to check disk space and <strong>free -m </strong>to view memory total / usage. The server had been upgraded so now I had to go about fixing the Plesk pannel to refresh. I spent way too much time on the phone with tech support until they pointed me over to their chat service to get in touch with their VDS experts.

Their expert find a refresh button buried in the pannel under the following path:

Tools &amp; Utilities &gt; Server Tools &gt; Services management

I clicked the green arrows labeled refresh on the lop left. That worked so I thought. The home screen now showed accurate info; however the health monitoring was still out of sync. After sufring around on the web, I found a script on my server that needed kick in the rear. Here's the command I ran in the terminal that forced Plesk into rescanning my server settings:

/usr/local/psa/bin/sw-engine-pleskrun /usr/local/psa/admin/plib/scripts/setup-health-monitor.php]]></content:encoded>
			<wfw:commentRss>http://newsourcemedia.com/blog/perallels-plesk-upgrade-server-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top 10 useful SSH terminal commands.</title>
		<link>http://newsourcemedia.com/blog/top-10-useful-ssh-terminal-commands/</link>
		<comments>http://newsourcemedia.com/blog/top-10-useful-ssh-terminal-commands/#comments</comments>
		<pubDate>Sat, 24 Sep 2011 02:30:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Hosting]]></category>
		<category><![CDATA[Terminal]]></category>
		<category><![CDATA[Web Servers]]></category>
		<category><![CDATA[configure]]></category>
		<category><![CDATA[directory]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[management]]></category>
		<category><![CDATA[root]]></category>
		<category><![CDATA[ssh]]></category>
		<category><![CDATA[terminal]]></category>
		<category><![CDATA[virtual server]]></category>

		<guid isPermaLink="false">http://newsourcemedia.com/blog/?p=813</guid>
		<description><![CDATA[<span class="image-rss"><a href="http://newsourcemedia.com/blog/top-10-useful-ssh-terminal-commands/"><img title="Top 10 useful SSH terminal commands." src="http://newsourcemedia.com/blog/wp-content/uploads/2011/09/img_Terminal1-300x300.png" alt="Top 10 useful SSH terminal commands." width="200" height="200" /></a></span><br/>Now that you have a virtual server setup, you can enjoy the benefits of managing your server as root (super admin). With root level access, you can send commands to your server using a bash terminal. Here are the common &#8230; <a href="http://newsourcemedia.com/blog/top-10-useful-ssh-terminal-commands/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<span class="image-rss"><a href="http://newsourcemedia.com/blog/top-10-useful-ssh-terminal-commands/"><img title="Top 10 useful SSH terminal commands." src="http://newsourcemedia.com/blog/wp-content/uploads/2011/09/img_Terminal1-300x300.png" alt="Top 10 useful SSH terminal commands." width="200" height="200" /></a></span><br/><a href="http://newsourcemedia.com/blog/wp-content/uploads/2011/09/img_Terminal1.png"><img class="alignnone size-medium wp-image-815" title="img_Terminal" src="http://newsourcemedia.com/blog/wp-content/uploads/2011/09/img_Terminal1-300x300.png" alt="" width="300" height="300" /></a>

Now that you have a virtual server setup, you can enjoy the benefits of managing your server as root (super admin). With root level access, you can send commands to your server using a bash terminal. Here are the common commands:
<ul>
	<li><strong>man</strong> - stands for manual. Very useful command if you are just getting started with Linux. You can invoke 'man', followed by any other Linux command (cd, for example) and it will display detailed description and list of all available options.</li>
	<li><strong>cd</strong> - cd is short for 'change directory'. Allows browsing between different folders of your VPS.</li>
	<li><strong>cp, mv, rm</strong> - great commands for basic file management. You can copy (cp), move (mv) or remove (rm) files/folders this way from your server.</li>
	<li><strong>grep</strong> - grep permits you to print lines that match a particular pattern. Useful if you are looking for a phrase or or line in a large text file (logs, for example).</li>
	<li><strong>ls</strong> - allows you to list the content of a directory. Using "ls -la" will also show you hidden files/directories (those starting with a dot) and additional attributes, such as permissions and ownership.</li>
	<li><strong>chown, chmod</strong> - every file or directory has its own ownerhip rights - user and group. With "chown" you can modify those parameters and "chmod" gives you the ability to change permissions (read, write, execute) for the owner, group and the rest of the users, accessing that file/directory.</li>
	<li><strong>nano, vi </strong>- "nano" and "vi" are probably the two most popular Linux text editors. You may find "nano" easier to use, while "vi" appears as the preferred editor among more experienced.</li>
	<li><strong>top, ps</strong> - "top" provides you with a periodic update (every five seconds by defaut) of running Linux tasks, while "ps" takes a snapshot of all current processes and prints it on your screen.</li>
	<li><strong>df -h, du -hs </strong>- shows you the current overall use of your disk in gygabytes (df -h)."du -hs" calculates the total size of a directory in a human readable format (e.g., 1K 234M 2G).</li>
</ul>
Here are <strong>two bonus</strong> commands for checking <strong>DESK SPACE</strong> and <strong>RAM</strong> usages:

To check out the disk space usage on your server, execute this command:
<strong>df -h</strong>
And to see the memory usage:
<strong>free -m</strong>]]></content:encoded>
			<wfw:commentRss>http://newsourcemedia.com/blog/top-10-useful-ssh-terminal-commands/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New Back To The Future Nike Shoes</title>
		<link>http://newsourcemedia.com/blog/new-back-to-the-future-nike-shoes/</link>
		<comments>http://newsourcemedia.com/blog/new-back-to-the-future-nike-shoes/#comments</comments>
		<pubDate>Sun, 11 Sep 2011 20:38:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Creative]]></category>
		<category><![CDATA[Marketing]]></category>

		<guid isPermaLink="false">http://newsourcemedia.com/blog/?p=793</guid>
		<description><![CDATA[<span class="image-rss"><a href="http://newsourcemedia.com/blog/new-back-to-the-future-nike-shoes/"><img title="New Back To The Future Nike Shoes" src="http://newsourcemedia.com/blog/wp-content/uploads/2011/09/Nike-Beauty-Shot-4.29.00-PM.jpg" alt="New Back To The Future Nike Shoes" width="200" height="117" /></a></span><br/>Nike unveils their Back To the Future II self-lacing MAG, Marty MclFly's sneakers. Leading up to this event, there have been several viral videos on YouTube. Some featuring Michael J. Fox and others feature Christopher Lloyd. These new kicks are &#8230; <a href="http://newsourcemedia.com/blog/new-back-to-the-future-nike-shoes/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<span class="image-rss"><a href="http://newsourcemedia.com/blog/new-back-to-the-future-nike-shoes/"><img title="New Back To The Future Nike Shoes" src="http://newsourcemedia.com/blog/wp-content/uploads/2011/09/Nike-Beauty-Shot-4.29.00-PM.jpg" alt="New Back To The Future Nike Shoes" width="200" height="117" /></a></span><br/><a href="http://newsourcemedia.com/blog/wp-content/uploads/2011/09/Nike-Beauty-Shot-4.29.00-PM.jpg"><img class="alignnone size-full wp-image-794" title="Nike-Beauty-Shot-4.29.00-PM" src="http://newsourcemedia.com/blog/wp-content/uploads/2011/09/Nike-Beauty-Shot-4.29.00-PM.jpg" alt="" width="600" height="353" /></a>

Nike unveils their Back To the Future II <a href="http://www.youtube.com/watch?v=28Wa5L-fkkM" target="_blank">self-lacing MAG</a>, Marty MclFly's sneakers. Leading up to this event, there have been several viral videos on YouTube. Some featuring Michael J. Fox and others feature Christopher Lloyd. 

These new kicks are designed to be an exact replica of the original shoe with LED panels and a luminescent Nike logo centered on the strap powered by a rechargeable battery. The lights comes with an on and off switch located on the ear of the high top. Each charge will last five hours.

A limited number of shoes will be put up for auction to raise money for charity. You may be able to purchase a pair on eBay out of the list of 1,500 available. 


<iframe width="560" height="345" src="http://www.youtube.com/embed/eihSPj9lSMw" frameborder="0" allowfullscreen></iframe>

<iframe width="560" height="345" src="http://www.youtube.com/embed/3yiSdjwi_bg" frameborder="0" allowfullscreen></iframe>

<iframe width="560" height="345" src="http://www.youtube.com/embed/42UedE5SPvg" frameborder="0" allowfullscreen></iframe>

Read more about it on the following sites:
<ul><li><a href="http://www.fastcodesign.com/1664967/this-is-heavy-nike-unveils-marty-mcflys-self-lacing-mag-sneakers#5" target="_blank">Fast Company: Nike Unveils MAG, Marty McFly's Kicks From Back To The Future II</a></li><li><a href="http://www.engadget.com/2011/09/08/nike-teases-back-to-the-future-shoes-creepily-leaks-the-content/" target="_blank">Engadget: Nike teases Back to the Future shoes, creepily leaks the contents of Marty McFly's closet (video)</a></li>
<li><a href="http://www.pcmag.com/article2/0,2817,2392678,00.asp" target="_blank">PC Magazine: Nike's 'Back to The Future' Shoes Climb Above $3,500 Apiece</a></li></ul>
]]></content:encoded>
			<wfw:commentRss>http://newsourcemedia.com/blog/new-back-to-the-future-nike-shoes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Add Facebook Comment Box to Your Site</title>
		<link>http://newsourcemedia.com/blog/add-facebook-comment-box-to-your-site/</link>
		<comments>http://newsourcemedia.com/blog/add-facebook-comment-box-to-your-site/#comments</comments>
		<pubDate>Wed, 01 Jun 2011 02:42:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://newsourcemedia.com/blog/?p=783</guid>
		<description><![CDATA[Here is a easy to use script on a web site running PHP. You can also remove the PHP script for reading the current url and replace it with a static address of your current page. Copy and paste the &#8230; <a href="http://newsourcemedia.com/blog/add-facebook-comment-box-to-your-site/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[Here is a easy to use script on a web site running PHP. You can also remove the PHP script for reading the current url and replace it with a static address of your current page. Copy and paste the follow under your content:

&lt;iframe src="http://www.facebook.com/plugins/feedback.php?href=&lt;? echo $_SERVER; ?&gt;&amp;amp;permalink=0&amp;amp;limit=10" scrolling="no" frameborder="0" name="comments4de5a17b0b1299724858306" class="comments" width="680px" height="150px"&gt;&lt;/iframe&gt;

If you need help with adding a fb friendly URL to your code, use this tool on facebook to generate your code:

http://developers.facebook.com/tools/lint]]></content:encoded>
			<wfw:commentRss>http://newsourcemedia.com/blog/add-facebook-comment-box-to-your-site/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
