<?xml version="1.0" encoding="UTF-8"?>
<!--Generated by Squarespace V5 Site Server v5.13.159 (http://www.squarespace.com) on Thu, 23 May 2013 18:09:57 GMT--><feed xmlns="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/"><title>Guy Techie</title><subtitle>Guy Techie</subtitle><id>http://www.guytechie.com/articles/</id><link rel="alternate" type="application/xhtml+xml" href="http://www.guytechie.com/articles/"/><link rel="self" type="application/atom+xml" href="http://www.guytechie.com/articles/atom.xml"/><updated>2013-03-08T03:36:16Z</updated><generator uri="http://five.squarespace.com/" version="Squarespace V5 Site Server v5.13.159 (http://www.squarespace.com)">Squarespace</generator><entry><title>The Finer Points of Backslash</title><id>http://www.guytechie.com/articles/2013/3/7/the-finer-points-of-backslash.html</id><link rel="alternate" type="text/html" href="http://www.guytechie.com/articles/2013/3/7/the-finer-points-of-backslash.html"/><author><name>Guy Techie</name></author><published>2013-03-08T03:18:26Z</published><updated>2013-03-08T03:18:26Z</updated><content type="html" xml:lang="en-US"><![CDATA[<div id="_mcePaste"></div>
<div></div>
<div><span class="full-image-block ssNonEditable"><span>&nbsp;</span></span></div>
<p style="text-align: center;"><img src="http://www.guytechie.com/storage/the-finer-points-of-backslash/The%20Dreaded%20Backslash.jpg?__SQUARESPACE_CACHEVERSION=1362713458790" alt="" /></p>
<div></div>
<div>The insistence of using backslash to indicate the domain in logins is the bane of our IT existence. &nbsp;There are many users who put in help desk tickets for login issues simply because of the requirement of the company's domain. &nbsp;Why can't the domain be forced? &nbsp;Why can't the user just type their username like any other entity that requires a login?</div>
<div></div>
<div></div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div>The web-facing Microsoft products we use (Outlook Web Access and Remote Destop Web Access) even insists on "Domain\user name:". &nbsp;As techies, we are used to this. &nbsp;Of course, "username@domain" is also a valid login credential. &nbsp;So why doesn't Microsoft use @domain as the standard login prompt for all things domain? &nbsp;Instead of asking for "Domain\user name", they could simply say "username@domain:" by default, and give techs an easier way to change it to "Company Email Address:".</div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div></div>
<div></div>
<div>Of course, real domains would have something like "username@domain.com". &nbsp;People are used to the @ sign. &nbsp;They do not know much about the backslash (or \). &nbsp;Here are some reasons why the backslash shouldn't be used for the general public:</div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div><ol>
<li>People are used to using forward slashes, especially since they enter in URLs.</li>
<li>Most people do not even know where the backslash is on the keyboard.</li>
<li>Mobile devices hide the backslash key several layers deep because it isn't used often in "real life".</li>
</ol></div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div>As techies, we're used to the backslash because we need to use it to enter login credentials with domains as well as using it for disk paths (\\server\folder\filename.txt or C:\Windows\notepad.exe). &nbsp;This seems trivial to us. &nbsp;However, if you have to deploy Outlook Web Access or Remote Desktop Web Access for the "normals", be prepared for a flood of help desk tickets and phone calls.</div>
<div></div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div></div>
<div></div>
<div></div>
<div><strong>Case Study</strong></div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div></div>
<div></div>
<div>The pain that started this rant was actually Windows Server 2008 R2's RD Web Desktop. &nbsp;After many users flooded our gates with login issues (not reading the email we issued), my boss decided to fix the issue on our side.</div>
<div></div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div></div>
<div>It was actually a maddening experience for both users and IT. &nbsp;RD Web Access allows you to log into the web portal with just your username (sans domain). &nbsp;However, when you click on any resources (RemoteApp, Remote Desktop, etc), you get an error. &nbsp;This is because RD Web Access is simply passing the username (sans domain) to RD Gateway as if you were logging in as a local user as opposed to a domain user). &nbsp;I'd be happier if it gave a "username invalid" error at the very begining!</div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div></div>
<div></div>
<div>I found this <a href="http://social.technet.microsoft.com/Forums/en/winserverTS/thread/f02bd61f-d6fd-4c05-b17a-deffcc61a4e9" target="_blank">Microsoft Technet thread</a>&nbsp;very helpful. &nbsp;However, not being a code monkey myself, it took a lot of concentration to figure out what to really do. &nbsp;I eventually asked one of our web development people to hold my hands, but it worked out in the end.</div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div></div>
<div></div>
<div>Reading through, I initially edited the login.aspx file (Lionel Chen's suggestion in the thread). &nbsp;This is the login screen that shows up right after you punch the URL into Internet Explorer. &nbsp;And yes, it has to be Internet Explorer because it requires Active X (why, I don't know, since it justs invokes the Remote Desktop Client via a custom RDP file). &nbsp;There was a way to insert the domain into the username text box. &nbsp;However, the cursor defaults to the beginning of the line so if a user starts typing their username right away (from habit), it would become "usernamedomain\" all mashed up.</div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div></div>
<div></div>
<div>That won't work. &nbsp;Now what?</div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div></div>
<div></div>
<div>Well, further into the thread, Ross CP's idea was to modify the javascript to add the "domain\" before the username. &nbsp;This worked, but if a seasoned user already typed in their domain, you're essentially sending "domain\domain\username" or "domain\username@domain.com".</div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div></div>
<div>Further down the thread, Markus E improved the code to check for any backslashes or @ symbols in the input. &nbsp;If it detects any, it would skip the code that adds "domain\" to the username.</div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div><strong>The Bright Side</strong></div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div></div>
<div></div>
<div>In the end, it was a painful ordeal for a simple request: force a default domain. &nbsp;Why doesn't Microsoft allow us to do this without stupid hacks?</div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div></div>
<div></div>
<div>On the bright side, I learned a little Javascript. &nbsp;Also, the payoff was worth it. &nbsp;The result was more elegant than training all 1000 users or messing with Microsoft's insistance on "domain\" continuity.</div>
<div></div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div></div>
<div>I hope this helps someone out there.</div>]]></content></entry><entry><title>T-Mo and Metro, Together At Last</title><id>http://www.guytechie.com/articles/2012/11/30/t-mo-and-metro-together-at-last.html</id><link rel="alternate" type="text/html" href="http://www.guytechie.com/articles/2012/11/30/t-mo-and-metro-together-at-last.html"/><author><name>Guy Techie</name></author><published>2012-12-01T00:56:38Z</published><updated>2012-12-01T00:56:38Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>Just as I was playing around with my T-Mobile SIM in my AT&amp;T Galaxy S3, I received a text from none other than T-Mobile.&nbsp; I thought they caught me using an unauthorized phone (scary), but in fact, they just wanted to let their customers know they have aquired MetroPCS.</p>
<p>Screenshot and link here: <a href="http://t-mo.co/metro-news">http://t-mo.co/metro-news</a></p>
<p><span class="thumbnail-image-block ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Ft-mobile-refarm-chicago%2FTmoMetro.png%3F__SQUARESPACE_CACHEVERSION%3D1354323592701',1280,720);"><img src="http://guytechie.squarespace.com/storage/thumbnails/6113855-21132630-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1354323592708" alt="" /></a></span></span></p>]]></content></entry><entry><title>T-Mobile 1900 MHz 3G Refarmed in Chicago!</title><id>http://www.guytechie.com/articles/2012/11/30/t-mobile-1900-mhz-3g-refarmed-in-chicago.html</id><link rel="alternate" type="text/html" href="http://www.guytechie.com/articles/2012/11/30/t-mobile-1900-mhz-3g-refarmed-in-chicago.html"/><author><name>Guy Techie</name></author><published>2012-12-01T00:39:28Z</published><updated>2012-12-01T00:39:28Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>I was testing a T-Mobile SIM on my unlocked AT&amp;T Samsung Galaxy S3 (SGH-I747) when I noticed an H+</p>
<p>near the signal bars!&nbsp; I did a speed test, and everything looks like true.&nbsp; HSPA+ on 1900 MHz, people!&nbsp; This mean iPhone users on T-Mobile will automatically see 3G speeds here!</p>
<p>Of course, this also means that unlocked AT&amp;T and world phones that doesn't have HSPA+ on 1700 MHz AWS radios will now get HSPA+ speeds on T-Mobile!</p>
<p>Check it out!</p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp;<span class="thumbnail-image-block ssNonEditable"><span>&nbsp;</span></span>&nbsp;<span class="thumbnail-image-block ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Ft-mobile-refarm-chicago%2FTmo.jpg%3F__SQUARESPACE_CACHEVERSION%3D1354323141178',1280,720);"><img src="http://guytechie.squarespace.com/storage/thumbnails/6113855-21132614-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1354323141181" alt="" /></a></span></span></p>
<p>&nbsp;</p>
<p>&nbsp;&nbsp;&nbsp;<span class="thumbnail-image-block ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Ft-mobile-refarm-chicago%2FI747.png%3F__SQUARESPACE_CACHEVERSION%3D1354323327458',1280,720);"><img src="http://guytechie.squarespace.com/storage/thumbnails/6113855-21132627-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1354323327463" alt="" /></a></span></span>&nbsp;</p>
<p>&nbsp;</p>
<p><span class="thumbnail-image-block ssNonEditable"><span><a href="javascript:showFullImage('/display/ShowImage?imageUrl=%2Fstorage%2Ft-mobile-refarm-chicago%2FSpeedtest.png%3F__SQUARESPACE_CACHEVERSION%3D1354323373439',1280,720);"><img src="http://guytechie.squarespace.com/storage/thumbnails/6113855-21132629-thumbnail.jpg?__SQUARESPACE_CACHEVERSION=1354323373447" alt="" /></a></span></span></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>]]></content></entry><entry><title>Backing Up SMS and MMS in Android (Also Dec 31, 1969 Messages Issue SOLVED!)</title><id>http://www.guytechie.com/articles/2012/8/15/backing-up-sms-and-mms-in-android-also-dec-31-1969-messages.html</id><link rel="alternate" type="text/html" href="http://www.guytechie.com/articles/2012/8/15/backing-up-sms-and-mms-in-android-also-dec-31-1969-messages.html"/><author><name>Guy Techie</name></author><published>2012-08-15T15:28:10Z</published><updated>2012-08-15T15:28:10Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>I actually found out how to back up SMS and MMS (along with the multimedia attachments) by accident when trying to troubleshoot another issue.&nbsp; The issue I was having was deleted MMS message threads would come back blank with a date of December 31, 1969.&nbsp; Without going into details, the only way to solve this was to delete the database that housed the SMS and MMS data because it was corrupted.</p>
<p>Using the app History Eraser did not help, nor did clearing the app data/cache, nor cache paration and Dalvik Cache helped with the issue.&nbsp; History Eraser gives you the ability to remove ALL messages (gives you a clean slate), but the problem comes back when I receive an MMS and decide to delete it.&nbsp; It comes back as a blank message with the 1969 date.</p>
<p>Time travel jokes aside, threads from different Android forums came to a dead end.&nbsp; All were dancing around the actual fix, so after reading them all, I got a better understanding of how Android stores it's SMS and MMS data.&nbsp; Know this helped fixed the problem, but also gave me a better way to backup and restore my messages along with the attachments.&nbsp; It's a boon to anyone who is ROM flashing addict.</p>
<p>&nbsp;</p>
<p>Without further ado, here's where the magic goes:</p>
<p>/data/data/com.android.providers.telephony/databases</p>
<p>/data/data/com.android.providers.telephony/app_parts</p>
<p>&nbsp;</p>
<p>In the databases folder, the file "mmssms.db" holds your SMS and MMS text messages, while the app_parts folder contain all of the MMS's attached files (photos, videos, audio, etc).</p>
<p>If you have the Dec 31, 1969 issue like I did, and you don't care to back up your messages, you can delete the "mmssms.db" file, as well as clear the contents out of the app_parts folder.&nbsp; You can then clear your Messenger app's data and cache and reboot your phone.&nbsp; You will have a clean slate.&nbsp; This is because the database file was corrupted and utilities that delete messages just deletes the contents inside of the bad databse file instead of deleting the actual file itself.</p>
<p>After all of this, your Messenger app will recreate the missing "mmssms.db" file from scratch.</p>
<p>&nbsp;</p>
<p>Now that you know how to fix the issue, as you can imagine, backing up the same file along with the app_parts folder will allow you to restore your message contents if you ever need to flash a new ROM or move to a different phone.</p>
<p>&nbsp;</p>
<p>All of this requires root, of course.&nbsp; You have many options to access these files, but the easiest for me is to use a root file manager such as Root Explorer to navigate to the path and copy &amp; paste the files and folders&nbsp;to my external SD card.&nbsp; When restoring, you may want to take note of the permissions of the original files and folders so you can set them back on the restored copies.</p>
<p>&nbsp;</p>
<p>The funny thing is I believe the corrupted database file was caused by using an SMS backup app.&nbsp; It saves your SMS and MMS in an XML file and restores the contents back into the database.&nbsp; The issue may be that MMS backups are not well supported, (they contain attachments and treated like email, unlike SMS).&nbsp; Unfortunately, it's still the best way to back up and restore individual messages with a surgeon's precision.&nbsp; Just make sure not to backup any MMS messages!</p>]]></content></entry><entry><title>How to Create an OS X Mountain Lion Bootable DVD</title><id>http://www.guytechie.com/articles/2012/7/26/how-to-create-an-os-x-mountain-lion-bootable-dvd.html</id><link rel="alternate" type="text/html" href="http://www.guytechie.com/articles/2012/7/26/how-to-create-an-os-x-mountain-lion-bootable-dvd.html"/><author><name>Guy Techie</name></author><published>2012-07-27T04:11:00Z</published><updated>2012-07-27T04:11:00Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p><iframe width="560" height="315" src="http://www.youtube.com/embed/2nTtMxZiXYk" frameborder="0" allowfullscreen></iframe></p>]]></content></entry><entry><title>How to Disable LTE on AT&amp;T Android Devices to Increase Battery Life</title><id>http://www.guytechie.com/articles/2012/7/23/how-to-disable-lte-on-att-android-devices-to-increase-batter.html</id><link rel="alternate" type="text/html" href="http://www.guytechie.com/articles/2012/7/23/how-to-disable-lte-on-att-android-devices-to-increase-batter.html"/><author><name>Guy Techie</name></author><published>2012-07-23T23:46:09Z</published><updated>2012-07-23T23:46:09Z</updated><content type="html" xml:lang="en-US"><![CDATA[<div id="_mcePaste">
<div></div>
<div>For those who have Android devices on AT&amp;T's LTE network, you may be able to get more battery life by switching back to AT&amp;T's HSPA+ network.&nbsp; It may be a slower network, but it's fast enough.&nbsp; After all, AT&amp;T's LTE isn't much faster than HSPA+ in some areas.&nbsp; What you lose in speed, you gain in battery life (another couple hours).</div>
<div></div>
<div>In my case, I was getting around 13 hours in my normal use of my Samsung Galaxy S III on LTE.&nbsp; Switching to HSPA+ gave me a more reasonable 16 hours.</div>
<div>Of course, your mileage may vary.</div>
<div></div>
<div>You can always switch between HSPA+ and LTE on the fly.&nbsp; It does take between 10 to 30 seconds to reconnect every time you switch, so it's not horrible.</div>
<div></div>
<div>Here are the steps to take:</div>
<div></div>
<div>&nbsp;1) Go to Settings.</div>
<div></div>
<div>&nbsp;2) Under "Wireless and Network", go to More Settings.</div>
<div></div>
<div>&nbsp;3) Go to Mobile Networks.</div>
<div></div>
<div>&nbsp;4) Go to Access Point Names.</div>
<div></div>
<div>&nbsp;5) Hit the Menu button, then the "New APN" button.</div>
<div></div>
<div>&nbsp;6) From here, enter the information below:</div>
<div></div>
<div>&nbsp;Name: AT&amp;T HSPA+<br />&nbsp;APN: wap.cingular<br />&nbsp;Proxy: leave blank<br />&nbsp;Port: leave blank<br />&nbsp;Username: <a href="mailto:WAP@CINGULARGPRS.COM">WAP@CINGULARGPRS.COM</a><br />&nbsp;Password: CINGULAR1 (must be all CAPS)<br />&nbsp;Server: leave blank<br />&nbsp;MMSC: <a href="http://mmsc.cingular.com">http://mmsc.cingular.com</a><br />&nbsp;MMS Proxy: wireless.cingular.com<br />&nbsp;MMS Port: 80<br />&nbsp;MCC: 310<br />&nbsp;MNC: 410<br />&nbsp;APN Type: leave blank<br />&nbsp;APN protocol: IPv4<br />&nbsp;Bearer: leave blank</div>
<div></div>
<div>&nbsp;7) Hit the menu button and then Save.</div>
<div></div>
<div>&nbsp;8) Select the newly created APN (AT&amp;T HSPA+) to switch to the new APN.</div>
<div></div>
<div>Your network indicator will show that your data is unavailable for about 10 to 30 seconds.&nbsp; You will notice when the indicator comes back, it will now say 4G and not 4G LTE.</div>
<div></div>
<div>Again, you can always come back to the Access Point Names and switch back to LTE by selecting the previous APN setting (on mine, the old APN setting was called "AT&amp;T PTA").</div>
<div></div>
<div>The name is not important.&nbsp; It's the settings.&nbsp; In fact, if you ever lose your LTE APN settings, add a new APN and enter these settings and save:</div>
<div></div>
<div>&nbsp;Name: AT&amp;T PTA<br />&nbsp;APN: pta<br />&nbsp;Proxy: leave blank<br />&nbsp;Port: leave blank<br />&nbsp;Username: leave blank<br />&nbsp;Password: leave blank<br />&nbsp;Server: leave blank<br />&nbsp;MMSC: <a href="http://mmsc.mobile.att.net">http://mmsc.mobile.att.net</a><br />&nbsp;MMS Proxy: proxy.mobile.att.net<br />&nbsp;MMS Port: 80<br />&nbsp;MCC:310<br />&nbsp;MNC:410<br />&nbsp;APN Type: default,mms,supl<br />&nbsp;APN protocol: IPv4<br />&nbsp;Bearer: leave blank</div>
<div></div>
<div>So what's the actual speed difference?&nbsp; Just like with battery life, there's too many variables.&nbsp; In the same spot on my desk, I tested HSPA+ (4G) and LTE (4G LTE), and here's my results.</div>
<div></div>
<div>Of course, I've seen AT&amp;T HSPA+ go as high as 6 Mbps down and 2 Mbps up.&nbsp; On AT&amp;T LTE, I've seen it go as high as 26 Mbps down and 8 Mbps up.&nbsp; The above speed test is what I typically get at my house and at my work place.</div>
<div></div>
<div>Trust me, you don't need 26 Mbps on a mobile phone.&nbsp; It's nice to have but it's nicer to have that extra battery life instead.</div>
<div></div>
</div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div></div>
<div><span class="full-image-inline ssNonEditable"><img style="width: 320px;" src="http://www.guytechie.com/storage/post-images/LTE-3.png?__SQUARESPACE_CACHEVERSION=1343087628634" alt="" /><span><img style="width: 320px;" src="http://www.guytechie.com/storage/post-images/HSPA-3.png?__SQUARESPACE_CACHEVERSION=1343087580011" alt="" /></span></span></div>
<div></div>
<div></div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div id="_mcePaste"></div>
<div></div>
<div></div>
<div></div>
<div>
<div></div>
<div></div>
<div></div>
<div></div>
<div>Of course, I've seen AT&amp;T HSPA+ go as high as 6 Mbps down and 2 Mbps up. &nbsp;On AT&amp;T LTE, I've seen it go as high as 26 Mbps down and 8 Mbps up. &nbsp;The above speed test is what I typically get at my house and at my work place.</div>
<div></div>
<div></div>
<div></div>
<div>Trust me, you don't need 26 Mbps on a mobile phone. &nbsp;It's nice to have but it's nicer to have that extra battery life instead.</div>
</div>]]></content></entry><entry><title>A Suggestion for Android Phone Makers</title><id>http://www.guytechie.com/articles/2012/5/25/a-suggestion-for-android-phone-makers.html</id><link rel="alternate" type="text/html" href="http://www.guytechie.com/articles/2012/5/25/a-suggestion-for-android-phone-makers.html"/><author><name>Guy Techie</name></author><published>2012-05-25T14:29:56Z</published><updated>2012-05-25T14:29:56Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>Listen up, Motorola, HTC, Samsung, LG, or whoever is making the next big Android smartphone. &nbsp;You want to be an instant hit with both mainstream users and enthusiasts? &nbsp;Become both a big hit and a cult classic? &nbsp;Here's a suggestion for you: make a stock Android experience ROM available for download for your phones that you fully support.</p>
<p>This will work better with HTC or Samsung, who already have a huge mainstream market share. &nbsp;It'll work because there are many users who are actually in love with the customized skin. &nbsp;I'm talking about the HTC Sense and Samsung TouchWiz. &nbsp;Come to think of it, I think HTC may benefit more since there are more fans of Sense than TouchWiz. &nbsp;If that's the case, HTC should also think about going back to removable batteries and expandable storage.</p>
<p>I know every manufacturer of Android phones want to differentiate from every other manufacturer, which is why they make these custom skins. &nbsp;I don't think it's a bad thing necesarily. &nbsp;A lot of non-technical people find them a lot easier to live with. &nbsp;Some even add real features missing from the stock Android experience. &nbsp;However, there are those "minority" who still want a stock Android experience.</p>
<p>Those people will flock towards Nexus phones. &nbsp;However, after the Nexus One, the other Nexus phones didn't really push the boundaries when it came to hardware. &nbsp;The Nexus S came out with a single-core CPU and a 5 MP camera when phones were coming out with dual-cores and 8 MP cameras. &nbsp;The Galaxy Nexus seem more like what the Nexus S should have been, but they still stuck with a 5 MP camera. &nbsp;Neither of the two had expandable storage. &nbsp;But, they were the only phones available with stock Android and (supposedly) frequent Google-sanctioned updates.</p>
<p>While the Nexus line of phones were behind, HTC and Samsung were producing excellent phones with drool-worthy specs. &nbsp;Of course, you do have to give up the stock Android experience for whatever HTC or Samsung decides to put on the phone.</p>
<p>So my suggestion? &nbsp;Why not also produce a fully-functional non-warranty breaking stock Android ROM that's downloadable for those people who want it? &nbsp;It can be updated quicker, and you'll appease both the mainstream and the cult users. &nbsp;It'll be an instant hit! &nbsp;And the kicker? &nbsp;Since you're the only company doing this, you will garner a lot of attention as well as customers. &nbsp;And guess what? &nbsp;If everyone else follows, you'll be a legend since you will be known as the company that started it!</p>
<p>To sweeten the pot, the stock Android experience ROM can be fully open source. &nbsp;This means that the community can improve the OS for your hardware, making it more desirable to have. &nbsp;You may have to make a deal with some hardware vendors (camera, GPS, etc) for making their closed-source drivers available to users, though.</p>
<p>As for proprietary technology such as Beats Audio and S Voice? &nbsp;Well, you can leave those out of the stock Android experience. &nbsp;After all, those who are looking for the stock Android experience don't care for such things anyways. &nbsp;Since it's open source, if they want these extra features, someone in the community can create something like it to fill in those gaps. &nbsp;And those who want it can support those programmers.</p>
<p>So who will be first? &nbsp;Any takers?</p>]]></content></entry><entry><title>If I Was in Charge of T-Mobile USA</title><id>http://www.guytechie.com/articles/2012/3/22/if-i-was-in-charge-of-t-mobile-usa.html</id><link rel="alternate" type="text/html" href="http://www.guytechie.com/articles/2012/3/22/if-i-was-in-charge-of-t-mobile-usa.html"/><author><name>Guy Techie</name></author><published>2012-03-22T16:08:52Z</published><updated>2012-03-22T16:08:52Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>I'm sure we all of us has fantasized being in charge of an established company.&nbsp; Maybe you have an idea that could turn them around, or make them better.&nbsp; My ideas seem to keep me up at night, so I decided to write them down.&nbsp; Maybe someone who matters (or their competitors) will pick it up.&nbsp; If so, don't forget to write me a check.</p>
<p>T-Mobile has always been looked at as the underdog, but they are also looked at as the favorite carrier of smartphone enthusiasts.&nbsp; They are more flexible than any of the carriers here in the US, and they are the only other carrier that uses GSM.&nbsp; GSM allows us to swap phones easily due to the use of the standard SIM card.&nbsp; However, their use of the AWS (1700 MHz) band for UTMS and HSPA+ (3G/4G) limits their phone choice.&nbsp; However, they are already changing for the better.</p>
<p>&nbsp;</p>
<p><strong>The Ship is Already Turning Around</strong></p>
<p>I am happy to hear they are starting to refarm their 1900 MHz band that's currently being used for GSM for HSPA+.&nbsp; This will allow more unlocked phones on T-Mobile's network, and will also allow the use of Apple's iPhones and iPads at full speeds.&nbsp; My international model of the Samsung Galaxy S II will also work on T-Mobile, as do other global unlocked phones.&nbsp; I can't wait!&nbsp; If you can't make them come to you, why not come to them?</p>
<p>Another benefit to this move?&nbsp; Areas where T-Mobile does not have 3G/4G coverage (1700/2100 MHz HSPA+), but already have EDGE (2G) and voice will now have coverage!&nbsp; That's because the area is already being blanketed with service in the 1900 MHz band for EDGE.</p>
<p>Their primary reason to refarm their 1900 MHz band isn't to make more phones available to them (though I wished it was - they could have done this sooner!).&nbsp; Instead, their motivation is to reclaim their current AWS (1700 MHz) band for a new LTE network.&nbsp; That's good news!</p>
<p>However, I wonder if the rest of the world will deploy LTE using the same band.&nbsp; LTE is a good reason to start with a clean slate - lets collaborate and make everything work!&nbsp; But alas, it doesn't work that way.&nbsp; Every country and region has their own way of assigning or licensing bands.&nbsp; Here in the US, we have the FCC.</p>
<p>Still, T-Mobile USA is heading in the right direction.&nbsp; Of course, I still have some ideas that I would implement if I were in charge of T-Mobile.</p>
<p>&nbsp;</p>
<p><strong>Be the Most Open Carrier</strong></p>
<p>As stated before, T-Mobile is the choice of smartphone enthusiasts.&nbsp; This is because T-Mobile as a whole is more accepting of unlocked phones.&nbsp; However, almost every T-Mobile store I go to, their employees are ignorant of cell phone world that's beyond T-Mobile's sandbox.</p>
<p>Unofficial iPhones on T-Mobile may be the only exception, but I've seen many confused looks when I brought in the Samsung Galaxy Nexus (GSM international model) which supports the AWS band.&nbsp; Also, the enthusiast customer-base is more interested in contract-free plans because they are the ones who bring in their own phones.&nbsp;</p>
<p>T-Mobile should start training their retail stores to be more accepting and open.&nbsp; If you are number 4 carrier, you should start thinking differently.&nbsp; You should also start marketing yourself as such.&nbsp; There's no shame in being a "dumb pipe".&nbsp; In fact, it's a great selling point.</p>
<p>In advertising, push your contract-free plans more than your contract plans.&nbsp; Make sure to let people know they can bring in any unlocked GSM phones.&nbsp; Educate people on how to unlock popular locked phones.&nbsp; Point them to Newegg, Expansys-USA, and Apple to purchase new unlocked phones that T-Mobile doesn't carry natively.&nbsp; And of course, sell unlocked phones in retail stores.&nbsp; Market them as "unlocked global phones".&nbsp; Hell, make sure to point out it also works on AT&amp;T.&nbsp; If you can't get them on your service, get them with a one-time sale of a phone!</p>
<p>In the spirit of being open, start selling contract-free SIM cards with service at retail stores!&nbsp; Those nice "online exclusive" plans such as the 100 minute voice, unlimited text, unlimited data (5GB high speed) for $30/mo - make them available in stores, too!&nbsp; There's something about instant gratification.&nbsp; It can be a deal maker.</p>
<p>T-Mobile should mirror the experience found overseas.&nbsp; When I was visiting Hong Kong, I was able to walk into any 3HK store (their local carrier) and purchase a plan that made sense for my short visit and just their SIM card.&nbsp; The kicker?&nbsp; They even knew the APN settings for MMS and data.&nbsp; Very few employees in T-Mobile and AT&amp;T know what APN is, nor do they know how to deal with a customer who just wants a SIM card and a short-term plan.&nbsp; Cater to the visitors from abroad, and cater to your US customers who think differently.</p>
<p>&nbsp;</p>
<p><strong>Plans that Makes Sense</strong></p>
<p>Play to your strengths.&nbsp; So you say your number of contract customers is down?&nbsp; Why not play up your no-contract plans?&nbsp; With the economy the way it is, people see value in a low-cost monthly bill that's possible due to unsubsidized phones.</p>
<p>They should also use Ting as an inspiration.&nbsp; Ting is a Sprint MNVO that lets you choose to have voice, text, and/or data.&nbsp; They let you mix and match.&nbsp; Also, any unused minutes, text, or data in your chosen tier gets refunded or applied to next month's bill.</p>
<p>There are some people who simply do not talk on the phone much.&nbsp; Heck, I don't even text all that much.&nbsp; I'm a data man who occasionally uses minutes and texts.&nbsp; I was doing fine with 500 minutes, 1000 text, and unlimited data - which is what I used to have with AT&amp;T (and it still cost $85/mo - damn AT&amp;T).</p>
<p>Right now, T-Mobile's offer of 100 minutes, unlimited text, and unlimited data (5GB full speed) for $30/mo works for me.&nbsp; Add the $10 for unlimited mobile-to-mobile and the plan is sweetened.&nbsp; But I'd still like to see the uncoupling of these services.&nbsp; It allows the customer to feel like they have control over their plan and their bill.</p>
<p>&nbsp;</p>
<p><strong>The Upshot</strong></p>
<p>While I know this was a long read, I do believe they make sense for both the consumers and the company.&nbsp; It's a good way to bump up to number 3 at least.&nbsp; Their competitor who can steal these ideas and bury T-Mobile would be AT&amp;T.&nbsp; AT&amp;T is the only other GSM carrier in the US.&nbsp; If they become more flexible, push out discounted no-contract plans, and offer unlocked unsubsidized phones.&nbsp; Because they already have 3G/4G (HSPA+) on the "right" bands, unlocked phones from all over the world can already benefit on AT&amp;T's network.&nbsp; However, AT&amp;T has their heads deeper in the sand than T-Mobile and won't acknowledge this.&nbsp; Heck, I've had the Samsung Galaxy S II (international GSM model) on AT&amp;T when the iPhone 5 didn't come out as people hoped for (July 2011).</p>
<p>So if I was in charge of AT&amp;T, I'd do all of this.&nbsp; But since I like the underdog, I'd like to see T-Mobile take the ideas instead.</p>]]></content></entry><entry><title>T-Mobile is Faster on EDGE When Throttled on 3G/4G</title><id>http://www.guytechie.com/articles/2012/3/10/t-mobile-is-faster-on-edge-when-throttled-on-3g4g.html</id><link rel="alternate" type="text/html" href="http://www.guytechie.com/articles/2012/3/10/t-mobile-is-faster-on-edge-when-throttled-on-3g4g.html"/><author><name>Guy Techie</name></author><published>2012-03-11T01:49:04Z</published><updated>2012-03-11T01:49:04Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>Yes, I got throttled on T-Mobile, too. &nbsp;I have a 5GB full speed plan, and I was pushing it the first month just to test them out. &nbsp;I hit the limit only one day before the next billing cycle. &nbsp;Unfortuneately, the full speed data came back around mid afternoon and not at midnight of the new billing cycle.</p>
<p>During that time, i found out that if you turn off 3G/4G (HSPA+) on your phone to drop down to EDGE, you actually get faster speeds! &nbsp;Here's my demonstratin of EDGE actually being faster than 3G/4G (HSPA+) when throttled.</p>
<p>&nbsp;</p>
<p><iframe width="560" height="315" src="http://www.youtube.com/embed/lHnXeDDArcw" frameborder="0" allowfullscreen></iframe></p>]]></content></entry><entry><title>Why T-Mobile $30 - Monthly 4G 100 Minutes, Unlimited Data &amp; Text Makes Sense</title><id>http://www.guytechie.com/articles/2012/1/27/why-t-mobile-30-monthly-4g-100-minutes-unlimited-data-text-m.html</id><link rel="alternate" type="text/html" href="http://www.guytechie.com/articles/2012/1/27/why-t-mobile-30-monthly-4g-100-minutes-unlimited-data-text-m.html"/><author><name>Guy Techie</name></author><published>2012-01-28T01:02:23Z</published><updated>2012-01-28T01:02:23Z</updated><content type="html" xml:lang="en-US"><![CDATA[<p>I recently changed carriers due to AT&amp;T throttling me at 2 GB ($30 unlimited plan), even though the same price can get me 3 GB of data.  That didn't make sense to me, and seems like this is how AT&amp;T is trying to snuff out their remaining grandfathered customers.</p>
<p>Instead of going with a limited data plan, I jumped ship and gone T-Mobile.  They have prepaid plans called Monthly 4G.  There is one plan that is very interesting for people who don't talk all that much but instead rely on data and text.  I'm talking about the $30 plan that only have 100 minutes but gives you unlimited data (5 GB high speed) and text.</p>
<p>If you rely on nights and weekends, this isn't for you.  However if you make calls mostly in the day, the math makes sense.  You get charged $0.10 a minute beyond the allotted 100 minutes.  So if you add the usual $40 for voice (what AT&amp;T and T-Mobile charges for 500 minutes usually) into the bucket, you get an additional 400 minutes.  With the 100 minutes you already get, you're Even Steven with the other plans - same price, same minutes (again, with the disadvantage of no free nights and weekends).</p>
<p>And like with AT&amp;T, your unused minutes "roll over".  Well, actually, because it's prepaid, what you didn't use for the month stays in the bucket in dollar amounts.</p>
<p>Because of this, even if you talk more than the 100 minutes, you might still end up saving more than the T-Mobile $70 plan that has 500 minutes.</p>
<p>The only time this $30 plan will cost more than the $70 plan is if you talk more than 500 minutes a month.  And remember, this plan doesn't have free nights and weekends.</p>
<p>For me it works.  Even including day, nights, and weekend minutes, I don't ever go over 500 minutes.  I'm usually just under 400 minutes.  If I cut it down by using VoIP (such as Google Voice via GrooVe IP), I save even more.  Now that I have more data, VoIP is a choice I can easily make.</p>
<p>Just a word of warning though: VoIP (at least with Google Voice via GrooVe IP) doesn't work consistently on the 3G network.  Even when both up and down throughput is fast, some people say I am coming through crackling.  Sometimes I am clear but a few seconds delayed, making conversations awkward.  Sometimes I can hear them, but they can't hear me.  An vice versa.  Of course sometimes it works great.</p>
<p>Even on WIFI, it can get bad, but the experience is better and more consistent than 3G.  Strangely, it can work as well as 3G when you're throttled (tested it on my throttled AT&amp;T SIM card) which is to say hit or miss.</p>
<p>So this plan is essentially a data and text plan for $30.  It is a very compelling plan for a niche demographics, but I'm glad it exists.</p>
<p>Thank you, T-Mobile.  Good bye, AT&amp;T.</p>
<p>&nbsp;</p>]]></content></entry></feed>