<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: The Arm Invasion</title>
	<atom:link href="http://shotofjaq.org/2009/12/the-arm-invasion/feed/" rel="self" type="application/rss+xml" />
	<link>http://shotofjaq.org/2009/12/the-arm-invasion/</link>
	<description>Ten minutes of short, sharp, informed, and funny comment about the open source world</description>
	<lastBuildDate>Tue, 14 Sep 2010 21:58:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Hessiess</title>
		<link>http://shotofjaq.org/2009/12/the-arm-invasion/comment-page-1/#comment-1039</link>
		<dc:creator>Hessiess</dc:creator>
		<pubDate>Wed, 06 Jan 2010 17:25:12 +0000</pubDate>
		<guid isPermaLink="false">http://shotofjaq.org/?p=175#comment-1039</guid>
		<description>&lt;p&gt;If you start to look into the low level aspects of computing it is blatantly obvious that the X86 architecture is a real dump. X86 is just a complete mess of extensions, at the most obvious level its a 64 bit extension to a 32 bit extension to a 16 bit architecture, then on top of this are the host of things like MMX, 3d now, SSE* etc.&lt;/p&gt;

&lt;p&gt;X86 is a CISC(complex instruction set computer) architecture, The way it is implemented now, and basically always has bean implemented is through microcoding, at the lowest level is a simple RISC-ish CPU which is actually doing all the work, on top of this is a bunch of microcode marking up something which is effectively an emulator like QEMU which actually runs the X86 instructions. X86 processors are wasting a huge number of the underlying `microcycles&#039; emulating an outdated messy instruction set, which is obviously extremely power inefficient.&lt;/p&gt;

&lt;p&gt;On top of this is the whole IBM PC derived platform, which is seriously showing its age. For example the BIOS, which still runs in 16 bit mode, and is for all intents and purposes completely and utterly useless to a modern 32 or 64 bit OS, which implement there own drivers for low level functionality bypassing the BIOS so that IO can be done without switching the processor into 16 bit mode. The BIOS would be much better discarded and replaced with something like Coreboot.&lt;/p&gt;

&lt;p&gt;Backwards compatibility is a good thing, however it can be taken too far, all modern computers are still capable of running DOS and its divided OSs like windows 95/98, which NO ONE uses these days. This takes backwards compatibility far beond the point of actually being any use to anybody.&lt;/p&gt;

&lt;p&gt;ARM is a RISC architecture, which is essentially tacking an CISC design and throwing away all of the layers of emulation, this massively improves the power efficiency as it is no longer necessary to waste cycles running microcode, the code is actually executed by real hardware, not a low-level emulator. This also has the side effect of improved performance.&lt;/p&gt;

&lt;p&gt;Developing for ARM is not difficult, at a higher level the compiler does most of the work for you and at a lower level(assembly language) things are a lot easier because of the much smaller instruction set without tuns of hacked on extensions. Generally the only problem is that ARM chips often don&#039;t have an FPU(floating point unit) or have a slow preforming one, requiring floating point operations to be converted into fixed point ones.&lt;/p&gt;

&lt;p&gt;On a side note, WINE WILL NOT EVER run on the ARM architecture because it is essentially passing through instructions directly to the CPU, WINE is not an emulator. It may be passable to get it working in combination with QEMU but the performance is going to be none existent.&lt;/p&gt;

&lt;p&gt;Additionally traditional desktop OSs do not work well on a netbook simply because they waste far to much screen space with useless GUI stuff. When you only have a tiny screen, screen real estate really is a precious resource, not something that can be freely wasted with GUIs that have massive empty gaps in them, or useless things like window bars. Tiling/Tabbing window managers are much better sooted to small screens becouse you basically have to have everything maximised all the time anyway.&lt;/p&gt;

&lt;p&gt;Also from my point of view, mice on laptops/netbooks are an anti-pattern, you have those awful twitchy touch pads or these `mini joystick&#039; things. Which results in having to carry around a extra hardware mouse as well, which should not be needed. Laptop/netbook interface design should be treated as a stand-alone entity much like mobile phone interfaces are.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>If you start to look into the low level aspects of computing it is blatantly obvious that the X86 architecture is a real dump. X86 is just a complete mess of extensions, at the most obvious level its a 64 bit extension to a 32 bit extension to a 16 bit architecture, then on top of this are the host of things like MMX, 3d now, SSE* etc.</p>

