
edifyingGerbil
Apr 22, 07:58 PM
This makeup of this forum's members intrigues mean slightly. Why are most of the posters here Atheists? Is it part of the Mac using demographic, the Internet in general's demographic, or are Atheists just the most interested in Politics, Religon, and Social Issues?
Didn't you know? Aside from owning Apple products it's also quite trendy being an atheist. They think they don't need to back up their points with Reason or facts so it's a kind of intellectual laziness which compels most people.
I'm not saying that I'm a devout Christian or anything of the sort, I'm agnostic, but it's based on Reason.
Didn't you know? Aside from owning Apple products it's also quite trendy being an atheist. They think they don't need to back up their points with Reason or facts so it's a kind of intellectual laziness which compels most people.
I'm not saying that I'm a devout Christian or anything of the sort, I'm agnostic, but it's based on Reason.

SimD
Apr 12, 10:45 PM
This is not really true. You need to know the software to make it do what you want to do. You don't need to be an expert certified user, but you need to know your way around.
Of course you do. I agree completely. Obviously the poster is exaggerating. I assume he means that the editors he speaks of aren't techno geeks like a lot of us here on MacRumors.
I seem to have misspoken. I meant they don't need to know the acute technical details of their software.
Of course you do. I agree completely. Obviously the poster is exaggerating. I assume he means that the editors he speaks of aren't techno geeks like a lot of us here on MacRumors.
I seem to have misspoken. I meant they don't need to know the acute technical details of their software.

dethmaShine
May 2, 04:15 PM
Its not a myth, we've interviewed hackers after conviction, they have no interest in pursuing Macs due to the numbers. To get a really good and useful bot net you'd need roughly 25% of the entire user base!!!!
these guys deal in tens of millions!
Such a load of crap that is.
'we've interviewed hackers after conviction'
:rolleyes:
these guys deal in tens of millions!
Such a load of crap that is.
'we've interviewed hackers after conviction'
:rolleyes:

roland.g
Sep 20, 09:51 AM
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.
because everything on cable is available at itunes. your analogy is wrong.
but what I really wish is for people would stop demanding what they want it to do so they'll buy it and focus on what it will do and how it will do that. I guess that's too much to ask.
on another note, I don't understand what the big fuss. when do most users stop gaming long enough to watch a movie.
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.
because everything on cable is available at itunes. your analogy is wrong.
but what I really wish is for people would stop demanding what they want it to do so they'll buy it and focus on what it will do and how it will do that. I guess that's too much to ask.
on another note, I don't understand what the big fuss. when do most users stop gaming long enough to watch a movie.

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)

~Shard~
Oct 26, 09:25 AM
Great news! Let's hope it's true, as it would be nice to see Apple forge forward with frequent updates in this manner as they have already done to an extent. The days of waiting months for a 100 MHz PPC speed bump are long gone! :D

myamid
Sep 12, 06:54 PM
That is by NO MEANS CERTAIN!!! Think about it: FrontRow's Remote will work through this device communicating with the desktop to load content. iTV itself connects directly to the web and to iTunes to get trailers, etc.
It is VERY feasible that a widget, or external USB device, of some sort will allow PVR (like elgato) to work via remote back to the software on the server. This would not be a difficult addon.
It's not certain, but It's a damn good bet that it won't record as it doesn't look like it'll have any storage... I wouldn't bet a dime on recording ability...
It is VERY feasible that a widget, or external USB device, of some sort will allow PVR (like elgato) to work via remote back to the software on the server. This would not be a difficult addon.
It's not certain, but It's a damn good bet that it won't record as it doesn't look like it'll have any storage... I wouldn't bet a dime on recording ability...

toddybody
Apr 15, 09:32 AM
These teens are just people who are hurting because of the terrible actions others place on them. That empathy needs to be universal...regardless of your opinion on sexuality.
For all you young guys and gals hurting out there, stay strong because you have so many wonderful things ahead of you. It will get better, there are so many people just like you...and you're loved. God Bless, I cant wait to see what you all accomplish:)
For all you young guys and gals hurting out there, stay strong because you have so many wonderful things ahead of you. It will get better, there are so many people just like you...and you're loved. God Bless, I cant wait to see what you all accomplish:)

