<?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>no sense news</title>
	<atom:link href="http://www.nosensenews.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nosensenews.com</link>
	<description>NO SENSE NEWS FROM THE WEB</description>
	<lastBuildDate>Mon, 01 Aug 2011 03:04:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Howto &#8211; Avoid MySQL swapping on multi core CPUs</title>
		<link>http://www.nosensenews.com/2011/07/howto-avoid-mysql-swapping-on-multi-core-cpus/</link>
		<comments>http://www.nosensenews.com/2011/07/howto-avoid-mysql-swapping-on-multi-core-cpus/#comments</comments>
		<pubDate>Mon, 01 Aug 2011 02:47:24 +0000</pubDate>
		<dc:creator>subzero</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[mysql performance]]></category>
		<category><![CDATA[mysql swapping]]></category>
		<category><![CDATA[mysql tweaks]]></category>
		<category><![CDATA[swap]]></category>
		<category><![CDATA[swapping]]></category>

		<guid isPermaLink="false">http://www.nosensenews.com/?p=248</guid>
		<description><![CDATA[What is swap? Swap space is the area on a hard disk which is part of the Virtual Memory of your machine, which is a combination of accessible physical memory (RAM) and the swap space. Swap space temporarily holds memory pages that are inactive. Swap space is used when your system decides that it needs&#8230;]]></description>
			<content:encoded><![CDATA[<p><strong><a href="http://c2848.r48.cf1.rackcdn.com/2011/07/mysql.png"><img class="alignnone size-medium wp-image-253" title="MySQL swapping" src="http://c2848.r48.cf1.rackcdn.com/2011/07/mysql-296x300.png" alt="MySQL swapping tricks" width="296" height="300" /></a></strong></p>
<p><strong>What is swap?</strong></p>
<p>Swap space is the area on a hard disk which is part of the Virtual Memory of your machine, which is a combination of accessible physical memory (RAM) and the swap space. Swap space temporarily holds memory pages that are inactive. Swap space is used when your system decides that it needs physical memory for active processes and there is insufficient unused physical memory available. If the system happens to need more memory resources or space, inactive pages in physical memory are then moved to the swap space therefore freeing up that physical memory for other uses. Note that the access time for swap is slower therefore do not consider it to be a complete replacement for the physical memory. Swap space can be a dedicated swap partition (recommended), a swap file, or a combination of swap partitions and swap<br />
files.</p>
<p><strong>Why do I need swap?</strong></p>
<p>Memory consuming programs Sometimes, a large program (like MySQL) make the entire system need extra memory. A significant number of the pages used by these large programs during its startup may only be used for initialization and then never used again. The system can swap out those pages and free the memory for other programs or even for the disk cache. In these cases, swap will be used to help the system handle any extra load.</p>
<p>Hibernation (suspend-to-disk) The hibernation feature (suspend-to-disk) writes out the contents of RAM to the swap partition before turning off the machine. Therefore, your swap partition should be at least as big as your RAM size. The hibernation implementation currently used in Ubuntu, swsusp, needs a swap or suspend partition. It cannot use a swap file on an active file system.</p>
<p>Unforeseeable Circumstances Unforeseeable events can and will happen (a program going crazy, some action needing much more space than you thought, or any other unpredictable combination of events). In these cases, swap can give you an extra delay to figure out what happened, or to finish what you are working on.</p>
<p><strong>Symptoms</strong></p>
<p>MySQL is being slow and when we run programs like &#8216;top&#8217; we can see that our process (or server) is using a large quantity of swap.</p>
<p><strong>What is this affecting the MySQL performance ?</strong></p>
<p>MySQL will change the way works since it will replace the internal algorithms to be optimized for Disk I/O due the navy use of swap. This will make the system slower.<br />
<strong><br />
What we can do ?</strong></p>
<p>First we need to figure out how much swap is the system using and how much free memory does it have.</p>
<p>1) The first trick we can do is to drop disk caches, this will free some more memory:</p>
<p><em><strong>echo 3 &gt; /proc/sys/vm/drop_caches </strong></em></p>
<p>2) If we can move the swap into real memory (swap usage &lt; free memory) we can run:</p>
<p><em><strong>swapoff -a</strong></em> (to disable the swap usage, this will force to move data to memory)<br />
<em><strong>swapon -a</strong></em> (will re-enable use of swap)</p>
<p>3) Check to see how aggressive is the system setup to use swap by using:</p>
<p><em><strong>cat /proc/sys/vm/swappiness</strong></em></p>
<p>I personally prefer to have this value around 10 (0 no not use swap  &#8211; 100 use swap)</p>
<p>to change this</p>
<p><strong><em>edit /etc/sysctl.conf </em></strong>and add a new line &#8220;<em><strong>vm.swappiness=10</strong></em>&#8220;. Save the file and run</p>
<p><strong><em>sysctl -f /etc/sysctl.conf</em></strong></p>
<p>4) Make sure that mysql is allocating memory close to equal for each physical CPU (not core), you may check this by typing</p>
<p><em><strong>numactl &#8211;hardware</strong></em></p>
<p>due the NUMA architecture this may be one of the main issue why mysql is swapping in the first place.</p>
<p><span id="more-248"></span></p>
<p>Now, find the <em><strong>mysqld_safe</strong></em> file and open it with your editor, add the following line <strong>(after cmd=&#8221;$NOHUP_NICENESS&#8221;)</strong></p>
<p><em><strong>cmd=&#8221;/usr/bin/numactl &#8211;interleave all $cmd&#8221;</strong></em></p>
<p>Now, when MySQL needs memory it will allocate it interleaved across all nodes, effectively balancing the amount of memory allocated in each node. This will leave some free memory in each node, allowing the Linux kernel to cache data on both nodes, thus allowing memory to be easily freed on either node just by freeing caches (as it’s supposed to work) rather than paging.</p>
<p>5) Edit my.cnf (or your mysql config file) to be a good match with the system (memory, buffers, threads) you&#8217;re running MySQL.</p>
<p>Hope that was helpful:</p>
<p>More resources:<br />
<a href="http://jcole.us/blog/archives/2010/09/28/mysql-swap-insanity-and-the-numa-architecture/" target="_blank">The MySQL “swap insanity” problem and the effects of the NUMA architecture</a><br />
<a href="https://help.ubuntu.com/community/SwapFaq?highlight=%28%28SwapFaq%29%29" target="_blank">Ubuntu SwapFAQ</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosensenews.com/2011/07/howto-avoid-mysql-swapping-on-multi-core-cpus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto &#8211; Compile Debian/Ubuntu kernel</title>
		<link>http://www.nosensenews.com/2011/03/howto-compile-debianubuntu-kernel/</link>
		<comments>http://www.nosensenews.com/2011/03/howto-compile-debianubuntu-kernel/#comments</comments>
		<pubDate>Sat, 05 Mar 2011 02:49:56 +0000</pubDate>
		<dc:creator>subzero</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[Debian]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[kernel]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Ubuntu]]></category>

		<guid isPermaLink="false">http://www.nosensenews.com/?p=243</guid>
		<description><![CDATA[Compile Ubuntu kernel get the tools for building the kernel apt-get -y install build-essential libncurses5-dev fakeroot kernel-package  linux-source the kernel source code will be in /usr/src/ go to /usr/src and decompress the kernel tar -xjf linux-source-2.6.28.tar.bz2 and make a symlink ln -s /usr/src/linux-source-2.6.28 linux now go the the kernel menu and select what options do you want to&#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://c2848.r48.cf1.rackcdn.com/2011/03/kernel1.png"><img src="http://c2848.r48.cf1.rackcdn.com/2011/03/kernel1.png" alt="Compile Debian Linux kernel" title="Compile Ubuntu Linux kernel" width="319" height="350" class="alignnone size-full wp-image-246" /></a></p>
<h3 id="sites-page-title-header">Compile Ubuntu kernel</h3>
<p>get the tools for building the kernel</p>
<blockquote>
<div><code>apt-get -y install build-essential libncurses5-dev fakeroot kernel-package  linux-source</code></div>
</blockquote>
<p>the kernel source code will be in /usr/src/</p>
<p>go to /usr/src and decompress the kernel</p>
<blockquote>
<div><code>tar -xjf linux-source-2.6.28.tar.bz2</code></div>
</blockquote>
<p>and make a symlink</p>
<blockquote>
<div><code>ln -s /usr/src/linux-source-2.6.28 linux</code></div>
</blockquote>
<p>now go the the kernel menu and select what options do you want to compile in your kernel</p>
<blockquote>
<div><code>make menuconfig</code></div>
</blockquote>
<p>next,  rebuild the kernel</p>
<blockquote>
<div><code>cd /usr/src/linux<br />
fakeroot make-kpkg --initrd --revision=subzero.1.0 kernel_image</code></div>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.nosensenews.com/2011/03/howto-compile-debianubuntu-kernel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto &#8211; Cleanup mac ports</title>
		<link>http://www.nosensenews.com/2011/03/howto-cleanup-mac-ports/</link>
		<comments>http://www.nosensenews.com/2011/03/howto-cleanup-mac-ports/#comments</comments>
		<pubDate>Sat, 05 Mar 2011 02:28:33 +0000</pubDate>
		<dc:creator>subzero</dc:creator>
				<category><![CDATA[How-to]]></category>

		<guid isPermaLink="false">http://www.nosensenews.com/?p=239</guid>
		<description><![CDATA[Did you use mac ports, and after each update your ports are getting bigger and bigger ? Do you want to cleanup a few hundred of MB ? This is how you do it! In order to see what is installed on your machine port installed to checkout the last version of the ports from&#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://c2848.r48.cf1.rackcdn.com/2011/03/macports.png"><img class="alignnone size-medium wp-image-240" title="Mac Ports Installer" src="http://c2848.r48.cf1.rackcdn.com/2011/03/macports-300x203.png" alt="Houto cleanup mac ports" width="300" height="203" /></a></p>
<p>Did you use mac ports, and after each update your ports are getting bigger and bigger ? Do you want to cleanup a few hundred of MB ? This is how you do it!</p>
<p>In order to see what is installed on your machine</p>
<blockquote>
<div><code>port installed</code></div>
</blockquote>
<p>to checkout the last version of the ports from the repository</p>
<blockquote>
<div><code>sudo port -v selfupdate</code></div>
</blockquote>
<p>howto update the ports</p>
<blockquote>
<div><code>sudo port upgrade outdated</code></div>
</blockquote>
<p>now to clean all the old version</p>
<blockquote>
<div><code>sudo port clean --all installed</code></div>
</blockquote>
]]></content:encoded>
			<wfw:commentRss>http://www.nosensenews.com/2011/03/howto-cleanup-mac-ports/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Howto Mount Remote Filesystem using SSH</title>
		<link>http://www.nosensenews.com/2011/03/howto-mount-remote-filesystem-using-ssh/</link>
		<comments>http://www.nosensenews.com/2011/03/howto-mount-remote-filesystem-using-ssh/#comments</comments>
		<pubDate>Sat, 05 Mar 2011 01:55:32 +0000</pubDate>
		<dc:creator>subzero</dc:creator>
				<category><![CDATA[How-to]]></category>

		<guid isPermaLink="false">http://www.nosensenews.com/?p=234</guid>
		<description><![CDATA[You can access a remote file system securely using sshfs and fuse which is a command to mount a remote filesystem encrypted through ssh. This way you will be able to access remote files as if they were on you machine, just remember that if the connection between the computers is slow, the access will&#8230;]]></description>
			<content:encoded><![CDATA[<p><a href="http://c2848.r48.cf1.rackcdn.com/2011/03/sshfs.png"><img class="alignnone size-full wp-image-236" title="Mount SSH Remote Drive" src="http://c2848.r48.cf1.rackcdn.com/2011/03/sshfs.png" alt="SSH Drive" width="128" height="128" /></a></p>
<p>You can access a remote file system securely using sshfs and fuse which  is a command to mount a remote filesystem encrypted through ssh.<br />
This  way you will be able to access remote files as if they were on you  machine, just remember that if the connection between the computers is  slow, the access will also be pretty slow</p>
<p>Package needed</p>
<blockquote>
<div><code>sshfs<br />
fuse-utils</code></div>
</blockquote>
<p>Installation</p>
<p>Get the packages</p>
<blockquote>
<div><code>For Debian: apt-get install fuse-utils sshfs<br />
For Ubuntu: sudo apt-get install fuse-utils sshfs<br />
For Fedora and Centos: yum install fuse-utils sshfs<br />
For Mandriva: urpmi: urpmi fuse-utils sshfs<br />
</code></div>
</blockquote>
<p>Next step is to mount the fuse module</p>
<blockquote>
<div><code>modprobe fuse</code></div>
</blockquote>
<p>Next create the mount point</p>
<blockquote>
<div><code>mkdir /mnt/remote-fs<br />
chown [your-user]:[your-group] /mnt/remote-fs/</code></div>
</blockquote>
<p>Add yourself to the fuse group</p>
<blockquote>
<div><code>adduser [your-user] fuse<br />
</code></div>
</blockquote>
<p>Untill here all the command should be issued as root, now switch to your users and mount the remote filesystem.</p>
<blockquote>
<div><code>sshfs remote-user@remote.server:/remote/directory /mnt/remote-fs/</code></div>
</blockquote>
<p>It  will now ask you accept the key if this is the first time you connect  to that PC using ssh, and then the password, or only the password if  this is not the first time you use ssh to connect to the remote server .  That should be all.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosensenews.com/2011/03/howto-mount-remote-filesystem-using-ssh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jailbreaking is possible in iOS4 after the 4.0.2 update ? &#8230; yes</title>
		<link>http://www.nosensenews.com/2010/08/jailbreaking-is-possible-in-ios4-after-the-4-0-2-update-yes/</link>
		<comments>http://www.nosensenews.com/2010/08/jailbreaking-is-possible-in-ios4-after-the-4-0-2-update-yes/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 22:10:06 +0000</pubDate>
		<dc:creator>subzero</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[iOS3]]></category>
		<category><![CDATA[iOS4]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[jailbreak]]></category>

		<guid isPermaLink="false">http://www.nosensenews.com/?p=226</guid>
		<description><![CDATA[Ok, so you fixed the last PDF vulnerability by updating your iPhone/iPad/iPod to 4.0.2 &#8230; cool &#8230; but you decide that you still want to jailbreak your device &#8230; can you do it ? Yes ! According to people the redsn0w tool (http://wikee.iphwn.org/howto:rs9) still works for jailbreaking your old iPhone 3G (yes &#8212; 3G &#8212;&#8230;]]></description>
			<content:encoded><![CDATA[<p>Ok, so you fixed the last PDF vulnerability by updating your iPhone/iPad/iPod to 4.0.2 &#8230; cool &#8230; but you decide that you still want to jailbreak your device &#8230; can you do it ? Yes !<br />
<a href="http://c2848.r48.cf1.rackcdn.com/2010/08/redsn0w.png"><img src="http://c2848.r48.cf1.rackcdn.com/2010/08/redsn0w.png" alt="" title="redsn0w" width="252" height="443" class="alignnone size-full wp-image-227" /></a><br />
According to people the<br />
<span id="more-226"></span><br />
redsn0w tool (http://wikee.iphwn.org/howto:rs9) still works for jailbreaking your old iPhone 3G (yes &#8212; 3G &#8212; not 3GS) along with second-generation iPod touches running iOS 4.0.2. That&#8217;s pretty amazing &#8230; and probably we have and answer to our question &#8230; when our iPhone will be bullet proof &#8230; ? Never.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosensenews.com/2010/08/jailbreaking-is-possible-in-ios4-after-the-4-0-2-update-yes/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Older Apple iOS devices must jailbreak to be secure</title>
		<link>http://www.nosensenews.com/2010/08/older-apple-ios-devices-must-jailbreak-to-be-secure/</link>
		<comments>http://www.nosensenews.com/2010/08/older-apple-ios-devices-must-jailbreak-to-be-secure/#comments</comments>
		<pubDate>Sun, 15 Aug 2010 21:49:09 +0000</pubDate>
		<dc:creator>subzero</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[Apple]]></category>
		<category><![CDATA[Cydia]]></category>
		<category><![CDATA[iOS3]]></category>
		<category><![CDATA[iPad]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[iPod]]></category>
		<category><![CDATA[PDF vulnerability]]></category>

		<guid isPermaLink="false">http://www.nosensenews.com/?p=223</guid>
		<description><![CDATA[Since Apple released and update 4.0.2 on iPhone/iPad/iPod OS to fix the latest PDF vulnerability that allow to run code into your mobile device running iOS4, the things are clear a jailbreak from jailbreakme.com is not possible anymore, since the PDF vulnerability is fixed. But what happens if you&#8217;re running and older version of the&#8230;]]></description>
			<content:encoded><![CDATA[<p>Since Apple released and update 4.0.2 on iPhone/iPad/iPod OS to fix the latest PDF vulnerability that allow to run code into your mobile device running iOS4, the things are clear a jailbreak from jailbreakme.com is not possible anymore, since the PDF vulnerability is fixed. But what happens if you&#8217;re running and older version of the iOS like  iOS 3.1.3 (reasons not to update? becouse on older devices is still faster then the iOS4 &#8230;) ? Right, you guessed, you&#8217;re still at risk since the vulnerability was not addressed there&#8230; so how can you be safe &#8230; there is an app for that on &#8230;<br />
<a href="http://c2848.r48.cf1.rackcdn.com/2010/08/fixpdf_cydia.png"><img src="http://c2848.r48.cf1.rackcdn.com/2010/08/fixpdf_cydia.png" alt="" title="Application fixing PDF vulnerability on iOS3 from Cydia Store" width="240" height="347" class="alignnone size-full wp-image-224" /></a><br />
Cydia store &#8230; and in order to get that you need to jailbreak your phone &#8230; do you see the irony ??? &#8230;. and the no sense &#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosensenews.com/2010/08/older-apple-ios-devices-must-jailbreak-to-be-secure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Jailbreak for iPhone and iPod running up to iOS 4.0.1</title>
		<link>http://www.nosensenews.com/2010/08/jailbreak-for-iphone-and-ipod-running-up-to-ios-4-0-1/</link>
		<comments>http://www.nosensenews.com/2010/08/jailbreak-for-iphone-and-ipod-running-up-to-ios-4-0-1/#comments</comments>
		<pubDate>Fri, 13 Aug 2010 14:08:47 +0000</pubDate>
		<dc:creator>subzero</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[3G]]></category>
		<category><![CDATA[iOS4]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[jailbreak]]></category>
		<category><![CDATA[legal]]></category>

		<guid isPermaLink="false">http://www.nosensenews.com/?p=217</guid>
		<description><![CDATA[It is alarming how easy and elegant was this new iPhone/iPod/iPad jailbreak for devices running iOS up to 4.0.1. The exploit , this time from the iPhone Dev Team, called a &#8220;beautiful work&#8221; by some security researchers is exploiting a vulnerability into the iPhone Safari browser that allows for a back door access, while opening&#8230;]]></description>
			<content:encoded><![CDATA[<p>It is alarming how easy and elegant was this new iPhone/iPod/iPad jailbreak for devices running iOS up to 4.0.1. The exploit , this time from the iPhone Dev Team, called a &#8220;beautiful work&#8221; by some security researchers is exploiting a vulnerability into the iPhone Safari browser that allows for a back door access, while opening and viewing PDF files. The cool/scarry thing is that this can be exploited just by visiting a webpage that contain this code (www.jailbreakme.com).</p>
<p><a href="http://c2848.r48.cf1.rackcdn.com/2010/08/iphone4_jailbreak.png"><img src="http://c2848.r48.cf1.rackcdn.com/2010/08/iphone4_jailbreak.png" alt="" title="iPhone/iPod jailbreak" width="405" height="500" class="alignnone size-full wp-image-219" /></a></p>
<p>The cool thing about this jailbrake is that you can revert any time (if you backup your device, please do that !!!) at your previous &#8216;official&#8217; firmware from Apple.</p>
<p>Now while this jailbreak is safe and legal, we wonder how long it will take until this vulnerability (already ported to metasploit) may install &#8216;backdoors&#8217; on your device (well, other then the ones from Apple).<br />
<span id="more-217"></span><br />
Since Apple just released a 4.0.2 version of their firmware that fixes this vulnerability a question ramain &#8230; should I upgrade and loose the freedom and all the goodies I can get from the Cydia store (cydia.saurik.com), or remain with the jailbrake and risk that my device will be &#8216;takeover&#8217; by some malicious page.  Hmm &#8230; I guess I want a Open device, where I can install what I want from what store I want &#8230; and be safe &#8230; do you think this make sense ?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosensenews.com/2010/08/jailbreak-for-iphone-and-ipod-running-up-to-ios-4-0-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Is IPhone 3G to slow for iOS4 ?</title>
		<link>http://www.nosensenews.com/2010/07/is-iphone-3g-to-slow-for-ios4/</link>
		<comments>http://www.nosensenews.com/2010/07/is-iphone-3g-to-slow-for-ios4/#comments</comments>
		<pubDate>Fri, 30 Jul 2010 13:23:43 +0000</pubDate>
		<dc:creator>subzero</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[3G]]></category>
		<category><![CDATA[iOS4]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[slow]]></category>

		<guid isPermaLink="false">http://www.nosensenews.com/?p=212</guid>
		<description><![CDATA[Soon after Apple has gotten the iPhone3 antenna problem out from the news by offering free bumpers and saying that other phones have the same problem another issues is hitting the iPhone, this time iPhone 3G It seems that the iPhone 3G owners who upgraded to the new iOS4 are complaining that the iOS4 is&#8230;]]></description>
			<content:encoded><![CDATA[<p>Soon after Apple has gotten the iPhone3 antenna problem out from the news by offering free bumpers and saying that other phones have the same problem another issues is hitting the iPhone, this time iPhone 3G</p>
<p><a href="http://c2848.r48.cf1.rackcdn.com/2010/07/iphone3g.png"><img src="http://c2848.r48.cf1.rackcdn.com/2010/07/iphone3g.png" alt="" title="iphone3g" width="378" height="482" class="alignnone size-full wp-image-213" /></a></p>
<p>It seems that the iPhone 3G owners who upgraded to the new iOS4 are complaining that the iOS4 is killing the performance of their mobile phones, and they hope that they will see soon an fix from the company from Cupertino. Apple has reported that they begun an investigation about the issue since they have a lot of complains (people are reporting on their blogs about this all over the globe). So should you upgrade your iPhone 3G to the new iOS4 ? Probably not, just wait until the next iOS4 update.<br />
<span id="more-212"></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosensenews.com/2010/07/is-iphone-3g-to-slow-for-ios4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone Jailbreaking Legal</title>
		<link>http://www.nosensenews.com/2010/07/iphone-jailbreaking-legal/</link>
		<comments>http://www.nosensenews.com/2010/07/iphone-jailbreaking-legal/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 17:51:04 +0000</pubDate>
		<dc:creator>subzero</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[iPhone]]></category>
		<category><![CDATA[jailbreak]]></category>
		<category><![CDATA[legal]]></category>

		<guid isPermaLink="false">http://www.nosensenews.com/?p=199</guid>
		<description><![CDATA[If you own an iPhone and want to &#8220;jailbreak&#8221; it in order to install non-Apple-certified applications, good news &#8211; it&#8217;s now considered perfectly legal, according to the United States government. Statement of the Librarian of Congress Relating to Section 1201 Rulemaking Section 1201(a)(1) of the copyright law requires]]></description>
			<content:encoded><![CDATA[<p><a href="http://c2848.r48.cf1.rackcdn.com/2010/07/iPhone4.png"><img src="http://c2848.r48.cf1.rackcdn.com/2010/07/iPhone4.png" alt="iPhone 4 on nosensenews.com" title="iPhone4" width="164" height="310" class="alignnone size-full wp-image-202" /></a></p>
<p>If you own an iPhone and want to &#8220;jailbreak&#8221; it in order to install non-Apple-certified applications, good news &#8211; it&#8217;s now considered perfectly legal, according to the United States government.</p>
<blockquote><p>Statement of the Librarian of Congress Relating to Section 1201 Rulemaking</p>
<p>Section 1201(a)(1) of the copyright law requires
<that every three years I am to determine whether there are any classes of works that will be subject to exemptions from the statute’s prohibition against circumvention of technology that effectively controls access to a copyrighted work.  I make that determination at the conclusion of a rulemaking proceeding conducted by the Register of Copyrights, who makes a recommendation to me.  Based on that proceeding and the Register’s recommendation, I am to determine whether the prohibition on circumvention of technological measures that control access to copyrighted works is causing or is likely to cause adverse effects on the ability of users of any particular classes of copyrighted works to make noninfringing uses of those works. The classes of works that I designated in the previous proceeding expire at the end of the current proceeding unless proponents of a class prove their case once again.</p>
<p>This is the fourth time that I have made such a determination. Today I have designated six classes of works. Persons who circumvent access controls in order to engage in noninfringing uses of works in these six classes will not be subject to the statutory prohibition against circumvention.<br />
<span id="more-199"></span><br />
As I have noted at the conclusion of past proceedings, it is important to understand the purposes of this rulemaking, as stated in the law, and the role I have in it. This is not a broad evaluation of the successes or failures of the DMCA. The purpose of the proceeding is to determine whether current technologies that control access to copyrighted works are diminishing the ability of individuals to use works in lawful, noninfringing ways. The DMCA does not forbid the act of circumventing copy controls, and therefore this rulemaking proceeding is not about technologies that control copying. Nor is this rulemaking about the ability to make or distribute products or services used for purposes of circumventing access controls, which are governed by a different part of section 1201.</p>
<p>In this rulemaking, the Register of Copyrights received 19 initial submissions proposing 25 classes of works, many of them duplicative in subject matter, which the Register organized into 11 groups and published in a notice of proposed rulemaking seeking comments on the proposed classes.  Fifty-six comments were submitted.  Thirty-seven witnesses appeared during the four days of public hearings in Washington and in Palo Alto, California. Transcripts of the hearings, copies of all of the comments, and copies of other information received by the Register have been posted on the Copyright Office&#8217;s website.</p>
<p>The six classes of works are:</p>
<p>(1)  Motion pictures on DVDs that are lawfully made and acquired and that are protected by the Content Scrambling System when circumvention is accomplished solely in order to accomplish the incorporation of short portions of motion pictures into new works for the purpose of criticism or comment, and where the person engaging in circumvention believes and has reasonable grounds for believing that circumvention is necessary to fulfill the purpose of the use in the following instances:</p>
<p>(i) Educational uses by college and university professors and by college and university film and media studies students;</p>
<p>(ii) Documentary filmmaking;<br />
(iii) Noncommercial videos</p>
<p>(2) Computer programs that enable wireless telephone handsets to execute software applications, where circumvention is accomplished for the sole purpose of enabling interoperability of such applications, when they have been lawfully obtained, with computer programs on the telephone handset.</p>
<p>(3) Computer programs, in the form of firmware or software, that enable used wireless telephone handsets to connect to a wireless telecommunications network, when circumvention is initiated by the owner of the copy of the computer program solely in order to connect to a wireless telecommunications network and access to the network is authorized by the operator of the network.</p>
<p>(4) Video games accessible on personal computers and protected by technological protection measures that control access to lawfully obtained works, when circumvention is accomplished solely for the purpose of good faith testing for, investigating, or correcting security flaws or vulnerabilities, if:</p>
<p>(i) The information derived from the security testing is used primarily to promote the security of the owner or operator of a computer, computer system, or computer network; and<br />
(ii) The information derived from the security testing is used or maintained in a manner that does not facilitate copyright infringement or a violation of applicable law.</p>
<p>(5) Computer programs protected by dongles that prevent access due to malfunction or damage and which are obsolete.  A dongle shall be considered obsolete if it is no longer manufactured or if a replacement or repair is no longer reasonably available in the commercial marketplace; and</p>
<p>(6) Literary works distributed in ebook format when all existing ebook editions of the work (including digital text editions made available by authorized entities) contain access controls that prevent the enabling either of the book’s read-aloud function or of screen readers that render the text into a specialized format.</p>
<p>All of these classes of works find their origins in classes that I designated at the conclusion of the previous rulemaking proceeding, but some of the classes have changed due to differences in the facts and arguments presented in the current proceeding.  For example, in the previous proceeding I designated a class that enable film and media studies professors to engage in the noninfringing activity of making compilations of film clips for classroom instruction.  In the current proceeding, the record supported an expansion of that class to enable the incorporation of short portions of motion pictures into documentary films and noncommercial videos for the purpose of criticism or comment, when the person engaging in circumvention reasonably believes that it is necessary to fulfill that purpose.  I agree with the Register that the record demonstrates that it is sometimes necessary to circumvent access controls on DVDs in order to make these kinds of fair uses of short portions of motion pictures.</that></blockquote>
<p>Apple calls jailbreaking an &#8220;unauthorized modification of its software,&#8221; and has in the past released iPhone updates that render jailbroken phones inoperable. The new ruling will not stop the mobile giant from doing so in the future</p>
<p>Apple representative pointed out that jailbreaking an iPhone voided the warranty, and claimed that it could &#8220;severely degrade the experience&#8221; by making the phone unreliable and unstable. Still, whatever Apple says, you can now do whatever you want on your phone (as long as the software is legal) and the US gub&#8217;mint won&#8217;t stop you.</p>
<p>The ruling also said that it was legal to crack DRM on computer and videogames, provided that it was for the purpose of &#8220;testing for, investigating, or correcting security flaws or vulnerabilities.&#8221; In other words, if your new DRM makes a user&#8217;s computer vulnerable to attacks, it&#8217;s fair game for people to breach it.</p>
<p>I believe that this is a big win for us (the people who don&#8217;t like limits on traffic, limits on what application you can install, limits how to use the phone and how to hold the phone &#8230;.) since we can explore this devices the way we want , without any of the producers limitations&#8230; we like the phones &#8230; you know &#8230; free.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosensenews.com/2010/07/iphone-jailbreaking-legal/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to find all local IP addresses in python</title>
		<link>http://www.nosensenews.com/2010/07/how-to-find-all-local-ip-addresses-in-python/</link>
		<comments>http://www.nosensenews.com/2010/07/how-to-find-all-local-ip-addresses-in-python/#comments</comments>
		<pubDate>Mon, 26 Jul 2010 14:28:53 +0000</pubDate>
		<dc:creator>subzero</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[ip]]></category>
		<category><![CDATA[pyhton]]></category>

		<guid isPermaLink="false">http://www.nosensenews.com/?p=188</guid>
		<description><![CDATA[I was trying to get all the local IP addresses (public and private) in python , and the standard socket library seems to provide only information about the IP that resolve your hostname. Here is a quick way how to list all your ip from all interfaces in python. First you need to install the&#8230;]]></description>
			<content:encoded><![CDATA[<p>I was trying to get all the local IP addresses (public and private) in python , and the standard socket library seems to provide only information about the IP that resolve your hostname. Here is a quick way how to list all your ip from all interfaces in python.</p>
<p>First you need to install the python netifaces module:</p>
<p>On a debian system you can install the module like this:</p>
<blockquote><p>sudo apt-get install python-netifaces</p></blockquote>
<p>You&#8217;re done, now you can write the code:</p>
<blockquote><p>from netifaces import interfaces, ifaddresses, AF_INET</p>
<p>for ifaceName in interfaces():<br />
    addresses = [i['addr'] for i in ifaddresses(ifaceName)[AF_INET]]<br />
    print &#8216;%s: %s&#8217; % (ifaceName, &#8216;, &#8216;.join(addresses))</p></blockquote>
<p>on my computer I have an output like this:</p>
<blockquote><p>lo: 127.0.0.1<br />
eth0: 1.1.1.1<br />
eth1: 192.168.0.1
</p></blockquote>
<p>No Sense ?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosensenews.com/2010/07/how-to-find-all-local-ip-addresses-in-python/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to setup a serial connection on MacBook Pro</title>
		<link>http://www.nosensenews.com/2010/07/how-to-setup-a-serial-connection-on-macbook-pro/</link>
		<comments>http://www.nosensenews.com/2010/07/how-to-setup-a-serial-connection-on-macbook-pro/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 23:51:10 +0000</pubDate>
		<dc:creator>subzero</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[mac]]></category>
		<category><![CDATA[mac serial usb driver]]></category>
		<category><![CDATA[minicom]]></category>

		<guid isPermaLink="false">http://www.nosensenews.com/?p=135</guid>
		<description><![CDATA[and configure the serial port and data parity to look like this Save the data (as default). and start the connection. Now you should be able to see the device on the other end of you serial connection, probably a Cisco.]]></description>
			<content:encoded><![CDATA[<h2Prerequisites</h2>
<p>An DB9/RJ45 adapter, free USB port, mac ports installed.</p>
<h2>Installing</h2>
<p>After the serial port is plugged in you USB port you would be able to see the adapter on Apple&gt;About This Mac&gt;More Info</p>
<p><a href="http://c2848.r48.cf1.rackcdn.com/2010/07/about_this_mac.png"><img src="http://c2848.r48.cf1.rackcdn.com/2010/07/about_this_mac.png" alt="" title="About this mac dialog - serial interface" width="600" height="341" /></a></p>
<p>Next we need some drivers for the adapter.<br />
<span id="more-135"></span><br />
I found the <a href="http://c0020438.cdn1.cloudfiles.rackspacecloud.com/FTDIUSBSerialDriver_v2_2_10.dmg">serial mac driver on Future Technology Website</a> under Virtual Serial Ports Section.</p>
<p>After I install the driver a new device is visible<br />
<a href="http://c2848.r48.cf1.rackcdn.com/2010/07/driver_working.png"><img src="http://c2848.r48.cf1.rackcdn.com/2010/07/driver_working.png" alt="" title="USB Serial Driver working" width="466" height="59"  /></a></p>
<p>Now the driver is ready and working.</p>
<h2>Installing minicom (from ports)</h2>
<blockquote><p>sudo port install minicom</p></blockquote>
<h2>Howto setup minicom in order to connect to a serial port</h2>
<blockquote><p>sudo minicom &#8211;color=on -s</p></blockquote>
<p>go to Serial port setup> and configure the serial port and data parity to look like this</p>
<p><a href="http://c2848.r48.cf1.rackcdn.com/2010/07/MinicomSetup.png"><img src="http://c2848.r48.cf1.rackcdn.com/2010/07/MinicomSetup.png" alt="" title="Minicom setup" width="441" height="158"  /></a></p>
<p>Save the data (as default). and start the connection. Now you should be able to see the device on the other end of you serial connection, probably a Cisco.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosensenews.com/2010/07/how-to-setup-a-serial-connection-on-macbook-pro/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create a cisco console cable</title>
		<link>http://www.nosensenews.com/2010/07/how-to-create-a-cisco-console-cable/</link>
		<comments>http://www.nosensenews.com/2010/07/how-to-create-a-cisco-console-cable/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 23:00:44 +0000</pubDate>
		<dc:creator>subzero</dc:creator>
				<category><![CDATA[How-to]]></category>
		<category><![CDATA[cisco]]></category>
		<category><![CDATA[console]]></category>
		<category><![CDATA[howto]]></category>

		<guid isPermaLink="false">http://www.nosensenews.com/?p=88</guid>
		<description><![CDATA[For this operation you need an RJ45 cable and a DB9 adapter. RJ45 cable This adapter works with the RJ45 serial port found on most Cisco routers. It also works on some Sun servers. This is pretty much just like the crossover cable but with a different pinout: 1 &#8211; 6 2 &#8211; 5 3&#8230;]]></description>
			<content:encoded><![CDATA[<p>For this operation you need an RJ45 cable and a DB9 adapter.</p>
<h2>RJ45 cable</h2>
<p>This adapter works with the RJ45 serial port found on most Cisco routers. It also works on some Sun servers.<br />
This is pretty much just like the crossover cable but with a different pinout:</p>
<blockquote><p>1 &#8211; 6<br />
2 &#8211; 5<br />
3 &#8211; 3<br />
4 &#8211; 8<br />
5 &#8211; 7<br />
6 &#8211; 4<br />
7 &#8211; 1<br />
8 &#8211; 2</p></blockquote>
<p>- one side<br />
<a href="http://c2848.r48.cf1.rackcdn.com/2010/07/568B.gif"><img title="Wiring on one side" src="http://c2848.r48.cf1.rackcdn.com/2010/07/568B.gif" alt="Cisco console cable RJ45 one end" width="107" height="148" /></a></p>
<p>- the other side</p>
<p><a href="http://c2848.r48.cf1.rackcdn.com/2010/07/ciscoend.gif"><img title="Wiring on the other side" src="http://c2848.r48.cf1.rackcdn.com/2010/07/ciscoend.gif" alt="Cisco console cable RJ45 the other end" width="107" height="148" /></a></p>
<h2>DB9 adapter</h2>
<p>This is the trickiest part. In order to make your cable compatible with the largest number of serial devices possible, you need to combine a couple pins and split another one. Here is the pinout:<br />
<span id="more-88"></span></p>
<blockquote><p>DB9 pin signal RJ45 pin color *<br />
&#8212;&#8212;- &#8212;&#8212; &#8212;&#8212;&#8211; &#8212;&#8211;<br />
1 DCD 8 white<br />
2 RxD 3 black<br />
3 TxD 1 blue<br />
4 DTR 5 green<br />
5 SG 2 and 6 orange and yellow<br />
6 DSR 8 white<br />
7 RTS 4 red<br />
8 CTS 7 brown<br />
9 RI none</p></blockquote>
<p>So our ethernet turned serial cable will be pinned:</p>
<blockquote><p>1 TxD pair one<br />
2 SG pair one<br />
3 RxD pair two<br />
4 RTS pair three<br />
5 DTR pair three<br />
6 SG pair two<br />
7 CTS pair four<br />
8 DSR/DCD pair four</p></blockquote>
<p><a href="http://c2848.r48.cf1.rackcdn.com/2010/07/wiredetail.jpeg"><img title="Cisco Serial Cable Wire Soldering - part one" src="http://c2848.r48.cf1.rackcdn.com/2010/07/wiredetail.jpeg" alt="Cisco Serial Cable Wire Soldering" width="308" height="230" /></a></p>
<p><a href="http://c2848.r48.cf1.rackcdn.com/2010/07/modwires.jpeg"><img title="Cisco Serial Cable Wire Soldering - part two" src="http://c2848.r48.cf1.rackcdn.com/2010/07/modwires.jpeg" alt="Cisco Serial Cable Wire Soldering" width="284" height="198" /></a></p>
<p style="text-align: justify;">* My DB9F/RJ45F modular adapters are colored blue, orange, black, red, green, yellow, brown, white (RJ45 1-8), but yours may not be. If yours are different, ignore the colors in the above pinout.</p>
<p style="text-align: justify;">DB9 pins 2, 3, 4, 7, and 8 are easy. Just push the appropriate pin in the back of the DB9 connector until it snaps. Be careful not to get any of the pins mixed up because errors are a bit difficult to fix. I seem to remember having a skinny little tool to pop the pins back out again some years back, but I can&#8217;t find it anymore.</p>
<p style="text-align: justify;">DB9 pin 5 needs two wires connected to it. Snip the pins off of the wires coming from RJ45 pins 2 and 6 (orange and yellow on mine), strip about 3 mm off the end of each, and crimp them together onto one of your spare pins.<br />
wiring detail photo</p>
<p style="text-align: justify;">RJ45 pin 8 has to connect to both 1 and 6 on the DB9 connector. Snip the pin off of the white wire, strip the end, cut about an inch of scrap CAT5 and pull out two of the white wires, strip both ends off of them, crimp a pin on each one, and splice all three loose ends together. You can break the end off of a spare pin and use it to crimp the three wires together. You can use the other two white wires from the inch of CAT5 for the second adapter.</p>
<p>Both of the DB9/RJ45 adapters should be wired exactly the same way, regardless of whether they will be used for DTE or DCE devices</p>
<blockquote><p>The final product</p></blockquote>
<p>That&#8217;s how our final custom cisco console cable should look:</p>
<p><a href="http://c2848.r48.cf1.rackcdn.com/2010/07/cisco.jpeg"><img title="Custom cisco console cable" src="http://c2848.r48.cf1.rackcdn.com/2010/07/cisco.jpeg" alt="Home made cisco console cable" width="357" height="193" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosensenews.com/2010/07/how-to-create-a-cisco-console-cable/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Steve Jobs: &#8220;We&#8217;re not perfect&#8221; and free iPhone 4 bumpers for everyone</title>
		<link>http://www.nosensenews.com/2010/07/steve-jobs-we-are-not-perfect-and-free-iphone-4-bumpers-for-everyone/</link>
		<comments>http://www.nosensenews.com/2010/07/steve-jobs-we-are-not-perfect-and-free-iphone-4-bumpers-for-everyone/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 23:05:46 +0000</pubDate>
		<dc:creator>subzero</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.nosensenews.com/?p=80</guid>
		<description><![CDATA[Apple decided to hold a short notice conference 10am PDT/1pm EDT, some people believe in a iPhone4 recall (due the antenna issue &#8211; now official &#8211; &#8220;it is a real problem&#8221;) or a teaching titled &#8220;how to hold the iPhone&#8221; or &#8220;free bumpers for everyone who bought an iPhone 4) after a very intense week&#8230;]]></description>
			<content:encoded><![CDATA[<p>Apple decided to hold a short notice conference 10am PDT/1pm EDT, some people believe in a iPhone4 recall (due the antenna issue &#8211; now official &#8211; &#8220;it is a real problem&#8221;) or a teaching titled &#8220;how to hold the iPhone&#8221; or &#8220;free bumpers for everyone who bought an iPhone 4) after a very intense week with an &#8220;software update&#8221; to adjust the iphone signal disappearing  (the signal drop still occurs), and discussions removed from the Apple discussions board. </p>
<p> In Cupertino, California,  Apple CEO Steve Jobs announced during the iPhone 4 press conference Friday that every iPhone 4 user will get a free Apple Bumper to help mitigate antenna problems. This will apply to every user worldwide who buys an iPhone through September 30. iPhone 4 owners who have already purchased one of the $30 bumpers will get a full refund. Users who don&#8217;t like the bumper solution and are still unhappy with the iPhone can bring it back for a full refund instead. </p>
<p><a href="http://c2848.r48.cf1.rackcdn.com/2010/07/iPhone4_bumper.png"><img src="http://c2848.r48.cf1.rackcdn.com/2010/07/iPhone4_bumper.png" alt="iPhone 4 bumper from Apple Store" title="iPhone4_bumper" width="489" height="322" class="aligncenter size-full wp-image-83" /></a></p>
<p>This will work only with Apple since iPhone 4 refunds don&#8217;t apply to AT&#038;T contracts after 30 days. </p>
<p>When asked if that applied to users who wanted to get out of their AT&#038;T contracts, Jobs said, &#8220;I believe so,&#8221; but that&#8217;s not actually the case.<br />
<span id="more-80"></span> </p>
<p>&#8220;Our normal, 30-day return policy applies,&#8221; the AT&#038;T spokesman said.</p>
<p>&#8220;We support [Apple's] decision to provide free cases to folks and to waive the usual re-stocking fee,&#8221; he continued. &#8220;We&#8217;re going to do the same.&#8221;</p>
<p>In addition to the free bumpers, Apple plans to issue a fix for the proximity sensor problem ( that is causing some users to accidentally hang up calls when they put the device up to their heads).</p>
<p>Seems that a few major problems are spotted with this new IPhone 4 model, but people are still buying the phone. I personally have the device and I am very happy with the phone, but I want all the problems to be fixed (if possible).</p>
<p>Let me finish with a quote that I really like from a video of Jonathan Mann&#8217;s &#8220;The iPhone 4 Antenna Song,&#8221; which includes the lyrics &#8220;If you don&#8217;t want an iPhone 4 don&#8217;t buy it. If you bought one and you don&#8217;t like it, bring it back &#8230; but you know you won&#8217;t.&#8221;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosensenews.com/2010/07/steve-jobs-we-are-not-perfect-and-free-iphone-4-bumpers-for-everyone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iPhone4 antenna issue &#8211; hardware or software problem ?</title>
		<link>http://www.nosensenews.com/2010/07/iphone4-antenna-issue-hardware-or-software-problem/</link>
		<comments>http://www.nosensenews.com/2010/07/iphone4-antenna-issue-hardware-or-software-problem/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 19:23:40 +0000</pubDate>
		<dc:creator>subzero</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.nosensenews.com/?p=63</guid>
		<description><![CDATA[Soon after the iPhone4 launch with Steve Jobs calling the iPhone with a &#8220;genius antenna design&#8221; (part of the iPhone frame), people started experimenting loss of signal while holding the phone in a particular way (covering lower left corner). With no official feedback from Apple (just some unofficial email replay from &#8220;Steve Jobs &#8221; (rumors)&#8230;]]></description>
			<content:encoded><![CDATA[<p>Soon after the iPhone4 launch with Steve Jobs calling the iPhone with a &#8220;genius antenna design&#8221; (part of the iPhone frame), people started experimenting loss of signal while holding the phone in a particular way (covering lower left corner).<br />
<a href="http://c2848.r48.cf1.rackcdn.com/2010/07/iphone4_frame1.png"><img src="http://c2848.r48.cf1.rackcdn.com/2010/07/iphone4_frame1.png" alt="iPhone4 sides holes" title="iphone4_frame1" width="418" height="613" class="alignleft size-full wp-image-11" /></a><br />
 With no official feedback from Apple (just some unofficial email replay from &#8220;Steve Jobs &#8221; (rumors)  saying &#8220;Do not hold the phone that way&#8221; or recommendations to get an  iPhone case (for 30$, and no Apple will not pay for that) people start questioning about how much &#8220;Apple Cares&#8221; about their customers. Friday we got an official confirmation from Apple that indeed iPhone4 has a &#8220;loss of signal&#8221; problem, but they called this a &#8220;non issue&#8221; despite of more and more customers experimenting the issue.<br />
The &#8220;fix&#8221; or maybe &#8220;the hack&#8221; since I personally don&#8217;t think that you can fix a hardware issue in software, is an upcoming software update from Apple. An interesting point is, if this a software problem why Apple is hiring iPhone4 antenna developers.<br />
Some researchers (Brian Klug and Anand Shimpi at tech blog Anandtech) have measured and recorded different ways of holding the iPhone 4 in multiple locations and they compared the signal drop against the Nexus One (with Google&#8217;s Android OS).<span id="more-63"></span>They concluded that Apple&#8217;s design choice of putting the antenna directly into the metal band where a user normally holds the phone does improve signal strength. But when you hold the phone in a &#8220;wrong way&#8221; the signal is markedly decreased. The signal is  &#8220;very sensitive to direction, ambient conditions, and cell breathing&#8221;. Still while holding the iPhone in a case you will have a better signal than a Nexus One, but if you squeeze the phone you may experiment signal drops up to 24dBm (20dBm if you hold the phone in a normal way).<br />
<a href="http://c2848.r48.cf1.rackcdn.com/2010/07/iphone4_frame2.png"><img src="http://c2848.r48.cf1.rackcdn.com/2010/07/iphone4_frame2.png" alt="iPhone frame" title="iphone4_frame2" width="470" height="594" class="aligncenter size-full wp-image-10" /></a></p>
<p>As a conclusion we really want to see how this problem will be solved, and how much can be fixed from the software. Maybe we will see also a hardware update next year. </p>
<p>Until then the software fix from Apple makes NO SENSE to us.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosensenews.com/2010/07/iphone4-antenna-issue-hardware-or-software-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nice iPhone ads  &#8220;there is a app for that&#8221; &#8211; Ex Boyfriends</title>
		<link>http://www.nosensenews.com/2010/07/nice-iphone-ads-there-is-a-app-for-that-ex-boyfriends/</link>
		<comments>http://www.nosensenews.com/2010/07/nice-iphone-ads-there-is-a-app-for-that-ex-boyfriends/#comments</comments>
		<pubDate>Sun, 04 Jul 2010 02:20:27 +0000</pubDate>
		<dc:creator>subzero</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.nosensenews.com/?p=58</guid>
		<description><![CDATA[Since Apple has more then 200.000 apps available for the iPhone, it seems really hard to look for an application that does something and to get nothing in return. Today, I found a really funny &#8220;there is an app for that ad&#8221;, in some ways wrong, in some ways so real, &#8220;. Enjoy&#8230; I will&#8230;]]></description>
			<content:encoded><![CDATA[<p>Since Apple has more then <a href="http://www.apple.com/iphone/apps-for-iphone/">200.000 apps available</a> for the iPhone, it seems really hard to look for an application that does something and to get nothing in return. Today, I found a really funny &#8220;there is an app for that ad&#8221;, in some ways wrong, in some ways so real, &#8220;. Enjoy&#8230;</p>
<p><object width="630" height="385"><param name="movie" value="http://www.youtube.com/v/kSE1CQYpvsE&amp;hl=en_US&amp;fs=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/kSE1CQYpvsE&amp;hl=en_US&amp;fs=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="630" height="385"></embed></object></p>
<p>I will like to say &#8220;There is an app for that&#8221;  makes no sense, but I will be wrong here. So did you search for an iPhone app that does something specific and you didn&#8217;t find any application ?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosensenews.com/2010/07/nice-iphone-ads-there-is-a-app-for-that-ex-boyfriends/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best Buy Trying To Fire Employee Over Those Hilarious EVO Versus iPhone Videos</title>
		<link>http://www.nosensenews.com/2010/07/best-buy-trying-to-fire-employee-over-those-hilarious-evo-versus-iphone-videos/</link>
		<comments>http://www.nosensenews.com/2010/07/best-buy-trying-to-fire-employee-over-those-hilarious-evo-versus-iphone-videos/#comments</comments>
		<pubDate>Fri, 02 Jul 2010 02:30:53 +0000</pubDate>
		<dc:creator>subzero</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.nosensenews.com/?p=30</guid>
		<description><![CDATA[By now it seems like just about everyone has seen the iPhone 4 vs. HTC EVO video (and the rebuttal video). The video portrays an electronics store employee trying to convince a person looking for an iPhone 4 to buy an HTC EVO 4G instead. It’s hilarious — like all good humor, so funny because&#8230;]]></description>
			<content:encoded><![CDATA[<p>By now it seems like just about everyone has seen the iPhone 4 vs. HTC EVO video (and the rebuttal video). The video portrays an electronics store employee trying to convince a person looking for an iPhone 4 to buy an HTC EVO 4G instead. It’s hilarious — like all good humor, so funny because it’s at least partially true. But you know who didn’t find it funny? Best Buy. How do I know that? Because they’re trying to fire the kid who made it.</p>
<p>The video in question was made by Brian Maupin, a 25-year-old based in Kansas City, Missouri. For the past three and a half years he’s been working at Best Buy selling mobile phones. He’s probably not going to be doing that anymore as Best Buy has suspended him indefinitely and is currently taking the steps to terminate him, Maupin tells us. The reason? The video.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="625" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowScriptAccess" value="always" /><param name="src" value="http://www.youtube.com/v/UAOtC9QfXac&amp;color1=0xb1b1b1&amp;color2=0xd0d0d0&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="625" height="385" src="http://www.youtube.com/v/UAOtC9QfXac&amp;color1=0xb1b1b1&amp;color2=0xd0d0d0&amp;hl=en_US&amp;feature=player_embedded&amp;fs=1" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>The video became so popular (it currently has nearly 1.3 million views on YouTube) that someone at Best Buy corporate saw it. They then put two-and-two together that it was an employee at one of their stores that made it, and the hammer came down. “They felt it disparaged a brand they carried (iPhone/Apple) as well as the store itself and were fearful of stockholders &amp; customers being turned off to Best Buy Mobile,” Maupin says.</p>
<p><span id="more-30"></span></p>
<p>What’s ridiculous is that nowhere in the video does Maupin have anything indicating the fictitious store the iPhone buyer is walking into is a Best Buy. At the beginning, the cartoon employee identifies the store as “Phone Mart.” The character isn’t even wearing the signature Best Buy blue polo shirt — and they’re standing in an outdoor field with a pink tree.</p>
<p>In other words, nothing about this video seems to imply Best Buy in anyway. In fact, the only reason it will be tied to Best Buy now is thanks to this story.</p>
<p>Maupin says he was asked to quit, which he declined to do, and so they suspended him this morning telling him that he would most likely be terminated after they review it with HR. He expects the decision in the next day or two. “I issued a statement to them explaining that the video was intended to be comedic and hence, not taken seriously by them or all these stockholders &amp; customers they are worried about [being] turned off to buying from them due to the video,” Maupin says in his defense.</p>
<p>Maupin isn’t sure how exactly Best Buy corporate knew to tie the video to him, but believes they did so because a couple other videos under his Tiny Watch Productions (a little indie film group he made with his friends) YouTube account featured videos referencing him and Best Buy. Maupin says he removed those videos at Best Buy’s request, but refuses to take down the EVO vs. iPhone videos because, again, they in no way reference Best Buy.</p>
<p>Regardless of whether he keeps his job or not (which he doesn’t expect to), Maupin is optimistic. “I see it all as a blessing in disguise. I’ve wanted to start my career in graphic design/animation for so long, I see this as my kick in the pants to go get it,” he says.</p>
<p>Source: <a href="http://techcrunch.com/2010/07/01/best-buy-iphone-4-evo-4g/">TechCrunch</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosensenews.com/2010/07/best-buy-trying-to-fire-employee-over-those-hilarious-evo-versus-iphone-videos/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>iPhone4, the fourth generation of iPhone hardware</title>
		<link>http://www.nosensenews.com/2010/07/iphone4-the-fourth-generation-of-iphone-hardware/</link>
		<comments>http://www.nosensenews.com/2010/07/iphone4-the-fourth-generation-of-iphone-hardware/#comments</comments>
		<pubDate>Thu, 01 Jul 2010 23:58:09 +0000</pubDate>
		<dc:creator>subzero</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.nosensenews.com/?p=8</guid>
		<description><![CDATA[The 4 generation of iPhone is here. iPhone4 is one of the hottest gadgets around, has a new look, more functionality, more appeal. Will be this the ultimate phone for the next month ? Let&#8217;s take a look on this mobile The Front Looks very hot, apple seems to put his unibody style in every&#8230;]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-17" title="iphone4_part1" src="http://c2848.r48.cf1.rackcdn.com/2010/07/iphone4_part1.png" alt="iPhone4 front" width="450" height="600" /></p>
<p>The 4 generation of iPhone is here. iPhone4 is one of the hottest gadgets around, has a new look, more functionality, more appeal. Will be this the ultimate phone for the next month ? Let&#8217;s take a look on this mobile</p>
<p><strong>The Front</strong></p>
<p>Looks very hot, apple seems to put his unibody style in every product. The front and back side was made from a new compound, a  laminated glass &#8220;aluminosilicate glass&#8221; chemically strengthened to be 20 times stiffer and 30 times harder than plastic, the glass is ultradurable and more scratch resistant than ever, witch seems to be &#8220;the same type used for windshield in modern helicopters&#8221;.</p>
<p>Still there are some people questioning the strength of the glass that sits on top of the unit&#8217;s aluminum frame, saying that is a design flaw that &#8220;will bite [Apple] in the future.&#8221; (iFixYouri).</p>
<p><a href="http://c2848.r48.cf1.rackcdn.com/2010/07/iphonesmash.png"><img class="alignnone size-full wp-image-18" title="iphonesmash" src="http://c2848.r48.cf1.rackcdn.com/2010/07/iphonesmash.png" alt="iPhone4 smashed" width="600" height="470" /></a></p>
<p>We believe that the test is questionable.</p>
<p>The display is a multi-touch display senses your touch using electrical fields, it can register multiple touches at once to support advanced gestures such as pinch to zoom, two-finger tap, and more. The panel then transmits the information to the <strong>Retina</strong> display below it.</p>
<p><a href="http://c2848.r48.cf1.rackcdn.com/2010/07/touch_display.png"><img class="alignnone size-full wp-image-16" title="touch_display" src="http://c2848.r48.cf1.rackcdn.com/2010/07/touch_display.png" alt="iPhone4 touch display" width="604" height="359" /></a></p>
<p>Called &#8220;Retina&#8221; because of it&#8217;s revolutionary 326 pixels per inch &#8220;<em>more that the eye can see according to Apple</em>&#8221; , the IPS (in-plane switching) technology is the the same technology used in the Apple LED Cinema Display and iPad to achieve a widerviewing angle than on typical LCDs, in theory means you can hold iPhone 4 almost any way you want and still get a brilliant picture.</p>
<p><span id="more-8"></span></p>
<p><span id="more-12"> </span></p>
<p><img class="alignnone size-full wp-image-15" title="iphone4_retina" src="http://c2848.r48.cf1.rackcdn.com/2010/07/iphone4_retina.png" alt="iPhone4 retina display" width="567" height="512" /></p>
<p>The most practical is the front video camera, so you can have a &#8220;Facetime&#8221; (video conference over wifi). I&#8217;m dreaming of this since I have my first skype video call years ago. Adding a camera makes a lot of sens to me, hello anybody else ?  Motorolla ? Samsung ? Nokia ?</p>
<p><a href="http://c2848.r48.cf1.rackcdn.com/2010/07/iphone4_facetime.png"><img class="alignnone size-full wp-image-14" title="iphone4_facetime" src="http://c2848.r48.cf1.rackcdn.com/2010/07/iphone4_facetime.png" alt="iPhone4 facetime feature" width="560" height="641" /></a></p>
<p>How cool is that ?  I think is awesome. This brings a value for the home users and business users since now you may have a video conference with your business partner.</p>
<p><strong>The back</strong></p>
<p>In the back we have no surprises , the same type of glass used in the front is used on back also, we also have a really nice camera (5 megapixel with a built-in flash LED).You can switch between the front end and back end camera anytime during a video call.</p>
<p><a href="http://c2848.r48.cf1.rackcdn.com/2010/07/iphone4_back.png"><img class="alignnone size-full wp-image-13" title="iPhone4_back" src="http://c2848.r48.cf1.rackcdn.com/2010/07/iphone4_back.png" alt="iPhone4 look from back" width="553" height="498" /></a></p>
<p><strong>The Side</strong></p>
<p>The phone frame is made from strong stainless steel seems very strong, the design of the frame it&#8217;s a little strange since the frame is broken in 3 pieces ? Strange &#8230; since you don&#8217;t expect this from a company like apple. We can see one line on the top and one on each side of the phone.</p>
<p><a href="http://c2848.r48.cf1.rackcdn.com/2010/07/iphone4_frame1.png"><img class="alignnone size-full wp-image-11" title="iphone4_frame1" src="http://c2848.r48.cf1.rackcdn.com/2010/07/iphone4_frame1.png" alt="iPhone4 sides holes" width="418" height="613" /></a></p>
<p>but after a while we figure out why, and this makes sense, the frame is also used as an antenna. Very ingenious &#8230; you can see in this picture that the left side is used for Bluetooth,Wi-Fi and GPS while the right side is used for UMTS and GSM.</p>
<p><a href="http://c2848.r48.cf1.rackcdn.com/2010/07/iphone4_frame2.png"><img class="alignnone size-full wp-image-10" title="iphone4_frame2" src="http://c2848.r48.cf1.rackcdn.com/2010/07/iphone4_frame2.png" alt="iPhone frame" width="470" height="594" /></a></p>
<p><strong>The Core</strong></p>
<p><strong><a href="http://c2848.r48.cf1.rackcdn.com/2010/07/apple_a4_chip.png"><img class="alignnone size-full wp-image-9" title="apple_a4_chip" src="http://c2848.r48.cf1.rackcdn.com/2010/07/apple_a4_chip.png" alt="iPhone4 processor" width="600" height="213" /></a></strong></p>
<p>As you can guess the iPhone is powered by a lion hard an A4 chip that is energy friendly and also introduces new functions: Quad band HSDPA/HSUPA, dual mic noise suppression, 802.11n Wi-Fi. Apple engineers designed the A4 chip to be a remarkably powerful yet remarkably power-efficient mobile processor. With it, iPhone 4 can easily perform complex jobs such as multitasking, editing video, and placing FaceTime calls. All while maximizing battery life. A4 also includes a built-in three-axis gyroscope. When paired with the accelerometer, it makes iPhone 4 capable of advanced motion sensing such as user acceleration, full 3D attitude, and rotation rate. Translation: More motion gestures and greater precision for an even better gaming experience.</p>
<p>Steve Jobs gyroscope presentation at Apple Developer Conference 2010.</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/ORcu-c-qnjg&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="385" src="http://www.youtube.com/v/ORcu-c-qnjg&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Also you can watch the full presentation of iPhone 4 at Apple WWDC Conference 2010 here</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="640" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/QZBffb1HkfM&amp;hl=en_US&amp;fs=1&amp;" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="640" height="385" src="http://www.youtube.com/v/QZBffb1HkfM&amp;hl=en_US&amp;fs=1&amp;" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>NoSense ?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosensenews.com/2010/07/iphone4-the-fourth-generation-of-iphone-hardware/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>iPhone 4 review</title>
		<link>http://www.nosensenews.com/2010/06/iphone4-review/</link>
		<comments>http://www.nosensenews.com/2010/06/iphone4-review/#comments</comments>
		<pubDate>Tue, 22 Jun 2010 10:01:06 +0000</pubDate>
		<dc:creator>subzero</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[iPhone]]></category>

		<guid isPermaLink="false">http://www.nosensenews.com/?p=38</guid>
		<description><![CDATA[The iPhone 4 is no small thing to review. As most readers of Engadget are well aware, in the gadget world a new piece of Apple hardware is a major event, preceded by rumors, speculation, an over-the-top announcement, and finally days, weeks, or months of anticipation from an ever-widening fan base. The iPhone 4 is&#8230;]]></description>
			<content:encoded><![CDATA[<div style="text-align: center;"><a href="http://www.engadget.com/2010/06/22/iphone-4-review/"><img src="http://www.blogcdn.com/www.engadget.com/media/2010/06/ip4main.jpg" alt="" border="1" hspace="4" vspace="4"></a></div>
<p>The iPhone 4 is no small thing to review. As most readers of Engadget are well aware, in the gadget world a new piece of Apple hardware is a major event, preceded by rumors, speculation, an over-the-top announcement, and finally days, weeks, or months of anticipation from an ever-widening fan base. The iPhone 4 is certainly no exception &#8212; in fact, it may be Apple&#8217;s most successful launch yet, despite some bumps on the road. We&#8217;ve already seen Apple and AT&amp;T&#8217;s  servers overloaded</a> on the first day of pre-orders, the ship date for the next set of phones pushed back</a> due to high demand</a>, and die-hard fans in line</a> outside of Apple locations a week before the phone is actually available. It&#8217;s a lot to live up to, and the iPhone 4 is doing its best &#8212; with features like a super-fast A4 CPU, a new front-facing camera and five megapixel shooter on the back, a completely new industrial design, and that outrageous Retina Display, no one would argue that Apple has been asleep at the wheel. So the question turns to whether or not the iPhone 4 can live up to the intense hype. Can it deliver on the promises Steve Jobs made at WWDC, and can it cement Apple&#8217;s position in the marketplace in the face of mounting competition from the likes of Google and Microsoft? We have the answers to those questions &#8212; and many more &#8212; in our full review, so read on to find out!<span id="more-38"></span></p>
<h3>Hardware</h3>
<p></p>
<div style="text-align: center;"><img src="http://www.blogcdn.com/www.engadget.com/media/2010/06/ip4review60021.jpg" alt="" id="vimage_3108152" border="1" hspace="4" vspace="4"></div>
<p>Perhaps the most notable change with the new iPhone is the drastic industrial design overhaul &#8212; Apple seems to have completely rethought its strategy on how the phone should look and feel, and the results are nothing if not striking.</p>
<h5>Industrial design</h5>
<div style="text-align: center;">
<img src="http://www.blogcdn.com/www.engadget.com/media/2010/06/ip4review60037.jpg" alt="" id="vimage_3108156" border="1" hspace="4" vspace="4"></div>
<p>In his WWDC keynote, Steve Jobs likened the design of the iPhone 4 to that of a &#8220;beautiful, old Leica camera,&#8221; and as we&#8217;ve said before, he wasn&#8217;t off the mark. Instead of hewing to the curved, plasticky, silver-bezeled look of the iPhone 3G and 3GS, the company has turned the casing and face of the device into something decidedly more detailed and sophisticated. From the design aesthetic through to the actual build process, Jony Ive and his team have reset what we expect in an iPhone, coming up with something that clearly harkens back to the retro-future Braun designs of Dieter Rams. The iPhone 4 is made up of three basic parts: two pieces of smooth, strengthened glass, and a stainless steel band which wraps around the sides, top, and bottom of the phone. The effect is clean but not simple, and Apple has added little details, like altered volume buttons (what used to be a rocker is now separated into circular clickers labeled + and -), and notches in that metal band which serve to improve radio connections (more on that in a minute). The phone is noticeably thinner than the 3GS at .37 inches compared to .48 inches, but it weighs the same 4.8 ounces, making the whole package seem tighter and denser. It feels great in your hand, with good heft, although it might take a little time to get used to the lack of a rounded back if you&#8217;re coming from the 3G or 3GS.</p>
<div style="text-align: center;"><img src="http://www.blogcdn.com/www.engadget.com/media/2010/06/ip4review60060.jpg" alt="" id="vimage_3108670" border="1" hspace="4" vspace="4"></div>
<p>We can&#8217;t overstate how high-end the design of the iPhone 4 is. The 3GS now feels cheap and chubby by comparison, and even a phone like the HTC Droid Incredible &#8212; which just came out &#8212; seems last-generation.</p>
<p>As we said, there are three main pieces of the phone, which together create an effect not wildly dissimilar to that of an ice cream sandwich. You know, but far pricier&#8230; and not edible. The face of the device is made up of extremely strong glass which Jony Ive says is &#8220;comparable in strength to sapphire crystal, but about 30 times harder than plastic.&#8221; A small slit for the earpiece and the front-facing camera are embedded in the glass above the display, with the familiar home button towards the bottom &#8212; a button we should note feels much clickier than on our 3GS. On the left side of the phone you&#8217;ve got the new volume buttons, a redesigned mute switch, and a small notch towards the base of the unit. On the right side is the Micro SIM slot and another notch in the band at the bottom, and up top there&#8217;s the power / sleep button, headphone jack, another notch, and new noise-canceling microphone. Along the bottom is a speaker, microphone, and the 30-pin dock connector port. The backside of the phone is made from the same kind of ultra-strong glass as the front, interrupted only by the new five megapixel camera, its LED flash companion and, of course, the Apple logo.</p>
<div style="text-align: center;"><img src="http://www.blogcdn.com/www.engadget.com/media/2010/06/ip4review60025.jpg" alt="" id="vimage_3108164" border="1" hspace="4" vspace="4"></div>
<p>Overall, the iPhone 4 outclasses pretty much every smartphone on the market in terms of industrial design. It just comes off like a far more expensive device, like a <a href="http://www.engadgetmobile.com/tag/mobiado">Mobiado</a> or <a href="http://www.engadget.com/tag/vertu">Vertu</a> &#8212; but better designed. And it&#8217;s not just the way the phone looks; the materials <em>feel</em> good &#8212; premium &#8212; in your hands. The first few days we had our test unit, we were definitely freaked out about dropping or losing the phone, and some of that had to do with the fact that it&#8217;s just a really beautiful device to use and hold.</p>
<h5>Internals</h5>
<p></p>
<div style="text-align: center;"><img src="http://www.blogcdn.com/www.engadget.com/media/2010/01/a4-apple-chip-top-1.jpg" alt="" border="0" hspace="4" vspace="4"></div>
<p>It&#8217;s not just the face of the phone that&#8217;s undergone a transformation &#8212; the iPhone 4 is all new inside as well. For starters, Apple has moved on from the Samsung-built ARM Cortex-A8-based CPU used in the 3GS to its custom A4 chip used in the iPad, which funnily enough&#8230; is an ARM Cortex-A8-based CPU. While the company hasn&#8217;t yet said what the clock speed of the processor is, we&#8217;re guessing it&#8217;s something below the 1GHz touted for its tablet cousin. The phone is definitely snappier than the 3GS, so we&#8217;re not about to volley complaints just yet &#8212; in particular, graphics seemed to render faster, and overall responsiveness was slightly higher, though admittedly, it wasn&#8217;t blowing the doors off the joint. It&#8217;s certainly faster, but the 3GS wasn&#8217;t hurting on speed to our eyes, so it&#8217;s not as wildly noticeable a leap as the 3G to the 3GS.</p>
<p>As usual, Apple isn&#8217;t fessing up about the RAM situation, though we have on very good authority that the iPhone 4 has 512MB onboard, a big step up from the 256MB in the previous model and the iPad. We would have liked to see it futureproofed with something like 1GB, but then again, Apple&#8217;s got to sell a new phone in a year. As far as internal storage goes, you can buy the new iPhone in either 16GB ($199 on contract) or 32GB ($299 on contract) capacity &#8212; fine for now, but since the company has just introduced 30FPS 720p video recording, you could find yourself outgrowing that number pretty quickly. It&#8217;s a little odd, in fact, that the company didn&#8217;t double down here and bump the capacity to 64GB, as it&#8217;s recently done with the iPod touch. In terms of wireless, the iPhone 4 is packed with an 802.11n WiFi radio, as well as a quad-band HSUPA chip and Bluetooth 2.1.</p>
<div style="text-align: center;"><img src="http://www.blogcdn.com/www.engadget.com/media/2010/06/ip4review60022.jpg" alt="" id="vimage_3109178" border="1" hspace="4" vspace="4"></div>
<p>The redesigned housing allows for a much larger lithium-ion battery on the inside, providing improved numbers for Apple&#8217;s life ratings (more on that in a moment), though it&#8217;s still not easily replaceable. Additionally, the new phone has those two new cameras (VGA up front, five megapixels with LED flash around back), a new second microphone used to combat background noise while on calls (similar to the Nexus One), a gyroscope in addition to the standard accelerometer, a light sensor, and a proximity sensor. As with the 3GS, an AGPS chip and compass are bundled somewhere in that tiny frame as well.</p>
<p>Of course, the big internal story is what has become external: namely, the UMTS, GPS, WiFi, and Bluetooth antennas. Apple has made the stainless band around the phone essentially a couple of big antennae, and they seem to be doing a pretty good job at hanging onto radio signals. The big question is obviously whether or not this fixes or helps with the constant dropped calls iPhone users on AT&amp;T&#8217;s network have gotten used to. Well in our testing, we had far, <em>far</em> fewer dropped calls than we experienced on our 3GS. Let&#8217;s just say that again: yes, the iPhone 4 does seem to alleviate the dropped call issue. It wasn&#8217;t perfect, and we had some connection issues in downtown New York City in particular, though it&#8217;s tough to say if it was the fault of our phone, the cluster of buildings we were near, or the person we were speaking to, who was on a 3GS in the same location.</p>
<h5>Display</h5>
<p></p>
<div style="text-align: center;"><img src="http://www.blogcdn.com/www.engadget.com/media/2010/06/upclose.jpg" alt="" id="vimage_3108336" border="1" hspace="4" vspace="4"></div>
<p>By now you should know that iPhone 4 has an all-new display, as well. Apple is calling the LED backlit, 960 x 640 IPS screen the &#8220;Retina Display&#8221; due to its high resolution and pixel density. At the same 3.5-inches as the older screens, the new display manages an insane 326ppi pixel density along with an 800:1 contrast ratio. Steve made a huge point about the science behind this technology during his keynote, claiming that the resolution of the screen essentially tops what is perceivable by the human eye. There have been <a href="http://www.engadget.com/2010/06/10/iphone-4s-retina-display-claim-put-under-the-math-microscope/">some debates</a> as to whether or not this argument holds water, but we can tell you this: to our eyes, there has never been a more detailed, clear, or viewable screen on any mobile device. </p>
<div style="text-align: center;"><img src="http://www.blogcdn.com/www.engadget.com/media/2010/06/iconcompare.jpg" alt="" id="vimage_3108204" border="1" hspace="4" vspace="4"> <br />
<small><em>iPhone 3GS on the left, iPhone 4 on the right<br />
</em></small></div>
<p>
Not only are the colors and blacks deep and rich, but you simply cannot see pixels on the screen. Okay, if you take some macro camera shots or get right up in there you can make them out, but in general use, the screen is free of jaggies of any type, unless you&#8217;re looking at a last-gen app that hasn&#8217;t had its artwork updated. Text rendering is incredibly clear and clean &#8212; webpages that would be line after line of pixelated content when zoomed out on a 3GS (say, Engadget or the <em>New York Times</em>) are completely readable on the iPhone 4, though the text is beyond microscopic. It&#8217;s impressive, and doubly impressive when you look at higher-res graphics or watch 720p video on the phone &#8212; the detail in moving images is particularly striking. What&#8217;s nice is that most apps with text in them will benefit from this tech whether or not they&#8217;ve been updated, as long as they&#8217;re using Apple&#8217;s font rendering. Text in the Engadget app, for instance, looks cleaner, clearer, and much easier to read on the new iPhone.</p>
<div style="text-align: center;"><img src="http://www.blogcdn.com/www.engadget.com/media/2010/06/n1ip4.jpg" alt="" id="vimage_3108660" border="1" hspace="4" vspace="4"><br />
<small><em>Nexus One up top, iPhone 4 below</em></small></div>
<p>
Because Apple is using IPS and LED technology for its screen, the iPhone 4 is mercifully visible in full sunlight, and performance in low light and at extreme viewing angles are favorable. Overall, you simply won&#8217;t find a better display on a phone, and that&#8217;s not just lip service.</p>
<h5>Cameras</h5>
<p></p>
<div style="text-align: center;"><img src="http://www.blogcdn.com/www.engadget.com/media/2010/06/pennyip4.jpg" alt="" id="vimage_3108413" border="1" hspace="4" vspace="4"></div>
<p>The cameras on the new iPhone are going to be a topic of much debate, since this has been an area where Apple has been slow to innovate. The 3GS sported a measly three megapixel shooter with few bells and whistles (and no flash), and while it was fine for quick snaps, it wasn&#8217;t an artist&#8217;s tool by any means. The company finally seems to be listening to a public that&#8217;s interested in leaving the point-and-shoot at home in favor of a phone with a capable camera, by adding a five megapixel shooter to the backside of the iPhone 4 and a VGA camera up front.</p>
<p>Let&#8217;s first take a look at the higher-res main camera. At his WWDC keynote, Jobs said that getting great looking images wasn&#8217;t just about upping the camera&#8217;s megapixels, but had more to do with grabbing more photons. Increase the photon count, let more light in, and your images will look better, the thought goes. So Apple&#8217;s using a newer backside-illuminated sensor that&#8217;s more sensitive to light in addition to upping those megapixels &#8212; and we must say, pictures on the iPhone 4 look stunning. Our shots looked good right out of the gate, with few problems when it came to focusing or low light. With the flash on, we managed decent if somewhat blown out results (fairly common with smaller LED flashes) though impressively, the iPhone 4 was usually able to take completely useable and even handsome photos in fairly low light without the flash. It seems like that photon situation is definitely in play, because even shots taken in fairly dark lighting came out looking good. Autofocus worked well in most situations, and we were actually able to get some impressive looking macro shots (see the flowers and Penny below). In general, we&#8217;d have no trouble using the iPhone 4&#8242;s camera as a stand-in for a dedicated camera. Not only did it take beautiful shots, but the A4 and iOS 4 combo have considerably sped up the time it takes to snap pictures &#8212; it&#8217;s now almost instantaneous. Otherwise, you have options for a 5x digital zoom (which produces results that look like a digital zoom) and basic on / off / auto settings for the flash. It&#8217;s pretty bare bones, and we wouldn&#8217;t have minded a few basic options like white balance settings &#8212; but c&#8217;mon, this is Apple we&#8217;re talking about. Luckily, the App Store is chock full of applications that improve upon the stock camera app &#8212; we expect to see a handful of new ones that take advantage of the new sensor soon.</p>
<div class="article_gallery">
<div class="gallery_info"><span class="gallery_title"><a href="http://www.engadget.com/photos/iphone-4-camera-shots/">iPhone 4 camera shots</a></span></div>
<div class="gallery_img_holder">
<div class="gallery_img"><a href="http://www.engadget.com/photos/iphone-4-camera-shots/#3108438" title="" class="3108438" rel="iphone-4-camera-shots">
<div style="display: none;" class="border"></div>
<p><img src="http://www.blogcdn.com/www.engadget.com/media/2010/06/ip4snapshots11_103x88.jpg" alt=""></a></div>
<div class="gallery_img"><a href="http://www.engadget.com/photos/iphone-4-camera-shots/#3108439" title="" class="3108439" rel="iphone-4-camera-shots">
<div style="display: none;" class="border"></div>
<p><img src="http://www.blogcdn.com/www.engadget.com/media/2010/06/ip4snapshots12_103x88.jpg" alt=""></a></div>
<div class="gallery_img"><a href="http://www.engadget.com/photos/iphone-4-camera-shots/#3108440" title="" class="3108440" rel="iphone-4-camera-shots">
<div style="display: none;" class="border"></div>
<p><img src="http://www.blogcdn.com/www.engadget.com/media/2010/06/ip4snapshots13_103x88.jpg" alt=""></a></div>
<div class="gallery_img"><a href="http://www.engadget.com/photos/iphone-4-camera-shots/#3108442" title="" class="3108442" rel="iphone-4-camera-shots">
<div style="display: none;" class="border"></div>
<p><img src="http://www.blogcdn.com/www.engadget.com/media/2010/06/ip4snapshots15_103x88.jpg" alt=""></a></div>
<div class="gallery_img"><a href="http://www.engadget.com/photos/iphone-4-camera-shots/#3108443" title="" class="3108443" rel="iphone-4-camera-shots">
<div style="display: none;" class="border"></div>
<p><img src="http://www.blogcdn.com/www.engadget.com/media/2010/06/ip4snapshots16_103x88.jpg" alt=""></a></div>
</div>
</div>
<p>
As far as video goes, we were definitely impressed by the 720p capture, though there are stability issues with the lens and the all-too-familiar &#8220;jellyvision&#8221; CMOS issues that tend to rear their head if you&#8217;re not holding the phone very steady. Still, we can&#8217;t see carrying around a Flip HD instead of just keeping this in our pocket (though as we said, we&#8217;d like to see a higher storage capacity). Everything we shot looked crisp and mostly artifact-free, and we didn&#8217;t see any hiccups in the 30 FPS rate Apple claims, even in lower light. Adding iMovie to the mix for on-the-fly editing is a nice touch too (more on that in the software section). The video below was shot and edited completely in-phone, so enjoy &#8212; and <a href="http://podcasts.aolcdn.com/engadget/files/walking_around.mov">here&#8217;s the raw output to download</a>.</p>
<div style="text-align: center;">
<div role="button" tabindex="0" title="http://www.viddler.com/simple/47b831c0/" style="background: url(&quot;chrome://flashblock/content/flash.png&quot;) no-repeat scroll center center transparent; min-width: 32px ! important; min-height: 32px ! important; width: 600px; height: 358px; border: 1px solid rgb(223, 223, 223); cursor: pointer; overflow: hidden; display: inline-block; visibility: visible ! important; -moz-box-sizing: border-box; margin-right: auto; margin-left: auto;" bgactive="url(chrome://flashblock/content/flashplay.png) no-repeat center" bginactive="url(chrome://flashblock/content/flash.png) no-repeat center"></div>
</div>
<p>
Around front, the VGA camera is&#8230; well, a VGA camera. It actually does a fine job of capturing your face during video calls, and worked surprisingly well in low light, but it&#8217;s not going to win any prizes for being the most advanced shooter on a handset. It does provide for some interesting angle options when it comes to video shooting, and we expect a lot of people will be taking advantage of the weirdly video game-like perspective. All in all, it looks good, but it&#8217;s pretty utilitarian.</p>
<h5>Speaker / earpiece</h5>
<p>
We&#8217;ve never had a particular problem with the speaker or earpiece on previous iPhones (well, the speakerphone has never been loud enough for our taste), but it&#8217;s obvious that Apple has done some work on getting both call quality and speakerphone quality up. Beyond making the phone considerably and consistently louder in both places, the clarity of the iPhone 4 is noticeably improved from the previous generation. If you read our review, then you know that we thought Motorola&#8217;s original Droid had some of the best sounding components we&#8217;ve heard on a phone, and the new iPhone definitely gives them a run for the money. The first time we took a call on the device we were walking down New York&#8217;s extremely noisy Fifth Avenue, and right away it was obvious that the secondary, noise-canceling mic was doing some heavy lifting, at least on the other end of the line. Even though sirens were wailing behind us and we were surrounded by chatty shoppers, it was easy to hear our party on the other end, and they could hear us perfectly (unless we were lied to). There&#8217;s clearly a difference between the sound in the earpiece on the new phone versus the 3GS, and it ranks highly against newer competition like the EVO. As far as the speakerphone goes, it gets loud without distorting or producing cutting midrange, a problem we&#8217;ve noticed on quite a few recent phones. We&#8217;d liken the iPhone 4 in quality to something along the lines of the BlackBerry Bold &#8212; a bearable tone even when it gets hot.</p>
<h3>Software</h3>
<p></p>
<div style="text-align: center;"><img src="http://www.blogcdn.com/www.engadget.com/media/2010/06/sftwre.jpg" id="vimage_3108549" alt="" border="1" height="550" hspace="4" vspace="4" width="367"></div>
<p>As with the other revisions to Apple&#8217;s phone line, the hardware is only half of the story. Along with the iPhone 4 comes <a href="http://www.engadget.com/tag/ios4">iOS 4</a>, the re-branded iPhone OS which boasts loads of new features, most notably a very Apple-ized version of smartphone multitasking, a video calling feature dubbed FaceTime, folders so you can organize your apps, enhanced Mail, and lots of other nips and tucks &#8212; both big and small &#8212; that refine the company&#8217;s growing operating system. Additionally, Apple has ported the iPad&#8217;s iBooks to the smaller screen, and has created a new version of its popular iMovie just for the iPhone 4. Overall, the OS is still very much the same as it&#8217;s always been, but there are some big changes here that bear investigation.</p>
<h5>Multitasking</h5>
<div style="text-align: center;">
<div role="button" tabindex="0" title="http://www.viddler.com/simple/e7dd1a83/" style="background: url(&quot;chrome://flashblock/content/flash.png&quot;) no-repeat scroll center center transparent; min-width: 32px ! important; min-height: 32px ! important; width: 600px; height: 358px; border: 1px solid rgb(223, 223, 223); cursor: pointer; overflow: hidden; display: inline-block; visibility: visible ! important; -moz-box-sizing: border-box; margin-right: auto; margin-left: auto;" bgactive="url(chrome://flashblock/content/flashplay.png) no-repeat center" bginactive="url(chrome://flashblock/content/flash.png) no-repeat center"></div>
</div>
<p>This is a big one, and more than just a little controversial. Since the dawn of apps for the iPhone (remember, way back in 2008?), people have been up in arms about the lack of third-party backgrounding for applications. Sure, you could keep Mail, Safari, iPod, and a few other Apple programs cranking while you used your phone, but those privileges were strictly off limits for third-party devs working on the device. It&#8217;s arguable that one of the driving forces behind the jailbreaking movement was a desire for this feature &#8212; something a phone as powerful as the iPhone was clearly capable of. Apple&#8217;s argument has always been that multitasking causes an undue amount of battery drain from phones, and had to be approached with caution, lest we all end up with juiceless phones at high noon. Recently, however, that tune has changed. Apple has &#8212; in true Apple fashion &#8212; &#8220;figured out&#8221; how to &#8220;do multitasking right&#8221; &#8212; namely, the company isn&#8217;t allowing full backgrounding as much as it&#8217;s allowing a handful of APIs that mimic backgrounding. Things like holding onto a GPS signal, letting music play in the background, staying connected to VoIP calls (or receiving them), and fast switching (basically a way for you to return quickly to exactly where you left off in an app).</p>
<p>So, does Apple pull it off? Can this scarce handful of APIs makeup for true backgrounding? In a word: yep.</p>
<p>Here&#8217;s the thing &#8212; this may not be &#8220;true&#8221; multitasking for a lot of us, but it amounts to multitasking for <em>most</em> of us. That is, it looks, feels, and acts like multitasking, so it&#8217;s pretty tough to complain about it. In fact: we&#8217;re not going to complain about it, especially given the fact that some of our favorite apps &#8212; the IRC client Colloquy being one of them &#8212; do just about exactly what we need them to do, all according to Apple&#8217;s rules and regulations. Previous to the new OS, we&#8217;d been jailbreaking our phone just to keep an IRC session running in the background. Now, utilizing some of those new APIs, the Colloquy developers have created an elegant and useful solution that pleases both users and the Cupertino Cops. The point is: it works, it does so bug free, and without a major drain on battery life (quite the contrary&#8230; more on that in a moment). We&#8217;re not saying we liked waiting for this kind of thing to come around, and yes, we&#8217;d prefer something more open and flexible &#8212; but this works, and works well.</p>
<p>So how is Apple making this magic happen? Here&#8217;s a breakdown of just exactly what multitasking really means (and feels like) on the new iPhone (and the 3GS):</p>
<ul>
<li><strong>Fast app switching:</strong> You know how you can leave off in Mail halfway through writing a response and go back to exactly where you were? Well that happens everywhere now. When you leave the app, you go back in <em>exactly</em> the same place. And it happens quickly. Fast app switching is essentially like toggling between &#8220;paused&#8221; applications. This combined with Apple&#8217;s new app switcher (double tap the home button to bring up your most recently used apps) destroys that annoying iPhone feeling of going in and out and in and out. It just doesn&#8217;t exist anymore, provided all your apps are up to date, which is going to take some time. It&#8217;s amazing how much this single feature counts &#8212; it&#8217;s definitely one of the prime movers here, and it&#8217;s so simple it&#8217;s stupid. We would have liked to see options for &#8220;favorite&#8221; apps or some way to prioritize what you&#8217;re switching to, but once you get used to this system &#8212; which just puts whatever you&#8217;ve used most recently to the far left &#8212; it makes some sense.</li>
<li><strong>Task completion:</strong> Basically, task completion lets an app do its thing even if you leave it. So if you&#8217;re uploading or downloading a picture in Evernote or Dropbox, or saving an article in the <em>New York Times</em> app, even if you navigate away, the job is done when you get back to the app. This accounts for a lot of what we think of as multitasking. Most of your apps are just idling &#8212; it&#8217;s only when you interact with them that it counts. We don&#8217;t know the boundaries for this API, though it seems to leave a lot of room for creative use. We know it&#8217;s not just big jobs, it&#8217;s little ones too &#8212; Colloquy uses this feature to keep you connected to your IRC host. To be honest, that kind of behavior is one thing we thought we <em>wouldn&#8217;t </em>see in iOS 4, and here it is. Hopefully Twitter app devs and other instant messaging clients will utilize the API in a similar manner.</li>
<li><strong>Background audio and VoIP:</strong> These two are straightforward. The first allows for music playing apps to keep their stream running in the background (and even gives them little widget controls in the app switcher), and the second allows VoIP connections to stay active. That means you can stay on a Skype call and go check your mail, but it also means that the VoIP connection will be aware of incoming calls when you&#8217;re not actively using an app. Additionally, this API can be used to allow for recording even if you exit an app, as demonstrated effectively in the new version of Evernote.</li>
<li><strong>Background GPS:</strong> Basically, GPS apps can keep running in the background&#8230; for obvious reasons. This one will drain your battery if you&#8217;re not docked &#8212; but who&#8217;s using a GPS app and not plugging that thing in? Okay, we might be a little guilty of that. Regardless, this will keep your navigation software afloat if you have to take a call, and apparently will let GPS-centric apps like FourSquare check in even if you&#8217;re not running it in the foreground.</li>
</ul>
<p>Apple combines these heavy hitters with more familiar tricks, like push notifications, to excellent effect. We know that the hardcore users will cry foul because a lot of this doesn&#8217;t amount to &#8220;true&#8221; multitasking, but we also know that often solutions to problems come in different colors. Apple found a way in iOS 4 to solve a pretty good amount of its major problems in this department, and so far what we&#8217;ve seen is very promising. If it&#8217;s only going to get better from here, we don&#8217;t mind coming along for the ride. But it better <em>only get better</em>, Apple.</p>
<h5>FaceTime</h5>
<p></p>
<div style="text-align: center;"><img src="http://www.blogcdn.com/www.engadget.com/media/2010/06/facetime1.jpg" id="vimage_3108588" alt="" border="1" height="550" hspace="4" vspace="4" width="367"></div>
<p>If you didn&#8217;t know anything about video calling, Apple would definitely have you convinced that they just up and invented the concept based on never-aired Jetsons footage judged too futuristic for TV. Of course, the truth is that in lots of other places (and even in the US to an extent), smartphone video calling isn&#8217;t exactly a new thing. In fact, in much of Europe and Asia, this technology is old hat. But Apple isn&#8217;t going to let a little thing like facts get in the way of a good marketing play, and in their (slight) defense, no one&#8217;s effectively brought video calling to the masses just yet. (One of our European editors says that he&#8217;s gone ten years without seeing anyone make a video call in his neck of the woods.) While this may be an unscientific perspective, it suggests that it&#8217;s not enough to just have the tech &#8212; the feature needs to be sold to people.</p>
<p>So has Apple done it? Maybe, and maybe not. We&#8217;re certainly impressed by the concept and Apple&#8217;s willingness to open up their &#8220;FaceTime standard&#8221; to anyone who wants to get in on the party. That means that developers on any platform &#8212; provided they can meet all the necessary requirements &#8212; can create applications that talk via the protocol (or set of protocols, really). We&#8217;re also impressed with the tech itself, which feels polished and slick out of the gate. But right now, there&#8217;s only one way to do FaceTime calls, and that&#8217;s via the iPhone 4&#8230; and only over WiFi, which means that the opportunity to make these calls is pretty limited for now. Additionally, in our testing, we found that you really need to have a good, strong, <em>nearby</em> WiFi signal to hang onto a connection. More than once we had video freeze on us, and we had one fully dropped call because someone went out of the WiFi range, but hey&#8230; you need to be in range for even the most basic tasks, so we can&#8217;t fault Apple too much for that. It does seem clear that the iPhone video chats are moving quite a few bits around, however. What&#8217;s nice about FaceTime is that unlike Qik or other third-party options for something like the EVO, there&#8217;s no setup here and it&#8217;s completely integrated into the dialer of the phone &#8212; meaning the only hangup is whether or not you have decent WiFi.</p>
<p>But what is it <em>like</em>? Well in truth, it&#8217;s actually a teensy bit amazing. Yes, we&#8217;re a little numb to the PR speak about how game changing it is, but there&#8217;s still something deeply sci-fi about dialing up a friend and being able to hold this thing in your hand and have a video chat. We did a call with Apple&#8217;s Greg Joswiak while he was in Paris (see the image above), and when he walked outside and flipped the camera to show us the Eiffel Tower, it was a legitimately weird experience &#8212; a &#8220;you are there&#8221; moment. As you can see in the call below with <em>USA Today</em>&#8216;s Ed Baig (his take on the iPhone 4 is <a href="http://www.usatoday.com/tech/columnist/edwardbaig/2010-06-22-iphone4-review_N.htm">right here</a>), it&#8217;s a pretty new way to talk to someone, at least for us. Having a random face-to-face conversation with a kid about what he&#8217;s having for lunch is just the tip of the iceberg &#8212; we can definitely see this feature coming into play in all sorts of ways in our lives.</p>
<div style="text-align: center;">
<div role="button" tabindex="0" title="http://www.viddler.com/simple/9c9c1a2e/" style="background: url(&quot;chrome://flashblock/content/flash.png&quot;) no-repeat scroll center center transparent; min-width: 32px ! important; min-height: 32px ! important; width: 600px; height: 358px; border: 1px solid rgb(223, 223, 223); cursor: pointer; overflow: hidden; display: inline-block; visibility: visible ! important; -moz-box-sizing: border-box; margin-right: auto; margin-left: auto;" bgactive="url(chrome://flashblock/content/flashplay.png) no-repeat center" bginactive="url(chrome://flashblock/content/flash.png) no-repeat center"></div>
</div>
<p>
Technically speaking, actually making calls is straightforward; you can switch to a FaceTime chat while you&#8217;re already connected, or you&#8217;re given to option to launch right into a FaceTime connection. We were a little surprised by the fact that you can only mute the audio on your calls; if you want the video off, you need to cover the lens in the old fashioned way &#8212; with your hands.</p>
<p>All said, it&#8217;s a fascinating inclusion, and we&#8217;ve got a sneaking suspicion that Apple intends to do more than just basic calls with this. Obviously the addition of conference FaceTime sessions would be huge, and we&#8217;re also looking forward to using the function on a 3G network &#8212; it&#8217;s nice to have a chat from your house, but what would really be great is taking these kinds of conversations out into the wide world. We think <em>that</em> coupled with active development for clients on lots of platforms (not just the iPhone) will make FaceTime much more interesting &#8212; it&#8217;s a curiosity right now, but it could be something else entirely with a little time and elbow grease.</p>
<h5>Folders</h5>
<p>
What can you really say about folders? Basically: it&#8217;s about time. We&#8217;re happy that Apple has seen the light and included something like this in iOS 4, and the implementation is elegant enough, but it would have been nice to store more than 12 items at a time. As it stands, if you have a lot of one kind of app, you&#8217;re going to end up with a group of folders in the same category. We have a second &#8220;Games&#8221; folder, but some of you out there will have more like six or seven of those. That helps the problem, but doesn&#8217;t solve it completely. We get why Apple made this decision &#8212; likely a desire to keep it simple &#8212; but it would be nice to be able to make the room if you wanted it.</p>
<h5>Mail improvements</h5>
<p>
For a lot of us, the new tweaks to the iPhone&#8217;s Mail app have seriously been a long time coming. Among the major improvements in iOS 4 are a unified inbox and threaded messaging (finally!) &#8212; both of which have made dealing with email on the iPhone a considerably more enjoyable experience. We still think that the mail client is lacking in comparison to Gmail, but that has more to do with our addiction to Gmail than anything else, we suspect. Overall, Mail feels much more complete now, and Apple has solved the same problem in Mail that it had with app switching &#8212; that feeling of constantly jumping into and out of your inboxes.</p>
<h5>iBooks / iMovie</h5>
<p></p>
<div style="text-align: center;"><img src="http://www.blogcdn.com/www.engadget.com/media/2010/06/imovieiphone.jpg" alt="" id="vimage_3108701" border="1" hspace="4" vspace="4"></div>
<p>This isn&#8217;t a barnstormer, but it&#8217;s a nice inclusion. If you&#8217;ve used iBooks for the iPad, the experience is about the same&#8230; just smaller. There&#8217;s not a ton to say about it, except that in addition to lots of other great book apps on the iPhone, Apple has now given you its own. We still don&#8217;t think it stacks up to Amazon or Barnes &amp; Noble in terms of selection, though the presentation is better in many ways, and it will sync your notes and bookmarks across platforms.</p>
<p>iMovie, on the other hand, is something new entirely. We can&#8217;t say we didn&#8217;t see this one coming since Apple just added video recording and editing to its arsenal with the introduction of iPhone OS 3 and the 3GS &#8212; but this takes things one step further. The $4.99 app gives you access to more advanced features, like a (very) limited selection of transitions between clips, the option to add audio to your videos, plus a handful of themes and titling effects. We found it to be extremely capable for fast edits, though everything is pretty sandboxed here, so while you do have the most basic editing tools, things like splitting a clip can be a little bit of a hassle. Since you can only edit the beginning and end of a snippet, if you want to split something into multiple parts you have to drag the clip into your edit repeatedly and then scale the start and finish points for each one. It can be a pain if you&#8217;re doing lots of jump cuts &#8212; though we don&#8217;t expect everyone to be making the next <em>Casino</em> on this thing&#8230; though, someone probably will, right? For a few bucks, it&#8217;s definitely worth having, and we expect that after a few people start using the thing, Apple might be prompted to add a few more options.</p>
<h5>What&#8217;s not in the new OS</h5>
<div style="text-align: center;"><img src="http://www.blogcdn.com/www.engadget.com/media/2010/06/screen-shot-2010-06-22-at-4.00.47-pm.png" alt="" id="vimage_3108779" border="1" hspace="4" vspace="4"></div>
<p>It&#8217;s not all wine and roses as far as we&#8217;re concerned. While Apple has made huge strides in many areas here, this wouldn&#8217;t be an Engadget review if we didn&#8217;t have our nitpicks. In particular, we still cannot understand or accept the company&#8217;s approach to notifications. We&#8217;re at version 4 of this OS, and we&#8217;re still plagued by these intrusive, productivity-freezing alerts. If you&#8217;re as busy as we are, then you know what it&#8217;s like to get invite after invite for your calendar, text messages, and push notifications that just stall the phone out. While every other modern OS-maker has figured out an elegant way to deal with notifications (including the forthcoming <a href="http://www.engadget.com/tag/WindowsPhone7/">Windows Phone 7</a>), Apple clings to this broken system. Why? We can&#8217;t really say. We find it hard to believe that there aren&#8217;t folks in Cupertino who feel the way we do &#8212; in fact, we&#8217;re sure of it. Maybe that explains <a href="http://www.engadget.com/2010/06/09/palm-loses-webos-notifications-architect-to-apple/">the hiring of Palm&#8217;s &#8220;notification guru&#8221;</a> Rich Dellinger. We sure hope!</p>
<p>The other thing that&#8217;s driving us crazy is the lack of widgets. Apple almost gets there with its new extensible music player controls, but there are still no good solutions for glanceable information on the iPhone. We&#8217;ll admit that it&#8217;s better now that fast app switching is in play, but we&#8217;d still like that weather icon to actually show us the temperature where we live. Is that too much to ask? The competition seems to have this one licked &#8212; we&#8217;d really like to see Apple take a stab at it.</p>
<h5>Accessories</h5>
<p></p>
<div style="text-align: center;"><img src="http://www.blogcdn.com/www.engadget.com/media/2010/06/bumpers.jpg" alt="" id="vimage_3108719" border="1" hspace="4" vspace="4"></div>
<p>It wouldn&#8217;t be a new iPhone without some accessories, but Apple has kept it tidy. The company is offering a new dock, of course, for twenty-nine of your US dollars (that&#8217;s $29), and a selection of colorful &#8220;bumpers&#8221; that protect the phone for the same price. We&#8217;ve got a few bumpers in-house, and while we&#8217;re not really big fans of the way they look or feel, they do seem to protect the phone pretty well. On that note, we&#8217;ve actually seen the iPhone 4 tossed with and without a bumper across a room (one hit a wall) with no issue, and we dropped ours pretty hard from about two feet up onto tile with nary a scratch.</p>
<h5>Battery life</h5>
<p></p>
<div style="text-align: center;"><img src="http://www.blogcdn.com/www.engadget.com/media/2010/06/batterylife.jpg" alt="" id="vimage_3108762" border="1" hspace="4" vspace="4"></div>
<p>This is a big one for many people, and we have some fairly surprising news to report. The battery life on the iPhone 4 has been outstanding thus far, exceeding our expectations for longevity during testing. We&#8217;ve only had a short time to use the phone, but in the week or so we&#8217;ve been carrying the device as our main phone, we&#8217;ve had pretty amazing results under normal to heavy use. In fact, we managed to squeeze more than 38 hours &#8212; yes, <em>38 hours</em> &#8212; of life out of a single charge using the phone as we normally would. We&#8217;re talking calls, some gaming, lots of push email and calendar invites, playing music over Bluetooth in the car, and just general testing (like downloading new apps, rearranging icons, tweaking settings). We went from 10:30AM on a Saturday morning till 1:00AM on Monday without needing to charge the phone. Of course, it switched itself off just after the clock struck 1, but it was thrilling &#8212; like that episode of <em>Seinfeld</em> where Kramer and the car salesman see how far they can get in a car with the tank on E. Sitcom references aside, the battery life seems markedly improved in the iPhone 4, and why not? It&#8217;s got a much larger battery coupled with that iPad-powering A4, which has already shown that it can sip rather than gulp power.</p>
<p>Once the rest of the team has their iPhones in hand, we&#8217;ll do some hardcore battery life testing and see what we come up with, but we think under pretty active use, the iPhone 4 blows Apple&#8217;s previous generation phone out of the water, and makes a lot of the competition look downright needy.</p>
<h3>Wrap-up</h3>
<p></p>
<div style="text-align: center;"><img src="http://www.blogcdn.com/www.engadget.com/media/2010/06/ip4review60012.jpg" alt="" id="vimage_3108803" border="1" hspace="4" vspace="4"></div>
<p>We&#8217;re not going to beat around the bush &#8212; in our approximation, the iPhone 4 is the best smartphone on the market right now. The combination of gorgeous new hardware, that amazing display, upgraded cameras, and major improvements to the operating system make this an extremely formidable package. Yes, there are still pain points that we want to see Apple fix, and yes, there are some amazing alternatives to the iPhone 4 out there. But when it comes to the total package &#8212; fit and finish in both software and hardware, performance, app selection, and all of the little details that make a device like this what it is &#8212; we think it&#8217;s the cream of the current crop. We won&#8217;t argue that a lot of this is a matter of taste &#8212; some people will just prefer the way Android or Symbian works to the iPhone, and others will be on the lookout for a hardware keyboard or a particular asset that the iPhone 4 lacks &#8212; but in terms of the total picture, it&#8217;s tough to deny that Apple has moved one step past the competition with this phone. Of course, in the hyper-accelerated smartphone market where the Next Big Thing seems to always be just around the corner, it&#8217;s anyone&#8217;s guess how long they keep that edge.</p>
<p>Source
<p><a href="http://www.engadget.com/2010/06/22/iphone-4-review/"> Engadget</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosensenews.com/2010/06/iphone4-review/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://podcasts.aolcdn.com/engadget/files/walking_around.mov" length="193058152" type="video/quicktime" />
		</item>
		<item>
		<title>Feedback</title>
		<link>http://www.nosensenews.com/2009/07/feedback/</link>
		<comments>http://www.nosensenews.com/2009/07/feedback/#comments</comments>
		<pubDate>Thu, 23 Jul 2009 23:17:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Contact Us]]></category>
		<category><![CDATA[contact]]></category>
		<category><![CDATA[feedback]]></category>
		<category><![CDATA[link exchange]]></category>

		<guid isPermaLink="false">http://www.nosensenews.com/?p=186</guid>
		<description><![CDATA[Please send us messages here (what you like on this website, what you don’t like on this website, what you want to see on this website, link exchange requests …) here]]></description>
			<content:encoded><![CDATA[<p>Please send us messages here (what you like on this website, what you don’t like on this website, what you want to see on this website, link exchange requests …) <a href='http://www.nosensenews.com/feedback/'> here </a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nosensenews.com/2009/07/feedback/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

