<?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>Irving Duran Blog</title>
	<atom:link href="http://blog.irvingduran.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.irvingduran.com</link>
	<description>my blog is your knowledge about my life...</description>
	<lastBuildDate>Wed, 16 May 2012 02:02:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>SparkleShare &#8211; Full Ubuntu Server 11.04 and Ubuntu 11.04 client setup</title>
		<link>http://blog.irvingduran.com/2012/05/sparkleshare-full-ubuntu-server-11-04-and-ubuntu-11-04-client-setup/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=sparkleshare-full-ubuntu-server-11-04-and-ubuntu-11-04-client-setup</link>
		<comments>http://blog.irvingduran.com/2012/05/sparkleshare-full-ubuntu-server-11-04-and-ubuntu-11-04-client-setup/#comments</comments>
		<pubDate>Wed, 16 May 2012 02:02:06 +0000</pubDate>
		<dc:creator>blacknred0</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[dropbox]]></category>
		<category><![CDATA[files]]></category>
		<category><![CDATA[sharing]]></category>
		<category><![CDATA[sparkleshare]]></category>

		<guid isPermaLink="false">http://blog.irvingduran.com/?p=496</guid>
		<description><![CDATA[Intro Have you heard about the amazing tool of Dropbox?  Well if you haven&#8217;t you are missing a lot!!! For those of you that haven&#8217;t heard about this tool &#8211; “Dropbox is a free service that lets you bring your photos, docs, and videos anywhere and share them easily. Dropbox was founded in 2007 by [...]]]></description>
			<content:encoded><![CDATA[<p>Intro<br />
Have you heard about the amazing tool of Dropbox?  Well if you haven&#8217;t you are missing a lot!!! For those of you that haven&#8217;t heard about this tool &#8211; “Dropbox is a free service that lets you bring your photos, docs, and videos anywhere and share them easily. Dropbox was founded in 2007 by Drew Houston and Arash Ferdowsi, two MIT students tired of emailing files to themselves to work from more than one computer.” (Dropbox 2012) .  Now if that sounds cool/good to you, the only thing bad about Dropbox is that doesn&#8217;t allow you to do the awesomeness that it does with your own hosted server.  Well, there is this new tool called SparkleShare that will allow you to have Dropbox awesomeness into your own hosted server without too much hassling.</p>
<p>Before you start with the tutorial, please keep in mind that everything that was configured was setup base on program installation defaults.  So if you have customized the path of installation, then this tutorial may vary base on your configurations.  Also this is base on a local network setup, if you want to access your files remotely you would need to have your firewall/router setup to allow port 22 for SSH connections.</p>
<h2 dir="ltr">Identification</h2>
<p>Server<br />
Host = svrmain<br />
User = yoda<br />
Client<br />
Host = cltworkstation<br />
User = skywalker</p>
<h1 dir="ltr">Server</h1>
<p>The following tutorial will show you the process of installing and configuring git and openssh-server in order to have SparkleShare working properly.</p>
<h2 dir="ltr">Install Git</h2>
<p>sudo apt-get update<br />
sudo apt-get upgrade<br />
sudo apt-get install git</p>
<h2 dir="ltr">Install Openssh-server</h2>
<p>sudo apt-get update<br />
sudo apt-get upgrade<br />
sudo apt-get install openssh-server</p>
<h2 dir="ltr">Configure SparkleShare</h2>
<p>Login to your server and perform the following commands or equivalent depending on your system:</p>
<p>adduser &#8211;disabled-password yoda<br />
mkdir /home/yoda/projfiles<br />
sudo git init &#8211;bare /home/yoda/projfiles<br />
sudo mkdir /home/yoda/.ssh<br />
sudo touch /home/yoda/.ssh/authorized_keys</p>
<p>Please note that SparkleShare doesn’t accept any folder names with periods (“.”) in them.</p>
<p>Finally:<br />
sudo chmod 700 /home/yoda/.ssh<br />
sudo chmod 600 /home/yoda/.ssh/authorized_keys<br />
sudo chown -R yoda:yoda /home/yoda</p>
<h1 dir="ltr">Client</h1>
<ol>
<li>Start SparkleShare and enter your name and email address.</li>
<li>Click Continue.</li>
<li>SparkleShare has now created a special key file.  Replace the username skywalker with the actual username from your client PC.<br />
Linux /home/skywalker/SparkleShare<br />
Mac OS /Users/skywalker/SparkleShare</li>
<li>Leave the window open and go to your terminal.  Copy the key RSA to the server authorized keys file created with the following command.  Please note that the username and host name is given as part of the console.</li>
</ol>
<p>skywalker@cltworkstation:~&gt; cat .ssh/id_rsa.pub | ssh yoda@svrmain &#8216;cat &gt;&gt; .ssh/authorized_keys&#8217;<br />
yoda@svrmain password:</p>
<ol start="5">
<li>Go back to SparkleShare and enter the server address.  In this case the server will be = yoda@svrmain</li>
<li>On Folder name – specify the whole path where the Git folder got configured.  For example in my case is /home/yoda/projfiles</li>
<li>Click “Sync” and you should be done!!!</li>
</ol>
<p>Now you should be able to enjoy sharing and synching your files with others.</p>
<h2 dir="ltr">Adding more than one client to the same server</h2>
<p>Also in the future if you would like add more clients to the same server</p>
<ol>
<li>Go and do Client section and do all steps.<br />
The only difference will be the username from the client computer.<br />
This gives the client access to the git repository. If you want to give more people access to your project, just paste their keys on a new line at the end of this file.</li>
</ol>
<p>Source:</p>
<p>https://help.ubuntu.com/community/Git</p>
<p>http://linuxproblem.org/art_9.html</p>
<p>http://sparkleshare.org/set-up-a-host/</p>
<p>https://help.ubuntu.com/10.04/serverguide/openssh-server.html</p>
<p>https://www.dropbox.com/about</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.irvingduran.com/2012/05/sparkleshare-full-ubuntu-server-11-04-and-ubuntu-11-04-client-setup/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What to Do When A Potential Employer Asks for Your Facebook Password &#124; Digg Technology</title>
		<link>http://blog.irvingduran.com/2012/04/what-to-do-when-a-potential-employer-asks-for-your-facebook-password-digg-technology/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=what-to-do-when-a-potential-employer-asks-for-your-facebook-password-digg-technology</link>
		<comments>http://blog.irvingduran.com/2012/04/what-to-do-when-a-potential-employer-asks-for-your-facebook-password-digg-technology/#comments</comments>
		<pubDate>Tue, 10 Apr 2012 03:30:34 +0000</pubDate>
		<dc:creator>blacknred0</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[facebook]]></category>
		<category><![CDATA[jobs]]></category>

		<guid isPermaLink="false">http://blog.irvingduran.com/?p=491</guid>
		<description><![CDATA[Now days is all about social media!!! At some point that some companies are asking for people to show their facebook profile at interview.  This is to ensure that those people will not damage the company image and that they show who they really are.  The article link below will show you the different type [...]]]></description>
			<content:encoded><![CDATA[<p>Now days is all about social media!!! At some point that some companies are asking for people to show their facebook profile at interview.  This is to ensure that those people will not damage the company image and that they show who they really are.  The article link below will show you the different type of methods that you can use if you don&#8217;t feel comfortable showing your facebook account to some random person.</p>
<p>Source: <a href="http://digg.com/newsbar/Technology/what_to_do_when_a_potential_employer_asks_for_your_facebook_password?utm_source=facebook&amp;amp%3butm_medium=post&amp;amp%3butm_content=2025th&amp;amp%3butm_campaign=wall">http://digg.com/newsbar/Technology/what_to_do_when_a_potential_employer_asks_for_your_facebook_password?utm_source=facebook&amp;amp%3butm_medium=post&amp;amp%3butm_content=2025th&amp;amp%3butm_campaign=wall</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.irvingduran.com/2012/04/what-to-do-when-a-potential-employer-asks-for-your-facebook-password-digg-technology/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Linux is Built &#124; The Linux Foundation Video Site</title>
		<link>http://blog.irvingduran.com/2012/04/how-linux-is-built-the-linux-foundation-video-site/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-linux-is-built-the-linux-foundation-video-site</link>
		<comments>http://blog.irvingduran.com/2012/04/how-linux-is-built-the-linux-foundation-video-site/#comments</comments>
		<pubDate>Mon, 09 Apr 2012 20:12:08 +0000</pubDate>
		<dc:creator>blacknred0</dc:creator>
				<category><![CDATA[media]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[os]]></category>

		<guid isPermaLink="false">http://blog.irvingduran.com/?p=488</guid>
		<description><![CDATA[Do you think that Microsoft is dominating still? Do you think that you don&#8217;t need or use Linux OS?  Learn more on how you are using Linux OS on your daily basis and you don&#8217;t even know it.  This is an OS that is so stable that needs to be more marketable so you know [...]]]></description>
			<content:encoded><![CDATA[<p>Do you think that Microsoft is dominating still? Do you think that you don&#8217;t need or use Linux OS?  Learn more on how you are using Linux OS on your daily basis and you don&#8217;t even know it.  This is an OS that is so stable that needs to be more marketable so you know that you are using it.<br />
<a href="http://video.linux.com/videos/how-linux-is-built">How Linux is Built | The Linux Foundation Video Site</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.irvingduran.com/2012/04/how-linux-is-built-the-linux-foundation-video-site/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Ends Support of Windows XP, Office 2003 in 2014!</title>
		<link>http://blog.irvingduran.com/2012/02/microsoft-ends-support-of-windows-xp-office-2003-in-2014/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=microsoft-ends-support-of-windows-xp-office-2003-in-2014</link>
		<comments>http://blog.irvingduran.com/2012/02/microsoft-ends-support-of-windows-xp-office-2003-in-2014/#comments</comments>
		<pubDate>Fri, 24 Feb 2012 14:18:04 +0000</pubDate>
		<dc:creator>blacknred0</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[end of life]]></category>
		<category><![CDATA[no support]]></category>
		<category><![CDATA[windows xp]]></category>

		<guid isPermaLink="false">http://blog.irvingduran.com/?p=485</guid>
		<description><![CDATA[After all of these years (since 2001 to be exact) Windows XP was released and now Microsoft has decided to end the product life support. So long my friend!!! Source: Microsoft Ends Support of Windows XP, Office 2003 in 2014!.]]></description>
			<content:encoded><![CDATA[<p>After all of these years (since 2001 to be exact) Windows XP was released and now Microsoft has decided to end the product life support.</p>
<p>So long my friend!!!</p>
<p>Source: <a href="http://www.microsoft.com/en-us/windows/endofsupport.aspx?WT.mc_id=MSCOM_EN_US_DLN_NEWS_123LMUS014562">Microsoft Ends Support of Windows XP, Office 2003 in 2014!</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.irvingduran.com/2012/02/microsoft-ends-support-of-windows-xp-office-2003-in-2014/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Recipe Calculator by SparkPeople</title>
		<link>http://blog.irvingduran.com/2012/02/recipe-calculator-by-sparkpeople/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=recipe-calculator-by-sparkpeople</link>
		<comments>http://blog.irvingduran.com/2012/02/recipe-calculator-by-sparkpeople/#comments</comments>
		<pubDate>Wed, 22 Feb 2012 17:52:22 +0000</pubDate>
		<dc:creator>blacknred0</dc:creator>
				<category><![CDATA[life]]></category>
		<category><![CDATA[calculator]]></category>
		<category><![CDATA[nutrition]]></category>
		<category><![CDATA[nutrition facts]]></category>

		<guid isPermaLink="false">http://blog.irvingduran.com/?p=483</guid>
		<description><![CDATA[Lately I&#8217;ve been creating protein bard for me instead of buying them at the store.  In all reality I needed something that I could say ok, for each bar these are my nutrition facts.  I found this Recipe Calculator by SparkPeople that will be able to do that.  Super awesome!!!]]></description>
			<content:encoded><![CDATA[<p>Lately I&#8217;ve been creating protein bard for me <img src='http://blog.irvingduran.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  instead of buying them at the store.  In all reality I needed something that I could say ok, for each bar these are my nutrition facts.  I found this <a href="http://recipes.sparkpeople.com/recipe-calculator.asp">Recipe Calculator</a> by SparkPeople that will be able to do that.  Super awesome!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.irvingduran.com/2012/02/recipe-calculator-by-sparkpeople/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IRS lists top tax scams for 2012 &#124; The Biz Beat</title>
		<link>http://blog.irvingduran.com/2012/02/irs-lists-top-tax-scams-for-2012-the-biz-beat/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=irs-lists-top-tax-scams-for-2012-the-biz-beat</link>
		<comments>http://blog.irvingduran.com/2012/02/irs-lists-top-tax-scams-for-2012-the-biz-beat/#comments</comments>
		<pubDate>Fri, 17 Feb 2012 15:49:03 +0000</pubDate>
		<dc:creator>blacknred0</dc:creator>
				<category><![CDATA[web]]></category>
		<category><![CDATA[government]]></category>
		<category><![CDATA[irs]]></category>
		<category><![CDATA[scam]]></category>
		<category><![CDATA[taxes]]></category>

		<guid isPermaLink="false">http://blog.irvingduran.com/?p=481</guid>
		<description><![CDATA[See the link below for more information about top scams that people do from the IRS.  Every year people go through this to remaindering that the IRS still does everything by paper!!! Source IRS lists top tax scams for 2012 &#124; The Biz Beat]]></description>
			<content:encoded><![CDATA[<p>See the link below for more information about top scams that people do from the IRS.  Every year people go through this to remaindering that the IRS still does everything by paper!!!</p>
<p>Source <a href="http://blogs.ajc.com/business-beat/2012/02/17/irs-lists-top-tax-scams-for-2012/?cxntfid=blogs_business_beat">IRS lists top tax scams for 2012 | The Biz Beat</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.irvingduran.com/2012/02/irs-lists-top-tax-scams-for-2012-the-biz-beat/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Looking for RecBoot &#8211; force take out from recovery mode iphone</title>
		<link>http://blog.irvingduran.com/2012/02/looking-for-recboot-force-take-out-from-recovery-mode-iphone/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=looking-for-recboot-force-take-out-from-recovery-mode-iphone</link>
		<comments>http://blog.irvingduran.com/2012/02/looking-for-recboot-force-take-out-from-recovery-mode-iphone/#comments</comments>
		<pubDate>Thu, 16 Feb 2012 03:12:18 +0000</pubDate>
		<dc:creator>blacknred0</dc:creator>
				<category><![CDATA[freebies]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[recovery mode]]></category>

		<guid isPermaLink="false">http://blog.irvingduran.com/?p=476</guid>
		<description><![CDATA[This program would allow you to put your iPhone or ipod into recovery mode or out of recovery mode. Right now is only available for MAC. If you find a Windows or Linux version, please share Source: Looking for RecBoot? Sebastien Peek&#8217;s Blog.]]></description>
			<content:encoded><![CDATA[<p>This program would allow you to put your iPhone or ipod into recovery mode or out of recovery mode. Right now is only available for MAC. If you find a Windows or Linux version, please share <img src='http://blog.irvingduran.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Source:</p>
<p><a href="http://www.sebby.net/2011/11/looking-for-recboot/">Looking for RecBoot? Sebastien Peek&#8217;s Blog</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.irvingduran.com/2012/02/looking-for-recboot-force-take-out-from-recovery-mode-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can I delete the file C:\Windows\winsxs\ManifestCache to increase disk space?</title>
		<link>http://blog.irvingduran.com/2012/02/can-i-delete-the-file-cwindowswinsxsmanifestcache-to-increase-disk-space/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=can-i-delete-the-file-cwindowswinsxsmanifestcache-to-increase-disk-space</link>
		<comments>http://blog.irvingduran.com/2012/02/can-i-delete-the-file-cwindowswinsxsmanifestcache-to-increase-disk-space/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 00:21:35 +0000</pubDate>
		<dc:creator>blacknred0</dc:creator>
				<category><![CDATA[computers]]></category>
		<category><![CDATA[large file]]></category>
		<category><![CDATA[manifest]]></category>
		<category><![CDATA[space issues]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://blog.irvingduran.com/?p=402</guid>
		<description><![CDATA[Give the following credit to the source. &#8211; Recently I was fixing a PC that had the manifest file at 30GB.  Below you would be able to find the proper steps to fix the issue. Hi, All the necessary files for specific additions, roles, applications will be contained in the %windir%\Winsxs directory. The %windir%\winsxs folder [...]]]></description>
			<content:encoded><![CDATA[<div>Give the following credit to the source. <img src='http://blog.irvingduran.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  &#8211; Recently I was fixing a PC that had the manifest file at 30GB.  Below you would be able to find the proper steps to fix the issue.</div>
<div></div>
<blockquote>
<div>Hi,</div>
<div>All the necessary files for specific additions, roles, applications will be contained in the %windir%\Winsxs directory. The %windir%\winsxs folder (also referred to as the component store) is used to store all the installation source files that are needed for Windows to service itself and its optional components, which takes the place of the traditional flat from media.</div>
<div>To achieve saving some space there is a workaround – to manually delete some folders from WINSXS. Take great care what folders you can delete, because you may break the functionality of your Windows installation and render your product unsupported.</div>
<div>a. Click on start and type cmd in the search bar and right click on cmd.exe in the search pane and click Run as administrator.<br />
n. Navigate to folder C:\Windows\Winsxs<br />
c. Run this command:<br />
<strong>Net stop trustedinstaller </strong></div>
<div>NOTE: Wait for this service to stop and ensure it stops successfully. If you are unable to stop the service, you must restart your machine. Do not attempt the next step if you are unable to stop the trustedinstaller service.</div>
<div>d. Then execute these commands:<br />
<strong>Takeown /f %windir%\winsxs\ManifestCache\*</strong></div>
<p><strong></strong>e. You should now have available, some more free disk space.</p>
<div>Hope this helps.</div>
<p><strong>Del /q %windir%\winsxs\ManifestCache\*</strong> <strong> Icacls %windir%\winsxs\ManifestCache\* /GRANT administrators:F</strong></p></blockquote>
<p>Source <a href="http://social.answers.microsoft.com/Forums/en-US/vistafiles/thread/3d83a43c-0af1-448f-8bda-8150ff201d2e">Can I delete the file C:\Windows\winsxs\ManifestCache to increase disk space?</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.irvingduran.com/2012/02/can-i-delete-the-file-cwindowswinsxsmanifestcache-to-increase-disk-space/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Politics &amp; Elections 2012</title>
		<link>http://blog.irvingduran.com/2012/02/google-politics-elections-2012/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=google-politics-elections-2012</link>
		<comments>http://blog.irvingduran.com/2012/02/google-politics-elections-2012/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 18:56:58 +0000</pubDate>
		<dc:creator>blacknred0</dc:creator>
				<category><![CDATA[news and politics]]></category>
		<category><![CDATA[2012]]></category>
		<category><![CDATA[elections]]></category>
		<category><![CDATA[news]]></category>
		<category><![CDATA[politics]]></category>

		<guid isPermaLink="false">http://blog.irvingduran.com/?p=469</guid>
		<description><![CDATA[Keep yourself posted in term of what is going on in the politics area with Google politics. This is a great tool to start up to see what issues are the ones that these folks are concentrating the most. Source Google Politics &#38; Elections.]]></description>
			<content:encoded><![CDATA[<p>Keep yourself posted in term of what is going on in the politics area with Google politics. This is a great tool to start up to see what issues are the ones that these folks are concentrating the most.</p>
<p><iframe id="pol-feature-trends" class="pol-embedded-gadget pol-fixed-height" src="http://gpolinsights.appspot.com/?embed=1" scrolling="no" width="710" height="972"></iframe></p>
<p>Source <a href="http://www.google.com/elections/ed/us/trends">Google Politics &amp; Elections</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.irvingduran.com/2012/02/google-politics-elections-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to send emails to phone as a SMS</title>
		<link>http://blog.irvingduran.com/2012/02/how-to-send-emails-to-phone-as-a-sms/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-to-send-emails-to-phone-as-a-sms</link>
		<comments>http://blog.irvingduran.com/2012/02/how-to-send-emails-to-phone-as-a-sms/#comments</comments>
		<pubDate>Wed, 01 Feb 2012 16:12:04 +0000</pubDate>
		<dc:creator>blacknred0</dc:creator>
				<category><![CDATA[hack]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[email client]]></category>
		<category><![CDATA[mobile]]></category>
		<category><![CDATA[outlook]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[sms]]></category>
		<category><![CDATA[text messages]]></category>
		<category><![CDATA[thunderbird]]></category>

		<guid isPermaLink="false">http://blog.irvingduran.com/?p=466</guid>
		<description><![CDATA[Ever wonder how you can send from your email to a cellphone/mobile device a message? Well, let me tell you that there is a way!!! the only requirements are: You know the person&#8217;s number (duh!) You know which service carrier or provider they have service carrier or provider how to do it Alltel 10 digit [...]]]></description>
			<content:encoded><![CDATA[<p>Ever wonder how you can send from your email to a cellphone/mobile device a message? Well, let me tell you that there is a way!!! the only requirements are:</p>
<ol>
<li>You know the person&#8217;s number (duh!)</li>
<li>You know which service carrier or provider they have</li>
</ol>
<table style="background-color: #ffffff;" width="430" border="1" cellspacing="3" cellpadding="3">
<tbody>
<tr>
<td><strong>service carrier or provider</strong></td>
<td><strong>how to do it<br />
</strong></td>
</tr>
<tr>
<td>Alltel</td>
<td>10 digit phone number@message.alltel.com</td>
</tr>
<tr>
<td>AT&amp;T (formerly Cingular)</td>
<td>10 digit phone number@txt.att.net<br />
10 digit phone number@mms.att.net (MMS)<br />
10 digit phone number@cingularme.com</td>
</tr>
<tr>
<td>Boost Mobile</td>
<td>10 digit phone number@myboostmobile.com</td>
</tr>
<tr>
<td>Nextel (now Sprint Nextel)</td>
<td>10 digit phone number@messaging.nextel.com</td>
</tr>
<tr>
<td>Sprint PCS (now Sprint Nextel)</td>
<td>10 digit phone number@messaging.sprintpcs.com<br />
10 digit phone number@pm.sprint.com (MMS)</td>
</tr>
<tr>
<td>T-Mobile</td>
<td>10 digit phone number@tmomail.net</td>
</tr>
<tr>
<td>US Cellular</td>
<td>10 digit phone numberemail.uscc.net (SMS)<br />
10 digit phone number@mms.uscc.net (MMS)</td>
</tr>
<tr>
<td>Verizon</td>
<td>10 digit phone number@vtext.com<br />
10 digit phone number@vzwpix.com (MMS)</td>
</tr>
<tr>
<td>Virgin Mobile USA</td>
<td>10 digit phone number@vmobl.com</td>
</tr>
</tbody>
</table>
<p>&#8230;and that&#8217;s it pretty much. Enjoy!!!</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.irvingduran.com/2012/02/how-to-send-emails-to-phone-as-a-sms/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