<p>X86 is a CISC(complex instruction set computer) architecture, The way it is implemented now, and basically always has bean implemented is through microcoding, at the lowest level is a simple RISC-ish CPU which is actually doing all the work, on top of this is a bunch of microcode marking up something which is effectively an emulator like QEMU which actually runs the X86 instructions. X86 processors are wasting a huge number of the underlying `microcycles&#8217; emulating an outdated messy instruction set, which is obviously extremely power inefficient.</p>

<p>On top of this is the whole IBM PC derived platform, which is seriously showing its age. For example the BIOS, which still runs in 16 bit mode, and is for all intents and purposes completely and utterly useless to a modern 32 or 64 bit OS, which implement there own drivers for low level functionality bypassing the BIOS so that IO can be done without switching the processor into 16 bit mode. The BIOS would be much better discarded and replaced with something like Coreboot.</p>

<p>Backwards compatibility is a good thing, however it can be taken too far, all modern computers are still capable of running DOS and its divided OSs like windows 95/98, which NO ONE uses these days. This takes backwards compatibility far beond the point of actually being any use to anybody.</p>

<p>ARM is a RISC architecture, which is essentially tacking an CISC design and throwing away all of the layers of emulation, this massively improves the power efficiency as it is no longer necessary to waste cycles running microcode, the code is actually executed by real hardware, not a low-level emulator. This also has the side effect of improved performance.</p>

<p>Developing for ARM is not difficult, at a higher level the compiler does most of the work for you and at a lower level(assembly language) things are a lot easier because of the much smaller instruction set without tuns of hacked on extensions. Generally the only problem is that ARM chips often don&#8217;t have an FPU(floating point unit) or have a slow preforming one, requiring floating point operations to be converted into fixed point ones.</p>

<p>On a side note, WINE WILL NOT EVER run on the ARM architecture because it is essentially passing through instructions directly to the CPU, WINE is not an emulator. It may be passable to get it working in combination with QEMU but the performance is going to be none existent.</p>

<p>Additionally traditional desktop OSs do not work well on a netbook simply because they waste far to much screen space with useless GUI stuff. When you only have a tiny screen, screen real estate really is a precious resource, not something that can be freely wasted with GUIs that have massive empty gaps in them, or useless things like window bars. Tiling/Tabbing window managers are much better sooted to small screens becouse you basically have to have everything maximised all the time anyway.</p>

<p>Also from my point of view, mice on laptops/netbooks are an anti-pattern, you have those awful twitchy touch pads or these `mini joystick&#8217; things. Which results in having to carry around a extra hardware mouse as well, which should not be needed. Laptop/netbook interface design should be treated as a stand-alone entity much like mobile phone interfaces are.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: LeeNukes</title>
		<link>http://shotofjaq.org/2009/12/the-arm-invasion/comment-page-1/#comment-685</link>
		<dc:creator>LeeNukes</dc:creator>
		<pubDate>Thu, 17 Dec 2009 23:41:13 +0000</pubDate>
		<guid isPermaLink="false">http://shotofjaq.org/?p=175#comment-685</guid>
		<description>&lt;p&gt;The Maplin &quot;Web-books&quot; are very much like the Elonex Onet+ that I got one of ages ago. It was crap, I spent £120 on that bugger.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>The Maplin &#8220;Web-books&#8221; are very much like the Elonex Onet+ that I got one of ages ago. It was crap, I spent £120 on that bugger.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: GuyNamedRob</title>
		<link>http://shotofjaq.org/2009/12/the-arm-invasion/comment-page-1/#comment-670</link>
		<dc:creator>GuyNamedRob</dc:creator>
		<pubDate>Thu, 17 Dec 2009 04:08:27 +0000</pubDate>
		<guid isPermaLink="false">http://shotofjaq.org/?p=175#comment-670</guid>
		<description>&lt;p&gt;I&#039;m looking forward to the Arm machines, if they can deliver the performance to power consumption ratio they claim.  I have an enviro-footprint itch I hope Arm can scratch.  Intel certainly thinks Arm is going somewhere, as they keep miniaturizing and lowering the power requirements for the Atom in an effort to cut Arm off.&lt;/p&gt;

&lt;p&gt;I&#039;ll try to present my points in the form of an analogies:&lt;/p&gt;

&lt;p&gt;When ARM netbooks/smartbooks arrive, are they going to be dvorak keyboards to intel&#039;s qwerty keyboards?  Studies may show that they are somewhat more efficient than Intel&#039;s 2nd-3rd generation Atoms, but I feel that unless the ARM machines give slightly better performance for radically less money, they will suffer the fate of the dvorak... better for those that use it most, but not so much better that the mass make the switch.&lt;/p&gt;

&lt;p&gt;I guess my other analogies come from records and tapes vs CDs and  Beta vs VHS vs DVD vs Blu-Ray.  Are ARMs going to be a substantially different than what we already know?  Netbooks are already being pushed into the lowend laptop space, are the arm books going to provide a different use experience to make consumers feel that paying the same or more than intel netbooks is resulting in something remarkably better? (ie. VHS tapes vs DVD disks, a clearly better experience, and a different format)  That looks unlikely hardware-wise, they&#039;re  just more mini-laptops.  Like Aq pointed out, ARM wants to dominate a market in 3-5 years.  Few things have done this except for the switch from VHS to DVD and the switch to digital cameras from 35mm film.  Both cases where the replacement was radically better for the non-experts and their wallets compared to the original technology.  Even MP3s, for all its ease of replication and transportation didn&#039;t kill the CD in 5 years.  It (arguably) took 7-12 years.&lt;/p&gt;

&lt;p&gt;BlueRay is arguably not all that much better than DVD, and some people will resist replacinga disk with just another disk. Why should people get a smartbook that&#039;s a lot like my other netbook?&lt;/p&gt;

&lt;p&gt;So, really, all that is to say that ARM has to really provide a substantial improvement to the netbook/laptop experience, AND be cheaper, for it to meet these grand market share projections. Or else it will suffer beta vs VHS: technically better, but undercut by price.&lt;/p&gt;