Stage
Mar 18, 06:49 PM
The DRM has nothing to do with ITMS's business model.
DRM has everything to do with the iTMS business model.
Apple sells music only to sell iPods. People are locked into their iPods because their iTunes music can't be played on any other brand of player.
Apple killed the Harmony file functionality because it is important for the product lock in that all downloadable music on an iPod be Apple dependent. Harmony files can be played on other devices and don't lock a customer into iPods.
Apple doesn't give a rat's butt about DRM in a philosophical sense, what they care about is a captive market of iPod users with hundreds and hundreds of dollars worth of iTMS files permanently locked to iPod music players. These people have to be customers for life or throw away their music investment. This is why DRM is evil. From a copyright perspective, consumers have full legal right to play their music on any device they want. Apple doesn't want you to be able to exercise those rights (neither does Microsoft.)
By controlling access to your legally owned content, each company expects to leverage your investment in music to their own advantage. DRM to these giant companies is just a leash on their customers.
Support legal alternatives to DRM'd music, like http://www.mp3tunes.com/
DRM is literally a corporate tool to control you and your future purchases. DRM is not your friend.
Finally, boy was Apple silly to send plaintext non-DRM'd music to iTunes. Talk about hubris. The so-called hack that let people "steal" Napster to go files involved recording the stream in realtime in a different CODEC. The iTMS hack involves downloading the original files and no transcending.
Personally, I don't see this as stealing since people have to pay Apple and Apple normally sends the DRM free music anyway. The hack simply cuts out the final step. It doesn't strip any DRM.
However, this is a major breach of security for Apple, that a home-brew front end can access their music store. Apple, will have to move on this big-time with everything they have. But it will require a major shift in their infrastructure to permanently fix.
DRM has everything to do with the iTMS business model.
Apple sells music only to sell iPods. People are locked into their iPods because their iTunes music can't be played on any other brand of player.
Apple killed the Harmony file functionality because it is important for the product lock in that all downloadable music on an iPod be Apple dependent. Harmony files can be played on other devices and don't lock a customer into iPods.
Apple doesn't give a rat's butt about DRM in a philosophical sense, what they care about is a captive market of iPod users with hundreds and hundreds of dollars worth of iTMS files permanently locked to iPod music players. These people have to be customers for life or throw away their music investment. This is why DRM is evil. From a copyright perspective, consumers have full legal right to play their music on any device they want. Apple doesn't want you to be able to exercise those rights (neither does Microsoft.)
By controlling access to your legally owned content, each company expects to leverage your investment in music to their own advantage. DRM to these giant companies is just a leash on their customers.
Support legal alternatives to DRM'd music, like http://www.mp3tunes.com/
DRM is literally a corporate tool to control you and your future purchases. DRM is not your friend.
Finally, boy was Apple silly to send plaintext non-DRM'd music to iTunes. Talk about hubris. The so-called hack that let people "steal" Napster to go files involved recording the stream in realtime in a different CODEC. The iTMS hack involves downloading the original files and no transcending.
Personally, I don't see this as stealing since people have to pay Apple and Apple normally sends the DRM free music anyway. The hack simply cuts out the final step. It doesn't strip any DRM.
However, this is a major breach of security for Apple, that a home-brew front end can access their music store. Apple, will have to move on this big-time with everything they have. But it will require a major shift in their infrastructure to permanently fix.

