KnightWRX
Apr 6, 03:38 PM
Next Air will see a DRAMATIC speed improvement CPU wise and a minor decrease in GPU performance.
The GPU performance decrease is much more severe that you let on, and the improvement in CPU is rarely even used, as it sits in the idle loop most of the time as most applications are mostly i/o bound or simply sit there waiting for user input.
Also, let's not forget 2 other major points :
- VDA (Video Decode Acceleration) framework support : Intel 3000HD isn't supported, forget hardware accelerated decoding of Flash content in H.264. This has been a major lacking point on Apple's part since introducing the framework and getting rid of nVidia chipsets, they haven't yet announced any change to this framework which right now only supports the 9400m, the 9600m and the 320m.
- OpenCL. Big selling point for Snow Leopard, absent from most of their hardware line-up now. GG Apple.
The Air with the 320m right now supports both. The SB MBP 13" does not.
The main thing keeping me from wanting a MBA for software development is the 4GB RAM limit. If you're not running any virtual machines you'd probably do just fine with 4GB, but as soon as you need to run a Windows VM things will get painful (especially if you're running Visual Studio in it).
I run a Windows VM with 1 GB of dedicated memory and a Linux VM with 1.5 GB of dedicated memory. All while Xcode is open and doing something in every OS.
Seriously, software development is about the less ressource hungry task you can do on modern computers. Browsers use more system ressources nowadays than code editors/compilers/debuggers. :rolleyes:
The GPU performance decrease is much more severe that you let on, and the improvement in CPU is rarely even used, as it sits in the idle loop most of the time as most applications are mostly i/o bound or simply sit there waiting for user input.
Also, let's not forget 2 other major points :
- VDA (Video Decode Acceleration) framework support : Intel 3000HD isn't supported, forget hardware accelerated decoding of Flash content in H.264. This has been a major lacking point on Apple's part since introducing the framework and getting rid of nVidia chipsets, they haven't yet announced any change to this framework which right now only supports the 9400m, the 9600m and the 320m.
- OpenCL. Big selling point for Snow Leopard, absent from most of their hardware line-up now. GG Apple.
The Air with the 320m right now supports both. The SB MBP 13" does not.
The main thing keeping me from wanting a MBA for software development is the 4GB RAM limit. If you're not running any virtual machines you'd probably do just fine with 4GB, but as soon as you need to run a Windows VM things will get painful (especially if you're running Visual Studio in it).
I run a Windows VM with 1 GB of dedicated memory and a Linux VM with 1.5 GB of dedicated memory. All while Xcode is open and doing something in every OS.
Seriously, software development is about the less ressource hungry task you can do on modern computers. Browsers use more system ressources nowadays than code editors/compilers/debuggers. :rolleyes:
addicted44
Mar 26, 01:15 AM
About the only thing that I find disappointing about this release is the lack of a new filesystem.
I am disappointed about this too. But I am not surprised. Apple's next filesystem was going to be ZFS. But Sun being purchased by Oracle has probably killed any chance of that happening.
The newer Linux FS'es are just not stable enough at the point (or don't do things Apple has somehow managed to bake into HFS+, like the snapshots, and things like directory Hard Links, etc). I don't see Apple moving to any version of ReiserFS or ext#, so I think we are stuck with HFS+ and extensions/improvements of it, until the ZFS situation gets clearer.
I am disappointed about this too. But I am not surprised. Apple's next filesystem was going to be ZFS. But Sun being purchased by Oracle has probably killed any chance of that happening.
The newer Linux FS'es are just not stable enough at the point (or don't do things Apple has somehow managed to bake into HFS+, like the snapshots, and things like directory Hard Links, etc). I don't see Apple moving to any version of ReiserFS or ext#, so I think we are stuck with HFS+ and extensions/improvements of it, until the ZFS situation gets clearer.
gnasher729
Jul 27, 05:59 PM
but is still more productive because it handles more calculations per clock cycle
I'm no processor geek. I have a basic understanding of the terminology and how things work so correct me if I'm wrong, but wasn't this one of the advantages that the PPC had over Intel chips? Does this mean Intel is moving toward shorter pipes? Are we talking more instructions per clock cycle or what? What does "calculations" mean in this context?
With most processors, especially the Intel/AMD processors, "instructions per cycle" is not a useful number. These processors have both simple instructions (add register number 3 to register number 6) and complex instructions (add register number 3 to the number whose address is in register number 6). A PowerPC has the simple instructions, but not the complex ones. Instead it would need three instructions "load the number whose address is in register number 6, and move it to register 7", "add register 3 to register 7", "store register 7 to the location whose address is in register 6". But the Intel processor doesn't magically do three times as much work. Instead, it splits the complex instruction into three so-called "macro-ops", and does exactly the same work. So in this case, the PowerPC would execute three times as many instructions per cycle (3 instead of 1), but because it doesn't do more actual work, that is pointless. Instead you would count the number of operations, and they are more or less the same.
Intel is indeed moving towards shorter pipelines. They have done that already with the Core Duo chips. Longer pipelines have the advantage that each pipeline step is a bit faster, so you can get higher clockspeed. Shorter pipelines have the advantage that they take much less energy (very important; at some point your chips just melt), they are much faster handling branches, and they are just much much easier to design. Pentium 4 needed absolutely heroic efforts to produce it, and would have needed twice the heroics to improve it. Instead, the Core Duo has a much simpler design, that is just as powerful, and because it was so simple, Core 2 Duo could improve it.
And Core 2 Duo can now execute up to four "micro-ops" per cycle, same as the G5, compared to three for Core Duo, Pentium 4 and G4. It also has some clever features that reduce the number of micro-ops needed up to 10 percent, and some other improvements.
I'm no processor geek. I have a basic understanding of the terminology and how things work so correct me if I'm wrong, but wasn't this one of the advantages that the PPC had over Intel chips? Does this mean Intel is moving toward shorter pipes? Are we talking more instructions per clock cycle or what? What does "calculations" mean in this context?
With most processors, especially the Intel/AMD processors, "instructions per cycle" is not a useful number. These processors have both simple instructions (add register number 3 to register number 6) and complex instructions (add register number 3 to the number whose address is in register number 6). A PowerPC has the simple instructions, but not the complex ones. Instead it would need three instructions "load the number whose address is in register number 6, and move it to register 7", "add register 3 to register 7", "store register 7 to the location whose address is in register 6". But the Intel processor doesn't magically do three times as much work. Instead, it splits the complex instruction into three so-called "macro-ops", and does exactly the same work. So in this case, the PowerPC would execute three times as many instructions per cycle (3 instead of 1), but because it doesn't do more actual work, that is pointless. Instead you would count the number of operations, and they are more or less the same.
Intel is indeed moving towards shorter pipelines. They have done that already with the Core Duo chips. Longer pipelines have the advantage that each pipeline step is a bit faster, so you can get higher clockspeed. Shorter pipelines have the advantage that they take much less energy (very important; at some point your chips just melt), they are much faster handling branches, and they are just much much easier to design. Pentium 4 needed absolutely heroic efforts to produce it, and would have needed twice the heroics to improve it. Instead, the Core Duo has a much simpler design, that is just as powerful, and because it was so simple, Core 2 Duo could improve it.
And Core 2 Duo can now execute up to four "micro-ops" per cycle, same as the G5, compared to three for Core Duo, Pentium 4 and G4. It also has some clever features that reduce the number of micro-ops needed up to 10 percent, and some other improvements.
NoSmokingBandit
Aug 18, 12:55 PM
http://www.andriasang.com/e/blog/2010/08/18/gt5_date_and_blue_ps3/
New pics and stuff.
An official feature list is nice too:
CIRCULATORY STRUCTURES
The Cardiovascular System
Male Circulatory System
of circulatory system
Circulatory System Study Chart
Cardiovascular System (heart
NERVOUS SYSTEM
3D Female Circulatory System
circulatory system is to
:Circulatory System en.svg
Circulatory System: text
circulatory system (left),
The cardiovascular system
Your circulatory system
the circulatory system in
New pics and stuff.
An official feature list is nice too:
gregorsamsa
Aug 26, 07:17 AM
in my experience, their support has always sucked..even from day 1 with my first PowerMac G5 back in 2004.
Let's see...
PowerMac G5 arrived with a defective superdrive, miscalibrated fans. The genius 'couldn't hear the fans', and accidentally put the repair in someone else's name, so when I tried to pick it up, I had to haggle to get it. Oh, and when I did finally get it, the superdrive was still broken. Super...
Cinema Display arrived with 7 dead pixels...I know this is a touchy issue, but the problem with their support regarding it was that none of them knew the actual number to replace it at. The phone people told me 5, the store (after the 45 minute drive there) told me 15, and another rep (who finally replaced it) told me 3.
iMac G5 had a defective power supply on arrival--would shut off randomly, some times not turning on. They refused to acknowledge this the first time we were there...the second time we were there...third time...fourth time they gave in--by saying "we'll keep it overnight." They still.."couldn't find a problem." When they gave it back, it worked for..two weeks, then the fans started being wonky. They couldn't hear that the first or second visit, on the third visit they took it overnight, "couldn't hear any audible issue", but it shutdown on them. I guess taking our word for it, they replaced the fan assembly, logic board, and power supply. Worked for a month, now it still shuts down.
MacBook Pro had the defective battery (random shutdowns), now fixed. Also, I had the screen buzz (now fixed), CPU A Whine (now fixed). They basically fixed all the issues in this machine, but were four days over their expected return time.
I'm not saying their support is totally crap, but they're certainly not consistent in performance, technical knowledge, friendliness, or even coverage. I was talking to a friend about "what I'd do if I were Steve Jobs," and the first thing we agreed on was to fire the entire AppleCare department, and all the genius', because they all seem to suck.
But hey, my iBook G4 and MacBook are fine...
You, & some others here, have obviously had more than your fair share of bad luck with Apple. Customers paying good money rightly expect to receive faultless products every time. When they don't, it's understandable they're peeved off. In this respect, Apple must do better.
Many others, however, swear by Apple's general reliability & quality of products. (My iBook, bought only last October, is used at least a few hours almost daily. So far, no problems whatsoever!). Fact is, statistics consistently prove Apple still to be one of the best computer manufacturers when it comes to longevity of their products.
PS. I'm not an Apple fanboy. My next computer (a 15.4" laptop) may not even be another Apple. But I'm 100% sure I will buy another Apple computer in future, not least because of the general high quality I know I can expect from Apple compared to many PC manufacturers, & a wonderful OS to boot! - But, then again, if Apple's QC was to deteriorate significantly, & get a consistently growing number of customer complaints...
Let's see...
PowerMac G5 arrived with a defective superdrive, miscalibrated fans. The genius 'couldn't hear the fans', and accidentally put the repair in someone else's name, so when I tried to pick it up, I had to haggle to get it. Oh, and when I did finally get it, the superdrive was still broken. Super...
Cinema Display arrived with 7 dead pixels...I know this is a touchy issue, but the problem with their support regarding it was that none of them knew the actual number to replace it at. The phone people told me 5, the store (after the 45 minute drive there) told me 15, and another rep (who finally replaced it) told me 3.
iMac G5 had a defective power supply on arrival--would shut off randomly, some times not turning on. They refused to acknowledge this the first time we were there...the second time we were there...third time...fourth time they gave in--by saying "we'll keep it overnight." They still.."couldn't find a problem." When they gave it back, it worked for..two weeks, then the fans started being wonky. They couldn't hear that the first or second visit, on the third visit they took it overnight, "couldn't hear any audible issue", but it shutdown on them. I guess taking our word for it, they replaced the fan assembly, logic board, and power supply. Worked for a month, now it still shuts down.
MacBook Pro had the defective battery (random shutdowns), now fixed. Also, I had the screen buzz (now fixed), CPU A Whine (now fixed). They basically fixed all the issues in this machine, but were four days over their expected return time.
I'm not saying their support is totally crap, but they're certainly not consistent in performance, technical knowledge, friendliness, or even coverage. I was talking to a friend about "what I'd do if I were Steve Jobs," and the first thing we agreed on was to fire the entire AppleCare department, and all the genius', because they all seem to suck.
But hey, my iBook G4 and MacBook are fine...
You, & some others here, have obviously had more than your fair share of bad luck with Apple. Customers paying good money rightly expect to receive faultless products every time. When they don't, it's understandable they're peeved off. In this respect, Apple must do better.
Many others, however, swear by Apple's general reliability & quality of products. (My iBook, bought only last October, is used at least a few hours almost daily. So far, no problems whatsoever!). Fact is, statistics consistently prove Apple still to be one of the best computer manufacturers when it comes to longevity of their products.
PS. I'm not an Apple fanboy. My next computer (a 15.4" laptop) may not even be another Apple. But I'm 100% sure I will buy another Apple computer in future, not least because of the general high quality I know I can expect from Apple compared to many PC manufacturers, & a wonderful OS to boot! - But, then again, if Apple's QC was to deteriorate significantly, & get a consistently growing number of customer complaints...
xPismo
Jul 14, 07:47 PM
WWDC ... it's getting closer ... can't wait to see what's announced. Oh yeah ... we'll see the preview of Leopard too.
Bring it on Steve :D
Yeah. I don't believe a word. No powercord at the top, no tweaked G5 case, no way. Those bits throw the rest into dispute. I think we will all be shocked at what The Steve has for us at wwdc.
OTOH, its been great to finally read the benchmark figures for the new apple processors. It hit me that the mac community will finally have overclocking hardware readily available! Wow!
But this rumor just dosn't look or smell right.
Bring it on Steve :D
Yeah. I don't believe a word. No powercord at the top, no tweaked G5 case, no way. Those bits throw the rest into dispute. I think we will all be shocked at what The Steve has for us at wwdc.
OTOH, its been great to finally read the benchmark figures for the new apple processors. It hit me that the mac community will finally have overclocking hardware readily available! Wow!
But this rumor just dosn't look or smell right.
netdog
Aug 11, 03:22 PM
First, what makes you think the cellusage is similar to internet????? Mind blowing step here.
Secondly, Europa has 291 million internet users; North america US&Canada 227 milion; Rest of the world 500 million
Hence europe would be close to 30% of the total market???? What about india??? Japan??? china??? come on you cant say jack *** from this statistics
China, having bypassed installing a massive landline strucutre, now has enormous GSM network penetration.
India is also a HUGE GSM market.
Secondly, Europa has 291 million internet users; North america US&Canada 227 milion; Rest of the world 500 million
Hence europe would be close to 30% of the total market???? What about india??? Japan??? china??? come on you cant say jack *** from this statistics
China, having bypassed installing a massive landline strucutre, now has enormous GSM network penetration.
India is also a HUGE GSM market.
jonnysods
Apr 6, 08:02 AM
Yikes! Better offload my copy of the current version of FCS before it drops too low.
Any takers? :D
Any takers? :D
Simiber
Apr 25, 02:17 PM
IANAL, but AFAIK, here in America, having rights infringed upon is reason for sueing. That, in itself, is a "damage". Hence why Apple is being sued. They apparently are infringing upon the consumers' rights to privacy.
But how would a judge or jury quantify the size of the claim..? And surely the settlement should go to everyone who has had their right infringed upon, hence why a regulatory body should be responsible for protecting the people's rights so that any fine imposed by the regulator can be further used to protect peoples right to privacy when using a mobile..?
I understand the fact that the people who sue are taking the risk and costs of the lawsuit, but surely there are times when people's rights are being infringed but because nobody is prepared to sue, nothing ever gets done... If it was primarily the responsibility of a regulatory body to protect the consumer, then people's right to privacy would be protected not only when someone felt they had a case that they could make money out of :/
But how would a judge or jury quantify the size of the claim..? And surely the settlement should go to everyone who has had their right infringed upon, hence why a regulatory body should be responsible for protecting the people's rights so that any fine imposed by the regulator can be further used to protect peoples right to privacy when using a mobile..?
I understand the fact that the people who sue are taking the risk and costs of the lawsuit, but surely there are times when people's rights are being infringed but because nobody is prepared to sue, nothing ever gets done... If it was primarily the responsibility of a regulatory body to protect the consumer, then people's right to privacy would be protected not only when someone felt they had a case that they could make money out of :/
Full of Win
Apr 27, 08:24 AM
No it isn't. They say they are not logging your location. This is correct. If it were incorrect, they would be keeping a database of your phone's exact GPS location. Instead, as they state, they are keeping a cache of the cell towers and wifi hotspots in order to aid the A-GPS system. So, no, they are not logging your (and by your, I mean an identifiable log) exact locations and beaming it home to watch you like big brother.
As has been stated a million times, there is a likely bug that wasn't culling the cache. It was also a dumb oversight to backup the file and to do so unencrypted.
The overlord hyperbole is really silly.
Keeping a log of nearby locations I've been around, is by proxy, logging my location. If they keep a record of the towers my phone and iPad have linked to, and the locations of these towers are fixed and known, then Apple is in effect tracking my location in this linking.
I think it was not a bug, nut data waiting to be sent to Apple for profit generating purposes.
As has been stated a million times, there is a likely bug that wasn't culling the cache. It was also a dumb oversight to backup the file and to do so unencrypted.
The overlord hyperbole is really silly.
Keeping a log of nearby locations I've been around, is by proxy, logging my location. If they keep a record of the towers my phone and iPad have linked to, and the locations of these towers are fixed and known, then Apple is in effect tracking my location in this linking.
I think it was not a bug, nut data waiting to be sent to Apple for profit generating purposes.
benthewraith
Nov 28, 08:02 PM
they said that their music was driving sales of iPods so they deserved a cut of iPod profits from Apple.
What if I don't use my iPod for their crap? What if everything on my iPod was made by independents or music labels independent of the RIAA/MPAA fascists?
What if I don't use my iPod for their crap? What if everything on my iPod was made by independents or music labels independent of the RIAA/MPAA fascists?
edgcrshr
Apr 8, 12:22 AM
I am still waiting on my black 16gb wifi, I preordered it Sunday after launch and am still waiting for Best Buy to call me. I guess I am going to have to call them and see what is going on. I have not been looking elsewhere since I wanted to get it from them and use gift cards, looks like that may not be happening anymore.
kavika411
Feb 28, 08:20 PM
According to the school's website (http://www.chc.edu/News/2011/February/statement_regarding_jim_st_george/), he was not fired as the OP's article suggests. Rather, his contract was not renewed. AFAIK, adjunct instructors do not enjoy the same privileges as tenured professors. If his contract ran out and was simply not renewed, then that's that, unless it can be argued that the college has some legal obligation to offer a new contract.
But threads like this are above further research. Not sure why you'd want to mess up a perfectly good party.
But threads like this are above further research. Not sure why you'd want to mess up a perfectly good party.
ugp
Jun 11, 01:57 PM
We are being told that inventory will be limited for non preorder customers. Basically, if you want one, you better preorder.
About opening before apple stores...
Thats what i thought too, but the only thing we were told is no later than 8am opening. Basically we can open anytime up to 8am.
I am praying that the Managers here get told the same thing by the DMs as well. Would make things a lot easier. If Radio Shack announces they are opening before everyone else you better prepare for a lot of customers.
About opening before apple stores...
Thats what i thought too, but the only thing we were told is no later than 8am opening. Basically we can open anytime up to 8am.
I am praying that the Managers here get told the same thing by the DMs as well. Would make things a lot easier. If Radio Shack announces they are opening before everyone else you better prepare for a lot of customers.
Stridder44
Apr 10, 12:28 AM
Wirelessly posted (Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8G4 Safari/6533.18.5)
This should be interesting.
This should be interesting.
HecubusPro
Aug 26, 10:02 PM
Tonight NBC News noted that there is a combined Back To School K-12 $17.6 Billion + College $36.6 Billion = $54.2 Billion in play right now - much of it for Consumer Electronics - especially computers. Add in the switch to Core 2 and we are looking at an impossible situation to predict what is happening with regard to any of the supply shortages.
This is the second largest buying season only trumped by the end of the year holidays. Given this reality, I think we all need to try and exercise maximum patience and skip all the speculation why "clues" mean what. Any "clues" could have multiple reasons in this moment. :eek: :confused: ;)
Here in Los Angeles, I have been to a couple of apple stores, and a couple of best buy stores in the apple section. Everytime I was in those places, there were obviously college kids with their parents purchasing new macs, particularly the regular macbook. The apple stores especially were swamped with college bound students.
This is a huge time for all computer manufacturers, and laptops are big sellers for college kids. Shortages are bound to happen. I hope this doesn't affect my MBP making it to a store near me sooner rather than later, but I have a feeling it will. I do feel confident however, that within the next 3 to 4 weeks, I will have, or will have on order a new merom MBP. I hope. :)
This is the second largest buying season only trumped by the end of the year holidays. Given this reality, I think we all need to try and exercise maximum patience and skip all the speculation why "clues" mean what. Any "clues" could have multiple reasons in this moment. :eek: :confused: ;)
Here in Los Angeles, I have been to a couple of apple stores, and a couple of best buy stores in the apple section. Everytime I was in those places, there were obviously college kids with their parents purchasing new macs, particularly the regular macbook. The apple stores especially were swamped with college bound students.
This is a huge time for all computer manufacturers, and laptops are big sellers for college kids. Shortages are bound to happen. I hope this doesn't affect my MBP making it to a store near me sooner rather than later, but I have a feeling it will. I do feel confident however, that within the next 3 to 4 weeks, I will have, or will have on order a new merom MBP. I hope. :)
ctachme
Jul 27, 10:50 AM
MBPs the end of august? I START school in the end of august.
ughghghghghghg
Me too. I'm just going to hang onto my aging iBook G4 until they come out. I really would kick myself if I bought a MacBook Pro now so close to them being updated. I'm just hoping I can order soon, and then they will arrive at the end of August... just in time for school. *crosses fingers*
ughghghghghghg
Me too. I'm just going to hang onto my aging iBook G4 until they come out. I really would kick myself if I bought a MacBook Pro now so close to them being updated. I'm just hoping I can order soon, and then they will arrive at the end of August... just in time for school. *crosses fingers*
janstett
Aug 19, 07:48 AM
I have a question about dual monitor support on the Mac Pro...
Right now my main desktop is a 3.6 GHz Pentium D Xtreme (codename Smithfield, 2 cores w/ Hyperthreading, looks like 4 cores) running XP Media Center. A very capable machine, but I'm on the verge of getting a 3 GHz Mac Pro (stripped so I can mitigate the financial damage). I want the ATI Radeon display card.
I have two displays, the 2nd of which is rotated 90 degrees (portrait mode) so it's the perfect size for editing documents or reading long articles. Can I rotate the 2nd display 90 degrees like I can in Windows?
Right now my main desktop is a 3.6 GHz Pentium D Xtreme (codename Smithfield, 2 cores w/ Hyperthreading, looks like 4 cores) running XP Media Center. A very capable machine, but I'm on the verge of getting a 3 GHz Mac Pro (stripped so I can mitigate the financial damage). I want the ATI Radeon display card.
I have two displays, the 2nd of which is rotated 90 degrees (portrait mode) so it's the perfect size for editing documents or reading long articles. Can I rotate the 2nd display 90 degrees like I can in Windows?
Bill McEnaney
Apr 29, 09:34 AM
Presumably because the sources are "too numerous to mention". Can't you read? :p
You'd expect the article to cite some studies when Fr. Martin's article says that those studies are too numerous to mention. And let's not forget the hint of potential bias I noticed when I read that the cited article's author was a "gay affirmative therapist." Have you guys read the undoubtedly objective reviews that Donald Trump's employees write about their boss's business savvy? :)
You'd expect the article to cite some studies when Fr. Martin's article says that those studies are too numerous to mention. And let's not forget the hint of potential bias I noticed when I read that the cited article's author was a "gay affirmative therapist." Have you guys read the undoubtedly objective reviews that Donald Trump's employees write about their boss's business savvy? :)
mmmcheese
Nov 28, 11:41 PM
Universal has already stated that half of the money will be going to the artists.
Do you work for Universal, or the RIAA?
Do you work for Universal, or the RIAA?
Mattie Num Nums
Mar 31, 02:27 PM
The biggest advantage always given for Android over iOS is that it's "open source." Well, clearly that's not the case anymore. So, I can't think of any other reason to use Android over iOS, or even Windows 7. It looks like junk, and it's just a cheap ripoff of iOS.
Thats not at all what this article is saying. The Android project is still going to be "open source".
Thats not at all what this article is saying. The Android project is still going to be "open source".
Benjamins
Mar 31, 02:43 PM
You could say the same thing about Apple though. The Apple fad will go away and the extremely closed ecosystem which seems to not be really developing much in terms of UI or having an actual roadmap could end iOS.
I don't understand why people can't just see the pros and cons of both and accept both are great platforms. Its always a WAR with Apple fans. Apple against EVERYONE!
If Apple FAD goes away, where will Google copy from next?
You are delusional if you think Google is not building upon the Apple FAD.
I don't understand why people can't just see the pros and cons of both and accept both are great platforms. Its always a WAR with Apple fans. Apple against EVERYONE!
If Apple FAD goes away, where will Google copy from next?
You are delusional if you think Google is not building upon the Apple FAD.
Nym
Nov 29, 11:28 AM
I don't listen to anything that comes from that Universal Artists list shown above :)
So Universal Music Group must have received something in the region of $112 so far from Zune sales.
AHAHAHAHAHA
You my friend, sound like a socialist...
More like a Capitalist, he thinks they should get money, profit logic.
Universal is being greedy, they are entitled to 1$ per iPod the same way as I am, because after all, I'm advertising for Apple when I'm holding it in my hand right? It's just stupid beyond everything I've heard! And the artists will be the last ones to get even a glimpe of the money that M$ is gonna pay Universal (7$ ??).
If by any chance Apple would give in to Universal, every crap Record Label would start requiring the same fee and one day we'll have "the new iPod Nano, starting at 500$" :)
iPoop on Record Labels :D
So Universal Music Group must have received something in the region of $112 so far from Zune sales.
AHAHAHAHAHA
You my friend, sound like a socialist...
More like a Capitalist, he thinks they should get money, profit logic.
Universal is being greedy, they are entitled to 1$ per iPod the same way as I am, because after all, I'm advertising for Apple when I'm holding it in my hand right? It's just stupid beyond everything I've heard! And the artists will be the last ones to get even a glimpe of the money that M$ is gonna pay Universal (7$ ??).
If by any chance Apple would give in to Universal, every crap Record Label would start requiring the same fee and one day we'll have "the new iPod Nano, starting at 500$" :)
iPoop on Record Labels :D
Riemann Zeta
Mar 25, 10:42 PM
Wirelessly posted (Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Mobile/8G4)
********. If Apple is really done with Lion, then they should only be charging $29 for it (if that), like 10.6. More confusing scrollbars, tiny window controls and a better graphics/OGL support stack...add in the touch-screen readiness and you might have a quick $29 update.
I suppose, following the iOS model, Apple will likely stop charging anything for Mac OS; the OS features will revolve around new hardware features and/or gimmicks.
********. If Apple is really done with Lion, then they should only be charging $29 for it (if that), like 10.6. More confusing scrollbars, tiny window controls and a better graphics/OGL support stack...add in the touch-screen readiness and you might have a quick $29 update.
I suppose, following the iOS model, Apple will likely stop charging anything for Mac OS; the OS features will revolve around new hardware features and/or gimmicks.