&lt;p&gt;Never underestimate price.  Why do you think the technically superior big iron is being undercut by commodity hardware?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I&#8217;m looking forward to the Arm machines, if they can deliver the performance to power consumption ratio they claim.  I have an enviro-footprint itch I hope Arm can scratch.  Intel certainly thinks Arm is going somewhere, as they keep miniaturizing and lowering the power requirements for the Atom in an effort to cut Arm off.</p>

<p>I&#8217;ll try to present my points in the form of an analogies:</p>

<p>When ARM netbooks/smartbooks arrive, are they going to be dvorak keyboards to intel&#8217;s qwerty keyboards?  Studies may show that they are somewhat more efficient than Intel&#8217;s 2nd-3rd generation Atoms, but I feel that unless the ARM machines give slightly better performance for radically less money, they will suffer the fate of the dvorak&#8230; better for those that use it most, but not so much better that the mass make the switch.</p>

<p>I guess my other analogies come from records and tapes vs CDs and  Beta vs VHS vs DVD vs Blu-Ray.  Are ARMs going to be a substantially different than what we already know?  Netbooks are already being pushed into the lowend laptop space, are the arm books going to provide a different use experience to make consumers feel that paying the same or more than intel netbooks is resulting in something remarkably better? (ie. VHS tapes vs DVD disks, a clearly better experience, and a different format)  That looks unlikely hardware-wise, they&#8217;re  just more mini-laptops.  Like Aq pointed out, ARM wants to dominate a market in 3-5 years.  Few things have done this except for the switch from VHS to DVD and the switch to digital cameras from 35mm film.  Both cases where the replacement was radically better for the non-experts and their wallets compared to the original technology.  Even MP3s, for all its ease of replication and transportation didn&#8217;t kill the CD in 5 years.  It (arguably) took 7-12 years.</p>

<p>BlueRay is arguably not all that much better than DVD, and some people will resist replacinga disk with just another disk. Why should people get a smartbook that&#8217;s a lot like my other netbook?</p>

<p>So, really, all that is to say that ARM has to really provide a substantial improvement to the netbook/laptop experience, AND be cheaper, for it to meet these grand market share projections. Or else it will suffer beta vs VHS: technically better, but undercut by price.</p>

<p>Never underestimate price.  Why do you think the technically superior big iron is being undercut by commodity hardware?</p>]]></content:encoded>
	</item>
	<item>
		<title>By: winkleink</title>
		<link>http://shotofjaq.org/2009/12/the-arm-invasion/comment-page-1/#comment-554</link>
		<dc:creator>winkleink</dc:creator>
		<pubDate>Tue, 15 Dec 2009 13:17:04 +0000</pubDate>
		<guid isPermaLink="false">http://shotofjaq.org/?p=175#comment-554</guid>
		<description>&lt;p&gt;ARM for netbooks is great.
Put it with a decent DSP and you will have a great little productivity system that can also play videos and music.&lt;/p&gt;

&lt;p&gt;To me the main reason Linux on netbooks is not so well received is because it is too much like Windows.  This sets an expectation that it will work like Windows.
Give them Ubuntu Remix or something else that operates a bit differently and the expectation of the Winodws Experience is gone.&lt;/p&gt;

&lt;p&gt;We don&#039;t have people complaining that their mobile phones don&#039;t work like Windows or their PVRs.  It&#039;s because no such expectation has been set.&lt;/p&gt;

&lt;p&gt;The Always Innovating Touchbook is the first on the market (that I know of)
http://www.alwaysinnovating.com/home/index.htm
First Looks say it is interesting and works, but I cannot find anything more detailed.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>ARM for netbooks is great.
Put it with a decent DSP and you will have a great little productivity system that can also play videos and music.</p>

<p>To me the main reason Linux on netbooks is not so well received is because it is too much like Windows.  This sets an expectation that it will work like Windows.
Give them Ubuntu Remix or something else that operates a bit differently and the expectation of the Winodws Experience is gone.</p>

<p>We don&#8217;t have people complaining that their mobile phones don&#8217;t work like Windows or their PVRs.  It&#8217;s because no such expectation has been set.</p>

