<?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>Tech.It.2.Me-&#62;{By.Anton.Perez} &#187; Resource</title>
	<atom:link href="http://antonperez.com/category/resource/feed/" rel="self" type="application/rss+xml" />
	<link>http://antonperez.com</link>
	<description>Technical satisfaction guaranteed...</description>
	<lastBuildDate>Fri, 10 Feb 2012 02:06:52 +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>Import mail and contacts into Gmail</title>
		<link>http://antonperez.com/2011/03/10/import-mail-and-contacts-into-gmail/</link>
		<comments>http://antonperez.com/2011/03/10/import-mail-and-contacts-into-gmail/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 00:08:49 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[Resource]]></category>

		<guid isPermaLink="false">http://antonperez.com/2011/03/10/import-mail-and-contacts-into-gmail/</guid>
		<description><![CDATA[I just recently switched to using Gmail as my universal e-mail for manageability purposes, which means (1) I can now send e-mail using my Yahoo! or Hotmail account within Gmail and (2) All my e-mails in Yahoo! and Hotmail is now archived in my Gmail account.&#160; I was able to accomplish #1 easily by adding [...]]]></description>
			<content:encoded><![CDATA[<p>I just recently switched to using Gmail as my universal e-mail for manageability purposes, which means (1) I can now send e-mail using my Yahoo! or Hotmail account within Gmail and (2) All my e-mails in Yahoo! and Hotmail is now archived in my Gmail account.&#160; </p>
<p>I was able to accomplish #1 easily by adding POP accounts, but only stumbled on the importing of mail and contacts today.&#160; When I did, I was happy and relieved, so sharing this info, as others may benefit from it.</p>
<p><a href="http://antonperez.com/wp-content/uploads/2011/03/image7.png"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="image" border="0" alt="image" src="http://antonperez.com/wp-content/uploads/2011/03/image_thumb.png" width="504" height="62" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2011/03/10/import-mail-and-contacts-into-gmail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Web Service Reference in Visual Studio 2010</title>
		<link>http://antonperez.com/2011/03/04/web-service-reference-in-visual-studio-2010/</link>
		<comments>http://antonperez.com/2011/03/04/web-service-reference-in-visual-studio-2010/#comments</comments>
		<pubDate>Fri, 04 Mar 2011 22:48:08 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[ASP.NET]]></category>
		<category><![CDATA[General Development]]></category>
		<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Resource]]></category>

		<guid isPermaLink="false">http://antonperez.com/2011/03/04/web-service-reference-in-visual-studio-2010/</guid>
		<description><![CDATA[If you’ve used Visual Studio 2008 or 2010, you’ll notice that Web Reference is no longer there (like in VS 2005 and previous), instead, you see Service Reference –- actually, it’s STILL there, just hidden! So, what’s the difference?  Well, according to this post: Add Web Reference is the old-style, deprecated ASP.NET webservices (ASMX) technology [...]]]></description>
			<content:encoded><![CDATA[<p>If you’ve used Visual Studio 2008 or 2010, you’ll notice that <strong>Web Reference is</strong> no longer there (like in VS 2005 and previous), instead, you see <strong>Service Reference –</strong>-<strong> </strong>actually, it’s STILL there, just hidden!</p>
<p>So, what’s the difference?  Well, according to this <a href="http://stackoverflow.com/questions/2158106/web-reference-vs-service-reference">post</a>:</p>
<blockquote><p><strong>Add Web Reference</strong> is the old-style, deprecated ASP.NET webservices (ASMX) technology (using only the XmlSerializer for your stuff) &#8211; if you do this, you get an ASMX client for an ASMX web service. You can do this in just about any project (Web App, Web Site, Console App, Winforms &#8211; you name it).</p>
<p><strong>Add Service Reference</strong> is the new way of doing it, adding a WCF service reference, which gives you a much more advanced, much more flexible service model than just plain old ASMX stuff.</p></blockquote>
<p>So, how do you access it?  Simple &#8212; right-click on <strong>Service References </strong>in the Solution Explorer window and…</p>
<p><img style="display: inline; border: 0px;" title="image" src="http://antonperez.com/wp-content/uploads/2011/03/image.png" border="0" alt="image" width="539" height="440" /></p>
<p>Click on “Advanced…”</p>
<p><img style="display: inline; border: 0px;" title="image" src="http://antonperez.com/wp-content/uploads/2011/03/image1.png" border="0" alt="image" width="555" height="521" /></p>
<p>Then click on “Add Web Reference…”</p>
<p><img style="display: inline; border: 0px;" title="image" src="http://antonperez.com/wp-content/uploads/2011/03/image2.png" border="0" alt="image" width="705" height="496" /></p>
<p>Voila!  You can now consume the web service like you did pre-Visual Studio 2008 era.  Happy coding!</p>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2011/03/04/web-service-reference-in-visual-studio-2010/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Field Test for iPhone Signal Strength Returns in iOS 4.1</title>
		<link>http://antonperez.com/2010/09/09/field-test-for-iphone-signal-strength-returns-in-ios-4-1/</link>
		<comments>http://antonperez.com/2010/09/09/field-test-for-iphone-signal-strength-returns-in-ios-4-1/#comments</comments>
		<pubDate>Thu, 09 Sep 2010 22:06:46 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[Gadgets]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[Resource]]></category>

		<guid isPermaLink="false">http://antonperez.com/2010/09/09/field-test-for-iphone-signal-strength-returns-in-ios-4-1/</guid>
		<description><![CDATA[Archived from Mac Observer. When Apple released iOS 4.1 for iPhone Wednesday, the company once again included a utility that allows you to measure your signal strength on your device, a utility that that had been available before the release of iOS 4, but was not included when iOS 4 was introduced earlier this year. [...]]]></description>
			<content:encoded><![CDATA[<p><em>Archived from </em><a href="http://www.macobserver.com/tmo/article/field_test_for_iphone_signal_strength_returns_in_ios_4.1/?utm_campaign=feature"><em>Mac Observer</em></a><em>.</em></p>
<p>When Apple released iOS 4.1 for iPhone Wednesday, the company once again included a utility that allows you to measure your signal strength on your device, a utility that that had been available before the release of iOS 4, but was not included when iOS 4 was introduced earlier this year.</p>
<p>The utility is called Field Test, and it is accessed by dialing *3001#12345#* (followed by the “Call” button). When you do that, a blank “page” launches with a title bar that reads “Field Test,” along with a Refresh button, as you can see in the image below. The Field Test part is that your signal bars will be replaced with a negative number that measures signal strength as expressed in decibels of noise in the signal.</p>
<p>To that end, the higher the number, the stronger the signal. -80db would represent a stronger signal than -90db, and -102db would be worse still (for instance, this reporter has particularly foul coverage at his office). <em>TMO</em> staff around the country found signal strengths ranging from -82db to about -120db, with any number lower than that representing little or no practical signal.</p>
<p>From user posts at <em>Gizmodo</em>, which <a href="http://gizmodo.com/5633290/test-your-iphone-4s-antenna-reception-with-field-test-mode-in-ios-41">first noted</a> the return of Field Test, any Field Test near -70db represents something close to full signal strength. One staff member with an AT&amp;T 3G Microcell got a measurement of -67db from one meter away from his microcell.</p>
<p>Pressing the Home button on your iPhone will end the Field Test and return your display to normal. Locking your phone (or allowing it to self-lock) with the Field Test still running will leave the Field Test numbers in your menu bar until you come back and quit the app via the Home button.</p>
<p><img style="border-right-width: 0px; display: inline; border-top-width: 0px; border-bottom-width: 0px; border-left-width: 0px" title="image" border="0" alt="image" src="http://antonperez.com/wp-content/uploads/2010/09/image.png" width="324" height="484" /></p>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2010/09/09/field-test-for-iphone-signal-strength-returns-in-ios-4-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cheapest days to shop online reference</title>
		<link>http://antonperez.com/2010/08/16/cheapest-days-to-shop-online-reference/</link>
		<comments>http://antonperez.com/2010/08/16/cheapest-days-to-shop-online-reference/#comments</comments>
		<pubDate>Mon, 16 Aug 2010 20:45:58 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[Deals]]></category>
		<category><![CDATA[Resource]]></category>

		<guid isPermaLink="false">http://antonperez.com/2010/08/16/cheapest-days-to-shop-online-reference/</guid>
		<description><![CDATA[Archiving via Yahoo! Shine. Mondays: Best for buying men’s and women’s dress pants. The average sale is about 48 percent off. Mondays: Also great for purchasing sunglasses. The average discount is 55 percent. Tuesdays: Best for buying men’s apparel. The average discount is 42 percent. Wednesdays: Find lowest prices on shoes. The average discount is [...]]]></description>
			<content:encoded><![CDATA[<p>Archiving via <a href="http://shine.yahoo.com/event/financiallyfit/cheapest-days-to-shop-online-2301854/">Yahoo! Shine</a>.</p>
<ul>
<li><strong>Mondays:</strong> Best for buying men’s and women’s dress pants. The average sale is about 48 percent off. </li>
<li><strong>Mondays:</strong> Also great for purchasing sunglasses. The average discount is 55 percent. </li>
<li><strong>Tuesdays:</strong> Best for buying men’s apparel. The average discount is 42 percent. </li>
<li><strong>Wednesdays:</strong> Find lowest prices on shoes. The average discount is 38 percent. </li>
<li><strong>Wednesdays:</strong> Also find best deals on kids’ clothing. The average discount is around 40 percent. </li>
<li><strong>Thursdays:</strong> Best for buying women’s handbags. The average discount is 36 percent. </li>
<li><strong>Fridays:</strong> Biggest sales on accessories like jewelry, belts and scarves. The average discount is 42 percent. </li>
<li><strong>Saturdays:</strong> Best sales on intimates (37 percent off) and jackets/outerwear (51 percent off). </li>
<li><strong>Sundays:</strong> Buy your swimsuits for an average 52 percent off!</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2010/08/16/cheapest-days-to-shop-online-reference/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Reference for jsSHA</title>
		<link>http://antonperez.com/2010/07/28/reference-for-jssha/</link>
		<comments>http://antonperez.com/2010/07/28/reference-for-jssha/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 02:16:30 +0000</pubDate>
		<dc:creator>anton</dc:creator>
				<category><![CDATA[General Development]]></category>
		<category><![CDATA[How-to]]></category>
		<category><![CDATA[jQuery]]></category>
		<category><![CDATA[Resource]]></category>

		<guid isPermaLink="false">http://antonperez.com/2010/07/28/reference-for-jssha/</guid>
		<description><![CDATA[jsSHA - A JavaScript implementation of the complete Secure Hash Standard family (SHA-1, SHA-224, SHA-256, SHA-384, and SHA-512) by Brian Turek About ------------------------- jsSHA is a javaScript implementation of the complete Secure Hash Algorithm family as defined by FIPS PUB 180-2 (http://csrc.nist.gov/publications/fips/fips180-2/fips180-2withchangenotice.pdf) With the slow phasing out of MD5 as the standard hash to use [...]]]></description>
			<content:encoded><![CDATA[<pre>jsSHA - A JavaScript implementation of the complete Secure Hash Standard family
            (SHA-1, SHA-224, SHA-256, SHA-384, and SHA-512) by Brian Turek

About
-------------------------
jsSHA is a javaScript implementation of the complete Secure Hash Algorithm family as defined
by FIPS PUB 180-2 (http://csrc.nist.gov/publications/fips/fips180-2/fips180-2withchangenotice.pdf)

With the slow phasing out of MD5 as the standard hash to use in web applications, a client-side
implementation of the complete Secure Hash Standard family was needed.  Due to SHA-384 and SHA-512's
use of 64-bit values throughout the algorithm, JavaScript can not easily natively support the calculation
of these hashes.  As a result, a bit of hacking had to be done to make sure the values behaved themselves.
SHA-224 was added to the Secure Hash Standard family on 25 February 2004 so it was also included in this
package.

Files
-------------------------
src/sha.js
The complete SHA implementation

src/sha1.js
A smaller/web friendly implementation of only SHA-1.

src/sha256.js
A smaller/web friendly implementation of only SHA-224 and SHA-256.

src/sha512.js
A smaller/web friendly implementation of only SHA-384 and SHA-512.

src/wrapper.js
Wrapper functions to be added to the above script files if the jsSHA 0.1 interface is desired

test/test.html
A test page that calculates various hashes and has their correct values.

Usage
-------------------------
Include the desired JavaScript file (sha.js, sha1.js, sha256.js, or sha512.js) in your header (sha.js used below):
&lt;script type=&quot;text/javascript&quot; src=&quot;/path/to/sha.js&quot;&gt;&lt;/script&gt;

Instantiate a new jsSHA object with your string to be hashed as the only parameter.  Then, call getHash with the desired
hash variant (SHA-1, SHA-224, SHA-256, SHA-384, or SHA-512) and output type (HEX or B64).  In the example below,
&quot;This is a Test&quot; and &quot;SHA-512&quot; were used as the string to be hashed and variant respectively.

var shaObj = new jsSHA(&quot;This is a Test&quot;);
var hash = shaObj.getHash(&quot;SHA-512&quot;, &quot;HEX&quot;);

NOTE: If you are using sha1.js, omit the SHA variant parameter as there is only one option.

Since the interface was changed drastically from 0.1 to 1.0, src/wrapper.js is included in case the old interface is desired.
Simply copy and paste the correct functions from wrapper.js to the bottom of the used jsSHA JS file.

Contact Info
-------------------------
The project's website is located at http://jssha.sourceforge.net/</pre>
]]></content:encoded>
			<wfw:commentRss>http://antonperez.com/2010/07/28/reference-for-jssha/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

