notabadname
Mar 22, 02:01 PM
The screen is not 50% smaller. Nice way of making yourself look stupid.
Playbook has that elusive flash support out of the box which every apple fanboy wants to hide under the rug.
OS is more eloquent than iOS.
Well, if you are going to tell people their posts make them look stupid, perhaps you should consider your own, and read a dictionary before throwing around three syllable words. Your use of the word "eloquent" is incorrect. "Eloquent" is not a word that applies to a software operating system.
Eloquent: The quality of artistry and persuasiveness in speech or writing; the practice or art of using language with fluency and aptness; fluent, forcible, elegant or persuasive speaking in public.
As in; "Your post was not eloquent".
Playbook has that elusive flash support out of the box which every apple fanboy wants to hide under the rug.
OS is more eloquent than iOS.
Well, if you are going to tell people their posts make them look stupid, perhaps you should consider your own, and read a dictionary before throwing around three syllable words. Your use of the word "eloquent" is incorrect. "Eloquent" is not a word that applies to a software operating system.
Eloquent: The quality of artistry and persuasiveness in speech or writing; the practice or art of using language with fluency and aptness; fluent, forcible, elegant or persuasive speaking in public.
As in; "Your post was not eloquent".
DTphonehome
Nov 28, 06:49 PM
Hahahahahahahahahaha(breathe)hahahahahahahahaha!
As if Apple would ever agree to this! Back when the iTMS was in its infancy, I could see Universal making a demand like this. But now, what leverage do they have? "If you don't pay, we're going to pull all Universal songs off the iTMS!" Um, ok, great, lose one of the only profitable revenue streams the music industry has these days? Right.
As if Apple would ever agree to this! Back when the iTMS was in its infancy, I could see Universal making a demand like this. But now, what leverage do they have? "If you don't pay, we're going to pull all Universal songs off the iTMS!" Um, ok, great, lose one of the only profitable revenue streams the music industry has these days? Right.
janstett
Oct 23, 11:44 AM
Unfortunately not many multithreaded apps - yet. For a long time most of the multi-threaded apps were just a select few pro level things. 3D/Visualization software, CAD, database systems, etc.. Those of us who had multiprocessor systems bought them because we had a specific software in mind or group of software applications that could take advantage of multiple processors. As current CPU manufacturing processes started hitting a wall right around the 3GHz mark, chip makers started to transition to multiple CPU cores to boost power - makes sense. Software developers have been lazy for years, just riding the wave of ever-increasing MHz. Now the multi-core CPUs are here and the software is behind as many applications need to have serious re-writes done in order to take advantage of multiple processors. Intel tried to get a jump on this with their HT (Hyper Threading) implementation that essentially simulated dual-cores on a CPU by way of two virtual CPUs. Software developers didn't exactly jump on this and warm up to it. But I also don't think the software industry truly believed that CPUs would go multi-core on a mass scale so fast... Intel and AMD both said they would, don't know why the software industry doubted. Intel and AMD are uncommonly good about telling the truth about upcoming products. Both will be shipping quad-core CPU offerings by year's end.
What you're saying isn't entirely true and may give some people the wrong idea.
First, a multicore system is helpful when running multiple CPU-intensive single-threaded applications on a proper multitasking operating system. For example, right now I'm ripping CDs on iTunes. One processor gets used a lot and the other three are idle. I could be using this CPU power for another app.
The reality is that to take advantage of multiple cores, you had to take advantage of threads. Now, I was doing this in my programs with OS/2 back in 1992. I've been writing multithreaded apps my entire career. But writing a threaded application requires thought and work, so naturally many programmers are lazy and avoid threads. Plus it is harder to debug and synchronize a multithreaded application. Windows and Linux people have been doing this since the stone age, and Windows/Linux have had usable multiprocessor systems for more than a decade (it didn't start with Hyperthreading). I had a dual-processor 486 running NT 3.5 circa 1995. It's just been more of an optional "cool trick" to write threaded applications that the timid programmer avoids. Also it's worth noting that it's possible to go overboard with excessive threading and that leads to problems (context switching, thrashing, synchronization, etc).
Now, on the Mac side, OS 9 and below couldn't properly support SMP and it required a hacked version of the OS and a special version of the application. So the history of the Mac world has been, until recently with OSX, to avoid threading and multiprocessing unless specially called for and then at great pain to do so.
So it goes back to getting developers to write threaded applications. Now that we're getting to 4 and 8 core systems, it also presents a problem.
The classic reason to create a thread is to prevent the GUI from locking up while processing. Let's say I write a GUI program that has a calculation that takes 20 seconds. If I do it the lazy way, the GUI will lock up for 20 seconds because it can't process window messages during that time. If I write a thread, the calculation can take place there and leave the GUI thread able to process messages and keep the application alive, and then signal the other thread when it's done.
But now with more than 4 or 8 cores, the problem is how do you break up the work? 9 women can't have a baby in a month. So if your process is still serialized, you still have to wait with 1 processor doing all the work and the others sitting idle. For example, if you encode a video, it is a very serialized process. I hear some work has been done to simultaneously encode macroblocks in parallel, but getting 8 processors to chew on a single video is an interesting problem.
What you're saying isn't entirely true and may give some people the wrong idea.
First, a multicore system is helpful when running multiple CPU-intensive single-threaded applications on a proper multitasking operating system. For example, right now I'm ripping CDs on iTunes. One processor gets used a lot and the other three are idle. I could be using this CPU power for another app.
The reality is that to take advantage of multiple cores, you had to take advantage of threads. Now, I was doing this in my programs with OS/2 back in 1992. I've been writing multithreaded apps my entire career. But writing a threaded application requires thought and work, so naturally many programmers are lazy and avoid threads. Plus it is harder to debug and synchronize a multithreaded application. Windows and Linux people have been doing this since the stone age, and Windows/Linux have had usable multiprocessor systems for more than a decade (it didn't start with Hyperthreading). I had a dual-processor 486 running NT 3.5 circa 1995. It's just been more of an optional "cool trick" to write threaded applications that the timid programmer avoids. Also it's worth noting that it's possible to go overboard with excessive threading and that leads to problems (context switching, thrashing, synchronization, etc).
Now, on the Mac side, OS 9 and below couldn't properly support SMP and it required a hacked version of the OS and a special version of the application. So the history of the Mac world has been, until recently with OSX, to avoid threading and multiprocessing unless specially called for and then at great pain to do so.
So it goes back to getting developers to write threaded applications. Now that we're getting to 4 and 8 core systems, it also presents a problem.
The classic reason to create a thread is to prevent the GUI from locking up while processing. Let's say I write a GUI program that has a calculation that takes 20 seconds. If I do it the lazy way, the GUI will lock up for 20 seconds because it can't process window messages during that time. If I write a thread, the calculation can take place there and leave the GUI thread able to process messages and keep the application alive, and then signal the other thread when it's done.
But now with more than 4 or 8 cores, the problem is how do you break up the work? 9 women can't have a baby in a month. So if your process is still serialized, you still have to wait with 1 processor doing all the work and the others sitting idle. For example, if you encode a video, it is a very serialized process. I hear some work has been done to simultaneously encode macroblocks in parallel, but getting 8 processors to chew on a single video is an interesting problem.
Full of Win
Mar 31, 09:34 PM
What is this, "let's go on an Apple fansite and act surpised that it's full of Apple fans" day?
No, it's "make up a fake day" day.
No, it's "make up a fake day" day.
shk718
Apr 27, 08:34 AM
if any of you are concerned about being tracked - why on earth would you buy any product that has a GPS in it (all computers cash info) and why on earth would you buy a cell phone - the towers know almost exactly when (which apple doesn't know) and where you are? The reaction to this news is stupid.
Macnoviz
Jul 20, 04:23 PM
Sort of proves the point i was trying to make, at some point mose users wil rather get a beter IO subsystem than more processing power.
Actually, that was my point, but now that you mention it, reversed hyperthreading would solve some problems.
In the long run (really long run, I'm talking quantumcomputers here) however, you are right, and innovation in computing will mostly come from software and how you tell the computer what to do. The nec-plus-ultra would be thinking of a result and getting it (or saying it to your computer) like a photoshop user going, well I would like the sun being more dominant in that picture, the power lines removed, and make those persons look younger. Boom. It happens.
Actually, that was my point, but now that you mention it, reversed hyperthreading would solve some problems.
In the long run (really long run, I'm talking quantumcomputers here) however, you are right, and innovation in computing will mostly come from software and how you tell the computer what to do. The nec-plus-ultra would be thinking of a result and getting it (or saying it to your computer) like a photoshop user going, well I would like the sun being more dominant in that picture, the power lines removed, and make those persons look younger. Boom. It happens.
aloshka
Apr 25, 03:03 PM
"a perfect storm", "overreaction", "typical for the us to sue.."
... sorry, but in what ways do I benefit by having apple track my whereabouts to the day and meter? why isn't there an opt-in (apart from the general 'eat **** or die' TOU) or at least an opt-out for this? why is it so easy to access the data?
... apple deserves to get a beating for this.
they're known for focussing on the user in terms of design and UI of theirdevices... they should also make the step to focus on their users best interest in terms of privacy and freedom, rather than their own greed.
You obviously missed the point that they do not track anything. It's just a log file on your iphone, it stays with your iphone. I GOT even more news!! I FOUND a file on the iphone that stores text messages. YES PEOPLE text messages. I can read your text messages from this file if I have your phone!! Oh ya, I know you can launch the SMS app, but WHY WOULD APPLE NEED TO STORE TEXT MESSAGES ON MY DEVICE?!?! I'm suing!!
... sorry, but in what ways do I benefit by having apple track my whereabouts to the day and meter? why isn't there an opt-in (apart from the general 'eat **** or die' TOU) or at least an opt-out for this? why is it so easy to access the data?
... apple deserves to get a beating for this.
they're known for focussing on the user in terms of design and UI of theirdevices... they should also make the step to focus on their users best interest in terms of privacy and freedom, rather than their own greed.
You obviously missed the point that they do not track anything. It's just a log file on your iphone, it stays with your iphone. I GOT even more news!! I FOUND a file on the iphone that stores text messages. YES PEOPLE text messages. I can read your text messages from this file if I have your phone!! Oh ya, I know you can launch the SMS app, but WHY WOULD APPLE NEED TO STORE TEXT MESSAGES ON MY DEVICE?!?! I'm suing!!
Cougarcat
Mar 26, 07:44 PM
It's crap that is no longer needed.
It's needed for me.
Look, Rosetta isn't a part of OS X by default. If it is installed, then it is needed by the user, and thus isn't "crap." If the user doesn't need it, it won't be installed. For most users, it will be "cut out." I don't see why having the option there for people who need it stifles progress.
It's needed for me.
Look, Rosetta isn't a part of OS X by default. If it is installed, then it is needed by the user, and thus isn't "crap." If the user doesn't need it, it won't be installed. For most users, it will be "cut out." I don't see why having the option there for people who need it stifles progress.
ImAlwaysRight
Sep 13, 09:01 AM
Great news. I can't afford nor do I need that much power, but great to see it can be done.
jicon
Aug 17, 01:02 AM
Lots of stuff on Anandtech about the poor memory performance on the Intel chipset.
Looks like the Xeons got killed by the G5 in Word in their tests.
Might be an interesting machine when/if the motherboard chipset/ memory performance issue is looked in to.
I think part 3 of their review will be telling, paring the machine up to XP machines in a variety of tests.
Looks like the Xeons got killed by the G5 in Word in their tests.
Might be an interesting machine when/if the motherboard chipset/ memory performance issue is looked in to.
I think part 3 of their review will be telling, paring the machine up to XP machines in a variety of tests.
WillEH
Mar 26, 06:55 PM
It's this mentality that makes me smile.
Without knowing any of the details as to what the final shipping version will be, mezmerized (hypnotized ?) by Apple, enthusiasts are ready to pay whatever Apple demands for the product.
I get to sit back without any effort, and watch with delight as they pour the money into Apples coffers. In turn, my vast amount of Apple stock climbs higher & higher as they brag about Apples Billions.
Their blind trust pays me well. Thanks Apple !
e-drama :cool:
Without knowing any of the details as to what the final shipping version will be, mezmerized (hypnotized ?) by Apple, enthusiasts are ready to pay whatever Apple demands for the product.
I get to sit back without any effort, and watch with delight as they pour the money into Apples coffers. In turn, my vast amount of Apple stock climbs higher & higher as they brag about Apples Billions.
Their blind trust pays me well. Thanks Apple !
e-drama :cool:
Magrathea
Apr 5, 11:44 PM
I've been using Premier Pro CS5 on a 2008 MBP for about a week now. I'm a former FCP user. The mercury engine thing does work but only for all but the simplest of editing on my machine - I use AVCH footage Panny HMC40 and DLSR (h.264) Canon 7D and yes you can drag it onto the timeline directly without Transcode BUT add an effect or simple color correction or title and the footage is not playable at all (on my poor machine) without doing a render. Never had to do this with FCP BUT of course I had to wait for the Transcoded to ProREs 422.
So in summary:
cute prom updos for short
cute updos for prom hair.
raided updos for prom 2011.
Prom Hair Updos 2011
short hair updos for prom
prom hair 2011 curly updos.
cute prom updos for short
So in summary:
jclardy
Mar 22, 01:27 PM
Blackberry playbook = The IPad 2 killer - you heard it here first.
Look at the specs, their greater or equal to the iPad 2 with the exception of battery life.
Yeah sure, a business tablet with a screen too small to type on. Rim's marketing for this thing seems to be all over the place, they say business tablet, but the picture shows Need For Speed?
Out of the 7" tablets the playbook looks the best, but it is still a 7" tablet. Combined with it's wider display the keyboard will be way to small. If they come out with some kind of awesome keyboard accessory then it may stand a chance. BB's success had a lot to do with its comfortable keyboard.
Samsung's new tablets might do well, as long as they do some decent marketing.
Look at the specs, their greater or equal to the iPad 2 with the exception of battery life.
Yeah sure, a business tablet with a screen too small to type on. Rim's marketing for this thing seems to be all over the place, they say business tablet, but the picture shows Need For Speed?
Out of the 7" tablets the playbook looks the best, but it is still a 7" tablet. Combined with it's wider display the keyboard will be way to small. If they come out with some kind of awesome keyboard accessory then it may stand a chance. BB's success had a lot to do with its comfortable keyboard.
Samsung's new tablets might do well, as long as they do some decent marketing.
solarguy17
Apr 6, 01:29 PM
Wirelessly posted (Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_2_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8C148 Safari/6533.18.5)
I wonder if that accounts for the fact that people access the store with the demos at stores.
When I played with one at BB I acessed the store and dl'd a free app to see it actually in action.
I wonder if that accounts for the fact that people access the store with the demos at stores.
When I played with one at BB I acessed the store and dl'd a free app to see it actually in action.
Erasmus
Aug 26, 07:04 PM
I cannot believe that the iMac will continue to have a slower processor than the Macbook Pro. For years, the iMac has been about twice as fast as the leading Powerbook. I see no reason why Apple will not choose to put a "real man's" processor in what I would think is there most popular product (dismissing iPod). iMac deserves to retake the crown from Macbok Pro for speed in all areas, with CHEAPER components, ie. Conroe over Merom. And a decent GPU of course. In both.
I think it would be possible that Apple will rrefresh both Macbook Pro and iMac very soon, why not Tuesday? It would be nice to keep these two very comparable machines (at least at the moment) on par with each other.
After all, there is no shortage on Conroe, is there, and why else would they wait to release new iMacs? (unless iMacs get Merom too, in which case I'll be taking a quick trip to America, to find out just how much kidneys can be sold for on the black market, and how long a certain old man can survive without his.)
Conroe iMacs AND Merom MBP's on TUESDAY!
I think it would be possible that Apple will rrefresh both Macbook Pro and iMac very soon, why not Tuesday? It would be nice to keep these two very comparable machines (at least at the moment) on par with each other.
After all, there is no shortage on Conroe, is there, and why else would they wait to release new iMacs? (unless iMacs get Merom too, in which case I'll be taking a quick trip to America, to find out just how much kidneys can be sold for on the black market, and how long a certain old man can survive without his.)
Conroe iMacs AND Merom MBP's on TUESDAY!
severe
Jun 15, 06:23 PM
I'm not sure where you are getting your information from, but it doesn't match my experience at BB this morning...
Likewise. The GF and I stopped by our local BB just after opening this morning as well. As much as I don't particularly like BB, our location made it as painless a procedure as it could be. One iPhone each. In and out in a few minutes, with a 10am appointment made for pickup on the 24th. And a promise of a call for confirmation before then.
BTW, the GF used a gift certificate for the preorder and will use the remainder when she picks up the phone. Absolute zero out-of-pocket for her. I'm glad I tagged along today, having heard of the disaster elsewhere.
Good luck to those of you still looking to preorder.
Likewise. The GF and I stopped by our local BB just after opening this morning as well. As much as I don't particularly like BB, our location made it as painless a procedure as it could be. One iPhone each. In and out in a few minutes, with a 10am appointment made for pickup on the 24th. And a promise of a call for confirmation before then.
BTW, the GF used a gift certificate for the preorder and will use the remainder when she picks up the phone. Absolute zero out-of-pocket for her. I'm glad I tagged along today, having heard of the disaster elsewhere.
Good luck to those of you still looking to preorder.
Porco
Aug 6, 06:25 PM
Why sell a new keyboard for front row, if you can sell a new Mac to the same person? Including the sensor in the Cinema Displays would enable Apple to sell more of their display, on which they probably have a very good profit margin (when you compare to other manufacturers).
Because people would buy a new keyboard for some extra functionality; they wouldn't dump their entire system for one feature. And besides, my idea was a solution to the Mac Pro specific issue - therefore it would have to be available as a replacement part for the Mac Pro, making it sensible as an optional purchase for every mac owner. But regardless of that, it would be included with the new computer! If all the other macs have an integrated IR sensor, are you suggesting Apple will want people to buy an iMac rather than a Mac Pro? Really? Also, everyone needs a keyboard, it's on the low-end of the price scale as an upgradable item and it would be easy to add IR.
They could also just put it into the tower. Even if that is under the desk, it might not be that much of a problem. In my experience the sensor responds very nicely to the remote even if the line of sight between them is somewhat obstructed.
They could, but the keyboard is, I would have thought, much much more likely to be in a predictably close position to the screen in the vast majority of cases.
However the best solution I think, was suggested by someone on these forums. I don't know, whether it has been quoted here already, because I did not go through all the messages. This poster suggested to combine the sensor with an external iSight. That could be connected to any monitor and would probably have a good IR reception because of beeing on top of the monitor and thus very exposed.
Not everyone needs or wants an external iSight. Everyone uses a keyboard. I think my solution works not only because of the exposure/position, but also in the ubiquity of the item. The IR sensors in the other machines are on the machines themselves because that's where it makes sense - but they are there, accessible, whatever your set-up is, wherever you put it (with the possible exception of the mini I guess if you really wanted that hidden away). The keyboard solution would just take the most predictably accessible (and standard) element of the system for a Mac Pro and puts the IR there - a display is optional, an external iSight is optional, the keyboard that comes with every machine - well that's standard.
Because people would buy a new keyboard for some extra functionality; they wouldn't dump their entire system for one feature. And besides, my idea was a solution to the Mac Pro specific issue - therefore it would have to be available as a replacement part for the Mac Pro, making it sensible as an optional purchase for every mac owner. But regardless of that, it would be included with the new computer! If all the other macs have an integrated IR sensor, are you suggesting Apple will want people to buy an iMac rather than a Mac Pro? Really? Also, everyone needs a keyboard, it's on the low-end of the price scale as an upgradable item and it would be easy to add IR.
They could also just put it into the tower. Even if that is under the desk, it might not be that much of a problem. In my experience the sensor responds very nicely to the remote even if the line of sight between them is somewhat obstructed.
They could, but the keyboard is, I would have thought, much much more likely to be in a predictably close position to the screen in the vast majority of cases.
However the best solution I think, was suggested by someone on these forums. I don't know, whether it has been quoted here already, because I did not go through all the messages. This poster suggested to combine the sensor with an external iSight. That could be connected to any monitor and would probably have a good IR reception because of beeing on top of the monitor and thus very exposed.
Not everyone needs or wants an external iSight. Everyone uses a keyboard. I think my solution works not only because of the exposure/position, but also in the ubiquity of the item. The IR sensors in the other machines are on the machines themselves because that's where it makes sense - but they are there, accessible, whatever your set-up is, wherever you put it (with the possible exception of the mini I guess if you really wanted that hidden away). The keyboard solution would just take the most predictably accessible (and standard) element of the system for a Mac Pro and puts the IR there - a display is optional, an external iSight is optional, the keyboard that comes with every machine - well that's standard.
Unspeaked
Aug 7, 09:39 AM
Hey Guys.
When do you think they'll update their website with the new "Mac Pro's"?
Regards,
George
Assuming they're released, they'd probably bring the Apple Store back online around 2:00pm.
(They traditionally take it down during a keynote...)
When do you think they'll update their website with the new "Mac Pro's"?
Regards,
George
Assuming they're released, they'd probably bring the Apple Store back online around 2:00pm.
(They traditionally take it down during a keynote...)
gloss
Sep 19, 06:52 AM
As I is naught en Amerikan canned sumone plz tell mi wen tanksgifting is? :p
British Transport: "Mayday, mayday! Can you hear us? We are sinking! We are sinking!"
German Coast Guard: [pause] "...what are you...tsinking about? (http://video.google.com/videoplay?docid=-5210751527160722920&q=what+are+you+thinking+about)"
British Transport: "Mayday, mayday! Can you hear us? We are sinking! We are sinking!"
German Coast Guard: [pause] "...what are you...tsinking about? (http://video.google.com/videoplay?docid=-5210751527160722920&q=what+are+you+thinking+about)"
drsmithy
Sep 13, 09:08 PM
Would Windows use the extra 4 cores?
Yes. Windows NT was running on machines with eight processors several years before OS X was even released.
Yes. Windows NT was running on machines with eight processors several years before OS X was even released.
MatthewThomas
Apr 5, 07:16 PM
I've posted several predictions over the past few months throughout this tread at Cinema5D:
http://cinema5d.com/viewtopic.php?f=24&t=25464
http://cinema5d.com/viewtopic.php?f=24&t=25464
noire anqa
Mar 26, 07:33 AM
Wirelessly posted (Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8G4 Safari/6533.18.5)
This might explain the shambles that is 10.6.7.
Last release before Lion - semi-brick your machine to force an upgrade.
iOS 4.3, last release before iPhone 5 - murder your battery to force an upgrade.
You've guessed it, I'm not very happy with Apple at the moment. So which is it; underhand tactics, sloppy Q&A or declining standards?
It must be conspiracy right. Right.
It couldn't just be an honest mistake as a result of a stretched development team.
No. It must be the same guys who shot Kennedy messing up all our tech. It's probably something to do with the Chinese.
This might explain the shambles that is 10.6.7.
Last release before Lion - semi-brick your machine to force an upgrade.
iOS 4.3, last release before iPhone 5 - murder your battery to force an upgrade.
You've guessed it, I'm not very happy with Apple at the moment. So which is it; underhand tactics, sloppy Q&A or declining standards?
It must be conspiracy right. Right.
It couldn't just be an honest mistake as a result of a stretched development team.
No. It must be the same guys who shot Kennedy messing up all our tech. It's probably something to do with the Chinese.
Al Coholic
Mar 26, 06:03 PM
Maybe not the worst, but definitely the most useless.
Spotlight does a so much better job.
Agreed. I keep my dock pretty sparse so if the app ain't there it's only a few keystrokes away.
The new Launcher is just one of those eye-candy apps. It'll be the first thing I delete.
Spotlight does a so much better job.
Agreed. I keep my dock pretty sparse so if the app ain't there it's only a few keystrokes away.
The new Launcher is just one of those eye-candy apps. It'll be the first thing I delete.
generik
Sep 19, 02:57 AM
1. It's Merom. Not Memrom, Menron, Memron or even L. Ron.
2. It won't be any cooler and it won't have greater battery life, period. Unless Apple has an amazing new design in store.
3. If you really, really, need a Merom, you should wait until the Santa Rosa platform so you don't complain that you got the inferior Merom. :rolleyes:
That is all.
These kinds of arguments are always lame.
1. People have lifes, not everyone is as much as a geek as you to know exactly how many transistors are in the next Intel processor. That is a code name by the way, Steve is not going to step up and go "Merom Macbook Pros!" on stage. He will look like a Moron.
2. So? Who is Apple to tell me how much of an improvement I should expect from something? When's the last time you seen Ford advertise "05 Ford Falcon! Fuel efficiency lags behind competing models by under 10%, same old reliable Ford Falcon with 2 year old design, still at same old price of $19,999"
If there is even so much as 0.001% of improvement you are gonna see Steve step up onto the keynote like a lappy dog and brag it to sound like it is greater than the 2nd coming of Jesus. That's sales 101 for you.
3. Meroms support 64 bit code. 64 bit code like Leopard (although we don't know for sure), or code like Vista x64 (that is 100% for sure). Sure, you might not mind running things in half arsed modes like some Frankinstein hybrid 32/64 bit system like Tiger is, but some people might actually *gasp* appreciate the ability to judge 64 bit code. Get off your high horse already, if you disagree just keep it to yourself. Not like your arrogant rants contributed anything either.
2. It won't be any cooler and it won't have greater battery life, period. Unless Apple has an amazing new design in store.
3. If you really, really, need a Merom, you should wait until the Santa Rosa platform so you don't complain that you got the inferior Merom. :rolleyes:
That is all.
These kinds of arguments are always lame.
1. People have lifes, not everyone is as much as a geek as you to know exactly how many transistors are in the next Intel processor. That is a code name by the way, Steve is not going to step up and go "Merom Macbook Pros!" on stage. He will look like a Moron.
2. So? Who is Apple to tell me how much of an improvement I should expect from something? When's the last time you seen Ford advertise "05 Ford Falcon! Fuel efficiency lags behind competing models by under 10%, same old reliable Ford Falcon with 2 year old design, still at same old price of $19,999"
If there is even so much as 0.001% of improvement you are gonna see Steve step up onto the keynote like a lappy dog and brag it to sound like it is greater than the 2nd coming of Jesus. That's sales 101 for you.
3. Meroms support 64 bit code. 64 bit code like Leopard (although we don't know for sure), or code like Vista x64 (that is 100% for sure). Sure, you might not mind running things in half arsed modes like some Frankinstein hybrid 32/64 bit system like Tiger is, but some people might actually *gasp* appreciate the ability to judge 64 bit code. Get off your high horse already, if you disagree just keep it to yourself. Not like your arrogant rants contributed anything either.
No comments:
Post a Comment