<p>The Always Innovating Touchbook is the first on the market (that I know of)
<a href="http://www.alwaysinnovating.com/home/index.htm" rel="nofollow">http://www.alwaysinnovating.com/home/index.htm</a>
First Looks say it is interesting and works, but I cannot find anything more detailed.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Jono Bacon: Shot Of Jaq: A Few Weeks In &#124; Full-Linux.com</title>
		<link>http://shotofjaq.org/2009/12/the-arm-invasion/comment-page-1/#comment-485</link>
		<dc:creator>Jono Bacon: Shot Of Jaq: A Few Weeks In &#124; Full-Linux.com</dc:creator>
		<pubDate>Sat, 12 Dec 2009 07:02:10 +0000</pubDate>
		<guid isPermaLink="false">http://shotofjaq.org/?p=175#comment-485</guid>
		<description>&lt;p&gt;[...] The Arm Invasion (66) [...]&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>[...] The Arm Invasion (66) [...]</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Pat</title>
		<link>http://shotofjaq.org/2009/12/the-arm-invasion/comment-page-1/#comment-459</link>
		<dc:creator>Pat</dc:creator>
		<pubDate>Fri, 11 Dec 2009 19:36:03 +0000</pubDate>
		<guid isPermaLink="false">http://shotofjaq.org/?p=175#comment-459</guid>
		<description>&lt;p&gt;I love Android. It&#039;s absolutely fantastic and yes I have a G1. At the time I didn&#039;t want to wait around for the second wave of Android phones. My contract is up next June and I plan to get a beefier phone with better battery life. So what if the apps are written in Java? A good a app is a good app. Do you think an end user&#039;s gives a rat&#039;s ass what language the application is written in? I do agree that python should be supported. The more the merrier.  The whole point of davlik and their bastardized version of java was a way to get a lot of developers on board quickly. Believe it or not there a ton of Java programmers out there. I&#039;ve coded java for years and this year got into python and absolutely love it. You can do the same thing in python as java in about 1/3 the amount of code. No kidding.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I love Android. It&#8217;s absolutely fantastic and yes I have a G1. At the time I didn&#8217;t want to wait around for the second wave of Android phones. My contract is up next June and I plan to get a beefier phone with better battery life. So what if the apps are written in Java? A good a app is a good app. Do you think an end user&#8217;s gives a rat&#8217;s ass what language the application is written in? I do agree that python should be supported. The more the merrier.  The whole point of davlik and their bastardized version of java was a way to get a lot of developers on board quickly. Believe it or not there a ton of Java programmers out there. I&#8217;ve coded java for years and this year got into python and absolutely love it. You can do the same thing in python as java in about 1/3 the amount of code. No kidding.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: VulcanRidr</title>
		<link>http://shotofjaq.org/2009/12/the-arm-invasion/comment-page-1/#comment-414</link>
		<dc:creator>VulcanRidr</dc:creator>
		<pubDate>Fri, 11 Dec 2009 00:15:07 +0000</pubDate>
		<guid isPermaLink="false">http://shotofjaq.org/?p=175#comment-414</guid>
		<description>&lt;p&gt;Great show, gents. I do have a couple of comments. As morlockhq mentioned, there is already an ARM-based netbook called the touchbook. This appears to be a very cool device in concept. The display separates from the keyboard, and can act as a large internet tablet with touchscreen capabilities, and appears to be about the size of a Kindle. It can also plug into the keyboard in the traditional laptop style, as well as being able to flip it like a traditional tablet.&lt;/p&gt;

&lt;p&gt;One area of ARM processors you did not mention, one that spans the gap between phones and netbooks, is the Internet Tablet, such as the Nokia N-series or the Archos 5. I have an N810 that is never very far out of reach. It has an ARM processor, is slightly larger than a smartphone and sports a full Linux distribution. Admittedly the Archos sports a crippled version of Android.&lt;/p&gt;

&lt;p&gt;However, on the Nokias, the operating system, Maemo, is based on Debian, and an up-and-coming project, called Mer, is based on Ubuntu. I believe the Mer devs goal is to have a large portion of the Ubuntu software catalog available for the Nokia devices. Maemo is sponsored by Nokia, but has a heavy open source component, and Mer is completely based on Ubuntu. I have run the Gimp and OpenOffice on this tablet (albeit slowly), as well as watching movies, reading books, playing games, nearly everything I can do on my desktop. The latest addition to the N-series stable, the N900, also has a mobile phone built in.&lt;/p&gt;

&lt;p&gt;On my N810, I have limited Flash support (flash8, as I recall), so I can do youtube and all of the other social networking type stuff as well as making and receiving SIP calls (through gizmo and skype), and I can do secure networking through wireless using traditional VPN tools.&lt;/p&gt;

&lt;p&gt;The TouchBook can, run Maemo as well as the smaller tablets. I personally think that this is the direction that ARM-based netbooks need to proceed, throwing their resources into already established projects like Maemo and Mer to improve them as much as possible.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Great show, gents. I do have a couple of comments. As morlockhq mentioned, there is already an ARM-based netbook called the touchbook. This appears to be a very cool device in concept. The display separates from the keyboard, and can act as a large internet tablet with touchscreen capabilities, and appears to be about the size of a Kindle. It can also plug into the keyboard in the traditional laptop style, as well as being able to flip it like a traditional tablet.</p>

<p>One area of ARM processors you did not mention, one that spans the gap between phones and netbooks, is the Internet Tablet, such as the Nokia N-series or the Archos 5. I have an N810 that is never very far out of reach. It has an ARM processor, is slightly larger than a smartphone and sports a full Linux distribution. Admittedly the Archos sports a crippled version of Android.</p>

<p>However, on the Nokias, the operating system, Maemo, is based on Debian, and an up-and-coming project, called Mer, is based on Ubuntu. I believe the Mer devs goal is to have a large portion of the Ubuntu software catalog available for the Nokia devices. Maemo is sponsored by Nokia, but has a heavy open source component, and Mer is completely based on Ubuntu. I have run the Gimp and OpenOffice on this tablet (albeit slowly), as well as watching movies, reading books, playing games, nearly everything I can do on my desktop. The latest addition to the N-series stable, the N900, also has a mobile phone built in.</p>

