<?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: iPhone Safari Crash Fix</title> <atom:link href="http://klauskjeldsen.dk/iphone-safari-crash-fix/feed/" rel="self" type="application/rss+xml" /><link>http://klauskjeldsen.dk/iphone-safari-crash-fix/</link> <description>About web... &#38; stuff</description> <lastBuildDate>Fri, 13 Apr 2012 17:44:30 +0000</lastBuildDate> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.2</generator> <item><title>By: bhyslop</title><link>http://klauskjeldsen.dk/iphone-safari-crash-fix/comment-page-1/#comment-9214</link> <dc:creator>bhyslop</dc:creator> <pubDate>Sat, 21 Mar 2009 12:15:58 +0000</pubDate> <guid
isPermaLink="false">http://klauskjeldsen.dk/?p=428#comment-9214</guid> <description>What makes this even more fun and pernicious is that ATT choices and network loading can have an impact on whether a crash can happen.  Safari rendering bravely starts even before all page elements are loaded.  That means I will start scrolling to the place on the page where I was before the last crash before all the packets are in.  More conjecture but that could make the interleave of packets and display elements even worse.   If the local cellular link is trickling instead of bursting packets, that also could make it worse.  I suspect some pages are worse than others for me in terms of crashiness.  I also suspect people at different locations have   different results with the same page.  The 2.2 release has this cute safari website critique debug feature where it tells you all the problems on the web page- this tells me the management is working on this problem but in completely the wrong way, spending half a million dollars to build an application level blame snow fence against &#039;bad&#039; web pages when the memory management subsystem is not in order.  and maybe I&#039;m too harsh since full MMU hardware may not be available and they&#039;re just muddling through with immature models.  They really ought to be separating the memory pools for incoming data, outgoing data, and visual elements but instead they&#039;re probably having days of meetings where completely irrelevant but much less scary tweaks are loudly argued... It&#039;s what happens when the B team is brought in to maintain something they can&#039;t admit to their management they don&#039;t understand (or more likely they just don&#039;t have the scope to do a quadruple bypass to a different allocation system- everything would need retesting!).  Such is life in the software engineering trenches.Ok my rant is done.  I am resigned to crashing safari ten times a day (it is definitely that often) and I&#039;m not optimistic that even 3.0 will fix this since cultures tend to persist.  My ATT contract ends in a year and the hungry people at google may have a better offering by then. {shrug}</description> <content:encoded><![CDATA[<p>What makes this even more fun and pernicious is that ATT choices and network loading can have an impact on whether a crash can happen.  Safari rendering bravely starts even before all page elements are loaded.  That means I will start scrolling to the place on the page where I was before the last crash before all the packets are in.  More conjecture but that could make the interleave of packets and display elements even worse.   If the local cellular link is trickling instead of bursting packets, that also could make it worse.  I suspect some pages are worse than others for me in terms of crashiness.  I also suspect people at different locations have   different results with the same page.  The 2.2 release has this cute safari website critique debug feature where it tells you all the problems on the web page- this tells me the management is working on this problem but in completely the wrong way, spending half a million dollars to build an application level blame snow fence against &#8216;bad&#8217; web pages when the memory management subsystem is not in order.  and maybe I&#8217;m too harsh since full MMU hardware may not be available and they&#8217;re just muddling through with immature models.  They really ought to be separating the memory pools for incoming data, outgoing data, and visual elements but instead they&#8217;re probably having days of meetings where completely irrelevant but much less scary tweaks are loudly argued&#8230; It&#8217;s what happens when the B team is brought in to maintain something they can&#8217;t admit to their management they don&#8217;t understand (or more likely they just don&#8217;t have the scope to do a quadruple bypass to a different allocation system- everything would need retesting!).  Such is life in the software engineering trenches.</p><p>Ok my rant is done.  I am resigned to crashing safari ten times a day (it is definitely that often) and I&#8217;m not optimistic that even 3.0 will fix this since cultures tend to persist.  My ATT contract ends in a year and the hungry people at google may have a better offering by then. {shrug}</p> ]]></content:encoded> </item> <item><title>By: bhyslop</title><link>http://klauskjeldsen.dk/iphone-safari-crash-fix/comment-page-1/#comment-9213</link> <dc:creator>bhyslop</dc:creator> <pubDate>Sat, 21 Mar 2009 11:39:28 +0000</pubDate> <guid
isPermaLink="false">http://klauskjeldsen.dk/?p=428#comment-9213</guid> <description>I am a heavy iPhone user and safari is an extremely crashy browser even in the 2.2 release.  As a software engineer I&#039;ve worked for over a decade in the embedded space, some of that in mobile phones.  I find that I can guess when safari is about to crash based on the browsing getting sluggish in a particular couple of ways.  First, the responsiveness to a drag operation lags, and second rerendering previously hidden real estate also starts to lag.  This can happen with evn a single page load since safari launch.Enough with facts; the following conjectures are more fun.  I think the apple people have not invested well enough in mobile memory management.  They&#039;re so new to the mobile space they may still be using heaps instead of partition pools.  In a nutshell heaps let you use every last erg of memory but it can get fragmented like a disk drive as blocks are reallocated and reallocated.  The OS starts to spend lots of time traversing the list of oddly sized free blocks to find one than can fit a current request.  Imagine if a particular memory allocation pattern allocates 16 bytes every 1 kilobyte in a megabyte pool:  though the memory is over 99% free you can never allocate 2K:  this can happen say if a given heap stores web page features and network packets- network packets are freed relatively quickly after traversing the ip stack while visual elements persist for longer.  That precrash lag I sense could be ever increasing linear searches of free lists until some deeper service deems the app is no longer stable (or more likely the critical allocation of a drawing context fails).</description> <content:encoded><![CDATA[<p>I am a heavy iPhone user and safari is an extremely crashy browser even in the 2.2 release.  As a software engineer I&#8217;ve worked for over a decade in the embedded space, some of that in mobile phones.  I find that I can guess when safari is about to crash based on the browsing getting sluggish in a particular couple of ways.  First, the responsiveness to a drag operation lags, and second rerendering previously hidden real estate also starts to lag.  This can happen with evn a single page load since safari launch.</p><p>Enough with facts; the following conjectures are more fun.  I think the apple people have not invested well enough in mobile memory management.  They&#8217;re so new to the mobile space they may still be using heaps instead of partition pools.  In a nutshell heaps let you use every last erg of memory but it can get fragmented like a disk drive as blocks are reallocated and reallocated.  The OS starts to spend lots of time traversing the list of oddly sized free blocks to find one than can fit a current request.  Imagine if a particular memory allocation pattern allocates 16 bytes every 1 kilobyte in a megabyte pool:  though the memory is over 99% free you can never allocate 2K:  this can happen say if a given heap stores web page features and network packets- network packets are freed relatively quickly after traversing the ip stack while visual elements persist for longer.  That precrash lag I sense could be ever increasing linear searches of free lists until some deeper service deems the app is no longer stable (or more likely the critical allocation of a drawing context fails).</p> ]]></content:encoded> </item> <item><title>By: Aden</title><link>http://klauskjeldsen.dk/iphone-safari-crash-fix/comment-page-1/#comment-9113</link> <dc:creator>Aden</dc:creator> <pubDate>Tue, 27 Jan 2009 08:30:13 +0000</pubDate> <guid
isPermaLink="false">http://klauskjeldsen.dk/?p=428#comment-9113</guid> <description>My safari is crashing when ever l try to visit website any sagetion pls</description> <content:encoded><![CDATA[<p>My safari is crashing when ever l try to visit website any sagetion pls</p> ]]></content:encoded> </item> <item><title>By: Dylan</title><link>http://klauskjeldsen.dk/iphone-safari-crash-fix/comment-page-1/#comment-8655</link> <dc:creator>Dylan</dc:creator> <pubDate>Tue, 09 Dec 2008 13:03:33 +0000</pubDate> <guid
isPermaLink="false">http://klauskjeldsen.dk/?p=428#comment-8655</guid> <description>This has been an issue since I first got me 3g iPhone. It seems that image-intensive sites are the main problem, constantly making my whole phone crash, not just safari! I am on 2.2 and it&#039;s a little better. On 2.1 my screen was freezing and I couldn&#039;t even turn the phone off!</description> <content:encoded><![CDATA[<p>This has been an issue since I first got me 3g iPhone. It seems that image-intensive sites are the main problem, constantly making my whole phone crash, not just safari! I am on 2.2 and it&#8217;s a little better. On 2.1 my screen was freezing and I couldn&#8217;t even turn the phone off!</p> ]]></content:encoded> </item> <item><title>By: henry bnry.lince</title><link>http://klauskjeldsen.dk/iphone-safari-crash-fix/comment-page-1/#comment-8627</link> <dc:creator>henry bnry.lince</dc:creator> <pubDate>Fri, 05 Dec 2008 20:04:55 +0000</pubDate> <guid
isPermaLink="false">http://klauskjeldsen.dk/?p=428#comment-8627</guid> <description>&quot;safari is the best browser I&#039;ve used but it crashes periodically&quot;. Are you some kind of idiot?</description> <content:encoded><![CDATA[<p>&#8220;safari is the best browser I&#8217;ve used but it crashes periodically&#8221;. Are you some kind of idiot?</p> ]]></content:encoded> </item> <item><title>By: Theaterthug</title><link>http://klauskjeldsen.dk/iphone-safari-crash-fix/comment-page-1/#comment-8472</link> <dc:creator>Theaterthug</dc:creator> <pubDate>Tue, 02 Dec 2008 20:18:01 +0000</pubDate> <guid
isPermaLink="false">http://klauskjeldsen.dk/?p=428#comment-8472</guid> <description>I have to 2.2 update and my iPod have crashed  like 10 times today and every day</description> <content:encoded><![CDATA[<p>I have to 2.2 update and my iPod have crashed  like 10 times today and every day</p> ]]></content:encoded> </item> <item><title>By: bryan</title><link>http://klauskjeldsen.dk/iphone-safari-crash-fix/comment-page-1/#comment-8238</link> <dc:creator>bryan</dc:creator> <pubDate>Fri, 28 Nov 2008 00:44:05 +0000</pubDate> <guid
isPermaLink="false">http://klauskjeldsen.dk/?p=428#comment-8238</guid> <description>I also still found crashes but much less now. At least it almost won&#039;t crashed now when I zooming in and out to surf the web, or loading large e-mails. But it&#039;s memory management might be quite a problem. I still got idle when I hearing music and surf the web the same time....
And, yes, just like Paul said, I am not confidence to highly recommand Apple product now.
And I&#039;m also look for the missing copy function. My previous phone from Motorola, linux based, restart once every 1 or 2 month. Stable!! And, can copy and paste!</description> <content:encoded><![CDATA[<p>I also still found crashes but much less now. At least it almost won&#8217;t crashed now when I zooming in and out to surf the web, or loading large e-mails. But it&#8217;s memory management might be quite a problem. I still got idle when I hearing music and surf the web the same time&#8230;.<br
/> And, yes, just like Paul said, I am not confidence to highly recommand Apple product now.<br
/> And I&#8217;m also look for the missing copy function. My previous phone from Motorola, linux based, restart once every 1 or 2 month. Stable!! And, can copy and paste!</p> ]]></content:encoded> </item> <item><title>By: Andy</title><link>http://klauskjeldsen.dk/iphone-safari-crash-fix/comment-page-1/#comment-8227</link> <dc:creator>Andy</dc:creator> <pubDate>Thu, 27 Nov 2008 21:16:21 +0000</pubDate> <guid
isPermaLink="false">http://klauskjeldsen.dk/?p=428#comment-8227</guid> <description>I have updated to 2.2, and safari still crashes fairly often, along with other apps.  To be fair, my phone is jailbroken and unlocked, so I don&#039;t know what affect that has on speed and stability of the phone.  Just thought I&#039;d add my 2 cents.</description> <content:encoded><![CDATA[<p>I have updated to 2.2, and safari still crashes fairly often, along with other apps.  To be fair, my phone is jailbroken and unlocked, so I don&#8217;t know what affect that has on speed and stability of the phone.  Just thought I&#8217;d add my 2 cents.</p> ]]></content:encoded> </item> <item><title>By: Paul</title><link>http://klauskjeldsen.dk/iphone-safari-crash-fix/comment-page-1/#comment-8207</link> <dc:creator>Paul</dc:creator> <pubDate>Thu, 27 Nov 2008 15:08:17 +0000</pubDate> <guid
isPermaLink="false">http://klauskjeldsen.dk/?p=428#comment-8207</guid> <description>Well, I&#039;m happy to hear that 2.2 solved the crashing problem for some of you but it most certainly has not done anything on my 3g iPhone.  I get at least a dozen crashes a day and that is after restarting, clearing the cache/history and doing restore through iTunes.I have owned Apple computers since 1988 with my first Mac SE and I have to say that I am getting disgusted with Apple.  From the nonsense with my Time Capsule failing to perform backups properly to iTunes freezing to this BS with my phone, I am at my wits end.  Frankly, for the first time in 20 years I no longer recommend Apple products to my PC using friends.</description> <content:encoded><![CDATA[<p>Well, I&#8217;m happy to hear that 2.2 solved the crashing problem for some of you but it most certainly has not done anything on my 3g iPhone.  I get at least a dozen crashes a day and that is after restarting, clearing the cache/history and doing restore through iTunes.</p><p>I have owned Apple computers since 1988 with my first Mac SE and I have to say that I am getting disgusted with Apple.  From the nonsense with my Time Capsule failing to perform backups properly to iTunes freezing to this BS with my phone, I am at my wits end.  Frankly, for the first time in 20 years I no longer recommend Apple products to my PC using friends.</p> ]]></content:encoded> </item> <item><title>By: Klaus Kjeldsen</title><link>http://klauskjeldsen.dk/iphone-safari-crash-fix/comment-page-1/#comment-8110</link> <dc:creator>Klaus Kjeldsen</dc:creator> <pubDate>Sun, 23 Nov 2008 20:36:11 +0000</pubDate> <guid
isPermaLink="false">http://klauskjeldsen.dk/?p=428#comment-8110</guid> <description>The improved stability and performance of Safari in &lt;a href=&quot;http://www.apple.com/iphone/softwareupdate/&quot; rel=&quot;nofollow&quot;&gt;version 2.2&lt;/a&gt; seems to have fixed the crashing issue. No crashes so fare... lovely!</description> <content:encoded><![CDATA[<p>The improved stability and performance of Safari in <a
href="http://www.apple.com/iphone/softwareupdate/" rel="nofollow">version 2.2</a> seems to have fixed the crashing issue. No crashes so fare&#8230; lovely!</p> ]]></content:encoded> </item> <item><title>By: Safari 2.2</title><link>http://klauskjeldsen.dk/iphone-safari-crash-fix/comment-page-1/#comment-8076</link> <dc:creator>Safari 2.2</dc:creator> <pubDate>Sat, 22 Nov 2008 17:04:21 +0000</pubDate> <guid
isPermaLink="false">http://klauskjeldsen.dk/?p=428#comment-8076</guid> <description>If You haven&#039;t updated to the latest 2.2 firmware I suggest you try it .i have yet to crash the new browser. I have 8 windows open and have visited all the usual suspect pages and I  annoy crash this thing. I mean aside from visiting flash sites which the iphone clearly does not support, this new update is performing phenomenally. In fact I&#039;m surprised it hasn&#039;t crashed after typing all of this. It used to be that I couldn&#039;t even surf for 5 mind without encountering a page that would go belly up. I&#039;ve been able to surf for hours straight and this is with caches fullly loaded! Definitely something to call home about. Now let&#039;s see if I can post all of this without it crashing. Remember still no copy and paste. Wish me luck.</description> <content:encoded><![CDATA[<p>If You haven&#8217;t updated to the latest 2.2 firmware I suggest you try it .i have yet to crash the new browser. I have 8 windows open and have visited all the usual suspect pages and I  annoy crash this thing. I mean aside from visiting flash sites which the iphone clearly does not support, this new update is performing phenomenally. In fact I&#8217;m surprised it hasn&#8217;t crashed after typing all of this. It used to be that I couldn&#8217;t even surf for 5 mind without encountering a page that would go belly up. I&#8217;ve been able to surf for hours straight and this is with caches fullly loaded! Definitely something to call home about. Now let&#8217;s see if I can post all of this without it crashing. Remember still no copy and paste. Wish me luck.</p> ]]></content:encoded> </item> <item><title>By: raymond</title><link>http://klauskjeldsen.dk/iphone-safari-crash-fix/comment-page-1/#comment-7923</link> <dc:creator>raymond</dc:creator> <pubDate>Tue, 18 Nov 2008 17:12:23 +0000</pubDate> <guid
isPermaLink="false">http://klauskjeldsen.dk/?p=428#comment-7923</guid> <description>WTF apple I want my refund.. Safari crashes all the f@c$I!g time.  Never had this problem before the 2.0 update.</description> <content:encoded><![CDATA[<p>WTF apple I want my refund.. Safari crashes all the f@c$I!g time.  Never had this problem before the 2.0 update.</p> ]]></content:encoded> </item> <item><title>By: larry</title><link>http://klauskjeldsen.dk/iphone-safari-crash-fix/comment-page-1/#comment-7882</link> <dc:creator>larry</dc:creator> <pubDate>Tue, 18 Nov 2008 04:57:37 +0000</pubDate> <guid
isPermaLink="false">http://klauskjeldsen.dk/?p=428#comment-7882</guid> <description>The Safari browser was more stable - by about a factor of 10 - when we were still at version 1.0 (i.e. Summer / Fall 2007).Apple will never admit it, but something has gone screwy with the browser and the 2.0 update they released alongisde the 3g. It is a pain in the ass to browse with the phone now. We have this amazingly full-featured browser that crashes every 10 minutes.Fantastic.</description> <content:encoded><![CDATA[<p>The Safari browser was more stable &#8211; by about a factor of 10 &#8211; when we were still at version 1.0 (i.e. Summer / Fall 2007).</p><p>Apple will never admit it, but something has gone screwy with the browser and the 2.0 update they released alongisde the 3g. It is a pain in the ass to browse with the phone now. We have this amazingly full-featured browser that crashes every 10 minutes.</p><p>Fantastic.</p> ]]></content:encoded> </item> <item><title>By: bryan</title><link>http://klauskjeldsen.dk/iphone-safari-crash-fix/comment-page-1/#comment-7848</link> <dc:creator>bryan</dc:creator> <pubDate>Mon, 17 Nov 2008 13:43:24 +0000</pubDate> <guid
isPermaLink="false">http://klauskjeldsen.dk/?p=428#comment-7848</guid> <description>I&#039;m a little fans of Apple for 20 years but I&#039;m quite really frustrated for this.  My safari crash even browsing only one single page! And, in general, over 10 crashes a day! Hope Apple can fix this ASAP so that it can really be the best PDA media centre phone ...etc.</description> <content:encoded><![CDATA[<p>I&#8217;m a little fans of Apple for 20 years but I&#8217;m quite really frustrated for this.  My safari crash even browsing only one single page! And, in general, over 10 crashes a day! Hope Apple can fix this ASAP so that it can really be the best PDA media centre phone &#8230;etc.</p> ]]></content:encoded> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: basic (User agent is rejected)
Database Caching 35/54 queries in 0.052 seconds using disk: basic
Content Delivery Network via N/A

Served from: klauskjeldsen.dk @ 2012-05-21 07:08:44 -->