Evangelion
Mar 20, 12:39 PM
We've had this dictionary discussion before.
And apparently it needs to be had again, since people STILL don't understand what the word means!
But when a book author finds somebody using a photocopier to make a copy of their book instead of buying it, the word used doesn't matter as much as the fact you got something they were selling without paying.
The word does matter, since the word carries with it certain meaning and different acts (described by different words) carry different penalties. If you hit me in the face, could I claim that you were trying to murder me? after all I could have died. Or are you saying that all of a sudden the word does matter?
Copying copyrighted material against the will of the copyright-holder is wrong, I'm not disputing that. What I am disputing is the notion that it's stealing. It's not, fair and square.
Same logic: Musical artists aren't selling you round bits of plastic. They are selling you a copy of their music. Same logic: When you buy PhotoShop, you are buying more than the CD and some packaging. You are buying a license to use it, and even if you download a copy without taking something away from somebody else, you are getting something worth money and the owner/producer has reason to expect payment.
What you are describing is copyright-infringment, not stealing. Of course, RIAA and the like would just LOVE to label those who download music as thieves, since that word has such strong negative connections. But they are not thieves and they are not stealing no matter how much RIAA tries to claim that they are.
And apparently it needs to be had again, since people STILL don't understand what the word means!
But when a book author finds somebody using a photocopier to make a copy of their book instead of buying it, the word used doesn't matter as much as the fact you got something they were selling without paying.
The word does matter, since the word carries with it certain meaning and different acts (described by different words) carry different penalties. If you hit me in the face, could I claim that you were trying to murder me? after all I could have died. Or are you saying that all of a sudden the word does matter?
Copying copyrighted material against the will of the copyright-holder is wrong, I'm not disputing that. What I am disputing is the notion that it's stealing. It's not, fair and square.
Same logic: Musical artists aren't selling you round bits of plastic. They are selling you a copy of their music. Same logic: When you buy PhotoShop, you are buying more than the CD and some packaging. You are buying a license to use it, and even if you download a copy without taking something away from somebody else, you are getting something worth money and the owner/producer has reason to expect payment.
What you are describing is copyright-infringment, not stealing. Of course, RIAA and the like would just LOVE to label those who download music as thieves, since that word has such strong negative connections. But they are not thieves and they are not stealing no matter how much RIAA tries to claim that they are.

edifyingGerbil
Apr 24, 11:27 AM
And the Catholic church had Galileo jailed for his work on heliocentrism (just one of a countless litany of anti-scientific acts).
Islam doesn't have the monopoly on ridiculous religiously influenced anti-scientific murder and vandalism.
Trust me, Islam far outshines Christianity and Judaism in the anti-scientific murder and vandalism. The difference is, as I said somewhere else, in Christianity it was the clergy who ordered it without recourse to the Bible, whereas in Islam it's in the texts to severely punish blasphemy and heretics.
As I also said elsewhere this is why there can never be an Islamic enlightenment or reformation. All inventions attributed to Islam predate Islam or were appropriated by Islam from conquered civilisations.
The West was able to have a reformation because what the clergy demanded was not, strictly speaking, in the Bible.
Among other theoriess:
What part of
While this may be apocryphal the fact is that Saladin... used this example as justification to order the burning of many ancient libraries when he reconquered Egypt.
did you not compute?
Islam doesn't have the monopoly on ridiculous religiously influenced anti-scientific murder and vandalism.
Trust me, Islam far outshines Christianity and Judaism in the anti-scientific murder and vandalism. The difference is, as I said somewhere else, in Christianity it was the clergy who ordered it without recourse to the Bible, whereas in Islam it's in the texts to severely punish blasphemy and heretics.
As I also said elsewhere this is why there can never be an Islamic enlightenment or reformation. All inventions attributed to Islam predate Islam or were appropriated by Islam from conquered civilisations.
The West was able to have a reformation because what the clergy demanded was not, strictly speaking, in the Bible.
Among other theoriess:
What part of
While this may be apocryphal the fact is that Saladin... used this example as justification to order the burning of many ancient libraries when he reconquered Egypt.
did you not compute?

