ugahairydawgs
Apr 8, 07:55 AM
Sources? Evidence? Easy to make cheap accusations, much harder to prove them.
When Apple's supply shortages at iPhone and iPad launches are as terrible as they have been, Apple is either 1.) inept at judging the demand for their product, #2.) inept at acquiring the components necessary to produce the quantity of product they need to meet demand or 3.) holding back supply to drum up demand.
I have a pretty hard time believing that #1 or #2 are true for company the size of Apple.
When Apple's supply shortages at iPhone and iPad launches are as terrible as they have been, Apple is either 1.) inept at judging the demand for their product, #2.) inept at acquiring the components necessary to produce the quantity of product they need to meet demand or 3.) holding back supply to drum up demand.
I have a pretty hard time believing that #1 or #2 are true for company the size of Apple.
thisisahughes
Apr 8, 02:00 AM
I'm not sure how I feel about this.
SevenInchScrew
Aug 19, 12:05 AM
I hate how some people think the ~800 standard cars are going to look like GT4 cars.
They won't just look like it, they ARE GT4 cars. Take note that NONE of the cars that are playable at these events or seen in almost all screen shots are Standard� cars. I'm not "hating" on the game. I just question their decisions. As I said in my previous posts, I'm a very LONG time fan of the GT series. But, I'm getting tired of the repeated cycle I continuously go through with them lately. Super hype for the games before they come out, and then, regardless of exponentially greater feature list, I'm let down by the actual driving.
Again, I'm glad this game looks spectacular, because it really does. Even though the screen shots that we're seeing are from Photo Mode, the ones that have come out at GC10 are amazing. It is also practically bewildering how the game now has a feature list that is so huge and loaded with features, if you didn't hear it from Polyphony themselves, you might not believe it. But, like I said, the more stuff that keeps getting added to the game, and more minutiae they detail in the Premium� cars, the more my expectations of the actual driving in the game rises.
They won't just look like it, they ARE GT4 cars. Take note that NONE of the cars that are playable at these events or seen in almost all screen shots are Standard� cars. I'm not "hating" on the game. I just question their decisions. As I said in my previous posts, I'm a very LONG time fan of the GT series. But, I'm getting tired of the repeated cycle I continuously go through with them lately. Super hype for the games before they come out, and then, regardless of exponentially greater feature list, I'm let down by the actual driving.
Again, I'm glad this game looks spectacular, because it really does. Even though the screen shots that we're seeing are from Photo Mode, the ones that have come out at GC10 are amazing. It is also practically bewildering how the game now has a feature list that is so huge and loaded with features, if you didn't hear it from Polyphony themselves, you might not believe it. But, like I said, the more stuff that keeps getting added to the game, and more minutiae they detail in the Premium� cars, the more my expectations of the actual driving in the game rises.
janstett
Oct 23, 11:44 AM
Unfortunately not many multithreaded apps - yet. For a long time most of the multi-threaded apps were just a select few pro level things. 3D/Visualization software, CAD, database systems, etc.. Those of us who had multiprocessor systems bought them because we had a specific software in mind or group of software applications that could take advantage of multiple processors. As current CPU manufacturing processes started hitting a wall right around the 3GHz mark, chip makers started to transition to multiple CPU cores to boost power - makes sense. Software developers have been lazy for years, just riding the wave of ever-increasing MHz. Now the multi-core CPUs are here and the software is behind as many applications need to have serious re-writes done in order to take advantage of multiple processors. Intel tried to get a jump on this with their HT (Hyper Threading) implementation that essentially simulated dual-cores on a CPU by way of two virtual CPUs. Software developers didn't exactly jump on this and warm up to it. But I also don't think the software industry truly believed that CPUs would go multi-core on a mass scale so fast... Intel and AMD both said they would, don't know why the software industry doubted. Intel and AMD are uncommonly good about telling the truth about upcoming products. Both will be shipping quad-core CPU offerings by year's end.
What you're saying isn't entirely true and may give some people the wrong idea.
First, a multicore system is helpful when running multiple CPU-intensive single-threaded applications on a proper multitasking operating system. For example, right now I'm ripping CDs on iTunes. One processor gets used a lot and the other three are idle. I could be using this CPU power for another app.
The reality is that to take advantage of multiple cores, you had to take advantage of threads. Now, I was doing this in my programs with OS/2 back in 1992. I've been writing multithreaded apps my entire career. But writing a threaded application requires thought and work, so naturally many programmers are lazy and avoid threads. Plus it is harder to debug and synchronize a multithreaded application. Windows and Linux people have been doing this since the stone age, and Windows/Linux have had usable multiprocessor systems for more than a decade (it didn't start with Hyperthreading). I had a dual-processor 486 running NT 3.5 circa 1995. It's just been more of an optional "cool trick" to write threaded applications that the timid programmer avoids. Also it's worth noting that it's possible to go overboard with excessive threading and that leads to problems (context switching, thrashing, synchronization, etc).
Now, on the Mac side, OS 9 and below couldn't properly support SMP and it required a hacked version of the OS and a special version of the application. So the history of the Mac world has been, until recently with OSX, to avoid threading and multiprocessing unless specially called for and then at great pain to do so.
So it goes back to getting developers to write threaded applications. Now that we're getting to 4 and 8 core systems, it also presents a problem.
The classic reason to create a thread is to prevent the GUI from locking up while processing. Let's say I write a GUI program that has a calculation that takes 20 seconds. If I do it the lazy way, the GUI will lock up for 20 seconds because it can't process window messages during that time. If I write a thread, the calculation can take place there and leave the GUI thread able to process messages and keep the application alive, and then signal the other thread when it's done.
But now with more than 4 or 8 cores, the problem is how do you break up the work? 9 women can't have a baby in a month. So if your process is still serialized, you still have to wait with 1 processor doing all the work and the others sitting idle. For example, if you encode a video, it is a very serialized process. I hear some work has been done to simultaneously encode macroblocks in parallel, but getting 8 processors to chew on a single video is an interesting problem.
What you're saying isn't entirely true and may give some people the wrong idea.
First, a multicore system is helpful when running multiple CPU-intensive single-threaded applications on a proper multitasking operating system. For example, right now I'm ripping CDs on iTunes. One processor gets used a lot and the other three are idle. I could be using this CPU power for another app.
The reality is that to take advantage of multiple cores, you had to take advantage of threads. Now, I was doing this in my programs with OS/2 back in 1992. I've been writing multithreaded apps my entire career. But writing a threaded application requires thought and work, so naturally many programmers are lazy and avoid threads. Plus it is harder to debug and synchronize a multithreaded application. Windows and Linux people have been doing this since the stone age, and Windows/Linux have had usable multiprocessor systems for more than a decade (it didn't start with Hyperthreading). I had a dual-processor 486 running NT 3.5 circa 1995. It's just been more of an optional "cool trick" to write threaded applications that the timid programmer avoids. Also it's worth noting that it's possible to go overboard with excessive threading and that leads to problems (context switching, thrashing, synchronization, etc).
Now, on the Mac side, OS 9 and below couldn't properly support SMP and it required a hacked version of the OS and a special version of the application. So the history of the Mac world has been, until recently with OSX, to avoid threading and multiprocessing unless specially called for and then at great pain to do so.
So it goes back to getting developers to write threaded applications. Now that we're getting to 4 and 8 core systems, it also presents a problem.
The classic reason to create a thread is to prevent the GUI from locking up while processing. Let's say I write a GUI program that has a calculation that takes 20 seconds. If I do it the lazy way, the GUI will lock up for 20 seconds because it can't process window messages during that time. If I write a thread, the calculation can take place there and leave the GUI thread able to process messages and keep the application alive, and then signal the other thread when it's done.
But now with more than 4 or 8 cores, the problem is how do you break up the work? 9 women can't have a baby in a month. So if your process is still serialized, you still have to wait with 1 processor doing all the work and the others sitting idle. For example, if you encode a video, it is a very serialized process. I hear some work has been done to simultaneously encode macroblocks in parallel, but getting 8 processors to chew on a single video is an interesting problem.
RussOniPhone
Apr 6, 01:15 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) Version/5.0.2 Mobile/8G4 Safari/6533.18.5)
Does this mean I should cancel my order on the 11" Mac Book Air 1.4GZ, I got it with 4GB ram and it's a refurb so I saved some cash. Should I wait until June.
Thanks in advance for your advise!!
Does this mean I should cancel my order on the 11" Mac Book Air 1.4GZ, I got it with 4GB ram and it's a refurb so I saved some cash. Should I wait until June.
Thanks in advance for your advise!!
logandzwon
Apr 6, 02:08 PM
Nice...I'm glad to have a more rare piece of hardware. I love mine and have no issues, it'll only get better over time.Reminds me of the days of the RAZR, that's what the iPhone and iPad have become.
Honda sells a TON more cars than BMW by a huge factor...I'd rather drive a BMW, I guess you're all happy with the Hondas :)
I'd argue it's more like a the difference between a Corvette and Skyline GT-R circa 1996. For 97 Corvette gets an awesome overhaul, building on all the best features and designs from the competition. People start getting excited again, then the details of the R34 GT-R are announced. By 1999 it's back to drawing board for Corvette.
Honda sells a TON more cars than BMW by a huge factor...I'd rather drive a BMW, I guess you're all happy with the Hondas :)
I'd argue it's more like a the difference between a Corvette and Skyline GT-R circa 1996. For 97 Corvette gets an awesome overhaul, building on all the best features and designs from the competition. People start getting excited again, then the details of the R34 GT-R are announced. By 1999 it's back to drawing board for Corvette.
notabadname
Mar 22, 03:42 PM
To store data temporally. That is what RAM does.
I believe the question was about what App on the iPad 2 is hindered by the amount of RAM. What are you trying to do, with what App, that needs 1GB? If the RAM isn't enhancing the experience, than what is the point other than to increase cost? You could put 4GB in an iPad too, but you will likely notn use it (with the current 1/3 million Apps). So what is the magic number that works seamlessly for 99% of what people use the device for?
I believe the question was about what App on the iPad 2 is hindered by the amount of RAM. What are you trying to do, with what App, that needs 1GB? If the RAM isn't enhancing the experience, than what is the point other than to increase cost? You could put 4GB in an iPad too, but you will likely notn use it (with the current 1/3 million Apps). So what is the magic number that works seamlessly for 99% of what people use the device for?
BC2009
Apr 12, 05:42 PM
That is what the 49$ 3GS is for...
My buddy just got one the other day. Why cause it was 49 bucks...
and i got an HTC INspire for $20 that is better than my old 3GS
I think the $49 3Gs is AT&T's attempt to offer something that Verizon does not. Previous to Verizon getting the iPhone, the cheapest iPhone price was $99, and once the iPhone 5 comes out, I expect that there will no longer be a $49 iPhone option.
Offering a two-year old model at a discount is not what I call a deal -- and mind you -- I own a 32GB iPhone 3Gs while I am awaiting the iPhone 5. I love my iPhone 3Gs, but I would not advise anybody to buy one today with the iPhone 5 just around the corner.
Apple would do better creating a trendy newly-released iPhone-nano for a lower price and perhaps use iAd to help monetize it (the same way Amazon is doing with Kindle). Teens would much rather own a trendy new phone than a two-year old model that looks dated when held up next to its successor -- but that is just my guess at what the market would do -- I am certainly not all-knowing.
My buddy just got one the other day. Why cause it was 49 bucks...
and i got an HTC INspire for $20 that is better than my old 3GS
I think the $49 3Gs is AT&T's attempt to offer something that Verizon does not. Previous to Verizon getting the iPhone, the cheapest iPhone price was $99, and once the iPhone 5 comes out, I expect that there will no longer be a $49 iPhone option.
Offering a two-year old model at a discount is not what I call a deal -- and mind you -- I own a 32GB iPhone 3Gs while I am awaiting the iPhone 5. I love my iPhone 3Gs, but I would not advise anybody to buy one today with the iPhone 5 just around the corner.
Apple would do better creating a trendy newly-released iPhone-nano for a lower price and perhaps use iAd to help monetize it (the same way Amazon is doing with Kindle). Teens would much rather own a trendy new phone than a two-year old model that looks dated when held up next to its successor -- but that is just my guess at what the market would do -- I am certainly not all-knowing.
ugp
Jun 23, 12:41 PM
If the whole Region down here for Florida only got 139 I doubt Radio Shack got many iPhone 4s at all. Either that or all of them went to the huge Markets like New York and other areas like such.
cgmpowers
Jul 15, 12:24 PM
Has anyone considered this as to why Apple 'maybe' including two optical drives? We have external lightscribe 'superdrives' from Lacie (and others) but haven't seen one by Apple yet. That'd be a nice feature. So that's the first drive. The second optical drive is probably that BlueRay drive (massive storage capability compared to the other optical drive, and probably NOT capable of Lightscribing).
Other thoughts, I do agree it'd be nice to have four bays for hard drives but hard drive sizes are increasing again. I'd be very happy with two 500 or 600 gb hard drives (which is what I'll be ordering).
1 GB of ram min. is a must, I'm opting for at least 4 GB.
I also don't care if its 2.66 Ghz or 3.00 Ghz as long as its a quad (two dual core).. I just need an Intel MacPro soon.. My G4 1ghz machines are SO MUCH showing its age..
Other thoughts, I do agree it'd be nice to have four bays for hard drives but hard drive sizes are increasing again. I'd be very happy with two 500 or 600 gb hard drives (which is what I'll be ordering).
1 GB of ram min. is a must, I'm opting for at least 4 GB.
I also don't care if its 2.66 Ghz or 3.00 Ghz as long as its a quad (two dual core).. I just need an Intel MacPro soon.. My G4 1ghz machines are SO MUCH showing its age..

Dan==
Jul 27, 12:17 PM
How about a new Mac at WWDC?
Lower Model:
CConroe E6300 - 1.86 GHz � FSB1066 � 2 MB cache - ($185)
1GB RAM
160GB Serial ATA hard drive
Double-layer SuperDrive (DVD+R DL/DVD�RW/CD-RW)
One open PCI-Express expansion slot
One open Optical drive slot [maybe] (i.e. for 2nd DVD drive)
Graphics Card with 128MB SDRAM
Built-in AirPort Extreme and Bluetooth 2.0, USB/FW800
Remote [(?] I think this box will still be small enough to fit into home entertainment setups.]
Keyboard, Mighty Mouse...................................................... $999
Some Options:
Conroe E6600 - 2.40 GHz � FSB1066 � 4 MB cache � (+$100)
Wireless Keyboard/Mouse +$60
Add DVD/CD ROM drive (in 2nd slot) + $50
250GB SATA hard drive +$75
+1GB RAM (2GB total) +$100
+3GB RAM (4GB total) +$300
Slightly Better Graphics Card with 256MB SDRAM + $50
Much Better Graphics Card +$200+
http://img92.imageshack.us/img92/9648/macandmacminipx9.jpg
Lower Model:
CConroe E6300 - 1.86 GHz � FSB1066 � 2 MB cache - ($185)
1GB RAM
160GB Serial ATA hard drive
Double-layer SuperDrive (DVD+R DL/DVD�RW/CD-RW)
One open PCI-Express expansion slot
One open Optical drive slot [maybe] (i.e. for 2nd DVD drive)
Graphics Card with 128MB SDRAM
Built-in AirPort Extreme and Bluetooth 2.0, USB/FW800
Remote [(?] I think this box will still be small enough to fit into home entertainment setups.]
Keyboard, Mighty Mouse...................................................... $999
Some Options:
Conroe E6600 - 2.40 GHz � FSB1066 � 4 MB cache � (+$100)
Wireless Keyboard/Mouse +$60
Add DVD/CD ROM drive (in 2nd slot) + $50
250GB SATA hard drive +$75
+1GB RAM (2GB total) +$100
+3GB RAM (4GB total) +$300
Slightly Better Graphics Card with 256MB SDRAM + $50
Much Better Graphics Card +$200+
http://img92.imageshack.us/img92/9648/macandmacminipx9.jpg
dayne33
Aug 27, 05:40 PM
I was just checking out the CD vs C2D comparison at Anandtech, pretty interesting stuff.
My question is this, is Santa Rosa strictly the mobile platform? I'm a student holding off for an iMac revision, and am wondering if apple utilizes Conroe in the iMac, will the faster FSB's be supported? Is an updated platform already available for Conroe? (I guess I had more than one question )
Thanks
My question is this, is Santa Rosa strictly the mobile platform? I'm a student holding off for an iMac revision, and am wondering if apple utilizes Conroe in the iMac, will the faster FSB's be supported? Is an updated platform already available for Conroe? (I guess I had more than one question )
Thanks
CFreymarc
Mar 31, 05:59 PM
This is a smart move. It had to happen sooner or later.
John Gruber would eat Steve Job's ***** if he could. His opinion is extremely biased.
Tightening controls? How about Google having final right of refusal toward any mass production Bill of Materials for any Android phone going into production? That will keep the manufacturing accountants from screwing over the developers taking a $0.76 of parts out to save on a run but generate a million man hours of bug fixing in the third party developer community.
John Gruber would eat Steve Job's ***** if he could. His opinion is extremely biased.
Tightening controls? How about Google having final right of refusal toward any mass production Bill of Materials for any Android phone going into production? That will keep the manufacturing accountants from screwing over the developers taking a $0.76 of parts out to save on a run but generate a million man hours of bug fixing in the third party developer community.
fener
Aug 27, 08:08 AM
Expect new Merom-based macs, and a new iPod, on September 18th.
Simple. Apples' current sale for students on getting a MAJOR discount on iPods when you buy a new mac, ends on Friday the 15th. Thus, the following monday, will come the new updates. They wouldn't release before, because they would be cutting their profits even more than they are now.
Not true.
Recent years, updates came right before the end of the promotion.
Simple. Apples' current sale for students on getting a MAJOR discount on iPods when you buy a new mac, ends on Friday the 15th. Thus, the following monday, will come the new updates. They wouldn't release before, because they would be cutting their profits even more than they are now.
Not true.
Recent years, updates came right before the end of the promotion.
PCClone
Apr 27, 09:44 AM
This is a lie
Keeping a database of our general location is logging our location. :mad: Does Apple really think this double talk, where they say they keep a database of location but don't log the location is going to fly?
At least our overlord will now, I hope, stop collecting location data when location services are turned off. It's a disgrace that it took a media storm to shame them into action.
Maybe your name should be full of sh#%. We know you are a goo fan troll.
Keeping a database of our general location is logging our location. :mad: Does Apple really think this double talk, where they say they keep a database of location but don't log the location is going to fly?
At least our overlord will now, I hope, stop collecting location data when location services are turned off. It's a disgrace that it took a media storm to shame them into action.
Maybe your name should be full of sh#%. We know you are a goo fan troll.
ed233
Jul 28, 02:02 PM
Do you have any links that describe Merom's SpeedStep compared to Yonah's? I thought Yonah's was quite good, allowing you to reduce both clock speed and voltage simultaneously. It is always a problem with Intel, they say "improved SpeedStep", but they never tell you "improved compared to what".
I was able to find this about Conroe's implementation, which sounds fairly impressive:
http://www.sharkyextreme.com/hardware/cpu/article.php/3620036
The Conroe core includes support for Intel SpeedStep technology, and in an attempt to lower power and heat requirements, it emulates a mobile processor by lowering the multiplier when idle or in low usage. In the case of the Core 2 Extreme and Duo processors we reviewed, that amounted to a 1.6 GHz clock speed at idle. The Conroe can immediately fire up at full speed and match the system load. Core voltages can also be lowered through similar techniques, such as Intelligent Power Capability, which can turn computing functions on and off when needed, in order to fully maximize power efficiency.
I was able to find this about Conroe's implementation, which sounds fairly impressive:
http://www.sharkyextreme.com/hardware/cpu/article.php/3620036
The Conroe core includes support for Intel SpeedStep technology, and in an attempt to lower power and heat requirements, it emulates a mobile processor by lowering the multiplier when idle or in low usage. In the case of the Core 2 Extreme and Duo processors we reviewed, that amounted to a 1.6 GHz clock speed at idle. The Conroe can immediately fire up at full speed and match the system load. Core voltages can also be lowered through similar techniques, such as Intelligent Power Capability, which can turn computing functions on and off when needed, in order to fully maximize power efficiency.
skier777
Mar 26, 11:38 AM
I hope apple follows microsofts lead and lets students upgrade for 30 bucks in the first few months of release.
The only reason I upgraded from XP to windows7 was the student discount. It would be really nice if i could do the same for lion, otherwise SL is probably gunna be fine forever.
What if you skip releases. Will it be the same price to upgrade from Leopard as SL?
The only reason I upgraded from XP to windows7 was the student discount. It would be really nice if i could do the same for lion, otherwise SL is probably gunna be fine forever.
What if you skip releases. Will it be the same price to upgrade from Leopard as SL?
Slix
Apr 6, 03:45 PM
Never heard anyone say "I want a Xoom!" :rolleyes:
Ramsteiner
Mar 26, 06:48 PM
does anyone else thing launchpad is the worst idea yet?
I agree Launchpad is pretty weak if you paradigm is a traditional laptop or desktop computer. Now think touchscreen Imac. Makes sense and so does the new IPad style Mail. Won't be long.
I agree Launchpad is pretty weak if you paradigm is a traditional laptop or desktop computer. Now think touchscreen Imac. Makes sense and so does the new IPad style Mail. Won't be long.
Tacitus
Apr 10, 05:23 AM
Although the presentation is going to be about FCP, I wonder if Apple will announce any upgrades to the Mac Pro? An updated MP with Thunderbolt would surely be of interest to those in pro video.
Multimedia
Jul 21, 04:00 PM
It must take a lot of cores to RIP DVDs and seed them...:confused:I'm not ripping DVDs. I'm ripping DVD IMAGES made with Toast from EyeTV2 Digital SD and HD recordings to archive off air broadcast recordings for my personal use only. Nothing to do with seeding anything to anyone. Need more cores to encode and rip simultaneously instead of sequentially. Much faster to do a bunch of one or two shows simultaneously than larger sets sequentially. More cores will also allow for faster compacting of the edited shows - IE removal of ads - in the first place.
joemama
Nov 28, 07:54 PM
Jobs should walk into negotiations with the attitude of - "We would like more of a royalty for every song sold because if we didn't sell them on iTunes, people would simply download them illegally."
"...And if you don't adhere to this, we will stop selling Universal music and this is exactly what will happen."
Apple may be out 20 cents a song, but people will still buy iPods.
Think how much Universal will be losing.
"...And if you don't adhere to this, we will stop selling Universal music and this is exactly what will happen."
Apple may be out 20 cents a song, but people will still buy iPods.
Think how much Universal will be losing.
bwanac
Aug 8, 01:05 AM
Nothing impressive really... top secrets should be good.
Time Machine is ok. It looks awful for an Apple product, what is up with that background? Ugly. And I really want to know how much disk space it will be taking backing everything up constantly. I would most likely turn it off.
Time Machine is ok. It looks awful for an Apple product, what is up with that background? Ugly. And I really want to know how much disk space it will be taking backing everything up constantly. I would most likely turn it off.
Silentwave
Jul 14, 07:55 PM
Personally I go the BTO route at Apple.com for my PowerMacs and downgrade all RAM to the minimum cost and buy my RAM from a trusted 3rd party vendor for a savings of at least 10% if not more so.
sounds like a plan for me too. I just hope the prices drop soon and the selection gets a bit better :(
http://www.newegg.com/Product/ProductList.asp?Submit=ENE&N=2010170147+1052121731&Subcategory=147&description=&srchInDesc=&minPrice=&maxPrice=
sounds like a plan for me too. I just hope the prices drop soon and the selection gets a bit better :(
http://www.newegg.com/Product/ProductList.asp?Submit=ENE&N=2010170147+1052121731&Subcategory=147&description=&srchInDesc=&minPrice=&maxPrice=