yg17
Mar 26, 09:27 AM
And all this coming from the organization who protects a bunch of child rapists. Why are people taking them seriously anymore?
springscansing
Oct 13, 02:41 PM
Originally posted by MacCoaster
Hmm? Have you tried to encode them at the same rate, same song, whatever--and documented the results. Would be cool to know.
Yes I have actually. iTunes IS slow, but it's the best. There was an article in MacAddict a few years ago comparing the speeds and quality of different mp3 encoders at the same bitrates.
Hmm? Have you tried to encode them at the same rate, same song, whatever--and documented the results. Would be cool to know.
Yes I have actually. iTunes IS slow, but it's the best. There was an article in MacAddict a few years ago comparing the speeds and quality of different mp3 encoders at the same bitrates.
gwfattwkr
Jun 7, 03:44 PM
How is it possible that AT&T still can't get this stuff together. It's ridiculous. I'm surprised Apple hasn't stepped in the fix this stuff. It's giving the iPhone a bad name.
any carrier that had the iphone on their network would have the same problem. Iphone is has the highest bandwidth consumption of any phone ever.
could ATT do more to upgrade the network, yes but it takes time.
any carrier that had the iphone on their network would have the same problem. Iphone is has the highest bandwidth consumption of any phone ever.
could ATT do more to upgrade the network, yes but it takes time.

backinblack875
Apr 8, 11:03 PM
I hope they poach someone that likes BUTTONS.
WHAT?! the best thing about the iphone IS TOUCH!!!! NO MORE BUTTONS!!!
WHAT?! the best thing about the iphone IS TOUCH!!!! NO MORE BUTTONS!!!
mojohanna
Apr 14, 05:32 PM
My only dislike of OS X: You can't cycle between windows that are open with command+tab, you can only cycle between applications. In windows, you can cycle between the open windows with alt+tab.
cmd ~ gets you the cycle between windows.
cmd ~ gets you the cycle between windows.

Howdr
Mar 18, 01:14 PM
It's not deceptive. It's just that people don't read it until they want to prove/disprove something.
People are more concerned with shortening their wait time/shopping experience online or in the store to get their hands on their devices more so than reading the terms and usage regarding those devices.
But that's not deceptive. You're confusing deceptive with laziness
No in the TOS it states there is a limit to unlimited (5gb), deceptive.
As far as the tethering issue, at&t does not know whos tethering.
they are guessing............so yes its wrong for them they should have proof and its possible for them to have the proof but they are the lazy ones.
"I think you are guilty, but to have the proof takes too much time, just execute them"
We live in a time of reason ( I question this at times myself) and you cannot condemn people based on a belief you need the proof.
People are more concerned with shortening their wait time/shopping experience online or in the store to get their hands on their devices more so than reading the terms and usage regarding those devices.
But that's not deceptive. You're confusing deceptive with laziness
No in the TOS it states there is a limit to unlimited (5gb), deceptive.
As far as the tethering issue, at&t does not know whos tethering.
they are guessing............so yes its wrong for them they should have proof and its possible for them to have the proof but they are the lazy ones.
"I think you are guilty, but to have the proof takes too much time, just execute them"
We live in a time of reason ( I question this at times myself) and you cannot condemn people based on a belief you need the proof.

auero
Mar 18, 07:59 AM
I don't understand the ranting of why AT&T charges more to tether. Sprint and Verizon do it too? Just because your jailbreak method doesn't work anymore shouldn't make you mad. The system caught up to you. Yes it's stupid to pay for extra data but that's just how it is and people are still going to pay for it so complaining won't do anything.
I'm glad those people who are abusing the service and using 6+ gb of data so they can tether are finally getting the boot. It bogs down the network. Unlimited doesn't mean unlimited in the fine print either. It's the same on every network so don't blame AT&T.
I'm glad those people who are abusing the service and using 6+ gb of data so they can tether are finally getting the boot. It bogs down the network. Unlimited doesn't mean unlimited in the fine print either. It's the same on every network so don't blame AT&T.