PghLondon
Apr 28, 01:31 PM
The same thing happened when PCs first hit the work place. Then it was all about minicomputers and mainframes, not these toy devices. But hey, put a 3270 card into the PC, hook it up to the big iron, and now you had a real computer device! People simply couldn't imagine that these little PCs would ever surpass the big iron in both power and popularity. But eventually they did.
Tablets are the same way. People are blindly assuming that the tablet of today is what we will be using in 2020. It isn't, any more than the iPod touch is the same as the 2001 original iPod. Things change, devices get vastly more powerful and full of features that people simply could not imagine when they began.
The post-PC era is going to steamroller the naysayers.
THIS. One hundred times, this.
And (sadly), it's always the people that are the power users of the "old way" that are the most surprised when their way of doing things is replaced.
Tablets are the same way. People are blindly assuming that the tablet of today is what we will be using in 2020. It isn't, any more than the iPod touch is the same as the 2001 original iPod. Things change, devices get vastly more powerful and full of features that people simply could not imagine when they began.
The post-PC era is going to steamroller the naysayers.
THIS. One hundred times, this.
And (sadly), it's always the people that are the power users of the "old way" that are the most surprised when their way of doing things is replaced.

OneMike
May 2, 09:09 AM
significant, but you have to install

iStudentUK
Apr 24, 09:36 AM
Wirelessly posted (Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8F190 Safari/6533.18.5)
Remember, although most posters here are from the US a large number are not. In Western Europe the number if religious peope is lower than in the US (most definitely people can be more open about their lack of religion here), and it plays a much lessor role in life/society. That may add to the impression that there are lots of atheists on here.
There could be many other reasons as well, for example the average age of posters on here is likely to be less than in the population at large.
Remember, although most posters here are from the US a large number are not. In Western Europe the number if religious peope is lower than in the US (most definitely people can be more open about their lack of religion here), and it plays a much lessor role in life/society. That may add to the impression that there are lots of atheists on here.
There could be many other reasons as well, for example the average age of posters on here is likely to be less than in the population at large.