<p>On my N810, I have limited Flash support (flash8, as I recall), so I can do youtube and all of the other social networking type stuff as well as making and receiving SIP calls (through gizmo and skype), and I can do secure networking through wireless using traditional VPN tools.</p>

<p>The TouchBook can, run Maemo as well as the smaller tablets. I personally think that this is the direction that ARM-based netbooks need to proceed, throwing their resources into already established projects like Maemo and Mer to improve them as much as possible.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Lee</title>
		<link>http://shotofjaq.org/2009/12/the-arm-invasion/comment-page-1/#comment-401</link>
		<dc:creator>Lee</dc:creator>
		<pubDate>Thu, 10 Dec 2009 11:30:42 +0000</pubDate>
		<guid isPermaLink="false">http://shotofjaq.org/?p=175#comment-401</guid>
		<description>&lt;p&gt;Jono &amp; Aqs supposition that there are no ARM netbooks is incorrect... Hell, Maplins of all people have been selling them for over a year...&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Jono &amp; Aqs supposition that there are no ARM netbooks is incorrect&#8230; Hell, Maplins of all people have been selling them for over a year&#8230;</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Richard</title>
		<link>http://shotofjaq.org/2009/12/the-arm-invasion/comment-page-1/#comment-390</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Thu, 10 Dec 2009 08:12:52 +0000</pubDate>
		<guid isPermaLink="false">http://shotofjaq.org/?p=175#comment-390</guid>
		<description>&lt;p&gt;Ahoy.
http://audio.lugradio.org/shotofjaq/shotofjaq_thearminvasion.ogg doesn&#039;t play for me here.  I kind of expected it to in Firefox but that presented a grey area with a large X.  So I downloaded the link.  The result was 254kB gzipped, so I gunzip&#039;d it, but then there were only 16 seconds of an intro.&lt;/p&gt;

&lt;p&gt;Corrupted file?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Ahoy.
<a href="http://audio.lugradio.org/shotofjaq/shotofjaq_thearminvasion.ogg" rel="nofollow">http://audio.lugradio.org/shotofjaq/shotofjaq_thearminvasion.ogg</a> doesn&#8217;t play for me here.  I kind of expected it to in Firefox but that presented a grey area with a large X.  So I downloaded the link.  The result was 254kB gzipped, so I gunzip&#8217;d it, but then there were only 16 seconds of an intro.</p>

<p>Corrupted file?</p>]]></content:encoded>
	</item>
	<item>
		<title>By: mattmole</title>
		<link>http://shotofjaq.org/2009/12/the-arm-invasion/comment-page-1/#comment-381</link>
		<dc:creator>mattmole</dc:creator>
		<pubDate>Wed, 09 Dec 2009 22:45:59 +0000</pubDate>
		<guid isPermaLink="false">http://shotofjaq.org/?p=175#comment-381</guid>
		<description>&lt;p&gt;Hi Dan,&lt;/p&gt;

&lt;p&gt;Thanks for the information. Thats the sort of thing I wanted to get out of someone. Why is ARM so good (apart from low power usage of course).&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Hi Dan,</p>

<p>Thanks for the information. Thats the sort of thing I wanted to get out of someone. Why is ARM so good (apart from low power usage of course).</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Ballard</title>
		<link>http://shotofjaq.org/2009/12/the-arm-invasion/comment-page-1/#comment-374</link>
		<dc:creator>Dan Ballard</dc:creator>
		<pubDate>Wed, 09 Dec 2009 20:59:27 +0000</pubDate>
		<guid isPermaLink="false">http://shotofjaq.org/?p=175#comment-374</guid>
		<description>&lt;p&gt;@mattmole Well for one thing I think it&#039;s a little higher than that now, but two, megahertz isn&#039;t the only determinant of processing power.  It just measures how fast, or how many instructions per second the cpu can perform.  Arm is an entirely different architecture and I believe you can get a lot more done on arm per instruction, so even if you get less instructions per second, you can keep pace work wise.
This is the whole mac PPC vs Intel X86 argument all over again.  We need to move past this and find a more useful computational work metric.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>@mattmole Well for one thing I think it&#8217;s a little higher than that now, but two, megahertz isn&#8217;t the only determinant of processing power.  It just measures how fast, or how many instructions per second the cpu can perform.  Arm is an entirely different architecture and I believe you can get a lot more done on arm per instruction, so even if you get less instructions per second, you can keep pace work wise.
This is the whole mac PPC vs Intel X86 argument all over again.  We need to move past this and find a more useful computational work metric.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: mattmole</title>
		<link>http://shotofjaq.org/2009/12/the-arm-invasion/comment-page-1/#comment-369</link>
		<dc:creator>mattmole</dc:creator>
		<pubDate>Wed, 09 Dec 2009 19:30:24 +0000</pubDate>
		<guid isPermaLink="false">http://shotofjaq.org/?p=175#comment-369</guid>
		<description>&lt;p&gt;I am not convinced at the moment if flash is a show stopper. If HTML video tags take off, then I think most devices would have hardware on board to decode video codecs etc, this would then take the load of the relatively low speed CPU.&lt;/p&gt;