Apple OC
Apr 24, 09:11 PM
Yep. I've lived a completely sheltered life, never studied my faith, and certainly never questioned it- never been in any in-depth discussions of religion, and most importantly, I do not understand why I think Christianity is legitimate rather than any other religion.
I believe only the things my parents have told me, and I plug my ears whenever someone says anything different. I'm completely unaware of modern science and how some people consider it to be a religion killer.
To top it off, compared to all atheists, I'm an illiterate, illogical, southern-bred moron and I will never be able to make an educated decision for myself.
And just to be clear, I DID NOT make a 35 on the ACT my Junior year of high school, and I am not on scholarship to a top 25 university.
happy now? :cool:
lol ... thanks for clearing that up
I believe only the things my parents have told me, and I plug my ears whenever someone says anything different. I'm completely unaware of modern science and how some people consider it to be a religion killer.
To top it off, compared to all atheists, I'm an illiterate, illogical, southern-bred moron and I will never be able to make an educated decision for myself.
And just to be clear, I DID NOT make a 35 on the ACT my Junior year of high school, and I am not on scholarship to a top 25 university.
happy now? :cool:
lol ... thanks for clearing that up
Iscariot
Mar 25, 06:48 PM
This coming from a person who just very selectively quoted parts of my statement. I guess I shall assume the other 2.5 points I made were true?
The irony is so thick I might choke.
I'll make it a point to better prioritize my time around your personal attacks; I'd hate for you to hurt yourself on that mouthful of faux-indignation.
@ijh: don't you spend more time here than anybody...?
The irony is so thick I might choke.
I'll make it a point to better prioritize my time around your personal attacks; I'd hate for you to hurt yourself on that mouthful of faux-indignation.
@ijh: don't you spend more time here than anybody...?
iJohnHenry
Mar 13, 04:44 PM
... and because of the US preventing alternative sources we are depending on Russia which had been a consistent supplier for more than half a century
A deal for the Berlin Wall? :rolleyes:
A deal for the Berlin Wall? :rolleyes:
ddtlm
Oct 12, 06:35 PM
MacCoaster:
Ok, here we go. You have a program.c so compile it into compiler.o like this:
gcc -c program.c
You may place flags such as -O before -c, or maybe even after it. But certainly before it. Anyway, you have some asm_func.asm, so compile it into asm_func.o like this:
nasm -f elf asm_func.asm
Now, you can link these two .o files like this:
gcc *o -o exe
Which makes an executable named exe (which of course you can change to be whatever you want).
Anyway, do note that the ASM funcs do the integer "benchmark" and not the float one. Also, I think because I overwrite ebx when I am not supposed to, the asm routines tend to cause program segaults after they exit. :) But they still provide a valid result. I could fix that, but whatever.
Ok, here we go. You have a program.c so compile it into compiler.o like this:
gcc -c program.c
You may place flags such as -O before -c, or maybe even after it. But certainly before it. Anyway, you have some asm_func.asm, so compile it into asm_func.o like this:
nasm -f elf asm_func.asm
Now, you can link these two .o files like this:
gcc *o -o exe
Which makes an executable named exe (which of course you can change to be whatever you want).
Anyway, do note that the ASM funcs do the integer "benchmark" and not the float one. Also, I think because I overwrite ebx when I am not supposed to, the asm routines tend to cause program segaults after they exit. :) But they still provide a valid result. I could fix that, but whatever.
Multimedia
Nov 3, 03:28 AM
Well a significant amount of 3D and video software currently uses more than 2 cores but that's still a very small segment of the overall computing market. The multi-core market can't be ignored, I'm not saying it should be, but it's still not going to appeal to the masses until the rest, the majority, of the software out there catches up.
Quad core imac's would be pointless right now but maybe they wont be in 6 months if software catches up. It's pretty clear that hardware is ahead software at the moment but it will catch up again. It's gone back and forth for as long as I can remember.Boy are you out of touch with reality.
Let's say I'm a consumer who just bought a $150 EyeTV Hybrid digital broadcast TV Tuner-recorder software package (http://www.elgato.com/index.php?file=products_eyetvhybridna) so I can play HDTV on my 24" iMac. And let's say I decided I'd like to archive my HD broadcast recordings on that iMac. I can tell you with no uncertain terms that if that consumer does not have 4 cores in that iMac, he/she can forgetabout it. Moreover, I can say with absolute 100% metaphysical certainty that if he/she has four cores in an iMac TODAY, that he/she will find that they can only run the compression software that will accomplish that MENIAL TASK in very limited serial fashion.
In other words you don't know what you are writing about at all. I apologize for my anger. But it really chafes my hide whenever I read a post written by someone who has never tried to crush television programming so it can be stored in a reasonable size on large HDs and/or DVDs for viewing later. mp4 files are the 21st Century equivalent of a 20th Century VHS tape or DVD collection.
The job is not only slow and arduous, the consumer software, Toast 7.1 and Handbrake UB, is also 4 core ready and would hose a 4-core iMac in about oh say 5 seconds from the beginning of executing two processes.
The level of ignorance about the state of consumer software technology and the mass market for 4-core processor hardware technology today on this front is frightening to me. :eek:
You could not be more mistaken about your opinion stated above than about anything you have ever misunderstood. I have almost a year of experience in this exercise and I can tell you that it is nothing less than a full time job due to lack of appropriate hardware. The software is WAY ahead of the hardware and of that I have no doubt.
Quad core imac's would be pointless right now but maybe they wont be in 6 months if software catches up. It's pretty clear that hardware is ahead software at the moment but it will catch up again. It's gone back and forth for as long as I can remember.Boy are you out of touch with reality.
Let's say I'm a consumer who just bought a $150 EyeTV Hybrid digital broadcast TV Tuner-recorder software package (http://www.elgato.com/index.php?file=products_eyetvhybridna) so I can play HDTV on my 24" iMac. And let's say I decided I'd like to archive my HD broadcast recordings on that iMac. I can tell you with no uncertain terms that if that consumer does not have 4 cores in that iMac, he/she can forgetabout it. Moreover, I can say with absolute 100% metaphysical certainty that if he/she has four cores in an iMac TODAY, that he/she will find that they can only run the compression software that will accomplish that MENIAL TASK in very limited serial fashion.
In other words you don't know what you are writing about at all. I apologize for my anger. But it really chafes my hide whenever I read a post written by someone who has never tried to crush television programming so it can be stored in a reasonable size on large HDs and/or DVDs for viewing later. mp4 files are the 21st Century equivalent of a 20th Century VHS tape or DVD collection.
The job is not only slow and arduous, the consumer software, Toast 7.1 and Handbrake UB, is also 4 core ready and would hose a 4-core iMac in about oh say 5 seconds from the beginning of executing two processes.
The level of ignorance about the state of consumer software technology and the mass market for 4-core processor hardware technology today on this front is frightening to me. :eek:
You could not be more mistaken about your opinion stated above than about anything you have ever misunderstood. I have almost a year of experience in this exercise and I can tell you that it is nothing less than a full time job due to lack of appropriate hardware. The software is WAY ahead of the hardware and of that I have no doubt.
Peace
Sep 20, 12:56 AM
I always thought it would have a hard drive.Even though MacCentral says it doesn't I don't think Bob Iger is so dumb to not know it does.
Watch for EyeTV and Apple coming together over the next 3 months!!
This WILL be a killer box.
Watch for EyeTV and Apple coming together over the next 3 months!!
This WILL be a killer box.

yg17
Mar 26, 09:27 AM
And all this coming from the organization who protects a bunch of child rapists. Why are people taking them seriously anymore?
ddtlm
Oct 12, 06:56 PM
nixd2001:
The flags don't do anything to my x86 results either. This loop is just hard to optimize. I did manual unrolling, replaced mults with adds (which we can actually do safely since the float values in the loop controlls are not factions), and even replaced one of the loop counters with an int in conjuntion with the other two above (in such a way that I needed no typecaseing)... and the resukts inproved maybe 5% on the Mac and none on the PC.
The flags don't do anything to my x86 results either. This loop is just hard to optimize. I did manual unrolling, replaced mults with adds (which we can actually do safely since the float values in the loop controlls are not factions), and even replaced one of the loop counters with an int in conjuntion with the other two above (in such a way that I needed no typecaseing)... and the resukts inproved maybe 5% on the Mac and none on the PC.
aafuss1
Apr 9, 01:26 AM
Apple getting someon whio's work for Nintendo is a bit strange at first, but the more effort Apple puts into marketing their iOS devices as great gaming devices, the better.
HiRez
Sep 26, 05:17 AM
My only hope is now that multi-core systems have gone mainstream that someone (cough -M$-cough) will make multi-processor aware apps "fashionable" and extend the trend.
The Demi-Gods may be able to back me up on this, but Apple's not been great on this front despite leading (well, NEXT) the front on main stream multi-processor systems.Well, since they started selling multi-processor PowerMacs, they've been quite good about it. Final Cut Pro, Motion, iTunes, and iMovie all use multiple-processors, as does anything that uses CoreAudio. I don't know about Aperture, but I'd bet it uses multithreading/multiprocessing extensively. Plus the most important app of all is quite good at utilizing multiple processors, OS X. I don't know about other Apple apps such as Pages, Keynote, iPhoto, and iWeb, but there's probably a limited amount of things they can efficiently multithread in those apps due to the nature of work being done.
Bottom line is that if you're not doing long-form processor-intensive stuff such as 2D/3D animation rendering, video encoding, mathematical/scientific analysis, running simulations, etc. then you probably won't get much benefit from more than two cores (you'll be better off with two cores running at faster clock speeds). But if you are, eight cores will be fantastic.
The Demi-Gods may be able to back me up on this, but Apple's not been great on this front despite leading (well, NEXT) the front on main stream multi-processor systems.Well, since they started selling multi-processor PowerMacs, they've been quite good about it. Final Cut Pro, Motion, iTunes, and iMovie all use multiple-processors, as does anything that uses CoreAudio. I don't know about Aperture, but I'd bet it uses multithreading/multiprocessing extensively. Plus the most important app of all is quite good at utilizing multiple processors, OS X. I don't know about other Apple apps such as Pages, Keynote, iPhoto, and iWeb, but there's probably a limited amount of things they can efficiently multithread in those apps due to the nature of work being done.
Bottom line is that if you're not doing long-form processor-intensive stuff such as 2D/3D animation rendering, video encoding, mathematical/scientific analysis, running simulations, etc. then you probably won't get much benefit from more than two cores (you'll be better off with two cores running at faster clock speeds). But if you are, eight cores will be fantastic.

Eraserhead
Mar 28, 02:11 AM
I accept same-sex-attracted people as they are. But I won't accept some things that many of them do.
What's pretty funny is that I'm sure Leonardo da Vinci did plenty of work for the pope and he was gay, and Michelangelo painted the roof of the Sistine Chapel, and he was almost certainly gay as well given what his art involves.
And clearly the popes at the time didn't give a damn about their homosexuality - I fail to see how in the intervening 500 years its suddenly become an issue.
What's pretty funny is that I'm sure Leonardo da Vinci did plenty of work for the pope and he was gay, and Michelangelo painted the roof of the Sistine Chapel, and he was almost certainly gay as well given what his art involves.
And clearly the popes at the time didn't give a damn about their homosexuality - I fail to see how in the intervening 500 years its suddenly become an issue.
appleguy123
Apr 22, 10:00 PM
I don't believe in God. To me, I haven't seen anything to convince me of his existence and it just seems way too convenient of a way to explain away difficult questions. I also don't think that religion would add anything to my life - it's just not an issue for me, I don't even think about it until asked.
I am interested in this thread, just because I am not used to people questioning my viewpoint, or even really caring about how big the atheist population is. In the UK, it just doesn't seem that the issue is that important.
Is this a bigger issue in the US, and do atheists abroad feel pressure to at least consider the idea of a God?
I'm in the U.S, and I do receive a lot of pressure! I get on average 4-5 messages a week from believers on Facebook warning me of hellfire. :-/ and I'm not even too strident in my disbelief.
Normally I just take it as a joke, but lately its been getting to me. I think that my hellfire threats are above average even for American atheists.
I am interested in this thread, just because I am not used to people questioning my viewpoint, or even really caring about how big the atheist population is. In the UK, it just doesn't seem that the issue is that important.
Is this a bigger issue in the US, and do atheists abroad feel pressure to at least consider the idea of a God?
I'm in the U.S, and I do receive a lot of pressure! I get on average 4-5 messages a week from believers on Facebook warning me of hellfire. :-/ and I'm not even too strident in my disbelief.
Normally I just take it as a joke, but lately its been getting to me. I think that my hellfire threats are above average even for American atheists.
C N Reilly
Mar 18, 12:59 PM
I'm not worried about this. There's only two possibilities:
1) AT&T is just assuming anyone who uses more than X amount of data must be tethering, and shooting out threats. In such a case, all you have to do is call them and tell them you stream a radio station all day. They take you off the "evil tetherer" list; end of problem. (I've already seen two people post elsewhere that this has worked for them.)
2) There actually is something in the software/firmware that's enabling AT&T to tell who's tethering. In this case, the jailbreakers will just add some code to the next release to block or fool that bit of code. End of problem.
All signs thus far point to (1) being the truth, btw.
1) AT&T is just assuming anyone who uses more than X amount of data must be tethering, and shooting out threats. In such a case, all you have to do is call them and tell them you stream a radio station all day. They take you off the "evil tetherer" list; end of problem. (I've already seen two people post elsewhere that this has worked for them.)
2) There actually is something in the software/firmware that's enabling AT&T to tell who's tethering. In this case, the jailbreakers will just add some code to the next release to block or fool that bit of code. End of problem.
All signs thus far point to (1) being the truth, btw.
econgeek
Apr 12, 11:01 PM
Yes, that was exactly my point. The people who know how to use the software are (sometimes) assistant editors, although I find the vast majority know how to do a few simple things, but do them well.. The original poster was implying you needed to be a hollywood film editor to judge technical capabilities, and I was saying they were the worst choice for just that reason.
The people who know the most about editing systems are the Sr. editors who work on heavy, effects based sequences that work in broadcast production environments (I'm not talking about me here). *They* are the ones who push systems to the limits and *they* are the ones who go to NAB. (They're still only 10% of that room)
I think that most of them will find that Apple has, at present abandoned them. That's not to say the industry won't shift, and there won't be enough 3rd party solutions out there, but they are throwing Avid a HUGE bone here.
FCP was making big inroads into broadcast, and they're throwing it away-- for today certainly.
Filmwise, could go either way, depending on the production. If it's got great RED/4k performance, "film" support isn't so important..
But for the indie crowd, they're really screwing them over, if they are abandoning Color. *THAT* is what shocked me. I'm also surprised that effects weren't more advanced. I couldn't see anything on a titling tool, but that's pretty imporant for Broadcast as well.. and *no* existing solution is good for that... They really had (have?) a chance to make that right, and it seems they don't care.
So, when I say "iMovie Pro" that isn't necessarily pejorative. This product is WAY, WAY, WAY more iMovie than FCP. That doesn't mean you can't cut "a real movie" on it. But for Broadcast TV, it's a real step down in a lot of ways-- at the very least not a step up.. The interface is very iMovie. They should have called it iMovie PRO, especially if they're getting rid of the rest of the FCS apps..
Now if it turns out this is just the tip of the iceberg-- then we really could be in for a treat.
You're assuming that if you didn't see a demo of it, it doesn't exist. iMovie has titling built in. They didn't demo titling this evening. Therefore, you're presuming this app has less titling than iMovie!
That seems pretty silly.
The people who know the most about editing systems are the Sr. editors who work on heavy, effects based sequences that work in broadcast production environments (I'm not talking about me here). *They* are the ones who push systems to the limits and *they* are the ones who go to NAB. (They're still only 10% of that room)
I think that most of them will find that Apple has, at present abandoned them. That's not to say the industry won't shift, and there won't be enough 3rd party solutions out there, but they are throwing Avid a HUGE bone here.
FCP was making big inroads into broadcast, and they're throwing it away-- for today certainly.
Filmwise, could go either way, depending on the production. If it's got great RED/4k performance, "film" support isn't so important..
But for the indie crowd, they're really screwing them over, if they are abandoning Color. *THAT* is what shocked me. I'm also surprised that effects weren't more advanced. I couldn't see anything on a titling tool, but that's pretty imporant for Broadcast as well.. and *no* existing solution is good for that... They really had (have?) a chance to make that right, and it seems they don't care.
So, when I say "iMovie Pro" that isn't necessarily pejorative. This product is WAY, WAY, WAY more iMovie than FCP. That doesn't mean you can't cut "a real movie" on it. But for Broadcast TV, it's a real step down in a lot of ways-- at the very least not a step up.. The interface is very iMovie. They should have called it iMovie PRO, especially if they're getting rid of the rest of the FCS apps..
Now if it turns out this is just the tip of the iceberg-- then we really could be in for a treat.
You're assuming that if you didn't see a demo of it, it doesn't exist. iMovie has titling built in. They didn't demo titling this evening. Therefore, you're presuming this app has less titling than iMovie!
That seems pretty silly.
Apple OC
Apr 24, 02:06 PM
Please demonstrate specific Islamic principles to this then.
I have never been to a Muslim country, but I am sure the results are amplified outside of North America ... I have worked with many Muslims here in Canada ... I have never met even one that was not completely controlling over their spouse or daughters.
20 years ago I had never heard of a Father murdering their Daughter because she was dressing "too western"
Thanks EdifyingG ... I was not going to look up all that ... pretty much sums things up
I have never been to a Muslim country, but I am sure the results are amplified outside of North America ... I have worked with many Muslims here in Canada ... I have never met even one that was not completely controlling over their spouse or daughters.
20 years ago I had never heard of a Father murdering their Daughter because she was dressing "too western"
Thanks EdifyingG ... I was not going to look up all that ... pretty much sums things up
jiggie2g
Jul 12, 12:51 PM
Smallish mid-tower case
Intel Core 2 Duo @ 2.8Ghz or better
1GB RAM
1-PCIe x16 Slot
1-Standard PCI Slot
6-USB 2.0 ports (One in front)
1- Firewire 800 port (in front)
Dual Layer DVD
Onboard 10/100/1000 (I don't care if its wireless, but a wireless opition would be nice but not necessary)
Graphics Card should be x1600XT or better with 256mb RAM
I want it at or less than $1199.00
Now gimmie
Oh, and P.S. - Don't make me put a Dell 24" LCD on it - Drop the 23" cinema display to $999 and the 20" to $599 - that still leaves you with a nice premium.
Sure u can buy a Tower with those specs(save 4 FW800) I'd rather have eSATA 2(faster). at less $1199.00 except that PC will have a Gateway/HP/Dell logo on it , instead of that cute little Apple. Would u like that Order Supersized... keep dreaming.
I am now convinced that many people who post in these forums are stupid(not refering to u sbarton) , If half these dumb comments went up on Xtremesystems/THG/Anandtech Forums people would get laughed at right out of the forums. Please if you do not have any sort of technical knowledge please do not post ignorant comments about how conroe deserves to go into an iMac and MacPro is too good for it.
I find it very disturbing that while many of the forums I just mentioned are salivating for conroe chips to hit retail , the mac snobs in this forum act like it's some bastardized step child to woodcrest. Lets me tell you noob's something after seeing Coolaler hit 4ghz on a Kentsfield nothing impresses me anymore. lets see your MacPro score 2000 in Cinebench and render in 11secs.
I can't wait till august so when i get my Conore i can break all your hearts. when u see my Conroe clock up at 3.6ghz and blow that overpriced MacPro trash out of the water. Then please tell me that Core 2 belongs in an iMac.
I swear you people deserve to be stuck with IBM/Freescale for another 5yrs.
because the price difference is not that much and it saves apple more on design/engineering/testing/support ect. it makes great financial sense to consolidate your product line into one platform.
I am very disappointed in you Hector , you of all people should know better then to post something like this. Do u not realise that the Intel deal ment apple dosen't have to do it's own R&D anymore when it came to chip sets.
APPLE IS USING INTEL STOCK PARTS incase you didn't know , so mixing the MacPro with Conroe/Woody would not cost a dime more. they will use a basic P965 chipset for Conroe and 5000X Chipset for Woody.
Intel Core 2 Duo @ 2.8Ghz or better
1GB RAM
1-PCIe x16 Slot
1-Standard PCI Slot
6-USB 2.0 ports (One in front)
1- Firewire 800 port (in front)
Dual Layer DVD
Onboard 10/100/1000 (I don't care if its wireless, but a wireless opition would be nice but not necessary)
Graphics Card should be x1600XT or better with 256mb RAM
I want it at or less than $1199.00
Now gimmie
Oh, and P.S. - Don't make me put a Dell 24" LCD on it - Drop the 23" cinema display to $999 and the 20" to $599 - that still leaves you with a nice premium.
Sure u can buy a Tower with those specs(save 4 FW800) I'd rather have eSATA 2(faster). at less $1199.00 except that PC will have a Gateway/HP/Dell logo on it , instead of that cute little Apple. Would u like that Order Supersized... keep dreaming.
I am now convinced that many people who post in these forums are stupid(not refering to u sbarton) , If half these dumb comments went up on Xtremesystems/THG/Anandtech Forums people would get laughed at right out of the forums. Please if you do not have any sort of technical knowledge please do not post ignorant comments about how conroe deserves to go into an iMac and MacPro is too good for it.
I find it very disturbing that while many of the forums I just mentioned are salivating for conroe chips to hit retail , the mac snobs in this forum act like it's some bastardized step child to woodcrest. Lets me tell you noob's something after seeing Coolaler hit 4ghz on a Kentsfield nothing impresses me anymore. lets see your MacPro score 2000 in Cinebench and render in 11secs.
I can't wait till august so when i get my Conore i can break all your hearts. when u see my Conroe clock up at 3.6ghz and blow that overpriced MacPro trash out of the water. Then please tell me that Core 2 belongs in an iMac.
I swear you people deserve to be stuck with IBM/Freescale for another 5yrs.
because the price difference is not that much and it saves apple more on design/engineering/testing/support ect. it makes great financial sense to consolidate your product line into one platform.
I am very disappointed in you Hector , you of all people should know better then to post something like this. Do u not realise that the Intel deal ment apple dosen't have to do it's own R&D anymore when it came to chip sets.
APPLE IS USING INTEL STOCK PARTS incase you didn't know , so mixing the MacPro with Conroe/Woody would not cost a dime more. they will use a basic P965 chipset for Conroe and 5000X Chipset for Woody.
edifyingGerbil
Apr 22, 08:57 PM
Because it's harder to imagine that an intelligent designer had a hand in it than it is to imagine that everything happened by chance?
It depends on what you believe about the universe. Do you believe the universe is infinite in size? If so then the odds of life being created spontaneously, no matter how high, are immaterial.
If you believe that there is only one universe and it's finite and it is the only universe to have ever existed and the only one to ever exist then the odds do matter.
But it's all conjecture anyway, we don't know how many universes existed before us that didn't have intelligent life develop in them, nor will we ever know how many will come after our current universe.
It depends on what you believe about the universe. Do you believe the universe is infinite in size? If so then the odds of life being created spontaneously, no matter how high, are immaterial.
If you believe that there is only one universe and it's finite and it is the only universe to have ever existed and the only one to ever exist then the odds do matter.
But it's all conjecture anyway, we don't know how many universes existed before us that didn't have intelligent life develop in them, nor will we ever know how many will come after our current universe.