redkamel
Aug 29, 06:57 PM
3 The point is that I've never heard a satisfactory answer as to why water vapor isn't taken into effect when discussing global warming, when it is undeniably the largest factor of the greenhouse effect. ...
Forty years ago, cars released nearly 100 times more C02 than they do today, industry polluted the atmosphere while being completely unchecked, and deforestation went untamed. Thanks to grassroots movement in the 60s and 70s (and yes, Greenpeace), worldwide pollution has been cut dramatically, and C02 pollution has been cut even more thanks to the Kyoto Agreement. But global warming continues, despite human's dramatically decreased pollution of the atmosphere.
man I just had to post....the nerd in me...
Probably (no sarcasm) because most water vapor is naturally produced and can be recycled as rain, while greenhouse gasses usually stay in the atmosphere. CO2 can also be recycled, however it does not recycle itself as water vapor does, it requires another source to convert it to organic carbon.
While nature may produce 3x the CO2 as humans, I do not believe the level of CO2 produced by nature is increasing. Nature also has built in systems to use the CO2 it makes to capture energy, or to store the CO2 as carbon in fossil fuels or matter. Humans only produce CO2 by making energy for themselves to use, and their production is increasing, without a way to draw the CO2 they made back out. Therefore the increase in CO2 that will not be removed is the concern. There are also other chemicals, but CO2 is widely publicized because everyone knows what it is, too.
Its like if you have a storeroom people drop things off in and take things out of, but it happens at pretty much the same rate. Except there is just one guy who only drops stuff off. Eventually all his stuff will take up a noticeable space in the storeroom.
Increases in greenhouses gasses are not immedieatly felt. We are now feeling the effects of gasses from decades ago. Also, although you say 'worldwide pollution has decreased", even though I doubt it is true, you mean our RATE of poullution has decreased, not the total amount of pollution we have put in the air, which is still increasing. When we decrease the amount of net pollution produced by humans, then it is a good sign.
Also to everyone complaining about out environment being ruined, yet want GM crops to grow food to stop starvation...(disclaimer: I am not cold hearted, I am realistic). The problem we have on this planet, as many agree, is too much pollution. Pollution is caused by people. So if we have more people, we will have more pollution. More people=more pollution.
When a system's carrying capacity is reached, the population level declines until resources can recover, then it climbs again. But if you artificially raise the carrying capacity (as humans like to do), then the crash will be bigger....and the resources may not survive as they are deprived of the humans that run, control, and supply them.
Believe it or not, our planet was not designed to sustain 8 billion people. Finding ways to produce food efficiently is great...but it should be used for less resources= same amount of food, NOT same resources=more food. It IS too bad people have to starve. But using that efficiency to make more food for more people will only lead to more people wanting more food, and goods. Eventually it will not be able to be supplied...for some reason or other. And you will have a very, very large crash.
Though experiment: you put a bunch of fish in a small fish tank. Keep feeding them...they reproduce. Clean the water...feed them all, they reproduce. Eventually they waste faster than you clean, or you forget to clean one day...and they all die.
Forty years ago, cars released nearly 100 times more C02 than they do today, industry polluted the atmosphere while being completely unchecked, and deforestation went untamed. Thanks to grassroots movement in the 60s and 70s (and yes, Greenpeace), worldwide pollution has been cut dramatically, and C02 pollution has been cut even more thanks to the Kyoto Agreement. But global warming continues, despite human's dramatically decreased pollution of the atmosphere.
man I just had to post....the nerd in me...
Probably (no sarcasm) because most water vapor is naturally produced and can be recycled as rain, while greenhouse gasses usually stay in the atmosphere. CO2 can also be recycled, however it does not recycle itself as water vapor does, it requires another source to convert it to organic carbon.
While nature may produce 3x the CO2 as humans, I do not believe the level of CO2 produced by nature is increasing. Nature also has built in systems to use the CO2 it makes to capture energy, or to store the CO2 as carbon in fossil fuels or matter. Humans only produce CO2 by making energy for themselves to use, and their production is increasing, without a way to draw the CO2 they made back out. Therefore the increase in CO2 that will not be removed is the concern. There are also other chemicals, but CO2 is widely publicized because everyone knows what it is, too.
Its like if you have a storeroom people drop things off in and take things out of, but it happens at pretty much the same rate. Except there is just one guy who only drops stuff off. Eventually all his stuff will take up a noticeable space in the storeroom.
Increases in greenhouses gasses are not immedieatly felt. We are now feeling the effects of gasses from decades ago. Also, although you say 'worldwide pollution has decreased", even though I doubt it is true, you mean our RATE of poullution has decreased, not the total amount of pollution we have put in the air, which is still increasing. When we decrease the amount of net pollution produced by humans, then it is a good sign.
Also to everyone complaining about out environment being ruined, yet want GM crops to grow food to stop starvation...(disclaimer: I am not cold hearted, I am realistic). The problem we have on this planet, as many agree, is too much pollution. Pollution is caused by people. So if we have more people, we will have more pollution. More people=more pollution.
When a system's carrying capacity is reached, the population level declines until resources can recover, then it climbs again. But if you artificially raise the carrying capacity (as humans like to do), then the crash will be bigger....and the resources may not survive as they are deprived of the humans that run, control, and supply them.
Believe it or not, our planet was not designed to sustain 8 billion people. Finding ways to produce food efficiently is great...but it should be used for less resources= same amount of food, NOT same resources=more food. It IS too bad people have to starve. But using that efficiency to make more food for more people will only lead to more people wanting more food, and goods. Eventually it will not be able to be supplied...for some reason or other. And you will have a very, very large crash.
Though experiment: you put a bunch of fish in a small fish tank. Keep feeding them...they reproduce. Clean the water...feed them all, they reproduce. Eventually they waste faster than you clean, or you forget to clean one day...and they all die.