&lt;p&gt;Now comes and extremely dumb statement. I expect to be severely laughed at for it.&lt;/p&gt;

&lt;p&gt;I remember using the family&#039;s Acorn A5000 and various other Archimedes computers at primary, and early secondary school. (Please note, I only left school 10 years back ;))&lt;/p&gt;

&lt;p&gt;How much have ARM processors developed since those days? Our old A5000 had a clock speed of 33MHz, compare that to the netbooks mentioned early with 200MHz, and the increase in clock speed isn&#039;t that great (not compared with x86 clock speeds anyway)&lt;/p&gt;

&lt;p&gt;Are we in effect looking at something a bit too stagnant to enable us to use the processors now, and in the future? Are the ARM developers content with making chips for phone etc?&lt;/p&gt;

&lt;p&gt;mattmole&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I am not convinced at the moment if flash is a show stopper. If HTML video tags take off, then I think most devices would have hardware on board to decode video codecs etc, this would then take the load of the relatively low speed CPU.</p>

<p>Now comes and extremely dumb statement. I expect to be severely laughed at for it.</p>

<p>I remember using the family&#8217;s Acorn A5000 and various other Archimedes computers at primary, and early secondary school. (Please note, I only left school 10 years back <img src='http://shotofjaq.org/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> )</p>

<p>How much have ARM processors developed since those days? Our old A5000 had a clock speed of 33MHz, compare that to the netbooks mentioned early with 200MHz, and the increase in clock speed isn&#8217;t that great (not compared with x86 clock speeds anyway)</p>

<p>Are we in effect looking at something a bit too stagnant to enable us to use the processors now, and in the future? Are the ARM developers content with making chips for phone etc?</p>

<p>mattmole</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Dan Ballard</title>
		<link>http://shotofjaq.org/2009/12/the-arm-invasion/comment-page-1/#comment-333</link>
		<dc:creator>Dan Ballard</dc:creator>
		<pubDate>Wed, 09 Dec 2009 01:22:59 +0000</pubDate>
		<guid isPermaLink="false">http://shotofjaq.org/?p=175#comment-333</guid>
		<description>&lt;p&gt;Do you notice a trend here?  The only apps we are talking about not working on ARM/Linux and holding people back are the last few proprietary Linux apps.  Pretty much &lt;em&gt;everything&lt;/em&gt; else in the entire Linux desktop stack works on Arm already and has for ages. Only the ports of proprietary windows software is holding us up, the likes of Flash, and Skype.  And this again hi-lights the problem with proprietary software. Even one or two pieces still in the Linux desktop can hold up an entire emerging market: arm netbooks.  And sadly the companies don&#039;t see that opening up would give them a team of Linux enthusiasts and arm netbook companies  willing to help out on the port.  Thankfully Google is big enough and with it&#039;s new Arm/Android platform it can push Adobe around into doing the port.
As for the other few hold outs like Skype, we can only hope.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Do you notice a trend here?  The only apps we are talking about not working on ARM/Linux and holding people back are the last few proprietary Linux apps.  Pretty much <em>everything</em> else in the entire Linux desktop stack works on Arm already and has for ages. Only the ports of proprietary windows software is holding us up, the likes of Flash, and Skype.  And this again hi-lights the problem with proprietary software. Even one or two pieces still in the Linux desktop can hold up an entire emerging market: arm netbooks.  And sadly the companies don&#8217;t see that opening up would give them a team of Linux enthusiasts and arm netbook companies  willing to help out on the port.  Thankfully Google is big enough and with it&#8217;s new Arm/Android platform it can push Adobe around into doing the port.
As for the other few hold outs like Skype, we can only hope.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Stuart</title>
		<link>http://shotofjaq.org/2009/12/the-arm-invasion/comment-page-1/#comment-307</link>
		<dc:creator>Stuart</dc:creator>
		<pubDate>Tue, 08 Dec 2009 15:48:41 +0000</pubDate>
		<guid isPermaLink="false">http://shotofjaq.org/?p=175#comment-307</guid>
		<description>&lt;p&gt;I&#039;m with Jon in disagreeing.&lt;/p&gt;

&lt;p&gt;As netbooks are primarily geared towards using the web the OS it runs becomes less and less relevant as long as it provides a good browser and good clients for common web services.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I&#8217;m with Jon in disagreeing.</p>

<p>As netbooks are primarily geared towards using the web the OS it runs becomes less and less relevant as long as it provides a good browser and good clients for common web services.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: morlockhq</title>
		<link>http://shotofjaq.org/2009/12/the-arm-invasion/comment-page-1/#comment-279</link>
		<dc:creator>morlockhq</dc:creator>
		<pubDate>Mon, 07 Dec 2009 16:10:02 +0000</pubDate>
		<guid isPermaLink="false">http://shotofjaq.org/?p=175#comment-279</guid>
		<description>&lt;p&gt;ARM offers some really nice opportunities. Has anyone see the Touchbooks from Always Innovating. They have detachable touch screens!&lt;/p&gt;

&lt;p&gt;https://www.alwaysinnovating.com/touchbook/&lt;/p&gt;

&lt;p&gt;One application is to hang the screen on a metal surface using magnets (they have a video of this that is very intriguing).&lt;/p&gt;

