Crash Analysis: Well done, Microsoft
-
So my laptop is, again, dying a slow painful death. I can't understand why manufacturers can't make a laptop that is ultralight, super fast, cheap as chips and can survive being dropped from a great height onto hard floors. Repeatedly. Maybe there's just no demand for it... Anyway, so my laptop blue screened and on reboot XP came up with the crash analysis. Verdict: faulty RAM. Not only did it post mortem, it went to the correct page, offered advice and then provided a link to download a memory diagnosis application. This wasn't an OS issue, rather a hardware issue, but still the OS did what it could to store, diagnose and report the problem. Well done. cheers, Chris Maunder
-
So my laptop is, again, dying a slow painful death. I can't understand why manufacturers can't make a laptop that is ultralight, super fast, cheap as chips and can survive being dropped from a great height onto hard floors. Repeatedly. Maybe there's just no demand for it... Anyway, so my laptop blue screened and on reboot XP came up with the crash analysis. Verdict: faulty RAM. Not only did it post mortem, it went to the correct page, offered advice and then provided a link to download a memory diagnosis application. This wasn't an OS issue, rather a hardware issue, but still the OS did what it could to store, diagnose and report the problem. Well done. cheers, Chris Maunder
Chris Maunder wrote: This wasn't an OS issue, rather a hardware issue, but still the OS did what it could to store, diagnose and report the problem. When you think of how well the operating systems have grown since the emergence of Windows 3.1 for example, it's the subtle operations that really make you appreciate all the hard work that go into their development. On a side note, it would be interesting to see numbers on the number of developers across each operating system as they have been produced. I've heard there are as many as 18,000 working on Longhorn in some form. - Nick Parker
My Blog | My Articles -
So my laptop is, again, dying a slow painful death. I can't understand why manufacturers can't make a laptop that is ultralight, super fast, cheap as chips and can survive being dropped from a great height onto hard floors. Repeatedly. Maybe there's just no demand for it... Anyway, so my laptop blue screened and on reboot XP came up with the crash analysis. Verdict: faulty RAM. Not only did it post mortem, it went to the correct page, offered advice and then provided a link to download a memory diagnosis application. This wasn't an OS issue, rather a hardware issue, but still the OS did what it could to store, diagnose and report the problem. Well done. cheers, Chris Maunder
Chris Maunder wrote: So my laptop is, again, dying a slow painful death. I can't understand why manufacturers can't make a laptop that is ultralight, super fast, cheap as chips and can survive being dropped from a great height onto hard floors. Repeatedly. Maybe there's just no demand for it... coz then you wouldnt have to buy another one. I bet the OS code looks remarkably similar to
if ((user == "Maunder") && (TRUE == DoICrashToday()) && (TRUE == HasTheBuggerBeenCodingOnMe()) { BlueScreenForAbit(); PretendToReboot(); FakeSmartyPantsCrashAnalysisToImpress(); BlameBadRam(); // no way is it OUR code. SendToBogusWebPage() WaitForNewUser(); } ...
well...something like that anyway Bryce --- To paraphrase Fred Dagg - the views expressed in this post are bloody good ones. --
Publitor, making Pubmed easy. http://www.sohocode.com/publitorOur kids book :The Snot Goblin
-
Chris Maunder wrote: So my laptop is, again, dying a slow painful death. I can't understand why manufacturers can't make a laptop that is ultralight, super fast, cheap as chips and can survive being dropped from a great height onto hard floors. Repeatedly. Maybe there's just no demand for it... coz then you wouldnt have to buy another one. I bet the OS code looks remarkably similar to
if ((user == "Maunder") && (TRUE == DoICrashToday()) && (TRUE == HasTheBuggerBeenCodingOnMe()) { BlueScreenForAbit(); PretendToReboot(); FakeSmartyPantsCrashAnalysisToImpress(); BlameBadRam(); // no way is it OUR code. SendToBogusWebPage() WaitForNewUser(); } ...
well...something like that anyway Bryce --- To paraphrase Fred Dagg - the views expressed in this post are bloody good ones. --
Publitor, making Pubmed easy. http://www.sohocode.com/publitorOur kids book :The Snot Goblin
bryce wrote: TRUE == DoICrashToday TRUE == HasTheBuggerBeenCodingOnMe Never, never, compare truthness by equality for TRUE. In some headers, FALSE and TRUE are defined as
0
and!FALSE
respectively. Thus, a function which returns10
is returning a truth value.. Should never happen theoretically, but it does. :) -- Weiter, weiter, ins verderben. Wir müssen leben bis wir sterben. I blog too now[^] -
So my laptop is, again, dying a slow painful death. I can't understand why manufacturers can't make a laptop that is ultralight, super fast, cheap as chips and can survive being dropped from a great height onto hard floors. Repeatedly. Maybe there's just no demand for it... Anyway, so my laptop blue screened and on reboot XP came up with the crash analysis. Verdict: faulty RAM. Not only did it post mortem, it went to the correct page, offered advice and then provided a link to download a memory diagnosis application. This wasn't an OS issue, rather a hardware issue, but still the OS did what it could to store, diagnose and report the problem. Well done. cheers, Chris Maunder
There was a car manufacturer some time ago which was called: "Minerva" I think. These cars where of very very high quality and never broke down. The company went bankrupt. Why? People never had to go on maintainance. The cars never broke down and never had to be repaired. Same thing goes for your laptop. If it doesn't break down, there is no reason to buy a new one. "If I don't see you in this world, I'll see you in the next one... and don't be late." ~ Jimi Hendrix
-
So my laptop is, again, dying a slow painful death. I can't understand why manufacturers can't make a laptop that is ultralight, super fast, cheap as chips and can survive being dropped from a great height onto hard floors. Repeatedly. Maybe there's just no demand for it... Anyway, so my laptop blue screened and on reboot XP came up with the crash analysis. Verdict: faulty RAM. Not only did it post mortem, it went to the correct page, offered advice and then provided a link to download a memory diagnosis application. This wasn't an OS issue, rather a hardware issue, but still the OS did what it could to store, diagnose and report the problem. Well done. cheers, Chris Maunder
Nice to know that NT is starting to have these kind of detection things built in. You probably already know that Solaris has these, and can work around the faulty RAM on the fly, and do its best to get on with things. but I'm guessing the hardware has to be designed a certain way as well to allow for hotswapping memory and processors.
-
bryce wrote: TRUE == DoICrashToday TRUE == HasTheBuggerBeenCodingOnMe Never, never, compare truthness by equality for TRUE. In some headers, FALSE and TRUE are defined as
0
and!FALSE
respectively. Thus, a function which returns10
is returning a truth value.. Should never happen theoretically, but it does. :) -- Weiter, weiter, ins verderben. Wir müssen leben bis wir sterben. I blog too now[^]If you'll forgive my quoting Pontius Pilate... 'What is truth?' :) Rob Manderson I'm working on a version for Visual Lisp++ My (occasional) blog http://blogs.wdevs.com/ultramaroon/[^]
-
If you'll forgive my quoting Pontius Pilate... 'What is truth?' :) Rob Manderson I'm working on a version for Visual Lisp++ My (occasional) blog http://blogs.wdevs.com/ultramaroon/[^]
Rob Manderson wrote: 'What is truth?' Letting a murderer go free.. ;) -- Weiter, weiter, ins verderben. Wir müssen leben bis wir sterben. I blog too now[^]
-
Rob Manderson wrote: 'What is truth?' Letting a murderer go free.. ;) -- Weiter, weiter, ins verderben. Wir müssen leben bis wir sterben. I blog too now[^]
Good answer. Someday I'll post my thoughts on 'The Passion of the Christ'. Sufficient for now to say that it was a film worth seeing... Rob Manderson I'm working on a version for Visual Lisp++ My (occasional) blog http://blogs.wdevs.com/ultramaroon/[^]
-
So my laptop is, again, dying a slow painful death. I can't understand why manufacturers can't make a laptop that is ultralight, super fast, cheap as chips and can survive being dropped from a great height onto hard floors. Repeatedly. Maybe there's just no demand for it... Anyway, so my laptop blue screened and on reboot XP came up with the crash analysis. Verdict: faulty RAM. Not only did it post mortem, it went to the correct page, offered advice and then provided a link to download a memory diagnosis application. This wasn't an OS issue, rather a hardware issue, but still the OS did what it could to store, diagnose and report the problem. Well done. cheers, Chris Maunder
Hubris rampant! Can Jörgen and I lay a claim to the shortest route ever from Microsoft to Theology? Rob Manderson I'm working on a version for Visual Lisp++ My (occasional) blog http://blogs.wdevs.com/ultramaroon/[^]
-
bryce wrote: TRUE == DoICrashToday TRUE == HasTheBuggerBeenCodingOnMe Never, never, compare truthness by equality for TRUE. In some headers, FALSE and TRUE are defined as
0
and!FALSE
respectively. Thus, a function which returns10
is returning a truth value.. Should never happen theoretically, but it does. :) -- Weiter, weiter, ins verderben. Wir müssen leben bis wir sterben. I blog too now[^]oh bugger off and get a sense of humour u plonker :) Bryce --- To paraphrase Fred Dagg - the views expressed in this post are bloody good ones. --
Publitor, making Pubmed easy. http://www.sohocode.com/publitorOur kids book :The Snot Goblin
-
So my laptop is, again, dying a slow painful death. I can't understand why manufacturers can't make a laptop that is ultralight, super fast, cheap as chips and can survive being dropped from a great height onto hard floors. Repeatedly. Maybe there's just no demand for it... Anyway, so my laptop blue screened and on reboot XP came up with the crash analysis. Verdict: faulty RAM. Not only did it post mortem, it went to the correct page, offered advice and then provided a link to download a memory diagnosis application. This wasn't an OS issue, rather a hardware issue, but still the OS did what it could to store, diagnose and report the problem. Well done. cheers, Chris Maunder
Chris Maunder wrote: Anyway, so my laptop blue screened and on reboot XP came up with the crash analysis. Verdict: faulty RAM Next time, buy ECC memory chips. They're expensive, but your time finding "what's going on this **** machine?" is more expensive :) Yes, even I am blogging now!
-
oh bugger off and get a sense of humour u plonker :) Bryce --- To paraphrase Fred Dagg - the views expressed in this post are bloody good ones. --
Publitor, making Pubmed easy. http://www.sohocode.com/publitorOur kids book :The Snot Goblin
Sorry, I don't have a good sense of humour. I do however have a good sense of humor. ;) -- Weiter, weiter, ins verderben. Wir müssen leben bis wir sterben. I blog too now[^]
-
There was a car manufacturer some time ago which was called: "Minerva" I think. These cars where of very very high quality and never broke down. The company went bankrupt. Why? People never had to go on maintainance. The cars never broke down and never had to be repaired. Same thing goes for your laptop. If it doesn't break down, there is no reason to buy a new one. "If I don't see you in this world, I'll see you in the next one... and don't be late." ~ Jimi Hendrix
V. wrote: Same thing goes for your laptop. If it doesn't break down, there is no reason to buy a new one. That's how Sony are surviving in the laptop market then. :mad: Anna :rose: Riverblade Ltd - Software Consultancy Services Anna's Place | Tears and Laughter "Be yourself - not what others think you should be" - Marcia Graesch "Anna's just a sexy-looking lesbian tart" - A friend, trying to wind me up. It didn't work.
-
Chris Maunder wrote: So my laptop is, again, dying a slow painful death. I can't understand why manufacturers can't make a laptop that is ultralight, super fast, cheap as chips and can survive being dropped from a great height onto hard floors. Repeatedly. Maybe there's just no demand for it... coz then you wouldnt have to buy another one. I bet the OS code looks remarkably similar to
if ((user == "Maunder") && (TRUE == DoICrashToday()) && (TRUE == HasTheBuggerBeenCodingOnMe()) { BlueScreenForAbit(); PretendToReboot(); FakeSmartyPantsCrashAnalysisToImpress(); BlameBadRam(); // no way is it OUR code. SendToBogusWebPage() WaitForNewUser(); } ...
well...something like that anyway Bryce --- To paraphrase Fred Dagg - the views expressed in this post are bloody good ones. --
Publitor, making Pubmed easy. http://www.sohocode.com/publitorOur kids book :The Snot Goblin
Fortunately that was a programming answer not a programming question ;P The tigress is here :-D
-
So my laptop is, again, dying a slow painful death. I can't understand why manufacturers can't make a laptop that is ultralight, super fast, cheap as chips and can survive being dropped from a great height onto hard floors. Repeatedly. Maybe there's just no demand for it... Anyway, so my laptop blue screened and on reboot XP came up with the crash analysis. Verdict: faulty RAM. Not only did it post mortem, it went to the correct page, offered advice and then provided a link to download a memory diagnosis application. This wasn't an OS issue, rather a hardware issue, but still the OS did what it could to store, diagnose and report the problem. Well done. cheers, Chris Maunder
Stop yer whining Maunder, I've only got 15 minutes of birthday left, and I don't want to waste it listening to you talk about anything but beer. Michael Martin Australia "I controlled my laughter and simple said "No,I am very busy,so I can't write any code for you". The moment they heard this all the smiling face turned into a sad looking face and one of them farted. So i had to leave the place as soon as possible." - Mr.Prakash 24/04/2004
-
Sorry, I don't have a good sense of humour. I do however have a good sense of humor. ;) -- Weiter, weiter, ins verderben. Wir müssen leben bis wir sterben. I blog too now[^]
Jörgen Sigvardsson wrote: Sorry, I don't have a good sense of humour. I do however have a good sense of humor. ;) You American wannabe. Michael Martin Australia "I controlled my laughter and simple said "No,I am very busy,so I can't write any code for you". The moment they heard this all the smiling face turned into a sad looking face and one of them farted. So i had to leave the place as soon as possible." - Mr.Prakash 24/04/2004
-
Jörgen Sigvardsson wrote: Sorry, I don't have a good sense of humour. I do however have a good sense of humor. ;) You American wannabe. Michael Martin Australia "I controlled my laughter and simple said "No,I am very busy,so I can't write any code for you". The moment they heard this all the smiling face turned into a sad looking face and one of them farted. So i had to leave the place as soon as possible." - Mr.Prakash 24/04/2004
You Pom wannabe! ;) -- Weiter, weiter, ins verderben. Wir müssen leben bis wir sterben. I blog too now[^]
-
You Pom wannabe! ;) -- Weiter, weiter, ins verderben. Wir müssen leben bis wir sterben. I blog too now[^]
Jörgen Sigvardsson wrote: You Pom wannabe! ;) If I mentioned wanting some crisps you may have had a point, but humour was spelt humour hundreds of years before the Yanks became allergic to the letter U. Michael Martin Australia "I controlled my laughter and simple said "No,I am very busy,so I can't write any code for you". The moment they heard this all the smiling face turned into a sad looking face and one of them farted. So i had to leave the place as soon as possible." - Mr.Prakash 24/04/2004
-
Jörgen Sigvardsson wrote: You Pom wannabe! ;) If I mentioned wanting some crisps you may have had a point, but humour was spelt humour hundreds of years before the Yanks became allergic to the letter U. Michael Martin Australia "I controlled my laughter and simple said "No,I am very busy,so I can't write any code for you". The moment they heard this all the smiling face turned into a sad looking face and one of them farted. So i had to leave the place as soon as possible." - Mr.Prakash 24/04/2004
The yanks have simply simplified their language. I mean, do you really pronounce the 'u' in colour? It sounds just like color, right? Then why not just drop the u? Sounds like a smart thing to do IMO. :) My colleague would like to remind us all that this would not be a problem if everybody spoke and wrote in German ;) -- Weiter, weiter, ins verderben. Wir müssen leben bis wir sterben. I blog too now[^]