<?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>HydTech &#187; tmobile</title>
	<atom:link href="http://hydtechblog.com/tag/tmobile/feed/" rel="self" type="application/rss+xml" />
	<link>http://hydtechblog.com</link>
	<description>anotha hyd anotha day</description>
	<lastBuildDate>Sun, 24 Jul 2011 22:38:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Pop them Bubbles Live Wallpaper</title>
		<link>http://hydtechblog.com/2010/10/27/pop-them-bubbles-live-wallpaper/</link>
		<comments>http://hydtechblog.com/2010/10/27/pop-them-bubbles-live-wallpaper/#comments</comments>
		<pubDate>Wed, 27 Oct 2010 21:44:01 +0000</pubDate>
		<dc:creator>HydTech</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[android lwp]]></category>
		<category><![CDATA[blackberry live wallpaper]]></category>
		<category><![CDATA[cingular]]></category>
		<category><![CDATA[htc]]></category>
		<category><![CDATA[live wallpaper]]></category>
		<category><![CDATA[lwp]]></category>
		<category><![CDATA[popping bubbles]]></category>
		<category><![CDATA[Sprint]]></category>
		<category><![CDATA[tap tap bubbles]]></category>
		<category><![CDATA[tmobile]]></category>
		<category><![CDATA[Verizon]]></category>

		<guid isPermaLink="false">http://hydtechblog.com/?p=965</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><a href="http://hydtechblog.com/wp-content/uploads//2010/10/screenshot_7.png"><img src="http://hydtechblog.com/wp-content/uploads//2010/10/screenshot_7.png" alt="" title="screenshot_7" width="320" height="480" class="alignnone size-full wp-image-960" /></a></p>