Capt Underpants
Jul 12, 12:08 AM
Hate to say I told you so (http://forums.macrumors.com/showthread.php?p=2559135#post2559135) ;)
Oded S.
I'm sticking to my belief that the iMacs will get Merom.
We'll soon see...
Oded S.
I'm sticking to my belief that the iMacs will get Merom.
We'll soon see...

gweedo
Sep 12, 04:51 PM
Does anyone know if Apple will be providing some kind of developer toolkit for this "iTV" device? I sure hope so, I can think of a number of neat ways to put this device to work, not the least of which is a Tivo-like module. :cool:
All in all it sounds like a neat little unit, with an fairly good price. I'll have to buy me a XServe with some XRaid's so I can put my entire DVD library into it. ;)
All in all it sounds like a neat little unit, with an fairly good price. I'll have to buy me a XServe with some XRaid's so I can put my entire DVD library into it. ;)

onicon
Apr 15, 09:20 AM
Knowing how bullying feels like when it's done to you, no matter why or what the difference is, i really appreciate them doing this.

Denarius
Mar 15, 09:56 PM
I still regard nuclear fission as the best option among fossil fuel technologies to get us over the hump until alternative energy sources can cover 100% of demand and/or nuclear fusion is ready for commercial use. I still would prefer us to phase out coal, oil, gas and trash burning plants before we shut down our nuclear reactors as they have better carbon footprints and the mining of their fuel is overall less damaging than coal strip mining. Do we need to quickly move away from Gen I and II technology and get to at least III+ technology for all of our reactors, absolutely, but exiting nuclear fission technology at least in the short to midterm seems like a poor choice to me.
Cheers,
Ahmed
Agreed, nuclear Fusion's the best hope in the long term although I'm sure many will believe that's evil as well because of the word 'nuclear' being there.
Little bit of trivia, did you know that hospital CAT scanners were originally called NMR scanners (nuclear magnetic resonance), but they changed the name because it scared people? Why hasn't anybody coined the word 'nuclearphobe' yet :rolleyes:
Cheers,
Ahmed
Agreed, nuclear Fusion's the best hope in the long term although I'm sure many will believe that's evil as well because of the word 'nuclear' being there.
Little bit of trivia, did you know that hospital CAT scanners were originally called NMR scanners (nuclear magnetic resonance), but they changed the name because it scared people? Why hasn't anybody coined the word 'nuclearphobe' yet :rolleyes:
Ateazz
Oct 9, 01:57 PM
Hi guy's
A job has to be done so use the best software to do that.
In my case OS-X can't be beaten.
Look at "The Knowledgenavigator", not about speed but easy to use.
Make life easy, and Think different.
greetz
A job has to be done so use the best software to do that.
In my case OS-X can't be beaten.
Look at "The Knowledgenavigator", not about speed but easy to use.
Make life easy, and Think different.
greetz
AtomBoy
Oct 8, 10:46 PM
[QUOTE]Originally posted by Abercrombieboy
[B]Who really gives a damn?
[B]Who really gives a damn?
polaris20
Apr 21, 03:14 PM
But just like Windows, it's practically impossible to have any problems unless you do something stupid.
Another analogy - if you buy a car and put the wrong type of oil in it or inflate the tyres to the wrong pressure, bad things will probably happen.
If you don't know what you're doing with your own devices then maybe you need Apple to hold your hand.
Well, there are a few problems with your theories. First of all, there are vulnerabilities in Windows that merely visiting a web page clicked on from a Google search gets your machine infected. Or, you could visit a legitimate website that has mistakenly sold ad space to people hosting malware (this has occurred with both Foxnews.com and NYTimes.com), or you can download an app that you think is legitimate, but has spyware (like PrimoPDF).
I love seeing this "As long as you know what you're doing, and you're not an idiot, you're fine" attitude.
Another analogy - if you buy a car and put the wrong type of oil in it or inflate the tyres to the wrong pressure, bad things will probably happen.
If you don't know what you're doing with your own devices then maybe you need Apple to hold your hand.
Well, there are a few problems with your theories. First of all, there are vulnerabilities in Windows that merely visiting a web page clicked on from a Google search gets your machine infected. Or, you could visit a legitimate website that has mistakenly sold ad space to people hosting malware (this has occurred with both Foxnews.com and NYTimes.com), or you can download an app that you think is legitimate, but has spyware (like PrimoPDF).
I love seeing this "As long as you know what you're doing, and you're not an idiot, you're fine" attitude.
j763
Oct 10, 01:54 AM
Originally posted by TheT
I think Mac users just live in their happy little world and think their computers are still the fastest... well, wake up!
couldn't agree more. you use macs for software not for the absolute $#!+ apple has under-the-hood. i was at this MUG meeting the other day and the question was raised as to whether a mac was the fastest thing out there for graphics. i laughed at the suggestion and said "No way". this guy next to me, who was obviously a mac bigot (not necessarily a bad thing) said "You're wrong. They are the fastest thing out there. The Velocity Engine makes the powermac g4 the fastest machine out there for graphics. Blah blah blah blah blah......". I just turned to him and said "SGI Workstations". that was the end of the conversation (he didn't know what an sgi workstation was).
all that said, i've got a dual 1.25 and it's an excellent machine... but you just have to realise that no, it's not the fastest thing out there.
[ANTI-WINDOWS]
BUT... i'd like to raise this important point. wtf are the win32 users using their CPU power for? Typing up word documents really fast? browsing the web with Internet Exporer v6.000.21312.185726351;SP1? or perhaps having to wait only 10 seconds for windows media player to launch? win32 is simply a craptacular operating system to the extent where it shouldn't be recognized (and i certainly don't recognize it) as a real operating system. mac and *nix (excl. linux-on-the-desktop) is where it's at. get over it.
[/ANTI-WINDOWS]
I think Mac users just live in their happy little world and think their computers are still the fastest... well, wake up!
couldn't agree more. you use macs for software not for the absolute $#!+ apple has under-the-hood. i was at this MUG meeting the other day and the question was raised as to whether a mac was the fastest thing out there for graphics. i laughed at the suggestion and said "No way". this guy next to me, who was obviously a mac bigot (not necessarily a bad thing) said "You're wrong. They are the fastest thing out there. The Velocity Engine makes the powermac g4 the fastest machine out there for graphics. Blah blah blah blah blah......". I just turned to him and said "SGI Workstations". that was the end of the conversation (he didn't know what an sgi workstation was).
all that said, i've got a dual 1.25 and it's an excellent machine... but you just have to realise that no, it's not the fastest thing out there.
[ANTI-WINDOWS]
BUT... i'd like to raise this important point. wtf are the win32 users using their CPU power for? Typing up word documents really fast? browsing the web with Internet Exporer v6.000.21312.185726351;SP1? or perhaps having to wait only 10 seconds for windows media player to launch? win32 is simply a craptacular operating system to the extent where it shouldn't be recognized (and i certainly don't recognize it) as a real operating system. mac and *nix (excl. linux-on-the-desktop) is where it's at. get over it.
[/ANTI-WINDOWS]
DVD Plaza
Apr 13, 07:01 AM
What isn't great is the potential loss of features. Even the littlest feature, that most people would find mundane, could be very important to editors who've become used to that feature being in their workflow
Is this thread for real? People are all making up wild claims that features may or may not and missing, based on nothing more than Apple announcing an all new release, and then going ape about it?!
Steve Jobs may or may not stop wearing underwear, Ooooooh ahhhhhhh let's cry about that pie in the sky crock of...
I'm sure the sky isn't falling... From what I've read so far FCP X is THE rewrite Snow Leopard was made for, Apple have done precisely what FCP so badly needed. I for one look forward to reading all about it when people have actually used the thing.
Is this thread for real? People are all making up wild claims that features may or may not and missing, based on nothing more than Apple announcing an all new release, and then going ape about it?!
Steve Jobs may or may not stop wearing underwear, Ooooooh ahhhhhhh let's cry about that pie in the sky crock of...
I'm sure the sky isn't falling... From what I've read so far FCP X is THE rewrite Snow Leopard was made for, Apple have done precisely what FCP so badly needed. I for one look forward to reading all about it when people have actually used the thing.
No comments:
Post a Comment