<?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>mobile phone - Hamradio.my</title>
	<atom:link href="https://hamradio.my/category/mobile-phone/feed/" rel="self" type="application/rss+xml" />
	<link>https://hamradio.my/category/mobile-phone/</link>
	<description>Amateur Radio, Tech Insights and Product Reviews</description>
	<lastBuildDate>Tue, 12 Aug 2025 17:06:30 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=7.0</generator>

<image>
	<url>https://hamradio.my/wp-content/uploads/2026/02/cropped-cropped-image-removebg-preview-3-32x32.png</url>
	<title>mobile phone - Hamradio.my</title>
	<link>https://hamradio.my/category/mobile-phone/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>How to Host a Website From Your Phone Using IPv6</title>
		<link>https://hamradio.my/2025/08/how-to-host-a-website-from-your-phone-using-ipv6/</link>
					<comments>https://hamradio.my/2025/08/how-to-host-a-website-from-your-phone-using-ipv6/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Tue, 12 Aug 2025 17:06:26 +0000</pubDate>
				<category><![CDATA[ipv6]]></category>
		<category><![CDATA[mobile phone]]></category>
		<category><![CDATA[self hosted]]></category>
		<category><![CDATA[access phone web server ipv6]]></category>
		<category><![CDATA[duckdns ipv6 hosting]]></category>
		<category><![CDATA[dynv6 ipv6 hosting]]></category>
		<category><![CDATA[host website from phone]]></category>
		<category><![CDATA[ipv6 dynamic dns]]></category>
		<category><![CDATA[ipv6 mobile server]]></category>
		<category><![CDATA[ipv6 public address mobile]]></category>
		<category><![CDATA[ipv6 server setup]]></category>
		<category><![CDATA[ipv6 tutorial mobile]]></category>
		<category><![CDATA[ipv6 web hosting android]]></category>
		<category><![CDATA[ipv6 web hosting ios]]></category>
		<category><![CDATA[python http server mobile]]></category>
		<category><![CDATA[run http server on phone]]></category>
		<category><![CDATA[termux ipv6 server]]></category>
		<guid isPermaLink="false">https://hamradio.my/?p=8577</guid>

					<description><![CDATA[<p>I have always liked the idea of running a server from whatever device I have in my pocket. With IPv4 that is basically impossible on mobile data because your phone is behind carrier grade NAT. IPv6 changes the game. If your carrier gives you a real IPv6 address, your phone can be on the public [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2025/08/how-to-host-a-website-from-your-phone-using-ipv6/">How to Host a Website From Your Phone Using IPv6</a> appeared on <a href="https://hamradio.my">Hamradio.my - Amateur Radio, Tech Insights and Product Reviews</a> by <a href="https://hamradio.my/author/9m2pju/">9M2PJU</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<h1 class="wp-block-heading"></h1>



<p class="wp-block-paragraph">I have always liked the idea of running a server from whatever device I have in my pocket. With IPv4 that is basically impossible on mobile data because your phone is behind carrier grade NAT. IPv6 changes the game. If your carrier gives you a real IPv6 address, your phone can be on the public internet without any special tricks.</p>



<p class="wp-block-paragraph">I tried it on my own phone and it works.</p>



<h2 class="wp-block-heading">Finding Your IPv6 Address</h2>



<p class="wp-block-paragraph">First, check if your phone has IPv6 and whether it is a global address. On Android you can find it in Settings → About Phone → Status → IP address, or in Termux by running:</p>



<pre class="wp-block-code"><code>ip -6 addr show
</code></pre>



<p class="wp-block-paragraph">Look for something that starts with <code>2001:</code> or <code>2400:</code>. If it starts with <code>fe80:</code> that is a link local address and will not work for this. On iOS it is in Settings → Wi-Fi → tap your connected network → IPv6 Address.</p>



<h2 class="wp-block-heading">Running a Server</h2>



<p class="wp-block-paragraph">On Android, the easiest way is with Termux. Install Python and start a simple HTTP server:</p>



<pre class="wp-block-code"><code>pkg install python
python -m http.server 8080 --bind ::
</code></pre>



<p class="wp-block-paragraph">The bind option with <code>::</code> makes it listen on all IPv6 interfaces. You can use a dedicated web server app too, but this is the quickest way to test. On iOS you can use Pythonista, iSH or any app with a built in web server.</p>



<h2 class="wp-block-heading">Testing It</h2>



<p class="wp-block-paragraph">On your phone, open a browser and go to:</p>



<pre class="wp-block-code"><code>http:&#47;&#47;&#91;your_ipv6_address]:8080
</code></pre>



<p class="wp-block-paragraph">You need the square brackets for IPv6. If it works locally, try from another IPv6 capable device on the internet:</p>



<pre class="wp-block-code"><code>curl -6 http://&#91;your_ipv6_address]:8080
</code></pre>



<p class="wp-block-paragraph">If the page loads you have a public website running from your phone.</p>



<h2 class="wp-block-heading">Things That Might Get in the Way</h2>



<p class="wp-block-paragraph">Some mobile ISPs block inbound IPv6 traffic. If that happens nothing will load from outside. Your IPv6 address might also change when you reconnect to the network. Running a server will also keep the radio active which drains battery faster. There is no HTTPS by default so traffic is not encrypted.</p>



<h2 class="wp-block-heading">Making It Easier to Reach</h2>



<p class="wp-block-paragraph">Typing a long IPv6 address is inconvenient. You can use a free dynamic DNS service that supports IPv6 such as Dynv6 or DuckDNS. Once set up you can visit your server at an address like:</p>



<pre class="wp-block-code"><code>http:&#47;&#47;myname.dynv6.net:8080
</code></pre>



<h2 class="wp-block-heading">Why Bother</h2>



<p class="wp-block-paragraph">For me it is about the novelty of hosting something directly from a phone with no cloud in between. It is handy for quick file sharing, testing apps from real external clients, or just playing with IPv6 in a practical way. It is not a production setup but it is a fun reminder that with IPv6 the internet can be end to end again.</p>
<p>The post <a href="https://hamradio.my/2025/08/how-to-host-a-website-from-your-phone-using-ipv6/">How to Host a Website From Your Phone Using IPv6</a> appeared on <a href="https://hamradio.my">Hamradio.my - Amateur Radio, Tech Insights and Product Reviews</a> by <a href="https://hamradio.my/author/9m2pju/">9M2PJU</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://hamradio.my/2025/08/how-to-host-a-website-from-your-phone-using-ipv6/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Mobian: Bringing Debian to Mobile Devices and Its Benefits for Amateur Radio</title>
		<link>https://hamradio.my/2025/03/mobian-bringing-debian-to-mobile-devices-and-its-benefits-for-amateur-radio/</link>
					<comments>https://hamradio.my/2025/03/mobian-bringing-debian-to-mobile-devices-and-its-benefits-for-amateur-radio/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Sun, 09 Mar 2025 11:45:26 +0000</pubDate>
				<category><![CDATA[amateur radio]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[free open source software]]></category>
		<category><![CDATA[ham radio]]></category>
		<category><![CDATA[mobian]]></category>
		<category><![CDATA[mobile phone]]></category>
		<category><![CDATA[open source operating system]]></category>
		<category><![CDATA[portable]]></category>
		<category><![CDATA[AmateurRadio]]></category>
		<category><![CDATA[APRS]]></category>
		<category><![CDATA[EmComm]]></category>
		<category><![CDATA[fldigi]]></category>
		<category><![CDATA[hackrf]]></category>
		<category><![CDATA[hamradio]]></category>
		<category><![CDATA[LimeSDR]]></category>
		<category><![CDATA[LinuxMobile]]></category>
		<category><![CDATA[lora]]></category>
		<category><![CDATA[meshnetworking]]></category>
		<category><![CDATA[meshtastic]]></category>
		<category><![CDATA[Mobian]]></category>
		<category><![CDATA[MobianProject]]></category>
		<category><![CDATA[opensource]]></category>
		<category><![CDATA[POTA]]></category>
		<category><![CDATA[RTLSDR]]></category>
		<category><![CDATA[sdr]]></category>
		<category><![CDATA[SoftwareDefinedRadio]]></category>
		<category><![CDATA[sota]]></category>
		<category><![CDATA[WSJTX]]></category>
		<category><![CDATA[Xastir]]></category>
		<guid isPermaLink="false">https://hamradio.my/?p=6711</guid>

					<description><![CDATA[<p>In the ever-evolving world of open-source software, the Mobian project has emerged as a game-changer, bringing the power and flexibility of Debian to mobile devices. For amateur radio enthusiasts, this development presents a unique opportunity to integrate robust Linux-based tools into portable, mobile-friendly setups. In this blog post, we will explore Mobian, its installation process, [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2025/03/mobian-bringing-debian-to-mobile-devices-and-its-benefits-for-amateur-radio/">Mobian: Bringing Debian to Mobile Devices and Its Benefits for Amateur Radio</a> appeared on <a href="https://hamradio.my">Hamradio.my - Amateur Radio, Tech Insights and Product Reviews</a> by <a href="https://hamradio.my/author/9m2pju/">9M2PJU</a>.</p>
]]></description>
										<content:encoded><![CDATA[
<p class="wp-block-paragraph">In the ever-evolving world of open-source software, the Mobian project has emerged as a game-changer, bringing the power and flexibility of Debian to mobile devices. For amateur radio enthusiasts, this development presents a unique opportunity to integrate robust Linux-based tools into portable, mobile-friendly setups. In this blog post, we will explore Mobian, its installation process, and how it can enhance amateur radio operations.</p>



<h3 class="wp-block-heading"><strong>What is Mobian?</strong></h3>



<p class="wp-block-paragraph">Mobian is a project that aims to bring Debian to mobile devices while minimizing its specific customizations by upstreaming changes to the original Debian project. The project is maintained by two teams:</p>



<ol class="wp-block-list">
<li><strong>The Mobian Team</strong> &#8211; Responsible for maintaining downstream packages and handling image generation and distribution.</li>



<li><strong>The DebianOnMobile Team</strong> &#8211; Maintains packages that are already part of the Debian archive.</li>
</ol>



<p class="wp-block-paragraph">With Mobian, users can install a full Debian-based Linux operating system on their mobile devices, enabling them to use traditional Linux tools on the go. More information about Mobian can be found on the official website: <a href="https://mobian-project.org/">Mobian Project</a>.</p>



<figure class="wp-block-image size-full"><img  title="" fetchpriority="high" decoding="async" width="1024" height="576" src="https://hamradio.my/wp-content/uploads/2025/03/1682574258990.webp"  alt="1682574258990 Mobian: Bringing Debian to Mobile Devices and Its Benefits for Amateur Radio"  class="wp-image-6714" srcset="https://hamradio.my/wp-content/uploads/2025/03/1682574258990.webp 1024w, https://hamradio.my/wp-content/uploads/2025/03/1682574258990-300x169.webp 300w, https://hamradio.my/wp-content/uploads/2025/03/1682574258990-768x432.webp 768w" sizes="(max-width: 1024px) 100vw, 1024px" /></figure>



<h3 class="wp-block-heading"><strong>Installing Mobian</strong></h3>



<p class="wp-block-paragraph">Mobian supports various mobile devices, with installation instructions available on the official <a href="https://wiki.debian.org/Mobian">Mobian Supported Devices</a> page. Users can either:</p>



<ul class="wp-block-list">
<li>Build Mobian images locally following the <strong>mobian-recipes</strong> documentation.</li>



<li>Download official Mobian images from <a href="https://images.mobian-project.org/">Mobian Project</a>.</li>
</ul>



<p class="wp-block-paragraph">For security-conscious users, Mobian images come with signature verification options to ensure integrity.</p>



<h3 class="wp-block-heading"><strong>Why Mobian is Ideal for Amateur Radio Operators</strong></h3>



<p class="wp-block-paragraph">Amateur radio operators are always on the lookout for efficient and flexible solutions to enhance their portable radio communication setups. Here are some key reasons why Mobian is a great fit:</p>



<h4 class="wp-block-heading"><strong>1. Full Linux Environment on Mobile Devices</strong></h4>



<p class="wp-block-paragraph">With Mobian, radio enthusiasts can leverage the power of Debian’s vast repository of open-source tools, including:</p>



<ul class="wp-block-list">
<li><strong>Xastir</strong> – An APRS (Automatic Packet Reporting System) client.</li>



<li><strong>Fldigi</strong> – A software modem for digital modes like PSK31, RTTY, and more.</li>



<li><strong>WSJT-X</strong> – For weak-signal communication using modes like FT8 and WSPR.</li>



<li><strong>GNU Radio</strong> – For SDR (Software-Defined Radio) applications.</li>
</ul>



<h4 class="wp-block-heading"><strong>2. Software-Defined Radio (SDR) Integration</strong></h4>



<p class="wp-block-paragraph">Mobian enables seamless integration with SDR tools like RTL-SDR, HackRF, and LimeSDR, allowing hams to experiment with digital signal processing, spectrum monitoring, and remote radio control directly from their mobile devices.</p>



<h4 class="wp-block-heading"><strong>3. Portable APRS and GPS Tracking</strong></h4>



<p class="wp-block-paragraph">Using Mobian on a mobile device equipped with GPS, operators can:</p>



<ul class="wp-block-list">
<li>Run <strong>APRS software</strong> to report their location over RF or the internet.</li>



<li>Use <strong>GPS-based logging software</strong> for SOTA (Summits on the Air) and POTA (Parks on the Air) activities.</li>



<li>Track other amateur radio stations using APRS maps.</li>
</ul>



<h4 class="wp-block-heading"><strong>4. Customizable and Open-Source</strong></h4>



<p class="wp-block-paragraph">Unlike proprietary mobile operating systems, Mobian provides full control over software, privacy, and system configurations. Hams can customize their setups for:</p>



<ul class="wp-block-list">
<li><strong>Emergency communication (EmComm)</strong> applications.</li>



<li><strong>Mesh networking</strong> using protocols like AREDN and Meshtastic.</li>



<li><strong>Remote transceiver control</strong> via SSH or web-based interfaces.</li>
</ul>



<h4 class="wp-block-heading"><strong>5. Secure and Privacy-Focused</strong></h4>



<p class="wp-block-paragraph">Many amateur radio operators value privacy. Mobian, being Debian-based, prioritizes security and transparency, making it a great alternative to proprietary mobile OS platforms that collect user data.</p>



<h3 class="wp-block-heading"><strong>Expanding the Possibilities with Mobian</strong></h3>



<p class="wp-block-paragraph">Beyond amateur radio applications, Mobian serves as a versatile mobile platform for general-purpose computing, hacking, and privacy-focused mobile usage. Some additional possibilities include:</p>



<ul class="wp-block-list">
<li>Running <strong>packet radio applications</strong> for digital communications.</li>



<li>Using <strong>VoIP and SIP clients</strong> for secure voice communications.</li>



<li>Experimenting with <strong>LoRa and Meshtastic</strong> networks for long-range data exchange.</li>



<li>Implementing <strong>automation and remote control</strong> via MQTT and other IoT protocols.</li>
</ul>



<p class="wp-block-paragraph">Mobian users can keep up with the latest developments, features, and community discussions by following the <a href="https://blog.mobian.org/">Mobian Blog</a>.</p>



<h3 class="wp-block-heading"><strong>Challenges and Considerations</strong></h3>



<p class="wp-block-paragraph">While Mobian is an excellent project for amateur radio, users should be aware of some challenges:</p>



<ul class="wp-block-list">
<li><strong>Limited device support</strong> – Not all smartphones can run Mobian, so users must check compatibility.</li>



<li><strong>Battery life</strong> – Running a full Linux system on mobile hardware may drain batteries faster than optimized mobile OSes.</li>



<li><strong>Hardware access</strong> – Some mobile hardware components may not have full driver support.</li>
</ul>



<figure class="wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio"><div class="wp-block-embed__wrapper">
<iframe title="Unboxing the PinePhone by Pine64! - First look at Mobian (Debian Mobile)" width="640" height="360" src="https://www.youtube.com/embed/KqzAjEWfrAc?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
</div></figure>



<p class="wp-block-paragraph">Mobian represents a powerful shift in mobile computing, bringing the flexibility of Debian to handheld devices. For amateur radio enthusiasts, this opens up exciting possibilities for portable APRS stations, SDR experimentation, and on-the-go digital communication. With continued development and community support, Mobian has the potential to become a staple in the amateur radio toolkit.</p>



<p class="wp-block-paragraph">For those interested in trying Mobian, visit the <a href="https://wiki.debian.org/Mobian">Mobian Wiki</a> and join discussions on <strong>Matrix, IRC, or Telegram</strong> to connect with fellow users and developers.</p>



<p class="wp-block-paragraph">Are you using Mobian for amateur radio? Share your experiences in the comments below!</p>
<p>The post <a href="https://hamradio.my/2025/03/mobian-bringing-debian-to-mobile-devices-and-its-benefits-for-amateur-radio/">Mobian: Bringing Debian to Mobile Devices and Its Benefits for Amateur Radio</a> appeared on <a href="https://hamradio.my">Hamradio.my - Amateur Radio, Tech Insights and Product Reviews</a> by <a href="https://hamradio.my/author/9m2pju/">9M2PJU</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://hamradio.my/2025/03/mobian-bringing-debian-to-mobile-devices-and-its-benefits-for-amateur-radio/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Mobile GMaps &#8211; FREE Maps Application For Your Mobile Phones</title>
		<link>https://hamradio.my/2010/10/mobile-gmaps-free-maps-application-for-your-mobile-phones/</link>
					<comments>https://hamradio.my/2010/10/mobile-gmaps-free-maps-application-for-your-mobile-phones/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Fri, 29 Oct 2010 21:50:00 +0000</pubDate>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[free download]]></category>
		<category><![CDATA[gmaps]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[mobile phone]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2010/10/29/mobile-gmaps-free-maps-application-for-your-mobile-phones/</guid>

					<description><![CDATA[<p>Mobile GMaps is a FREE application that displays maps from Google Maps, Yahoo! Maps, Windows Live Local (MSN Virtual Earth), Ask.com, Open Street Map and other sources on Java J2ME-enabled mobile phones, PDAs and other devices. MGMaps can connect to a GPS receiver over bluetooth or use internal GPS features on some phones in order [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2010/10/mobile-gmaps-free-maps-application-for-your-mobile-phones/">Mobile GMaps &#8211; FREE Maps Application For Your Mobile Phones</a> appeared on <a href="https://hamradio.my">Hamradio.my - Amateur Radio, Tech Insights and Product Reviews</a> by <a href="https://hamradio.my/author/9m2pju/">9M2PJU</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Mobile GMaps is a FREE application that displays maps from Google Maps, Yahoo! Maps, Windows Live Local (MSN Virtual Earth), Ask.com, Open Street Map and other sources on Java J2ME-enabled mobile phones, PDAs and other devices. MGMaps can connect to a GPS receiver over bluetooth or use internal GPS features on some phones in order to automatically display the map for your current position. <span style="color: red;"><b>You can pre-download maps and store them on your memory card in order to use them on the go without accessing the internet.</b></span><br />
<span style="color: red;"><b><br />
</b></span></p>
<div style="clear: both; text-align: center;"><a href="http://www.mgmaps.com/demoimage.jpg" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="demoimage Mobile GMaps - FREE Maps Application For Your Mobile Phones" decoding="async" border="0" height="320" src="http://www.mgmaps.com/demoimage.jpg" width="196" /></a></div>
<p><span style="color: red;"><b><br />
</b></span><br />
<span style="color: red;"><b><br />
</b></span></p>
<p>Mobile GMaps is distributed under the Attribution &#8211; NonCommercial &#8211; NoDerivs Creative Commons license. You may download, use and distribute the application free of charge only for personal, non-commercial purposes.</p>
<div style="clear: both; text-align: center;"><a href="http://www.mgmaps.com/demoimage2.jpg" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="demoimage2 Mobile GMaps - FREE Maps Application For Your Mobile Phones" decoding="async" border="0" src="http://www.mgmaps.com/demoimage2.jpg" /></a></div>
<p>
Perfect for Nokia S60, Blackberry, LG, Motorola, Helio and any JAVA enabled mobile phones.</p>
<p>Get Mobile GMaps here&nbsp;<a href="http://www.mgmaps.com/">http://www.mgmaps.com</a></p>
<p>The post <a href="https://hamradio.my/2010/10/mobile-gmaps-free-maps-application-for-your-mobile-phones/">Mobile GMaps &#8211; FREE Maps Application For Your Mobile Phones</a> appeared on <a href="https://hamradio.my">Hamradio.my - Amateur Radio, Tech Insights and Product Reviews</a> by <a href="https://hamradio.my/author/9m2pju/">9M2PJU</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://hamradio.my/2010/10/mobile-gmaps-free-maps-application-for-your-mobile-phones/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>We-Travel &#8211; Free JavaME GPS Navigation Application For Java Enabled Mobile Phones</title>
		<link>https://hamradio.my/2010/10/we-travel-free-javame-gps-navigation-application-for-java-enabled-mobile-phones/</link>
					<comments>https://hamradio.my/2010/10/we-travel-free-javame-gps-navigation-application-for-java-enabled-mobile-phones/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Sun, 03 Oct 2010 23:22:00 +0000</pubDate>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[free download]]></category>
		<category><![CDATA[garmin]]></category>
		<category><![CDATA[gps]]></category>
		<category><![CDATA[javame]]></category>
		<category><![CDATA[map]]></category>
		<category><![CDATA[mapking]]></category>
		<category><![CDATA[mobile phone]]></category>
		<category><![CDATA[navigation]]></category>
		<category><![CDATA[papago]]></category>
		<category><![CDATA[tomtom]]></category>
		<category><![CDATA[we-travel]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2010/10/03/we-travel-free-javame-gps-navigation-application-for-java-enabled-mobile-phones/</guid>

					<description><![CDATA[<p>We-Travel is a free navigation software for java enabled mobile phones, based on map data from Open Street Map. Features * Track recording* Fully customizable map, skin, menu and theme layouts* Possibility to visualise raster maps from various sources* Track graphs showing track overview, speed and altitude profiles* Possiblity to download rich POI descriptions from [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2010/10/we-travel-free-javame-gps-navigation-application-for-java-enabled-mobile-phones/">We-Travel &#8211; Free JavaME GPS Navigation Application For Java Enabled Mobile Phones</a> appeared on <a href="https://hamradio.my">Hamradio.my - Amateur Radio, Tech Insights and Product Reviews</a> by <a href="https://hamradio.my/author/9m2pju/">9M2PJU</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><a href="http://3.bp.blogspot.com/_jC-7cWU_KkA/TKkUTeuedVI/AAAAAAAAAdY/efbzBq_wKSU/s1600/rc15.3.jpg"><img  title="" decoding="async" style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 242px; height: 309px;" src="http://3.bp.blogspot.com/_jC-7cWU_KkA/TKkUTeuedVI/AAAAAAAAAdY/efbzBq_wKSU/s320/rc15.3.jpg"  alt="rc15.3 We-Travel - Free JavaME GPS Navigation Application For Java Enabled Mobile Phones"  id="BLOGGER_PHOTO_ID_5523968742844691794" border="0" /></a></p>
<p><a href="http://4.bp.blogspot.com/_jC-7cWU_KkA/TKkUTabnjtI/AAAAAAAAAdQ/o4QLO9yfLf4/s1600/rc15.2.jpg"><img  title="" decoding="async" style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 244px; height: 310px;" src="http://4.bp.blogspot.com/_jC-7cWU_KkA/TKkUTabnjtI/AAAAAAAAAdQ/o4QLO9yfLf4/s320/rc15.2.jpg"  alt="rc15.2 We-Travel - Free JavaME GPS Navigation Application For Java Enabled Mobile Phones"  id="BLOGGER_PHOTO_ID_5523968741691854546" border="0" /></a></p>
<p><a href="http://1.bp.blogspot.com/_jC-7cWU_KkA/TKkUTEbl2PI/AAAAAAAAAdI/WT4Sz9qhSU8/s1600/rc15.1.jpg"><img  title="" decoding="async" style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 243px; height: 313px;" src="http://1.bp.blogspot.com/_jC-7cWU_KkA/TKkUTEbl2PI/AAAAAAAAAdI/WT4Sz9qhSU8/s320/rc15.1.jpg"  alt="rc15.1 We-Travel - Free JavaME GPS Navigation Application For Java Enabled Mobile Phones"  id="BLOGGER_PHOTO_ID_5523968735786162418" border="0" /></a></p>
<p>We-Travel is a free navigation software for java enabled mobile phones, based on map data from Open Street Map.</p>
<p>Features</p>
<p>* Track recording<br />* Fully customizable map, skin, menu and theme layouts<br />* Possibility to visualise raster maps from various sources<br />* Track graphs showing track overview, speed and altitude profiles<br />* Possiblity to download rich POI descriptions from Wikipedia, Wikitravel, &#8230;<br />* Online/offline reporting of speed camera&#8217;s or your favorite places<br />* Enhanced reality POI superimposition on camera image (on selected phones)<br />* Satellite view, along with the sun, the moon and major star constellations<br />* Possibiliy to develop additional screens as plugins<br />* Possibility to follow a pre recorded track<br />* Support for Garmin and TomTom POI formats<br />* Uploading and sharing of track on the We-Travel website</p>
<p>You can use We-Travel with your built-in GPS or bluetooth paired GPS devices.</p>
<p>We-Travel is FREE, OFFLINE navigation for JAVA enabled mobile phones. i think this is the first and only. To learn more about We-Travel, go to <a href="http://we-travel.co.cc/joomla/">http://we-travel.co.cc/joomla/</a></p>
<p>Lets contribute to <a href="http://www.openstreetmap.org/">open street map</a> to help We-Travel get a better map for Malaysia.</p>
<p>The post <a href="https://hamradio.my/2010/10/we-travel-free-javame-gps-navigation-application-for-java-enabled-mobile-phones/">We-Travel &#8211; Free JavaME GPS Navigation Application For Java Enabled Mobile Phones</a> appeared on <a href="https://hamradio.my">Hamradio.my - Amateur Radio, Tech Insights and Product Reviews</a> by <a href="https://hamradio.my/author/9m2pju/">9M2PJU</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://hamradio.my/2010/10/we-travel-free-javame-gps-navigation-application-for-java-enabled-mobile-phones/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>USBWebserver &#8211; Apache , MYSQL And PHP In Your Pocket</title>
		<link>https://hamradio.my/2010/09/usbwebserver-apache-mysql-and-php-in-your-pocket/</link>
					<comments>https://hamradio.my/2010/09/usbwebserver-apache-mysql-and-php-in-your-pocket/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Mon, 27 Sep 2010 11:15:00 +0000</pubDate>
				<category><![CDATA[apache]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[free download]]></category>
		<category><![CDATA[mobile phone]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[phpmyadmin]]></category>
		<category><![CDATA[pocket pc]]></category>
		<category><![CDATA[web server]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2010/09/27/usbwebserver-apache-mysql-and-php-in-your-pocket/</guid>

					<description><![CDATA[<p>To those who are always in hurry, you can install USBWebserver to your USB drive, mobile phones storage or CD/DVD. Fit into your pocket! USBWebserver is a combination of the popular webserver software: Apache, MySQL, Php and PhpMyAdmin. With USBWebserver it is possible to develop and show your php websites, everywhere and anytime The advantage [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2010/09/usbwebserver-apache-mysql-and-php-in-your-pocket/">USBWebserver &#8211; Apache , MYSQL And PHP In Your Pocket</a> appeared on <a href="https://hamradio.my">Hamradio.my - Amateur Radio, Tech Insights and Product Reviews</a> by <a href="https://hamradio.my/author/9m2pju/">9M2PJU</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><a href="http://1.bp.blogspot.com/_WyYNu39WkyA/TKCCSwybhYI/AAAAAAAAAFM/ca1gkvFvAVQ/s1600/USBweb.PNG"><img  title="" decoding="async" style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 320px; height: 189px;" src="http://1.bp.blogspot.com/_WyYNu39WkyA/TKCCSwybhYI/AAAAAAAAAFM/ca1gkvFvAVQ/s320/USBweb.PNG"  alt="USBweb USBWebserver - Apache , MYSQL And PHP In Your Pocket"  id="BLOGGER_PHOTO_ID_5521556402001905026" border="0" /></a><br /><a href="http://1.bp.blogspot.com/_WyYNu39WkyA/TKCCS2DHg_I/AAAAAAAAAFE/2KcgqPBDUSI/s1600/usbwebserv.PNG"><img  title="" decoding="async" style="display: block; margin: 0px auto 10px; text-align: center; cursor: pointer; width: 320px; height: 160px;" src="http://1.bp.blogspot.com/_WyYNu39WkyA/TKCCS2DHg_I/AAAAAAAAAFE/2KcgqPBDUSI/s320/usbwebserv.PNG"  alt="usbwebserv USBWebserver - Apache , MYSQL And PHP In Your Pocket"  id="BLOGGER_PHOTO_ID_5521556403414074354" border="0" /></a></p>
<p>To those who are always in hurry, you can install USBWebserver to your USB drive, mobile phones storage or CD/DVD. Fit into your pocket!</p>
<p>USBWebserver is a combination of the popular webserver software: Apache, MySQL, Php and PhpMyAdmin. With USBWebserver it is possible to develop and show your php websites, everywhere and anytime The advantage of USBWebserver is, you can use it from USB of even CD/DVD.</p>
<p>USBWebserver is perfect for:</p>
<p>  * Show a offline version of your website<br />  * Anywhere and anytime develop php websites<br />  * No need for expensive hosting<br />  * Working at multiple locations at projects<br />  * A good test before putting your website online<br />  * And many more</p>
<p>The post <a href="https://hamradio.my/2010/09/usbwebserver-apache-mysql-and-php-in-your-pocket/">USBWebserver &#8211; Apache , MYSQL And PHP In Your Pocket</a> appeared on <a href="https://hamradio.my">Hamradio.my - Amateur Radio, Tech Insights and Product Reviews</a> by <a href="https://hamradio.my/author/9m2pju/">9M2PJU</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://hamradio.my/2010/09/usbwebserver-apache-mysql-and-php-in-your-pocket/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>Must Have iPhone Apps For Ham Radio</title>
		<link>https://hamradio.my/2010/04/must-have-iphone-apps-for-ham-radio/</link>
					<comments>https://hamradio.my/2010/04/must-have-iphone-apps-for-ham-radio/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Wed, 14 Apr 2010 18:57:00 +0000</pubDate>
				<category><![CDATA[amateur radio]]></category>
		<category><![CDATA[apps]]></category>
		<category><![CDATA[hamradio]]></category>
		<category><![CDATA[iphone]]></category>
		<category><![CDATA[iphone os]]></category>
		<category><![CDATA[itunes]]></category>
		<category><![CDATA[mobile phone]]></category>
		<category><![CDATA[smartphone]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2010/04/14/must-have-iphone-apps-for-ham-radio/</guid>

					<description><![CDATA[<p>IDSP &#160; &#8211; IDSP is an app for IPHONE and IPOD Touch. Made by 2 powerful filters, a band pass and a band stop with adjustable bandwidth. Filters are butterworth 4 and 8 poles, sample rate at 44,100 32 bit. Cancel every noise and hear only your qso. Amateur Radio Exam Prep for iPhone &#8211; [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2010/04/must-have-iphone-apps-for-ham-radio/">Must Have iPhone Apps For Ham Radio</a> appeared on <a href="https://hamradio.my">Hamradio.my - Amateur Radio, Tech Insights and Product Reviews</a> by <a href="https://hamradio.my/author/9m2pju/">9M2PJU</a>.</p>
]]></description>
										<content:encoded><![CDATA[<ul>
<li><b><a href="http://www.dxzone.com/cgi-bin/dir/jump2.cgi?ID=22952">IDSP</a></b>  &nbsp; &#8211; IDSP is an app for IPHONE and IPOD Touch. Made by 2 powerful filters, a band pass and a band stop with adjustable  bandwidth. Filters are butterworth 4 and 8 poles, sample rate at 44,100  32 bit. Cancel every noise and hear only your qso.
<p></p>
<div>
</div>
</li>
<li><b><a href="http://www.dxzone.com/cgi-bin/dir/jump2.cgi?ID=19433">Amateur  Radio Exam Prep for iPhone</a></b> &#8211; Amateur Radio License exams are composed of questions from a pool.   Use this application to practice all possible questions prior to taking  your exam
<p></p>
<div>
</div>
</li>
<li><b><a href="http://www.dxzone.com/cgi-bin/dir/jump2.cgi?ID=22658">APRS on your  phone</a></b> &#8211; iBCNU is an APRS GPS position reporting and text-messaging application  for the Apple iPhone. When position reporting is enabled, the  application will periodically send out location of your iPhone using  either 3G or WiFi network and iPhone&#8217;s built in GPS receiver
<p></p>
<div>
</div>
</li>
<li><b><a href="http://www.dxzone.com/cgi-bin/dir/jump2.cgi?ID=19814">CallBook for  iPhone</a></b> &#8211; CallBook is an Amateur Radio application that allows you to look up  call signs via the free WM7D server, the QRZ Online subscription service  or the HamCall subscription server and track active APRS stations on  www.aprs.fi. Lookup results can be emailed and the QTH can be instantly  viewed in the Maps application
<div>
</div>
</li>
<li><b><a href="http://www.dxzone.com/cgi-bin/dir/jump2.cgi?ID=21636">Elmer for  iPhone</a></b> &#8211; iPhone Software to practice taking your Ham Radio Exam (USA)
<div>
</div>
</li>
<li><b><a href="http://www.dxzone.com/cgi-bin/dir/jump2.cgi?ID=21650">Freq Finder:  iPhone Repeater Directory</a></b>  &nbsp; &#8211; Freq Finder is an iPhone based Ham Radio Repeater Directory that  locates repeaters based on the user location.(USA only)
<div>
</div>
</li>
<li><b><a href="http://www.dxzone.com/cgi-bin/dir/jump2.cgi?ID=19593">FreqLoader:  iPhone companion for the mobile ham</a></b>  &nbsp; &#8211; FreqLoader is the perfect iPhone/iPod Touch companion for amateur  radio operators, monitoring  enthusiasts, shortwave listeners and anyone  with an interest in the air waves. Whether you&#8217;re an active licensed ham or an avid scanner listener,  FreqLoader will allow you to find what you&#8217;re looking for, keep track of  your stations, maintain complete logs and share your finds with  friends, groups and the world.
<p></p>
<div>
</div>
</li>
<li><b><a href="http://www.dxzone.com/cgi-bin/dir/jump2.cgi?ID=22745">Friis-It NF  for iPhone</a></b> &#8211; Friis-It NF is the first iPhone OS based application that allows you  to calculate noise figure, system sensitivity, and cascaded gain for an  RF Receiver system
<p></p>
<div>
</div>
</li>
<li><b><a href="http://www.dxzone.com/cgi-bin/dir/jump2.cgi?ID=22657">GoSatWatch</a></b> &#8211; Satellite tracking on the iPhone/iPod touch. Track and predict visible  satellite passes. Touch a satellite in the map view to see itâ€<img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2122.png" alt="™" class="wp-smiley" style="height: 1em; max-height: 1em;" />s orbit  path and location.
<p></p>
<div>
</div>
</li>
<li><b><a href="http://www.dxzone.com/cgi-bin/dir/jump2.cgi?ID=22131">Ham for  iPhone</a></b> &#8211; Ham is a free iPhone Ham Radio utility. View solar conditions (Solar Flux, Indices, X-Rays, Sunspots and  calculated band conditions). View PSKreporter reports and Callsign lookups.
<p></p>
<div>
</div>
</li>
<li><b><a href="http://www.dxzone.com/cgi-bin/dir/jump2.cgi?ID=21697">hamDXcluster  for iPhone</a></b> &#8211; DX Cluster for iPhone application
<p></p>
<div>
</div>
</li>
<li><b><a href="http://www.dxzone.com/cgi-bin/dir/jump2.cgi?ID=22866">HamLog for  iPhone</a></b> &#8211; Amateur Radio logging application for the iPhone and iPod Touch.
<p></p>
<div>
</div>
</li>
<li><b><a href="http://www.dxzone.com/cgi-bin/dir/jump2.cgi?ID=20990">HamMorse for  iPhone</a></b> &#8211; Ham Morse allows you to practice morse code on your iPhone or iPod  Touch. It is designed particularly for Ham radio operators and others  who wish to achieve or maintain a high level of proficiency in this  classic mode of communication.
<p></p>
<div>
</div>
</li>
<li><b><a href="http://www.dxzone.com/cgi-bin/dir/jump2.cgi?ID=22642">I-PSK31</a></b> &#8211; Ipsk31 is a modem based on Bpsk31 protocol for ham radio digital  transmissions. Can be used on IPhone and Ipod Touch, and let you  transmit and receive PSK31 directly from your Apple device.
<p></p>
<div>
</div>
</li>
<li><b><a href="http://www.dxzone.com/cgi-bin/dir/jump2.cgi?ID=18557">iLocator for  iPhone</a></b> &#8211; A small application for Apple iPhone that calculate grid locator from  gps, wifi or gsm cells by IW2BSQ
<p></p>
<div>
</div>
</li>
<li><b><a href="http://www.dxzone.com/cgi-bin/dir/jump2.cgi?ID=19813">iPhone Ham  Radio Callsign Lookup</a></b> &#8211; This webapp provides an iPhone-compatible lookup of Amateur Radio  Callsigns. It provides the name, address, and license class (from the  FCCâ€<img src="https://s.w.org/images/core/emoji/17.0.2/72x72/2122.png" alt="™" class="wp-smiley" style="height: 1em; max-height: 1em;" />s public records) of any US-Licensed Amateur Radio Operator.
<p></p>
<div>
</div>
</li>
<li><b><a href="http://www.dxzone.com/cgi-bin/dir/jump2.cgi?ID=22772">IRTTY</a></b> &#8211; IRRTY just a modem based on RTTY protocol for IPHONE and IPOD Touch.
<p></p>
<div>
</div>
</li>
<li><b><a href="http://www.dxzone.com/cgi-bin/dir/jump2.cgi?ID=21656">Morse Key  for iPhone</a></b> &#8211; A free simple touchscreen-based CW Morse Code straight key. Practice  sending Morse Code on your iPhone.</li>
</ul>
<p>
<i>via dxzone&nbsp;</i></p>
<p>The post <a href="https://hamradio.my/2010/04/must-have-iphone-apps-for-ham-radio/">Must Have iPhone Apps For Ham Radio</a> appeared on <a href="https://hamradio.my">Hamradio.my - Amateur Radio, Tech Insights and Product Reviews</a> by <a href="https://hamradio.my/author/9m2pju/">9M2PJU</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://hamradio.my/2010/04/must-have-iphone-apps-for-ham-radio/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>KiroStudio &#8211; Malaysian Mobile Application Source</title>
		<link>https://hamradio.my/2010/03/kirostudio-malaysian-mobile-application-source/</link>
					<comments>https://hamradio.my/2010/03/kirostudio-malaysian-mobile-application-source/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Mon, 29 Mar 2010 18:33:00 +0000</pubDate>
				<category><![CDATA[9W2PJU]]></category>
		<category><![CDATA[9W2WTF]]></category>
		<category><![CDATA[amateur radio]]></category>
		<category><![CDATA[foxrate]]></category>
		<category><![CDATA[free download]]></category>
		<category><![CDATA[hamradio]]></category>
		<category><![CDATA[kirodict]]></category>
		<category><![CDATA[mobibmi]]></category>
		<category><![CDATA[mobile apps]]></category>
		<category><![CDATA[mobile phone]]></category>
		<category><![CDATA[mobimoon]]></category>
		<category><![CDATA[mycallsign]]></category>
		<category><![CDATA[mypapit]]></category>
		<category><![CDATA[notehax]]></category>
		<category><![CDATA[open source]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2010/03/29/kirostudio-malaysian-mobile-application-source/</guid>

					<description><![CDATA[<p>If you are looking for mobile application for your mobile phone, i&#8217; ll suggest to go for kirostudio apps. They are offering free, source code included applications. List 1. Foxrate &#8211; Currency Exchange application for mobile devices (cellphones and PDA). Supports updating currency rate from remote server, requires at least MIDP 2.0/CLDC 1.1. 2. Kirodict [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2010/03/kirostudio-malaysian-mobile-application-source/">KiroStudio &#8211; Malaysian Mobile Application Source</a> appeared on <a href="https://hamradio.my">Hamradio.my - Amateur Radio, Tech Insights and Product Reviews</a> by <a href="https://hamradio.my/author/9m2pju/">9M2PJU</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>If you are looking for mobile application for your mobile phone, i&#8217; ll suggest to go for <a href="http://kirostudio.com/">kirostudio</a> apps.</p>
<div></div>
<div>They are offering free, source code included applications.</div>
<div></div>
<p>List</p>
<p>1. Foxrate &#8211; Currency Exchange application for mobile devices (cellphones and PDA). Supports updating currency rate from remote server, requires at least MIDP 2.0/CLDC 1.1.</p>
<p>2. Kirodict &#8211; Kirodict is a mobile lightweight dictionary application which runs on JavaME compatible devices.Kirodict does not store the word definition on the phone itself, rather it retrieve the definition from an RFC2229 compatible dictionary server via the internet. Kirodict is designed to be customizable, in which it can be expanded to include other dictionaries without increasing the size of the application itself.</p>
<p>3. MobiBMI &#8211; A mobile JavaME application that calculates Body Mass Index (BMI)</p>
<p>4. Mobimoon &#8211; Display Moon Phase and Hijri date in your mobile phone (J2ME / JavaME)</p>
<p>5. Mycallsign &#8211; A mobile phone application which simplifies the task of looking up Malaysian Amateur Radio callsign while on the move. The user only need to key-in the ham callsign that he/she wished to enquire, and the application will automatically display the relevant information related to the hamradio operator.</p>
<p>6. Notehax &#8211; NoteHax is a simple Note application for mobile phone. It is compatible with any JavaME compatible phone that supports at least MIDP 2.0 / CLDC 1.0 specification. NoteHax supports sending notes to other phones via SMS and ) Bluetooth (later, on supported phone) Tested on Nokia S60 3rd ed, Sony Ericsson Z and K series and Nokia S40 3rd ed phones</p>
<div></div>
<div>What are you waiting for ? go to <a href="http://kirostudio.com/">http://kirostudio.com/</a> now!</div>
<div></div>
<div></div>
<p>The post <a href="https://hamradio.my/2010/03/kirostudio-malaysian-mobile-application-source/">KiroStudio &#8211; Malaysian Mobile Application Source</a> appeared on <a href="https://hamradio.my">Hamradio.my - Amateur Radio, Tech Insights and Product Reviews</a> by <a href="https://hamradio.my/author/9m2pju/">9M2PJU</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://hamradio.my/2010/03/kirostudio-malaysian-mobile-application-source/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>N6NHG ( Kevin Mitnick ) &#8211; From Ham Radio Operator To Security Consultant</title>
		<link>https://hamradio.my/2010/01/n6nhg-kevin-mitnick-from-ham-radio-operator-to-security-consultant/</link>
					<comments>https://hamradio.my/2010/01/n6nhg-kevin-mitnick-from-ham-radio-operator-to-security-consultant/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Tue, 19 Jan 2010 15:18:00 +0000</pubDate>
				<category><![CDATA[amateur radio]]></category>
		<category><![CDATA[computer]]></category>
		<category><![CDATA[crime]]></category>
		<category><![CDATA[cyber]]></category>
		<category><![CDATA[FBI]]></category>
		<category><![CDATA[hacker]]></category>
		<category><![CDATA[hacking]]></category>
		<category><![CDATA[ham radio]]></category>
		<category><![CDATA[kevin mitnick]]></category>
		<category><![CDATA[mobile phone]]></category>
		<category><![CDATA[N6NHG]]></category>
		<category><![CDATA[phreaking]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[social engineering]]></category>
		<category><![CDATA[wiretapping]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2010/01/19/n6nhg-kevin-mitnick-from-ham-radio-operator-to-security-consultant/</guid>

					<description><![CDATA[<p>Kevin Mitnick, also known as N6NHG in ham radio world was the most wanted computer criminal in United States history. He used his social engineering skills to bypass all the security, doing phone phreaking, wiretapping and lots more. Confirmed criminal acts Using the Los Angeles bus transfer system to get free rides Evading the FBI [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2010/01/n6nhg-kevin-mitnick-from-ham-radio-operator-to-security-consultant/">N6NHG ( Kevin Mitnick ) &#8211; From Ham Radio Operator To Security Consultant</a> appeared on <a href="https://hamradio.my">Hamradio.my - Amateur Radio, Tech Insights and Product Reviews</a> by <a href="https://hamradio.my/author/9m2pju/">9M2PJU</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p><a href="http://1.bp.blogspot.com/_jC-7cWU_KkA/S1XR7z7yMxI/AAAAAAAAAV0/BKzjHjWWfho/s1600-h/ham_radio_hacker.jpg"><img  title="" decoding="async" style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 267px; height: 400px;" src="http://1.bp.blogspot.com/_jC-7cWU_KkA/S1XR7z7yMxI/AAAAAAAAAV0/BKzjHjWWfho/s400/ham_radio_hacker.jpg"  alt="ham_radio_hacker N6NHG ( Kevin Mitnick ) - From Ham Radio Operator To Security Consultant"  id="BLOGGER_PHOTO_ID_5428475751348450066" border="0" /></a></p>
<p>Kevin Mitnick, also known as N6NHG in ham radio world was the most wanted computer criminal in United States history. He used his social engineering skills to bypass all the security, doing phone phreaking, wiretapping and lots more.</p>
<h3  style="font-weight: normal;font-family:georgia;"><span style="font-size:100%;"><span>Confirmed criminal acts</span></span></h3>
<ul style="font-family: georgia;">
<li><span style="font-size:100%;">Using the Los Angeles bus transfer system to get free rides<sup><a href="http://en.wikipedia.org/wiki/Kevin_Mitnick#cite_note-AOD-3"><span></span><span></span></a></sup></span></li>
<li><span style="font-size:100%;">Evading the <a href="http://en.wikipedia.org/wiki/Federal_Bureau_of_Investigation" title="Federal Bureau of Investigation">FBI</a><sup><a href="http://en.wikipedia.org/wiki/Kevin_Mitnick#cite_note-Live_2600-4"><span></span><span></span></a></sup></span></li>
<li><span style="font-size:100%;">Hacking into <a href="http://en.wikipedia.org/wiki/Digital_Equipment_Corporation" title="Digital Equipment Corporation">DEC</a> system(s) to view <a href="http://en.wikipedia.org/wiki/OpenVMS" title="OpenVMS">VMS</a> <a href="http://en.wikipedia.org/wiki/Source_code" title="Source code">source code</a> (DEC reportedly spent $160,000 in cleanup costs)<sup><a href="http://en.wikipedia.org/wiki/Kevin_Mitnick#cite_note-AOD-3"><span></span><span></span></a></sup><sup><a href="http://en.wikipedia.org/wiki/Kevin_Mitnick#cite_note-Live_2600-4"><span></span><span></span></a></sup></span></li>
<li><span style="font-size:100%;">Gaining full admin privileges to an <a href="http://en.wikipedia.org/wiki/IBM" title="IBM">IBM</a> <a href="http://en.wikipedia.org/wiki/Minicomputer" title="Minicomputer">minicomputer</a> at the Computer Learning Center in <a href="http://en.wikipedia.org/wiki/Los_Angeles" title="Los Angeles">LA</a> in order to win a bet<sup><a href="http://en.wikipedia.org/wiki/Kevin_Mitnick#cite_note-AOD-3"><span></span><span></span></a></sup></span></li>
<li><span style="font-size:100%;">Hacking <a href="http://en.wikipedia.org/wiki/Motorola" title="Motorola">Motorola</a>, <a href="http://en.wikipedia.org/wiki/NEC" title="NEC">NEC</a>, <a href="http://en.wikipedia.org/wiki/Nokia" title="Nokia">Nokia</a>, <a href="http://en.wikipedia.org/wiki/Sun_Microsystems" title="Sun Microsystems">Sun Microsystems</a> and <a href="http://en.wikipedia.org/wiki/Fujitsu_Siemens_Computers" title="Fujitsu Siemens Computers">Fujitsu Siemens</a> systems<sup><a href="http://en.wikipedia.org/wiki/Kevin_Mitnick#cite_note-Live_2600-4"><span></span><span></span></a></sup></span></li>
</ul>
<h3  style="font-weight: normal;font-family:georgia;"><span style="font-size:100%;"><span></span><span>Alleged criminal acts</span></span></h3>
<ul style="font-family: georgia;">
<li><span style="font-size:100%;">Stole computer manuals from a <a href="http://en.wikipedia.org/wiki/Pacific_Bell" title="Pacific Bell">Pacific Bell</a> telephone switching center in Los Angeles<sup><a href="http://en.wikipedia.org/wiki/Kevin_Mitnick#cite_note-Markoff-5"><span></span><span></span></a></sup></span></li>
<li><span style="font-size:100%;">Read the e-mail of computer security officials at <a href="http://en.wikipedia.org/wiki/MCI_Communications" title="MCI Communications">MCI Communications</a> and <a href="http://en.wikipedia.org/wiki/Digital_Equipment_Corporation" title="Digital Equipment Corporation">Digital</a><sup><a href="http://en.wikipedia.org/wiki/Kevin_Mitnick#cite_note-Markoff-5"><span></span><span></span></a></sup></span></li>
<li><span style="font-size:100%;">Wiretapped the <a href="http://en.wikipedia.org/wiki/California" title="California">California</a> <a href="http://en.wikipedia.org/wiki/Department_of_Motor_Vehicles" title="Department of Motor Vehicles">DMV</a><sup><a href="http://en.wikipedia.org/wiki/Kevin_Mitnick#cite_note-Markoff-5"><span></span><span></span></a></sup></span></li>
<li><span style="font-size:100%;">Made free cell phone calls<sup><a href="http://en.wikipedia.org/wiki/Kevin_Mitnick#cite_note-TD-6"><span></span><span></span></a></sup></span></li>
<li><span style="font-size:100%;">Hacked <a href="http://en.wikipedia.org/wiki/Santa_Cruz_Operation" title="Santa Cruz Operation">SCO</a>, <a href="http://en.wikipedia.org/wiki/Pacific_Bell" title="Pacific Bell">PacBell</a>, <a href="http://en.wikipedia.org/wiki/Federal_Bureau_of_Investigation" title="Federal Bureau of Investigation">FBI</a>, <a href="http://en.wikipedia.org/wiki/The_Pentagon" title="The Pentagon">Pentagon</a>, <a href="http://en.wikipedia.org/wiki/Novell" title="Novell">Novell</a>, <a href="http://en.wikipedia.org/wiki/California" title="California">CA</a> <a href="http://en.wikipedia.org/wiki/Department_of_Motor_Vehicles" title="Department of Motor Vehicles">DMV</a>, <a href="http://en.wikipedia.org/wiki/University_of_Southern_California" title="University of Southern California">USC</a> and <a href="http://en.wikipedia.org/wiki/Los_Angeles_Unified_School_District" title="Los Angeles Unified School District">Los Angeles Unified School District</a> systems.</span></li>
<li><span style="font-size:100%;">Wiretapped <a href="http://en.wikipedia.org/wiki/Federal_Bureau_of_Investigation" title="Federal Bureau of Investigation">FBI</a> agents according to <a href="http://en.wikipedia.org/wiki/John_Markoff" title="John Markoff">John Markoff</a>,<sup><a href="http://en.wikipedia.org/wiki/Kevin_Mitnick#cite_note-Markoff-5"><span></span><span></span></a></sup> although denied by Kevin Mitnick.</span></li>
</ul>
<p>More info</p>
<ul>
<li><a href="http://en.wikipedia.org/wiki/Kevin_Mitnick">http://en.wikipedia.org/wiki/Kevin_Mitnick</a></li>
<li><a href="http://news.cnet.com/8301-1009_3-10269348-83.html">http://news.cnet.com/8301-1009_3-10269348-83.html</a></li>
<li><a href="http://www.qrz.com/db/N6NHG">http://www.qrz.com/db/N6NHG</a></li>
<li><a href="http://www.takedown.com/bio/mitnick.html">http://www.takedown.com/bio/mitnick.html</a></li>
<li><a href="http://mitnicksecurity.com/">http://mitnicksecurity.com/</a></li>
<li><a href="http://www.essortment.com/all/kevinmitnickco_rmap.htm">http://www.essortment.com/all/kevinmitnickco_rmap.htm</a></li>
</ul>
<p>The post <a href="https://hamradio.my/2010/01/n6nhg-kevin-mitnick-from-ham-radio-operator-to-security-consultant/">N6NHG ( Kevin Mitnick ) &#8211; From Ham Radio Operator To Security Consultant</a> appeared on <a href="https://hamradio.my">Hamradio.my - Amateur Radio, Tech Insights and Product Reviews</a> by <a href="https://hamradio.my/author/9m2pju/">9M2PJU</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://hamradio.my/2010/01/n6nhg-kevin-mitnick-from-ham-radio-operator-to-security-consultant/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
		<item>
		<title>What You Need To Do When You Bought A Nokia Phone</title>
		<link>https://hamradio.my/2009/11/what-you-need-to-do-when-you-bought-a-nokia-phone/</link>
					<comments>https://hamradio.my/2009/11/what-you-need-to-do-when-you-bought-a-nokia-phone/#respond</comments>
		
		<dc:creator><![CDATA[9M2PJU]]></dc:creator>
		<pubDate>Fri, 20 Nov 2009 00:32:00 +0000</pubDate>
				<category><![CDATA[mobile phone]]></category>
		<category><![CDATA[nokia]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[phone]]></category>
		<category><![CDATA[symbian]]></category>
		<guid isPermaLink="false">https://blog.hamradio.my/2009/11/20/what-you-need-to-do-when-you-bought-a-nokia-phone/</guid>

					<description><![CDATA[<p>Check This 1. *#92702689# = Make sure the lifetimer is 000000:00 value. 2. *#06# &#8211; Make sure the phone&#8217;s IMEI number is same with the box 3. *#0000# &#8211; Make sure it&#8217;s firmware is up to date 4. Check the screen for dead pixel by changing the screen to 1 colour. 5. Check for any [&#8230;]</p>
<p>The post <a href="https://hamradio.my/2009/11/what-you-need-to-do-when-you-bought-a-nokia-phone/">What You Need To Do When You Bought A Nokia Phone</a> appeared on <a href="https://hamradio.my">Hamradio.my - Amateur Radio, Tech Insights and Product Reviews</a> by <a href="https://hamradio.my/author/9m2pju/">9M2PJU</a>.</p>
]]></description>
										<content:encoded><![CDATA[<div style="clear: both; text-align: center;"><a href="http://i.zdnet.com/blogs/nokia_logo.JPG" style="margin-left: 1em; margin-right: 1em;"><img  title=""  alt="nokia_logo What You Need To Do When You Bought A Nokia Phone" loading="lazy" decoding="async" border="0" height="242" src="http://i.zdnet.com/blogs/nokia_logo.JPG" width="400" /></a>
</div>
<div style="text-align: center;">
</div>
<div style="text-align: center;">
</div>
<div style="text-align: center;"><b>Check This</b>
</div>
<div style="text-align: center;">
</div>
<div style="text-align: center;">1. *#92702689# = Make sure the lifetimer is 000000:00 value.
</div>
<div style="text-align: center;">2. *#06# &#8211; Make sure the phone&#8217;s IMEI number is same with the box
</div>
<div style="text-align: center;">3. *#0000# &#8211; Make sure it&#8217;s firmware is up to date
</div>
<div style="text-align: center;">4. Check the screen for dead pixel by changing the screen to 1 colour.
</div>
<div style="text-align: center;">5. Check for any physical or tempted damage on the phone body
</div>
<div style="text-align: center;">
</div>
<p>The post <a href="https://hamradio.my/2009/11/what-you-need-to-do-when-you-bought-a-nokia-phone/">What You Need To Do When You Bought A Nokia Phone</a> appeared on <a href="https://hamradio.my">Hamradio.my - Amateur Radio, Tech Insights and Product Reviews</a> by <a href="https://hamradio.my/author/9m2pju/">9M2PJU</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://hamradio.my/2009/11/what-you-need-to-do-when-you-bought-a-nokia-phone/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
			</item>
	</channel>
</rss>