<p>
<a href="http://hydtechblog.com/wp-content/uploads//2010/10/screenshot_9.png"><img src="http://hydtechblog.com/wp-content/uploads//2010/10/screenshot_9.png" alt="" title="screenshot_9" width="320" height="480" class="alignnone size-full wp-image-961" /></a></p>
<img src="http://hydtechblog.com/?ak_action=api_record_view&id=965&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://hydtechblog.com/2010/10/27/pop-them-bubbles-live-wallpaper/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to connect to Ad Hoc networks using Tmobile G1 Android</title>
		<link>http://hydtechblog.com/2009/09/14/how-to-connect-to-ad-hoc-networks-using-tmobile-g1-android/</link>
		<comments>http://hydtechblog.com/2009/09/14/how-to-connect-to-ad-hoc-networks-using-tmobile-g1-android/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 18:38:07 +0000</pubDate>
		<dc:creator>HydTech</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Linux (Ubuntu)]]></category>
		<category><![CDATA[ad hoc]]></category>
		<category><![CDATA[g1]]></category>
		<category><![CDATA[hero]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[tiwlan]]></category>
		<category><![CDATA[tiwlan.ini]]></category>
		<category><![CDATA[tmobile]]></category>
		<category><![CDATA[wep]]></category>
		<category><![CDATA[wpa_supplicant]]></category>
		<category><![CDATA[wpa_supplicant.conf]]></category>

		<guid isPermaLink="false">http://hydtechblog.com/?p=464</guid>
		<description><![CDATA[Intro The G1 does not connect to ad hoc networks through the wifi manager but we can hack it to allow scanning and connecting to ad hocs. I&#8217;ve been trying to figure this out for the longest time. Before you begin, you need to root your G1 and be comfortable using the command line. We [...]]]></description>
			<content:encoded><![CDATA[<p><strong><em>Intro</em></strong></p>
<p>The G1 does not connect to ad hoc networks through the wifi manager but we can hack it to allow scanning and connecting to ad hocs.  I&#8217;ve been trying to figure this out for the longest time.  Before you begin, you need to root your G1 and be comfortable using the command line.  We will be editing tiwlan.ini and wpa_supplicant.conf.  I will be showing you 2 ways to edit the files.  Using vi and adb.</p>
<p><strong><br />
<em>Settings</em></strong></p>
<p>edit tiwlan.ini to read:</p>
<p>WiFiAdHoc = <a href="http://hydtechblog.com">1</a><br />
dot11DesiredSSID = HydtechAdhoc (or whatever name u want)<br />
dot11DesiredBSSType = 0</p>
<p>edit wpa_supplicant.conf to read:</p>
<p>ctrl_interface=tiwlan0<br />
update_config=1<br />
eapol_version=1<br />
ap_scan=2  (tells wpa_supplicant to scan hidden networks)</p>
<p>network={<br />
    ssid=&#8221;HydtechAdhoc&#8221;<br />
    scan_ssid=1    (for APs with multiple SSIDS)<br />
    mode=1<br />
    key_mgmt=NONE<br />
    group=WEP104<br />
    auth_alg=SHARED<br />
    wep_key0=&#8221;MyWepKey&#8221;  (replace MyWepKey with your key)<br />
}</p>
<p><strong><em>How to edit using vi:</em></strong></p>
<p>Download terminal from the market and type:</p>
<p>su (for superuser mode)<br />
mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system (mount partition as writable)<br />
vi /system/etc/wifi/tiwlan.ini (open tiwlan.ini in vi text editor)</p>
<p>now type A to enter editing mode, finish editing your file and hold trackball+1 to stop editing.  To save and exit type :wq</p>
<p>vi /data/misc/wifi/wpa_supplicant.conf (open file for editing)</p>
<p>edit with the settings given above and exit and don&#8217;t forget to change the partition back to read only<br />
mount -o ro,remount -t yaffs2 /dev/block/mtdblock3 /system</p>
<p>reboot</p>
<p><strong><em>How to edit files with adb on Ubuntu:</em></strong></p>
<p>Connect your g1 to the computer using a usb cable and make sure USB debugging in enabled<br />
Open up terminal and type<br />
cd /home/hydtech/[android sdk folder]/tools (navigate to the directory which has you adb tool)</p>
<p>get the files from the device and place them in the root folder<br />
sudo ./adb pull /system/etc/wifi/tiwlan.ini /<br />
sudo ./adb pull /data/misc/wifi/wpa_supplicant.conf /</p>
<p>edit and save the files with the settings provided above using gedit or kate or what have you</p>
<p>make the partition read writable<br />
adb shell<br />
mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system<br />
exit</p>
<p>place the files back onto the device<br />
sudo ./adb push /tiwlan.ini /system/etc/wifi/tiwlan.ini<br />
sudo ./adb push /wpa_supplicant.conf /data/misc/wifi/wpa_supplicant.conf</p>
<p>make partition read only again<br />
adb shell<br />
mount -o ro,remount -t yaffs2 /dev/block/mtdblock3 /system<br />
exit</p>
<p>reboot device<a href="http://hydtechblog.com">.</a></p>
<p><em><strong>Troubleshooting</strong></em></p>
<p>shows connected but no internet<br />
1. I was having a problem where the connection would keep disconnecting and when it would connect, it wouldn&#8217;t load pages.  To fix this I had to disable my WEP key.</p>
<p>SSID not showing<br />
2. If the SSID isn&#8217;t showing up in the list, make sure you have ap_scan=2 in your wpa_supplicant</p>
<p>Unsuccessful connection<br />
3. Try enabling static IP if DHCP isn&#8217;t working for you.  It&#8217;s under advanced menu.</p>
<img src="http://hydtechblog.com/?ak_action=api_record_view&id=464&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://hydtechblog.com/2009/09/14/how-to-connect-to-ad-hoc-networks-using-tmobile-g1-android/feed/</wfw:commentRss>
		<slash:comments>30</slash:comments>
		</item>
		<item>
		<title>aHome Houston Rockets Theme</title>
		<link>http://hydtechblog.com/2009/08/09/ahome-houston-rockets-theme/</link>
		<comments>http://hydtechblog.com/2009/08/09/ahome-houston-rockets-theme/#comments</comments>
		<pubDate>Sun, 09 Aug 2009 08:48:37 +0000</pubDate>
		<dc:creator>HydTech</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Linux (Ubuntu)]]></category>
		<category><![CDATA[ahome]]></category>
		<category><![CDATA[g1]]></category>
		<category><![CDATA[houston]]></category>
		<category><![CDATA[rockets]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[tmobile]]></category>

		<guid isPermaLink="false">http://hydtechblog.com/?p=395</guid>
		<description><![CDATA[This is the first theme I made for the G1 Android. It&#8217;s for use with aHome or aHome lite. I published it in the market for $0.99. Hope you like it.]]></description>
			<content:encoded><![CDATA[<p>This is the first theme I made for the G1 Android.  It&#8217;s for use with aHome or aHome lite.  I published it in the market for $0.99.  Hope you like it.</p>
<p><img src="http://hydtech.files.wordpress.com/2009/08/1249806775013.png" alt="1249806775013" title="1249806775013" width="320" height="480" class="aligncenter size-full wp-image-396" /></p>
<p><img src="http://hydtech.files.wordpress.com/2009/08/1249806810735.png" alt="1249806810735" title="1249806810735" width="320" height="480" class="aligncenter size-full wp-image-397" /></p>
<p><img src="http://hydtech.files.wordpress.com/2009/08/1249806848163.png" alt="1249806848163" title="1249806848163" width="320" height="480" class="aligncenter size-full wp-image-398" /></p>
<p><img src="http://hydtech.files.wordpress.com/2009/08/1249806911086.png" alt="1249806911086" title="1249806911086" width="320" height="480" class="aligncenter size-full wp-image-399" /></p>
<p><img src="http://hydtech.files.wordpress.com/2009/08/1249807494612.png" alt="1249807494612" title="1249807494612" width="320" height="480" class="aligncenter size-full wp-image-401" /></p>
<img src="http://hydtechblog.com/?ak_action=api_record_view&id=395&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://hydtechblog.com/2009/08/09/ahome-houston-rockets-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to get MMS picture messaging working on a T-mobile G1, Android without the data plan</title>
		<link>http://hydtechblog.com/2009/02/06/how-to-get-mms-picture-messaging-working-on-a-t-mobile-g1-without-the-data-plan/</link>
		<comments>http://hydtechblog.com/2009/02/06/how-to-get-mms-picture-messaging-working-on-a-t-mobile-g1-without-the-data-plan/#comments</comments>
		<pubDate>Fri, 06 Feb 2009 05:57:10 +0000</pubDate>
		<dc:creator>HydTech</dc:creator>
				<category><![CDATA[Android]]></category>
		<category><![CDATA[Linux (Ubuntu)]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[data plan]]></category>
		<category><![CDATA[droid]]></category>
		<category><![CDATA[g1]]></category>
		<category><![CDATA[mms]]></category>
		<category><![CDATA[mytouch]]></category>
		<category><![CDATA[nexus one]]></category>
		<category><![CDATA[t-mobile g1 gphone settings mms 216.155.165.050]]></category>
		<category><![CDATA[tmobile]]></category>
		<category><![CDATA[tzones]]></category>

		<guid isPermaLink="false">http://hydtechblog.com/?p=164</guid>
		<description><![CDATA[T-mobile reps almost convinced me that there would be no way to get my picture messaging working on my g1 without the data plan. I turned off the data plan as soon as I set it up upon arrival. According the the T-mobile reps, I can&#8217;t even place or receive calls without the data plan. [...]]]></description>
			<content:encoded><![CDATA[<p>T-mobile reps almost convinced me that there would be no way to get my picture messaging working on my g1 without the data plan.  I turned off the data plan as soon as I set it up upon arrival.  According the the T-mobile reps, I can&#8217;t even place or receive calls without the data plan. (Either they say anything to get you to buy the plan or they&#8217;re just dumb useless fellows, the latter being more accurate based on experience.)</p>
<p>So after doing some yahooing and alot of futsin around, I finally managed to get my MMS working by changing the settings.  Here&#8217;s what to do:</p>
<p>Goto<br />
Menu -&gt; Settings -&gt; Wireless Controls -&gt; Mobile Networks -&gt; Access Point Names -&gt; T-Mobile US</p>
<p>Make sure you go into T-mobile US and not any other setting and change the name like I did, don&#8217;t even create a new one.  It took me 2 months to figure out what I did wrong.</p>
<p>Change the settings to the following:<br />
Name: T-Mobile US<br />
APN: wap.voicestream.com<br />
proxy: 216.155.165.050<br />
port: 8080<br />
Username:   not set (delete everything in this field)<br />
Password:  not set (delete all here too)<br />
Server:  not set (delete the *)<br />
MMSC: http://mms.msg.eng.t-mobile.com/mms/wapenc<br />
MMS Proxy: 216.155.165.050<br />
MMS Port: 8080<br />
MMC: 310<br />
MNC: 260<br />
APN type: not set</p>
<p>Restart your phone. Now your MMS should work. If you have the 5.99 t-zones, I think your internet will work too. (UPDATE- it does work. check <a href="http://hydtechblog.com/2009/02/10/t-mobile-g1-internet-with-999-tzones-hack-599-no-more/"> here</a>)</p>
<p>[digg=http://digg.com/gadgets/How_To_MMS_picture_messaging_on_Tmobile_G1_without_data_plan]</p>
<p>*Troubleshooting*<br />
1. If you&#8217;re having trouble still, go into mobile networks and enable &#8216;data roaming&#8217; and &#8216;use only 2G&#8217;</p>
<p>2. Make sure your connecting to T-mobile US<br />
-to do this go to the marketplace and download &#8216;any cut&#8217;<br />
-open any cut and click create shortcut<br />
-goto activity and select &#8216;testing&#8217;<br />
-you should have a shortcut on your desktop that says testing, unless your desktop was full.<br />
-click testing -&gt; goto phone info -&gt; this should tell you what connection you are connecting/connected to.<br />
-For some reason if you are not using T-mobile US, change the settings for the appropriate one.<br />
-If phone info shows you are not connected, hit menu and click on more and click enable data.<br />
-now data should be connected.</p>
<p>********<br />
<strong><span style="color:#0000ff;">sorry guys, I haven&#8217;t been keeping up with this topic.  Honestly, I don&#8217;t ever receive MMS.  And If its that important, you can add on the $25 package once every few days, download all your mms the same day and take it off.</span></strong><br />
********</p>
<p>G1 mirror screen protector<br />
<a href="http://www.amazon.com/T-Mobile-Google-Android-Mirror-Protector/dp/B001L18CU2%3FSubscriptionId%3DAKIAJUCDYRUVH2ZMXP6A%26tag%3Dfathwismamopa%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3DB001L18CU2"><img src="http://ecx.images-amazon.com/images/I/31CeEK0XgfL._SL160_.jpg" alt="" /></a></p>
<p>UPDATE*- These settings work for iPhone on T-mobile, maybe they might work on the Android:</p>
<p>Data:<br />
APN: web.omwtoday.com<br />
(no user name, no password)</p>
<p>MMS:<br />
APN: web.omwtoday.com<br />
(no user name, no password)<br />
MMSC: http://wirelessfour.mmsmvno.com/mms/wapenc<br />
MMS Proxy: 216.155.165.50:8080<br />
Max msg size: 1058576<br />
MMS UA PROF URL: (none) </p>
<img src="http://hydtechblog.com/?ak_action=api_record_view&id=164&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://hydtechblog.com/2009/02/06/how-to-get-mms-picture-messaging-working-on-a-t-mobile-g1-without-the-data-plan/feed/</wfw:commentRss>
		<slash:comments>170</slash:comments>
		</item>
	</channel>
</rss>

