Pants
Oct 9, 12:11 PM
Originally posted by gopher
[B]Spec fp is extremely biased because it assumes the case of zero error code. It doesn't measure raw performance like floating point calculations per second does. When errors occur in code, the Pentium grinds to a halt, sometimes even making the Pentium IV slower than the Pentium III that is a whole Ghz slower!
yes, but your assuming that
When RC5 and Genentech tests prove that raw performance the G4 is much faster than the Pentium IV or AMD, which it does, then it basically throws out the whole idea that Mhz matters. The G4 is 4 to 5 times faster.
As for hand optimizing code, you don't have to do it. What you do have to do is write developers of your software if you are displeased with how poorly they optimize code, or go seek better written software. That's why people who do video prefer Final Cut Pro over Adobe Premier in many cases.
what when the altivec unit gets starved of data?
Im talking from a 'doing' point of view - when a machine i have spent 2.5k wont allow me to use its best feature (with gcc) then i feel cheated.
[B]Spec fp is extremely biased because it assumes the case of zero error code. It doesn't measure raw performance like floating point calculations per second does. When errors occur in code, the Pentium grinds to a halt, sometimes even making the Pentium IV slower than the Pentium III that is a whole Ghz slower!
yes, but your assuming that
When RC5 and Genentech tests prove that raw performance the G4 is much faster than the Pentium IV or AMD, which it does, then it basically throws out the whole idea that Mhz matters. The G4 is 4 to 5 times faster.
As for hand optimizing code, you don't have to do it. What you do have to do is write developers of your software if you are displeased with how poorly they optimize code, or go seek better written software. That's why people who do video prefer Final Cut Pro over Adobe Premier in many cases.
what when the altivec unit gets starved of data?
Im talking from a 'doing' point of view - when a machine i have spent 2.5k wont allow me to use its best feature (with gcc) then i feel cheated.
Sodner
Mar 18, 12:39 PM
LOL yeah Right,
I have dealt with the president of At&t on a serious matter this past year.
I will not get into what Apple does to At&t but it was over my Iphone
anyway, I do not make such calls or demands on At&t and in fact I like at&t over Verizon.
But if you advertise unlimited as At&t does and did, it should be unlimited no matter what (Slimey) lawyer drafts a document meant to swindle people is signed.
more...
for Sportsmanship on Men#39;s
more...
She is also a supporter of gay
a supporter of the party,
more...
a handful of men,
I have dealt with the president of At&t on a serious matter this past year.
I will not get into what Apple does to At&t but it was over my Iphone
anyway, I do not make such calls or demands on At&t and in fact I like at&t over Verizon.
But if you advertise unlimited as At&t does and did, it should be unlimited no matter what (Slimey) lawyer drafts a document meant to swindle people is signed.
more...
SactoGuy18
Mar 14, 07:47 AM
My opinion: it's time to end the age of light-water cooled pressurized uranium-fueled reactors. There's so many drawbacks to this design it's not funny.
Meanwhile, the new liquid fluoride thorium reactor (LFTR) is a vastly superior design that offers these advantages:
1) It uses thorium 232, which is 200 times more abundant than fuel-quality uranium.
2) The thorium fuel doesn't need to be made into fuel pellets like you need with uranium-235, substantially cutting the cost of fuel production.
3) The design of LFTR makes it effectively meltdown proof.
4) LFTR reactors don't need big cooling towers or access to a large body of water like uranium-fueled reactors do, substantially cutting construction costs.
5) You can use spent uranium fuel rods as part of the fuel for an LFTR.
6) The radioactive waste from an LFTR generated is a tiny fraction of what you get from a uranium reactor and the half-life of the waste is only a couple of hundred years, not tens of thousands of years. This means waste disposal costs will be a tiny fraction of disposing waste from a uranium reactor (just dump it into a disused salt mine).
So what are we waiting for?
Meanwhile, the new liquid fluoride thorium reactor (LFTR) is a vastly superior design that offers these advantages:
1) It uses thorium 232, which is 200 times more abundant than fuel-quality uranium.
2) The thorium fuel doesn't need to be made into fuel pellets like you need with uranium-235, substantially cutting the cost of fuel production.
3) The design of LFTR makes it effectively meltdown proof.
4) LFTR reactors don't need big cooling towers or access to a large body of water like uranium-fueled reactors do, substantially cutting construction costs.
5) You can use spent uranium fuel rods as part of the fuel for an LFTR.
6) The radioactive waste from an LFTR generated is a tiny fraction of what you get from a uranium reactor and the half-life of the waste is only a couple of hundred years, not tens of thousands of years. This means waste disposal costs will be a tiny fraction of disposing waste from a uranium reactor (just dump it into a disused salt mine).
So what are we waiting for?
more...
javajedi
Oct 11, 06:30 PM
Originally posted by javajedi
What you are saying makes a lot of sense. Now that I think about, I too recall reading this somewhere.
Now that we know the real truth about the "better standard FPU", I thought it was time to shed some light on non vectorized G4 integer processing.
It still does 200,000,000 calculations, but this time I'm multiplying ints.
Motorola 7455 G4@800Mhz: 9 seconds (Native)
IBM 750FX G3@700Mhz: 7 seconds (Native)
Intel P4@2600Mhz 2 seconds (Java)
PowerPC 7455 integer processing is consierabley better than floating point (obviously less work doing ints), but still less per cycle than the Pentium 4.
Very intresting the G4 looses both floating point and integer to the IBM chip, at a 100MHz clock disadvantage.
I'm still waiting to see that "better standard FPU" in the G4. It seems the G4 is absolutely useless unless you are fortunate to have vectorized (AltiVec) code.
Alex, yeah, the native version was compiled under 3.1. It really is interesting to note that despite the 750FX's 100MHz clock disadvantage, it is able to outperform it by 22%. Since there is a 13% difference in clock speed, and if clocks were equal, the 750FX is technically 25% more efficient in scalar integer. I should also re-emphasize that I never bothered compiling the test natively for x86, I left it java, so it's not out of the question the P4 could do this in 1 second - and that is *NOT* using any vector libraries, just plain old integer math.
I've found some documentation on the Altivec C programming interface, and this weekend I'm going to make a first attempt at vectorizing it. The integer test should be no problem, but my FPMathTest app that did square roots will be more difficult. With Altivec, there is not recognized double precision floating point, so this complicates doing square roots. If you want more accurate, precision square roots, you have to do Newton Raphson refinement. In other words more ************ you have to go through. I believe in SSE2 you have double precision floating point ops, and if you were to vectorize it, you wouldn't have to compensate for this.
Another theory as to why the P4 is scoring so good is because if I'm not mistaking (and I'm not), the P4's ALU runs at double its clock. So in my case, 5.6GHz. I'm sure this relates to the issue.
I don't know how true this is, but I wouldn't be suprised if there is some truth to it, surely some food for thought:
http://www.osopinion.com/perl/story/17368.html
The G4 was just a hacked-up G3 with AltiVec and an FPU (floating point unit) borrowed from the outdated 604
If this is the case, then no wonder why we are getting these abysmal scores, and no wonder why a 400mhz Celeron can nearly equal it, and no wonder why the 750FX can outperform it (different company, different fpu)
What you are saying makes a lot of sense. Now that I think about, I too recall reading this somewhere.
Now that we know the real truth about the "better standard FPU", I thought it was time to shed some light on non vectorized G4 integer processing.
It still does 200,000,000 calculations, but this time I'm multiplying ints.
Motorola 7455 G4@800Mhz: 9 seconds (Native)
IBM 750FX G3@700Mhz: 7 seconds (Native)
Intel P4@2600Mhz 2 seconds (Java)
PowerPC 7455 integer processing is consierabley better than floating point (obviously less work doing ints), but still less per cycle than the Pentium 4.
Very intresting the G4 looses both floating point and integer to the IBM chip, at a 100MHz clock disadvantage.
I'm still waiting to see that "better standard FPU" in the G4. It seems the G4 is absolutely useless unless you are fortunate to have vectorized (AltiVec) code.
Alex, yeah, the native version was compiled under 3.1. It really is interesting to note that despite the 750FX's 100MHz clock disadvantage, it is able to outperform it by 22%. Since there is a 13% difference in clock speed, and if clocks were equal, the 750FX is technically 25% more efficient in scalar integer. I should also re-emphasize that I never bothered compiling the test natively for x86, I left it java, so it's not out of the question the P4 could do this in 1 second - and that is *NOT* using any vector libraries, just plain old integer math.
I've found some documentation on the Altivec C programming interface, and this weekend I'm going to make a first attempt at vectorizing it. The integer test should be no problem, but my FPMathTest app that did square roots will be more difficult. With Altivec, there is not recognized double precision floating point, so this complicates doing square roots. If you want more accurate, precision square roots, you have to do Newton Raphson refinement. In other words more ************ you have to go through. I believe in SSE2 you have double precision floating point ops, and if you were to vectorize it, you wouldn't have to compensate for this.
Another theory as to why the P4 is scoring so good is because if I'm not mistaking (and I'm not), the P4's ALU runs at double its clock. So in my case, 5.6GHz. I'm sure this relates to the issue.
I don't know how true this is, but I wouldn't be suprised if there is some truth to it, surely some food for thought:
http://www.osopinion.com/perl/story/17368.html
The G4 was just a hacked-up G3 with AltiVec and an FPU (floating point unit) borrowed from the outdated 604
If this is the case, then no wonder why we are getting these abysmal scores, and no wonder why a 400mhz Celeron can nearly equal it, and no wonder why the 750FX can outperform it (different company, different fpu)
jiggie2g
Jul 12, 05:38 PM
Merom will underperform a Conroe under equal high loads because of thermal constraints (in unmodified systems).
prove it. links , otherwise this is FUD.
prove it. links , otherwise this is FUD.
more...
AidenShaw
Sep 21, 11:15 AM
...you have a Tivo - you have made the decision to keep your recorded TV media in its traditional place - the living room / den.
The iTV concept starts from the premis that this is an outdated concept.
You have some interesting points, but for some people there are other considerations....
Men#39;s Supporter
suits for men in need drew
Nike Toulouse Team Supporters
more...
Justin, is a great supporter
more...
#39;Decapitated#39; hunt supporter
more...
supporter of the Snake Men
more...
support both of these men,
more...
A colourful supporter of
more...
Meg supporter needs a click
more...
BIKE NYLON Adult Supporter
more...
Under Armour Men#39;s Performance
Men#39;s Final Australian Open
RFU Team Men#39;s Rugby Polo
more...
more...
more...
The iTV concept starts from the premis that this is an outdated concept.
You have some interesting points, but for some people there are other considerations....
odedia
Sep 20, 06:11 AM
For 300$, it'll only have a tiny hard drive for caching large h.264 videos on the iTV itself instead of continuesly streaming it over the Wi-Fi.
I am pretty darn sure that iTV will be able to play ANY quicktime video. Meaning - in order to playback other formats, like DivX, just download the quicktime Codec.
I am pretty darn sure that iTV will be able to play ANY quicktime video. Meaning - in order to playback other formats, like DivX, just download the quicktime Codec.
Huntn
Apr 27, 09:16 PM
Huntn, please show me some evidence for what you're saying. Then I'll tell you what I think of it. Meanwhile, I should admit that the Bible's original manuscripts no longer exist, and there are copyists' mistakes in the existing copies. There are mistranslations in at least some Bible translations. Take Matthew 24:24 in the King James Version. It's ungrammatical (http://www.biblegateway.com/passage/?search=Matthew%2024:24&version=KJV). But I still need you to give us some evidence that, for example, some tendentious ancient people tampered with Bible passages.
I think you misunderstand what I am saying. While translations are very susceptible to being tampered with especially when a church hierarchy with an agenda is involved, that is not my primary focus. The focus is what validity do ancient scripts have as truth just because they exist? I may be able to give a possible example. Jesus is central to the New Testament, but according to a History Channel Show, there are no city records in the Middle East that confirm the existence of Christ. Is this fact or fiction? I don't know, but I have reason to wonder about it.
I saw the Lourdes video and have to ask, has there been verified in any meaningful way? If so, there should be a substantial evidence, maybe a list of those who have been healed, hopefully with some documentation.
As I said elsewhere there is no moral equivalence. It took Augustine's and Aquinas' great rambling treatises to justify warfare, for instance.
In the Qur'an and the Hadith war is encouraged and its virtues extolled.
I wish people would stop trying to equate the wars of Christianity (and of that mainly Western Christianity) with Islam's modern terrorism and calls for warfare against the infidel.
In Islamic Law non-muslims are considered najiss, that means ritually impure, down to our souls, our essences. Christians are reviled especially because they practice "shirk", a law forbidding the joining of others to allah. Jews are designated as apes and pigs in the Qur'an.
there is no equivalence between Islam and Christianity.
I agree that today's radial Islam is dissimilar to modern Christianity, but Christianity has blood on his hands and is still involved in power and control although not to extent of blatantly murdering those with different views.
I think you misunderstand what I am saying. While translations are very susceptible to being tampered with especially when a church hierarchy with an agenda is involved, that is not my primary focus. The focus is what validity do ancient scripts have as truth just because they exist? I may be able to give a possible example. Jesus is central to the New Testament, but according to a History Channel Show, there are no city records in the Middle East that confirm the existence of Christ. Is this fact or fiction? I don't know, but I have reason to wonder about it.
I saw the Lourdes video and have to ask, has there been verified in any meaningful way? If so, there should be a substantial evidence, maybe a list of those who have been healed, hopefully with some documentation.
As I said elsewhere there is no moral equivalence. It took Augustine's and Aquinas' great rambling treatises to justify warfare, for instance.
In the Qur'an and the Hadith war is encouraged and its virtues extolled.
I wish people would stop trying to equate the wars of Christianity (and of that mainly Western Christianity) with Islam's modern terrorism and calls for warfare against the infidel.
In Islamic Law non-muslims are considered najiss, that means ritually impure, down to our souls, our essences. Christians are reviled especially because they practice "shirk", a law forbidding the joining of others to allah. Jews are designated as apes and pigs in the Qur'an.
there is no equivalence between Islam and Christianity.
I agree that today's radial Islam is dissimilar to modern Christianity, but Christianity has blood on his hands and is still involved in power and control although not to extent of blatantly murdering those with different views.
Applespider
Mar 20, 04:48 PM
The trouble with DRM is that it often affects the average Joe consumer more than it hurts those it's intended to stop.
CDs that don't play in a PC annoy Joe Public who buys a CD and wants to listen to it on his office PC while at work. The guy who planned on pirating it can easily get round the DRM and go on his merry way.
DRM embedded in iTunes annoy Joe Public who burned a track onto his wedding video and now can't distribute it to the wedding guests without working out an authorise/deauthorise schedule.
The record companies assume everyone is out to be a criminal while the 'criminals' don't bother buying DRMed files or strip out protection and do what they want so just as many files end up on P2P networks and on dodgy CDs on street corners.
CDs that don't play in a PC annoy Joe Public who buys a CD and wants to listen to it on his office PC while at work. The guy who planned on pirating it can easily get round the DRM and go on his merry way.
DRM embedded in iTunes annoy Joe Public who burned a track onto his wedding video and now can't distribute it to the wedding guests without working out an authorise/deauthorise schedule.
The record companies assume everyone is out to be a criminal while the 'criminals' don't bother buying DRMed files or strip out protection and do what they want so just as many files end up on P2P networks and on dodgy CDs on street corners.
more...
Mord
Jul 12, 05:00 PM
This thread is getting too funny. Apple has been so far behind on power these past few years and now we get the chance to use Conroe, and suddenly that's not good enough for the Mac snobs. Conroe is an extremely fast chip (especially compared to G5), so I don't get why some people think it's a bad choice for the pro-line up. Sure, it can't do smp, but not everyone needs or want to pay for quad processing.
So, aside from the ability to do multiple processing, what advantages does Woodcrest have that make it mandatory to go in the pro-line? How much "faster" is it going to be over the Conroe? It's my understanding that they are identical in that respect.
if you don't need all the power you can get the mac pro is not for you, apple does not do a consumer tower and most likely never will, they simply must have a quad settup and if they have two configs of them (a 3GHz and a 2.66) they may as well keep the low end option on the same platform, this has been said again and again and again, conroe is not bad it just does not make sense for apple to use it in the mac pro, conroe goes in the imac.
So, aside from the ability to do multiple processing, what advantages does Woodcrest have that make it mandatory to go in the pro-line? How much "faster" is it going to be over the Conroe? It's my understanding that they are identical in that respect.
if you don't need all the power you can get the mac pro is not for you, apple does not do a consumer tower and most likely never will, they simply must have a quad settup and if they have two configs of them (a 3GHz and a 2.66) they may as well keep the low end option on the same platform, this has been said again and again and again, conroe is not bad it just does not make sense for apple to use it in the mac pro, conroe goes in the imac.
more...
Bill McEnaney
Mar 27, 07:10 AM
Compared to the alternative, it certainly seems to be.
[source: human history]
Compared to what alternative?
[source: human history]
Compared to what alternative?
more...
macenforcer
Jul 12, 12:17 AM
I hate to say it but since I got my macbook black I have been using winxp and not osx. XP runs faster, is compatible with all apps like photoshop and office natively and runs perfectly. I have been very impressed. So impressed that I decided to build a core 2 duo desktop from newegg and I did it for Under $900. Now lets see apple top that pricing. (core 2 duo chip on order from buy.com)
Sorry but I think I have lost hope for OS X. I got the media center edition OS with the new computer I am building with dual tuner TV card. Watching tv via my xbox 360 is a dream. Mac will never be able to accomplish this task. Front row sucks.
If I bought a new mac pro (which I won't because its going to be a rippoff) I would just run XP on it.
For instance, I got two Radeon 16xPCIe X1600xt supporting crossfire with 512mb ram each from newegg for $120 each. Everything is just cheaper.
After a while you get to a point in your work where you realize seeing the neat apple OS is just not that important. Not when you can run crappy XP (which sorry to disappoint never crashes) for 1/3rd the price and 4x the speed.
Comon apple, make a media center mac and figure out a way to use PC graphics cards. After spending $500 on my Radeon 800xt with 256mb ram I wil l NEVER do it again. Not when I can get dual crossfire cards for half the price and 4x the performance.
I guess I am a half reverse switcher. Using macbook pro but XP only. LOL!
Sorry but I think I have lost hope for OS X. I got the media center edition OS with the new computer I am building with dual tuner TV card. Watching tv via my xbox 360 is a dream. Mac will never be able to accomplish this task. Front row sucks.
If I bought a new mac pro (which I won't because its going to be a rippoff) I would just run XP on it.
For instance, I got two Radeon 16xPCIe X1600xt supporting crossfire with 512mb ram each from newegg for $120 each. Everything is just cheaper.
After a while you get to a point in your work where you realize seeing the neat apple OS is just not that important. Not when you can run crappy XP (which sorry to disappoint never crashes) for 1/3rd the price and 4x the speed.
Comon apple, make a media center mac and figure out a way to use PC graphics cards. After spending $500 on my Radeon 800xt with 256mb ram I wil l NEVER do it again. Not when I can get dual crossfire cards for half the price and 4x the performance.
I guess I am a half reverse switcher. Using macbook pro but XP only. LOL!
more...
Liquorpuki
Mar 14, 08:50 PM
That might be my point.
What's your point? Circular reasoning?
That's like arguing the problem with medicine is that the patients are diagnosed by doctors
The problem with education is the students are taught by teachers
etc
What's your point? Circular reasoning?
That's like arguing the problem with medicine is that the patients are diagnosed by doctors
The problem with education is the students are taught by teachers
etc
more...
Beric
Mar 12, 03:19 AM
Japan quake: 'Explosion heard' at nuclear power plant
http://tvde.web.infoseek.co.jp/cgi-bin/jlab-dat/k/s/dat1299916395109.jpg
http://www.bbc.co.uk/news/world-asia-pacific-12720219
An explosion has been heard from a Japanese nuclear power plant hit by Friday's devastating earthquake.
Reports said smoke was seen coming from the plant at Fukushima and several workers were injured.
Japanese officials fear a meltdown at one of the plant's reactors after radioactive material was detected outside it.
http://i8.photobucket.com/albums/a23/milli_vanilli1/fallout.jpg
OMG.
Yes.=, that map is a worst-case scenario.
Video of explosion:
http://www.youtube.com/watch?v=pg4uogOEUrU&feature=player_embedded
http://tvde.web.infoseek.co.jp/cgi-bin/jlab-dat/k/s/dat1299916395109.jpg
http://www.bbc.co.uk/news/world-asia-pacific-12720219
An explosion has been heard from a Japanese nuclear power plant hit by Friday's devastating earthquake.
Reports said smoke was seen coming from the plant at Fukushima and several workers were injured.
Japanese officials fear a meltdown at one of the plant's reactors after radioactive material was detected outside it.
http://i8.photobucket.com/albums/a23/milli_vanilli1/fallout.jpg
OMG.
Yes.=, that map is a worst-case scenario.
Video of explosion:
http://www.youtube.com/watch?v=pg4uogOEUrU&feature=player_embedded
more...
darkplanets
Mar 13, 02:32 PM
And this is what I dislike about the pro-nuclear rhetoric. This is not true at all. Geo thermal energy. Cleaner, cheaper, safer than nuclear by magnitudes.
A nuclear power station is just a steam turbine fueled by poisonous rocks instead of carbonized trees as a heat source. I believe the iPad app version of Popular Science has an illustrated article about an test plant using geothermal heat instead to run steam turbines.
You are correct in point, yes. The reason I didn't mention geothermal is due to location-- not everyone has access to this easily. Iceland has quite a few geothermal plants. If people in the US weren't so picky about the giant volcano called Yellowstone, there could be an abundance of geothermal power in that area as well. Another alternative is hydroelectric, which also works rather well, however the same environmental groups that dislike nuclear also despise this because it "ruins the river," and the "poor fish can't mate." Of course there's ways around this, but people will be people.
I'm not against alternative energy at all, I just don't think it will supply all of our energy needs for some time, and that nuclear energy can safely fill that stop gap.
As per the typical anti-nuclear sentiment; much of these issues can be resolved rather easily. New reactor designs are far safer, and if you really want safety (as in you can't melt down, ever) then PBR or MSR with thorium is the way to go. Waste an issue? Shouldn't be-- the US needs to complete the fuel cycle with breeder reactors. Furthermore, spent fuel rods can be used locally for power via thermal couples-- this is how NASA powers most of it's spacecraft. As thermal couple efficiency increases, this will become a much more viable solution. If thorium is used (and it should be), the overall lifespan of the byproducts is greatly decreased, meaning waste is even less of an issue.
A nuclear power station is just a steam turbine fueled by poisonous rocks instead of carbonized trees as a heat source. I believe the iPad app version of Popular Science has an illustrated article about an test plant using geothermal heat instead to run steam turbines.
You are correct in point, yes. The reason I didn't mention geothermal is due to location-- not everyone has access to this easily. Iceland has quite a few geothermal plants. If people in the US weren't so picky about the giant volcano called Yellowstone, there could be an abundance of geothermal power in that area as well. Another alternative is hydroelectric, which also works rather well, however the same environmental groups that dislike nuclear also despise this because it "ruins the river," and the "poor fish can't mate." Of course there's ways around this, but people will be people.
I'm not against alternative energy at all, I just don't think it will supply all of our energy needs for some time, and that nuclear energy can safely fill that stop gap.
As per the typical anti-nuclear sentiment; much of these issues can be resolved rather easily. New reactor designs are far safer, and if you really want safety (as in you can't melt down, ever) then PBR or MSR with thorium is the way to go. Waste an issue? Shouldn't be-- the US needs to complete the fuel cycle with breeder reactors. Furthermore, spent fuel rods can be used locally for power via thermal couples-- this is how NASA powers most of it's spacecraft. As thermal couple efficiency increases, this will become a much more viable solution. If thorium is used (and it should be), the overall lifespan of the byproducts is greatly decreased, meaning waste is even less of an issue.
more...
firestarter
Mar 13, 02:49 PM
NO nuclear.
Problem is that you (or I) don't get to choose who uses nuclear.
- We can't stop Russia using unsafe reactors, or having poor security around them.
- We can't stop nuclear programs in India, Pakistan, Iran etc.
- We can't stop countries like Japan building power stations on fault lines.
All we can decide is whether we build them ourselves. We have a very real fuel crisis that manifests itself in war and terrorism, and will only get worse.
We can build our own nuclear power stations based on modern designs, in well guarded facilities away from seismic activity. If we choose not to, we face the worst of both worlds... we have all the downside of 'bad nuclear power' elsewhere coupled with the worsening ramifications of an oil crisis.
Problem is that you (or I) don't get to choose who uses nuclear.
- We can't stop Russia using unsafe reactors, or having poor security around them.
- We can't stop nuclear programs in India, Pakistan, Iran etc.
- We can't stop countries like Japan building power stations on fault lines.
All we can decide is whether we build them ourselves. We have a very real fuel crisis that manifests itself in war and terrorism, and will only get worse.
We can build our own nuclear power stations based on modern designs, in well guarded facilities away from seismic activity. If we choose not to, we face the worst of both worlds... we have all the downside of 'bad nuclear power' elsewhere coupled with the worsening ramifications of an oil crisis.
more...
javajedi
Oct 8, 04:20 PM
Originally posted by Backtothemac
Why is the PC faster? It is the OS, not the processor. Windblows uses .dll's Dynamic link libraries. They allow programs to load 2.only what is needed (GUI, and primary API's) and then load pieces of the program as the user uses it. Macs on the other hand load all of the program into memory because, Mac's don't use dll files. So. It takes longer to load a program on a Mac, however once loaded the program will actually perform faster.
As far as Macs being slower at everything. Dude, you obviously have not put a PowerBook up against a PC based notebook recentlly have you? See we sell IBM and Apple. We recently put my 667 up against a 2.0GHZ IBM laptop. The 667 was faster at everything in photoshop than the PC, encoded MP3's faster, and the only it did slower was render HTML. Now you say how much faster? Doesn't matter. If it was .1 seconds faster, it still shows the superiority of the PPC design.
Sure OS X is a 25 year old architecture. My reference is to the flaws of the X86 vs the PPC architecture. If you would like to discuss the flaws in Windows compared to OSX. Well, arn would have to make a dedicated topic for us to discuss it.
Macs run slower than winblows machines. So what. Would you really like to run winblows fast? That would be cool. Sure my machine goes 2.8GHZ, but it crashes once a day. I have never crashed X. Not even when it was a PB. Oh, and btw. I am an MCP, and Apple certified, so yes, I do know what I am talking about.
Come on.. lets get real..
1) Macs don't use shared libraries? You must be using System 6. For the folks who aren't familiar with the concept of the shared library (what Microsoft calls a dynamic link library) simply put shared libs are object orientated pieces of code containing functions/methods and other objects that can be invoked upon from other code. Mac OS X being highly object orientated relies almost exclusively on shared libraries. In the modern world of software engineering we rarely find it necessary to statically build an executable. If you look back at OS 7/8/9, while not as much as 10, developers could take advantage of off the shelf code. (eg, sprockets, mp lib, etc). Also you are not accurate in saying OS X is a 25 year old archiecture.
1.5) Microsoft OS's that use versions of the Windows 2000 kernel (2000 itself and XP) just like Mach, have a hardware abstraction layer. The "DLL Hell" days (Windows ME and below) are over. This is no longer an issue with the new kernel. The fact of the matter is that my P4 2.8 machine running XP is equally as stable as my PowerBook G4 800 running Mac OS X. I have not *ONCE* had either one core dump or "blue screen". Sure programs screw up, and when they do, they die, not the OS. Both OS's are very mature.
2.) I have *literally* put my PC up against my PowerBook, and the PowerBook fails miserably. I've wrote a simple stopwatch Java application that iterate through floating point instructions, and if I my PC finished 2.5 times faster than the PowerBook. If you want more details (hell I'll even give you the code) of my app, I'll be glad to share it with the community. Playing/decoding MP3's faster on the Mac? No way in hell. Winamp uses 0-1% CPU, iTunes consumes 8-12%.
3.) You speak of flaws of the "x86 architecture" but do not provide us specifics as to why you say this. The x86 processor began in the late 70's when Intel first offered the 8086 as a CISC successor to it's 4004 line of processors. Many, many things have changed over the course of 20 years. Had they sit still (like the G4/motorola chip) intel wouldn't be selling products today, now would they? The G4 is not much more than an improved G3 series processor with vector processing instructions. Be honest (especially be honest to yourself!) if you look back and compare the G3/G4, you do see improvements, but not drastic improvements. More clock, the maxbus protocol (debatable), and more cache. One of the reasons why you see Apple adding cache like mad to it's recent products is because they are in between a rock and hard place with this Motorola chip. This is exactly the same approach AMD took with their failing processor, the K5/K6. I want you to contrast this to a P4 with an i850e chipset: Insanely high clock speeds, a 533mhz bus, fast memory with RIMMs @ 4.2GB/s, with a next stop of 9.6GB/s -- to MaxBus. You will soon see why the current generation of PowerPC processors is "inferior", dare I say it.
For the most part I think its fare to say that the current Macintosh hardware performance is �status-quo�. The current best of breed of Macintoshes are slower than the current best of bread PCs. Mac�s are slower - just accept it. I don�t like it any more than you do.
Why is the PC faster? It is the OS, not the processor. Windblows uses .dll's Dynamic link libraries. They allow programs to load 2.only what is needed (GUI, and primary API's) and then load pieces of the program as the user uses it. Macs on the other hand load all of the program into memory because, Mac's don't use dll files. So. It takes longer to load a program on a Mac, however once loaded the program will actually perform faster.
As far as Macs being slower at everything. Dude, you obviously have not put a PowerBook up against a PC based notebook recentlly have you? See we sell IBM and Apple. We recently put my 667 up against a 2.0GHZ IBM laptop. The 667 was faster at everything in photoshop than the PC, encoded MP3's faster, and the only it did slower was render HTML. Now you say how much faster? Doesn't matter. If it was .1 seconds faster, it still shows the superiority of the PPC design.
Sure OS X is a 25 year old architecture. My reference is to the flaws of the X86 vs the PPC architecture. If you would like to discuss the flaws in Windows compared to OSX. Well, arn would have to make a dedicated topic for us to discuss it.
Macs run slower than winblows machines. So what. Would you really like to run winblows fast? That would be cool. Sure my machine goes 2.8GHZ, but it crashes once a day. I have never crashed X. Not even when it was a PB. Oh, and btw. I am an MCP, and Apple certified, so yes, I do know what I am talking about.
Come on.. lets get real..
1) Macs don't use shared libraries? You must be using System 6. For the folks who aren't familiar with the concept of the shared library (what Microsoft calls a dynamic link library) simply put shared libs are object orientated pieces of code containing functions/methods and other objects that can be invoked upon from other code. Mac OS X being highly object orientated relies almost exclusively on shared libraries. In the modern world of software engineering we rarely find it necessary to statically build an executable. If you look back at OS 7/8/9, while not as much as 10, developers could take advantage of off the shelf code. (eg, sprockets, mp lib, etc). Also you are not accurate in saying OS X is a 25 year old archiecture.
1.5) Microsoft OS's that use versions of the Windows 2000 kernel (2000 itself and XP) just like Mach, have a hardware abstraction layer. The "DLL Hell" days (Windows ME and below) are over. This is no longer an issue with the new kernel. The fact of the matter is that my P4 2.8 machine running XP is equally as stable as my PowerBook G4 800 running Mac OS X. I have not *ONCE* had either one core dump or "blue screen". Sure programs screw up, and when they do, they die, not the OS. Both OS's are very mature.
2.) I have *literally* put my PC up against my PowerBook, and the PowerBook fails miserably. I've wrote a simple stopwatch Java application that iterate through floating point instructions, and if I my PC finished 2.5 times faster than the PowerBook. If you want more details (hell I'll even give you the code) of my app, I'll be glad to share it with the community. Playing/decoding MP3's faster on the Mac? No way in hell. Winamp uses 0-1% CPU, iTunes consumes 8-12%.
3.) You speak of flaws of the "x86 architecture" but do not provide us specifics as to why you say this. The x86 processor began in the late 70's when Intel first offered the 8086 as a CISC successor to it's 4004 line of processors. Many, many things have changed over the course of 20 years. Had they sit still (like the G4/motorola chip) intel wouldn't be selling products today, now would they? The G4 is not much more than an improved G3 series processor with vector processing instructions. Be honest (especially be honest to yourself!) if you look back and compare the G3/G4, you do see improvements, but not drastic improvements. More clock, the maxbus protocol (debatable), and more cache. One of the reasons why you see Apple adding cache like mad to it's recent products is because they are in between a rock and hard place with this Motorola chip. This is exactly the same approach AMD took with their failing processor, the K5/K6. I want you to contrast this to a P4 with an i850e chipset: Insanely high clock speeds, a 533mhz bus, fast memory with RIMMs @ 4.2GB/s, with a next stop of 9.6GB/s -- to MaxBus. You will soon see why the current generation of PowerPC processors is "inferior", dare I say it.
For the most part I think its fare to say that the current Macintosh hardware performance is �status-quo�. The current best of breed of Macintoshes are slower than the current best of bread PCs. Mac�s are slower - just accept it. I don�t like it any more than you do.
furqan8421
Apr 9, 10:58 AM
Why are people being defensive and bringing up a few examples like final fantasy 3? These games are not the norm. Look at the top downloads list in the app store to get a good idea of what most games are.
iOS games are fine, but the majority of them really are time wasters. The only real advantage most iOS games have is that they are much cheaper than on portable systems or console games.
For most popular games though the experience isn't nearly good enough. The most popular games on consoles are FPS, Racing games, and Sports. Without physical buttons iOS can't compete with the same genres of games. iOS is better at puzzle games where touching is preferable to moving a mouse/controller, and can be fine on RPG games especially if they are turn based.
Real racing can be fun, but enthusiasts buy steering wheels to play gran turismo and forza. It's just not the same.
iOS games are fine, but the majority of them really are time wasters. The only real advantage most iOS games have is that they are much cheaper than on portable systems or console games.
For most popular games though the experience isn't nearly good enough. The most popular games on consoles are FPS, Racing games, and Sports. Without physical buttons iOS can't compete with the same genres of games. iOS is better at puzzle games where touching is preferable to moving a mouse/controller, and can be fine on RPG games especially if they are turn based.
Real racing can be fun, but enthusiasts buy steering wheels to play gran turismo and forza. It's just not the same.
skunk
Mar 26, 02:37 PM
Ciaociao's Latin expression wasn't a phrase. It was a complete sentence that meant, "This is a sign of contradiction, brother." In the Bible "a sign of contradiction" means "someone to oppose" or "something to oppose." Our Lord was a sign of contradiction because his enemies opposed him.A sentence is also a phrase: all sentences are phrases, but not all phrases are sentences. However, frater, my Latin does not include either subcribo (unless of course he was looking up "sign" and found the word for to sign beneath or subscribe(!)), or of, or a as an indefinite article, for that matter. You could try Id est signum contradictionis, which might make slightly more sense, even in the Vatican. Actually, the id is optional. Hence dog Latin, frater.
more...
Porchland
Sep 20, 09:46 AM
Oh please, yes. For me, iTV will only truly be the final piece of the jigsaw if I can also watch my recorded (and possibly live) EyeTV content through it.
A hook-up between Apple and Elgato sounds the most natural thing. Elgato should continue to make hardware for all the various TV standards (terrestrial / cable / sat / digital / etc etc), but perhaps use some Apple desigers to make their boxes a bit more "Apple-looking". Then, Apple can take the EyeTV 2.x software and integrate it with iTunes.
To those that say that Apple won't allow this because it would hit their own TV show revenues from the iTunes store... I disagree. They'll have to give in sooner or later, because EyeTV isn't going to go away. Would iTunes/iPod have been such a success if they'd have made us purchase all our music from iTunes, even the stuff we alread had on CD?
I'm not going to pay �3 (or whatever) for an Episode of Lost if I could have recorded on EyeTV last night... especially when C4 repeat each episode about 6 times per week anyway.
Regds
SL
A lot of these questions come down to whether Apple is going to market iTV as a satellite/cable killer.
Scenario A: iTV is a way to watch movies and shows in your iTunes library and (for $1.99) watch an episode of a show you forgot to DVR or that you just really like and want to own.
Scenario B: Apple morphs its season pass feature for TV shows into a subscription service that is priced competitive to cable. Movies are available in HD for $3.99 for 24 hours.
Scenario A doesn't really give me anything I don't already have, and I'm not going to pay $299 for the privilege of buying movies for $10 that I can PPV for $4. But Scenario B gives me a way to drop my cable package altogether; it's similar to the way mobile phones allowed people to drop local phone service.
A hook-up between Apple and Elgato sounds the most natural thing. Elgato should continue to make hardware for all the various TV standards (terrestrial / cable / sat / digital / etc etc), but perhaps use some Apple desigers to make their boxes a bit more "Apple-looking". Then, Apple can take the EyeTV 2.x software and integrate it with iTunes.
To those that say that Apple won't allow this because it would hit their own TV show revenues from the iTunes store... I disagree. They'll have to give in sooner or later, because EyeTV isn't going to go away. Would iTunes/iPod have been such a success if they'd have made us purchase all our music from iTunes, even the stuff we alread had on CD?
I'm not going to pay �3 (or whatever) for an Episode of Lost if I could have recorded on EyeTV last night... especially when C4 repeat each episode about 6 times per week anyway.
Regds
SL
A lot of these questions come down to whether Apple is going to market iTV as a satellite/cable killer.
Scenario A: iTV is a way to watch movies and shows in your iTunes library and (for $1.99) watch an episode of a show you forgot to DVR or that you just really like and want to own.
Scenario B: Apple morphs its season pass feature for TV shows into a subscription service that is priced competitive to cable. Movies are available in HD for $3.99 for 24 hours.
Scenario A doesn't really give me anything I don't already have, and I'm not going to pay $299 for the privilege of buying movies for $10 that I can PPV for $4. But Scenario B gives me a way to drop my cable package altogether; it's similar to the way mobile phones allowed people to drop local phone service.
p0intblank
Sep 20, 04:38 PM
I'm really hoping this is the iPod all over again. In other words, I hope all the naysayers here get proved wrong and the iTV becomes the new toy everyone has to have in their house.
Apple needs to market this, by the way. Guaranteed there are tons of households willing to purchase this just to play photo slideshows on their TVs. I hope Apple can get the message across. I want as many people possible to recognize what a great product this is going to be.
Apple needs to market this, by the way. Guaranteed there are tons of households willing to purchase this just to play photo slideshows on their TVs. I hope Apple can get the message across. I want as many people possible to recognize what a great product this is going to be.
kugino
Sep 20, 02:18 AM
I hate to be the first to post a negative but here it is. I don't think this will be overly expensive, but I also think we will be underwhelmed with it's features. Wireless is not that important to me. There are many wires back there already. It sounds like it will not have HDMI or TiVo features, and it will play movies out of iTunes, which screams to me that it will only play .mp4 and .m4v files much like my 5G iPod. If it cannot browse my my mac or firedrive, cannot stream from them, cannot play .avi, .wmw, .rm or VCD, then it will not replace my 4 year old xbox. Which itself has a 120Gig drive and a remote. Unless we are all sorely mistaken about what iTV will end up being, and it ends up adding these features (as someone above me noted, hoping Apple would read this forum) I will wait. Honestly, I am far more excited over the prospect of the MacBook Pros hopefully switching to Core 2 Duos before year end. Then I will have a much more powerful machine slung to my firedrive, router, xbox and tv. :)
dude, do a little research before droning on and on with misinformation. many of your concerns were addressed by steve in the keynote and by reading some of the other threads on the subject. :rolleyes:
dude, do a little research before droning on and on with misinformation. many of your concerns were addressed by steve in the keynote and by reading some of the other threads on the subject. :rolleyes:
Doctor Q
Mar 18, 06:24 PM
I didn't know before that "DVD Jon" is a movie star as well. He plays himself in the documentary Info Wars (http://uk.imdb.com/title/tt0415067/).
Hey, I wonder if we can get that movie on DVD and play it on our Linux systems. :D
Hey, I wonder if we can get that movie on DVD and play it on our Linux systems. :D
more...
wnurse
Mar 18, 03:18 PM
Actually the reason why it isn't encoded with DRM on the server is that if they did that they would need a copy of every song for every customer they have on the server.
aah yes of course.. (slap on forehead). hmm.. then adding DRM on fly before delivering might be the workaround apple does... although as noted in my previous post, that can be defeated too.
aah yes of course.. (slap on forehead). hmm.. then adding DRM on fly before delivering might be the workaround apple does... although as noted in my previous post, that can be defeated too.
more...
Walang komento:
Mag-post ng isang Komento