&lt;p&gt;I don&#039;t know if they will be a success, but they are definitely leveraging ARM and embedded Linux to think outside of the box.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>ARM offers some really nice opportunities. Has anyone see the Touchbooks from Always Innovating. They have detachable touch screens!</p>

<p><a href="https://www.alwaysinnovating.com/touchbook/" rel="nofollow">https://www.alwaysinnovating.com/touchbook/</a></p>

<p>One application is to hang the screen on a metal surface using magnets (they have a video of this that is very intriguing).</p>

<p>I don&#8217;t know if they will be a success, but they are definitely leveraging ARM and embedded Linux to think outside of the box.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: B1ackcr0w</title>
		<link>http://shotofjaq.org/2009/12/the-arm-invasion/comment-page-1/#comment-275</link>
		<dc:creator>B1ackcr0w</dc:creator>
		<pubDate>Mon, 07 Dec 2009 10:36:05 +0000</pubDate>
		<guid isPermaLink="false">http://shotofjaq.org/?p=175#comment-275</guid>
		<description>&lt;p&gt;And BTW, ARM Netbooks already exist. And boy, do they suck monkey balls big time!&lt;/p&gt;

&lt;p&gt;http://www.cnmlifestyle.com/&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>And BTW, ARM Netbooks already exist. And boy, do they suck monkey balls big time!</p>

<p><a href="http://www.cnmlifestyle.com/" rel="nofollow">http://www.cnmlifestyle.com/</a></p>]]></content:encoded>
	</item>
	<item>
		<title>By: B1ackcr0w</title>
		<link>http://shotofjaq.org/2009/12/the-arm-invasion/comment-page-1/#comment-274</link>
		<dc:creator>B1ackcr0w</dc:creator>
		<pubDate>Mon, 07 Dec 2009 10:18:58 +0000</pubDate>
		<guid isPermaLink="false">http://shotofjaq.org/?p=175#comment-274</guid>
		<description>&lt;p&gt;Even if the claims for battery life don&#039;t end up a spiffy as they&#039;re being hyped up to be. If they significantly improve on current battery life, that will surely be a good thing won&#039;t it?&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Even if the claims for battery life don&#8217;t end up a spiffy as they&#8217;re being hyped up to be. If they significantly improve on current battery life, that will surely be a good thing won&#8217;t it?</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Stuart</title>
		<link>http://shotofjaq.org/2009/12/the-arm-invasion/comment-page-1/#comment-236</link>
		<dc:creator>Stuart</dc:creator>
		<pubDate>Thu, 03 Dec 2009 21:36:26 +0000</pubDate>
		<guid isPermaLink="false">http://shotofjaq.org/?p=175#comment-236</guid>
		<description>&lt;p&gt;I firmly believe this will happen. firstly Google&#039;s chrome OS combined with pervasive 3g networks will mean that you will be able to get one of these for less than £100 or buy on contract like a phone.&lt;/p&gt;

&lt;p&gt;That will drive huge numbers to make the economies of scale that to enable these sort of prices.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>I firmly believe this will happen. firstly Google&#8217;s chrome OS combined with pervasive 3g networks will mean that you will be able to get one of these for less than £100 or buy on contract like a phone.</p>

<p>That will drive huge numbers to make the economies of scale that to enable these sort of prices.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Gareins</title>
		<link>http://shotofjaq.org/2009/12/the-arm-invasion/comment-page-1/#comment-235</link>
		<dc:creator>Gareins</dc:creator>
		<pubDate>Thu, 03 Dec 2009 17:46:59 +0000</pubDate>
		<guid isPermaLink="false">http://shotofjaq.org/?p=175#comment-235</guid>
		<description>&lt;p&gt;It&#039;s is achievable but only with proper marketing. So that those 99% people can turn into 20% of people who would buy such a thing and would know what are they going into.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>It&#8217;s is achievable but only with proper marketing. So that those 99% people can turn into 20% of people who would buy such a thing and would know what are they going into.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: gmb</title>
		<link>http://shotofjaq.org/2009/12/the-arm-invasion/comment-page-1/#comment-234</link>
		<dc:creator>gmb</dc:creator>
		<pubDate>Thu, 03 Dec 2009 12:07:26 +0000</pubDate>
		<guid isPermaLink="false">http://shotofjaq.org/?p=175#comment-234</guid>
		<description>&lt;p&gt;Ian Allah... So many potential bits of wrongness, so little time.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Ian Allah&#8230; So many potential bits of wrongness, so little time.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: sorin7486</title>
		<link>http://shotofjaq.org/2009/12/the-arm-invasion/comment-page-1/#comment-233</link>
		<dc:creator>sorin7486</dc:creator>
		<pubDate>Thu, 03 Dec 2009 09:14:06 +0000</pubDate>
		<guid isPermaLink="false">http://shotofjaq.org/?p=175#comment-233</guid>
		<description>&lt;p&gt;It&#039;s not true :) ... it might be possible ... But when you have ARM and Google banging on the doors with a sledgehammer things might change. Those two companies are both huge players in the mobile market and up until now they didn&#039;t actually push for the netbook. Any ARM based netbook was something done independently by small companies. Wait till you see what happens once some real money starts flowing.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>It&#8217;s not true <img src='http://shotofjaq.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  &#8230; it might be possible &#8230; But when you have ARM and Google banging on the doors with a sledgehammer things might change. Those two companies are both huge players in the mobile market and up until now they didn&#8217;t actually push for the netbook. Any ARM based netbook was something done independently by small companies. Wait till you see what happens once some real money starts flowing.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: sorin7486</title>
		<link>http://shotofjaq.org/2009/12/the-arm-invasion/comment-page-1/#comment-232</link>
		<dc:creator>sorin7486</dc:creator>
		<pubDate>Thu, 03 Dec 2009 09:01:12 +0000</pubDate>
		<guid isPermaLink="false">http://shotofjaq.org/?p=175#comment-232</guid>
		<description>&lt;p&gt;There are plans for flash to work on ARM:&lt;/p&gt;

&lt;p&gt;http://www.pcmag.com/article2/0,2817,2334753,00.asp&lt;/p&gt;

&lt;p&gt;There&#039;s already a version that works. I know there&#039;s an interface for mobile phones based on flash for windows mobile and that certainly runs on ARM. And on the other hand HTML5 is here for the most part so hopefully a few years from now you won&#039;t even need flash.&lt;/p&gt;

&lt;p&gt;From my point of view if I can get a netbook that has 12 to 16 hours of battery life (for real not just on paper), can stream audio, video and browse the web, I&#039;d buy it right now. All I need is an over-sized cheap smart phone with a proper keyboard.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>There are plans for flash to work on ARM:</p>

<p><a href="http://www.pcmag.com/article2/0,2817,2334753,00.asp" rel="nofollow">http://www.pcmag.com/article2/0,2817,2334753,00.asp</a></p>

<p>There&#8217;s already a version that works. I know there&#8217;s an interface for mobile phones based on flash for windows mobile and that certainly runs on ARM. And on the other hand HTML5 is here for the most part so hopefully a few years from now you won&#8217;t even need flash.</p>

<p>From my point of view if I can get a netbook that has 12 to 16 hours of battery life (for real not just on paper), can stream audio, video and browse the web, I&#8217;d buy it right now. All I need is an over-sized cheap smart phone with a proper keyboard.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: nellery</title>
		<link>http://shotofjaq.org/2009/12/the-arm-invasion/comment-page-1/#comment-230</link>
		<dc:creator>nellery</dc:creator>
		<pubDate>Thu, 03 Dec 2009 00:59:17 +0000</pubDate>
		<guid isPermaLink="false">http://shotofjaq.org/?p=175#comment-230</guid>
		<description>&lt;p&gt;Three years ago, you were different and weird if you owned a netbook.  While it does seem wild to believe that more than half of all netbooks could be running ARM in three years, it&#039;s really not that far fetched.  We all know how quickly technology is developing, and it won&#039;t surprise if it really does happen.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>Three years ago, you were different and weird if you owned a netbook.  While it does seem wild to believe that more than half of all netbooks could be running ARM in three years, it&#8217;s really not that far fetched.  We all know how quickly technology is developing, and it won&#8217;t surprise if it really does happen.</p>]]></content:encoded>
	</item>
	<item>
		<title>By: zaphodbblx</title>
		<link>http://shotofjaq.org/2009/12/the-arm-invasion/comment-page-1/#comment-226</link>
		<dc:creator>zaphodbblx</dc:creator>
		<pubDate>Thu, 03 Dec 2009 00:40:12 +0000</pubDate>
		<guid isPermaLink="false">http://shotofjaq.org/?p=175#comment-226</guid>
		<description>&lt;p&gt;This is going to be a DISASTER for the open source community! Micro$uck has gotten people to think of &quot;netbooks&quot; as mini &quot;notebooks&quot; and stuffed the non atom versions full of ram and huge hard drives so when they get these super underpowered arm versions the cry will go out &quot;see Linux sucks! it dosn&#039;t do ANYTHING!&quot;&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>This is going to be a DISASTER for the open source community! Micro$uck has gotten people to think of &#8220;netbooks&#8221; as mini &#8220;notebooks&#8221; and stuffed the non atom versions full of ram and huge hard drives so when they get these super underpowered arm versions the cry will go out &#8220;see Linux sucks! it dosn&#8217;t do ANYTHING!&#8221;</p>]]></content:encoded>
	</item>
	<item>
		<title>By: Jameson42</title>
		<link>http://shotofjaq.org/2009/12/the-arm-invasion/comment-page-1/#comment-225</link>
		<dc:creator>Jameson42</dc:creator>
		<pubDate>Wed, 02 Dec 2009 21:25:55 +0000</pubDate>
		<guid isPermaLink="false">http://shotofjaq.org/?p=175#comment-225</guid>
		<description>&lt;p&gt;My first thought upon hearing this podcast was how I would love an Arm netbook with an SSD running Chrome OS. 5 second boot, 40 hours battery? Count me in.&lt;/p&gt;
</description>
		<content:encoded><![CDATA[<p>My first thought upon hearing this podcast was how I would love an Arm netbook with an SSD running Chrome OS. 5 second boot, 40 hours battery? Count me in.</p>]]></content:encoded>
	</item>
</channel>
</rss>

