brayhite
Apr 25, 02:01 PM
I think this IS a privacy issue. That data could end up in the wrong hands. Does anyone store a text document on their iPhone with a list of their bank details and passwords? No, because it could end up in the wrong hands. So could this data that's being collected.
This data shouldn't be recorded without permission, no matter what's being done with it.
And the next time somebody calls you, make sure you get their permission to store their phone number. Don't want to record their data without their consent.
This data shouldn't be recorded without permission, no matter what's being done with it.
And the next time somebody calls you, make sure you get their permission to store their phone number. Don't want to record their data without their consent.
iawait
Apr 11, 10:01 PM
I just don't think I can wait and that is SO irritating I may have to jump ship!
Newton memories :mad:
Newton memories :mad:
LagunaSol
Apr 19, 01:57 PM
wow @ post 2.
apple will have a hard time fighting this in court.
Hardly. Samsung would have been fine had they stuck to that original theme, rather than move into Apple's house as a squatter with a subsequent model:
http://www.tmobileniles.com/wp-content/uploads/2011/02/iphone4-vs-galaxy-s-head.jpg
apple will have a hard time fighting this in court.
Hardly. Samsung would have been fine had they stuck to that original theme, rather than move into Apple's house as a squatter with a subsequent model:
http://www.tmobileniles.com/wp-content/uploads/2011/02/iphone4-vs-galaxy-s-head.jpg
patrick0brien
Sep 20, 02:10 PM
Umm. What happened in here?
Can we reurn to some common respect please? This spat isn't constructive.
Can we reurn to some common respect please? This spat isn't constructive.
maclaptop
Apr 11, 04:58 PM
Apple can create Christmas any day of the year.
Only amongst those who's entirely sad life, waits in anticipation.
All the while, most of us have much richer, more well balanced lives.
Only amongst those who's entirely sad life, waits in anticipation.
All the while, most of us have much richer, more well balanced lives.
Nuck81
Sep 1, 08:45 AM
I'm going to use my $20 credit from Metroid to pre order this...
snebes
Apr 6, 10:38 AM
"But I JUST bought this..."
"3D, 3D, 3D."
"Wait... 4D?"
"You bought the wrong one dummy..."
You forgot the "*facepalm* stupid".
"3D, 3D, 3D."
"Wait... 4D?"
"You bought the wrong one dummy..."
You forgot the "*facepalm* stupid".
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.
z4n3
Apr 25, 02:50 PM
So does this mean I can get a refund on my 2 year old 3GS and 1st gen iPad :rolleyes:
netdog
Aug 5, 04:55 PM
...in the mean time, it's best to be conservative and hope we might be surprised.
Sure, I have no problem with someone else taking that stance.
Sure, I have no problem with someone else taking that stance.
AlligatorBloodz
Apr 8, 01:47 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)
Weird... I think there's more involved in this than we can imagine.
One thing that comes to my mind is the possibility they were holding their stock to sell it outside the country, as there's been a high demand and higher value to sell overseas.
Or... a competitor made an arrangement with Be$t Buy to sell a minimum quota a day (well... very odd, but possible) for who knows what reason.
It's a strange concept on BB's part, but if I had a store I would sell all my stock if there's a demand for it. If I hold off, my customers would be driven away to a competitor and I would loose both present and future sales.
When Apple tv2 came out, google paid bby to not sell it so google tv could get a head start
Weird... I think there's more involved in this than we can imagine.
One thing that comes to my mind is the possibility they were holding their stock to sell it outside the country, as there's been a high demand and higher value to sell overseas.
Or... a competitor made an arrangement with Be$t Buy to sell a minimum quota a day (well... very odd, but possible) for who knows what reason.
It's a strange concept on BB's part, but if I had a store I would sell all my stock if there's a demand for it. If I hold off, my customers would be driven away to a competitor and I would loose both present and future sales.
When Apple tv2 came out, google paid bby to not sell it so google tv could get a head start
azzurri000
Sep 19, 12:28 AM
I think when the update reveals itself to be.... just a mere processor swop the moans to the high heavens would be deafening!
Any likelihood that we will see a new case design at MWSF perchance? :rolleyes:
Haha, sounds like other people's disappointment amuses you. Feeding the fires of anticipation there... I can play along.
Any likelihood that we will see a laptop (NOT notebook) that can actually be used in one's lap without suffering from burns?!
Any likelihood that we will see a new case design at MWSF perchance? :rolleyes:
Haha, sounds like other people's disappointment amuses you. Feeding the fires of anticipation there... I can play along.
Any likelihood that we will see a laptop (NOT notebook) that can actually be used in one's lap without suffering from burns?!
Hastings101
Apr 6, 03:29 PM
But hey, haven't you heard, Honeycomb is a real tablet OS. (Whatever the heck that means.)
Google must have used that line in a PowerPoint somewhere because I see it regurgitated verbatim on every single iPad vs. Honeycomb thread.
The Google brainwashing continues. ;)
No more a real tablet OS than iOS is
The corporate brainwashing continues ;)
Google must have used that line in a PowerPoint somewhere because I see it regurgitated verbatim on every single iPad vs. Honeycomb thread.
The Google brainwashing continues. ;)
No more a real tablet OS than iOS is
The corporate brainwashing continues ;)
Silentwave
Jul 15, 01:12 AM
What about 4 SATA II Drives? This way I can have a mirrored 1TB RAID [clicks heals]
The speed of a RAID with the security of mirroring.. it doesn't get mucho better :)
You mean SATA 3Gbps? Sata II is often confused with Sata 3Gbps and has not been brought to market yet, unfortunately. the sata people even have a page explaining the difference on their site :confused: . the good part though is they're planning 6Gbps and IIRC 12 as well.
I want sata3g or SAS or both.
The speed of a RAID with the security of mirroring.. it doesn't get mucho better :)
You mean SATA 3Gbps? Sata II is often confused with Sata 3Gbps and has not been brought to market yet, unfortunately. the sata people even have a page explaining the difference on their site :confused: . the good part though is they're planning 6Gbps and IIRC 12 as well.
I want sata3g or SAS or both.
OutThere
Apr 27, 09:22 AM
Can you really blame them? They won't have a purpose in life without Birtherism.
Si Dieu n'existait pas, il faudrait l'inventer.
Si Dieu n'existait pas, il faudrait l'inventer.
maclaptop
Apr 19, 09:03 PM
Yes, their Nexus S phones have almost as same packaging as iPhone 3GS or iPhone 4 packaging.
Yes, their icons are so similar.
Yes, their UI is very identical to Apple's iOS.
Samsung just copies apple.
I agree, Samsung has copied Apple.
In fact I'm truly impressed with Samsung's expertise. Their Galaxy S is every bit as nice as my iPhone 4.
In fact after doing the research, I decided to add a line to my family plan so I could try the Android powered phone.
Now I have two great phones. However I must say I'm shocked that I like the Galaxy better than the more diminutive iPhone.
There's a lot to be said for a spacious and gorgeous 4.0" Super AMOLED display. I had no idea of the advantages it offers.
Then there's a huge advantage with SWYPE. Instead of hammering on a hard glass keyboard when messaging, Swype allows you to glide one finger across the keys to form words. It's the single greatest advancement in touchscreen input technology to date.
Swype submitted their app to Apple nearly a year ago, but it was rejected.
One can only guess, its excellent, trouble free and easy operation triggered Steve's jealousy.
Yet it's important that we give credit to Apple for insisting on a old school slow yet familiar keyboard. I must admit it took me ten minutes of watching the tutorial, and fifteen minutes more to adapt.
That said it quickly has become my favorite.
I really wish Apple would overcome their fear of including it on the iPhone. My Galaxy S gives me the choice of two other keyboards on case I didn't like Swype. Apple could do the same.
I really like Apple, I have many of their products.
Just think of how much greater they could be, if not for their closed minded ways towards anything outside of their comfort zone.
Yes, their icons are so similar.
Yes, their UI is very identical to Apple's iOS.
Samsung just copies apple.
I agree, Samsung has copied Apple.
In fact I'm truly impressed with Samsung's expertise. Their Galaxy S is every bit as nice as my iPhone 4.
In fact after doing the research, I decided to add a line to my family plan so I could try the Android powered phone.
Now I have two great phones. However I must say I'm shocked that I like the Galaxy better than the more diminutive iPhone.
There's a lot to be said for a spacious and gorgeous 4.0" Super AMOLED display. I had no idea of the advantages it offers.
Then there's a huge advantage with SWYPE. Instead of hammering on a hard glass keyboard when messaging, Swype allows you to glide one finger across the keys to form words. It's the single greatest advancement in touchscreen input technology to date.
Swype submitted their app to Apple nearly a year ago, but it was rejected.
One can only guess, its excellent, trouble free and easy operation triggered Steve's jealousy.
Yet it's important that we give credit to Apple for insisting on a old school slow yet familiar keyboard. I must admit it took me ten minutes of watching the tutorial, and fifteen minutes more to adapt.
That said it quickly has become my favorite.
I really wish Apple would overcome their fear of including it on the iPhone. My Galaxy S gives me the choice of two other keyboards on case I didn't like Swype. Apple could do the same.
I really like Apple, I have many of their products.
Just think of how much greater they could be, if not for their closed minded ways towards anything outside of their comfort zone.
Willis
Jul 28, 04:27 PM
Okay, I did some tinkering myself, just for kicks, and here's what I came up with. I thought that we were talking about a computer that was somewhere between a Mac Mini and a Mac Pro (Power Mac), so I thought, maybe the style should be a combination of the two. Let me know what you think.
It's not a Mac Plus... It's a Mac++!
http://www.ghwphoto.com/Mac++1.PNGhttp://www.ghwphoto.com/Mac++2.PNG
can you say "G4 Cube"?
It's not a Mac Plus... It's a Mac++!
http://www.ghwphoto.com/Mac++1.PNGhttp://www.ghwphoto.com/Mac++2.PNG
can you say "G4 Cube"?
gnasher729
Apr 27, 08:59 AM
You mean to tell me that Apple, a company that seems to release fairly solid software, "neglected" to test that when disabling an option called LOCATION SERVICES, that it actually disabled location checking properly? Are some of you really so Jobsian?
Call a spade a spade. There's no possible chance this was a mistake. They got caught. They should not be given a pass over it. If a user opts to disable Location Services, they were working under the false impression that their location was no longer being tracked. Seems mighty shifty to me. Doesn't matter how much data might have been user-identifiable. This sounds like something Google would do, not Apple.
You can think what you want. I develop software for a living. This file is not a "feature", and it isn't and never was present intentionally to store your location data. It is a very, very useful collection of data that in some situations makes your phone work faster and save power. Location Services are disabled when you disable them, and enabled when you enable them. Whoever tested this was testing exactly that: That Location Services does its best to find your location when it is enabled, and that it absolutely refuses to look for your location when it is disabled. That's what enabling/disabling location services means. Nobody at Apple ever cared about this file. It wasn't on anyone's radar before people had their paranoia attack.
This file recorded locations of WiFi and cell towers, but only the last time that you have been at each place. Exactly what is needed to improve Location Services. All your history, which would have been much more useful to track you, is deleted. Your actual location, which is known to your phone, and which would have been much more useful to track you, is deleted. All because it didn't serve the purpose of this file, which isn't and never was to track you.
Call a spade a spade. There's no possible chance this was a mistake. They got caught. They should not be given a pass over it. If a user opts to disable Location Services, they were working under the false impression that their location was no longer being tracked. Seems mighty shifty to me. Doesn't matter how much data might have been user-identifiable. This sounds like something Google would do, not Apple.
You can think what you want. I develop software for a living. This file is not a "feature", and it isn't and never was present intentionally to store your location data. It is a very, very useful collection of data that in some situations makes your phone work faster and save power. Location Services are disabled when you disable them, and enabled when you enable them. Whoever tested this was testing exactly that: That Location Services does its best to find your location when it is enabled, and that it absolutely refuses to look for your location when it is disabled. That's what enabling/disabling location services means. Nobody at Apple ever cared about this file. It wasn't on anyone's radar before people had their paranoia attack.
This file recorded locations of WiFi and cell towers, but only the last time that you have been at each place. Exactly what is needed to improve Location Services. All your history, which would have been much more useful to track you, is deleted. Your actual location, which is known to your phone, and which would have been much more useful to track you, is deleted. All because it didn't serve the purpose of this file, which isn't and never was to track you.
xxBURT0Nxx
Apr 7, 09:26 AM
ok don't be as ass! back-lit keyboard on the 13' but not the 11' would be heartbreaking for those of us who wants the 11 and will make the decision making between the two even harder..
yes posting DREAM spec's for a machine that he really knows absolutely nothing about makes him an ass because it is not your dream spec sheet:confused: some people these days... smh:rolleyes:
yes posting DREAM spec's for a machine that he really knows absolutely nothing about makes him an ass because it is not your dream spec sheet:confused: some people these days... smh:rolleyes:
vansouza
Nov 28, 09:59 PM
http://www.macrumors.com/images/macrumorsthreadlogo.gif (http://www.macrumors.com)
Reuters reports (http://today.reuters.com/news/articlenews.aspx?type=technologyNews&storyID=2006-11-28T213349Z_01_N28267036_RTRUKOC_0_US-MEDIA-SUMMIT-UNIVERSALMUSIC-IPOD.xml&WTmodLoc=TechNewsHome_C2_technologyNews-1) that Universal Music Group Chief Executive said on Tuesday that they may seek a royalty from Apple for iPod sales:
Universal made news earlier this month (http://www.macrumors.com/pages/2006/11/20061109124909.shtml) when it was reported that Microsoft had agreed to pay Universal Music a fee for every new Zune Music Player sold. Music studios, of course, currently get a cut from every song sold, but do not get any percentage of iPod sales.
Perhaps the pencil makers should demand a payment from the pen makers... and if you have a pen and paper you must be copying documents so paper producers should pay book dealers... I could live never buying another Universal song on iTunes... thank you very much Bill Gates... his check to Universal is what may be $900. for all Zunes sold... what a joke...
Reuters reports (http://today.reuters.com/news/articlenews.aspx?type=technologyNews&storyID=2006-11-28T213349Z_01_N28267036_RTRUKOC_0_US-MEDIA-SUMMIT-UNIVERSALMUSIC-IPOD.xml&WTmodLoc=TechNewsHome_C2_technologyNews-1) that Universal Music Group Chief Executive said on Tuesday that they may seek a royalty from Apple for iPod sales:
Universal made news earlier this month (http://www.macrumors.com/pages/2006/11/20061109124909.shtml) when it was reported that Microsoft had agreed to pay Universal Music a fee for every new Zune Music Player sold. Music studios, of course, currently get a cut from every song sold, but do not get any percentage of iPod sales.
Perhaps the pencil makers should demand a payment from the pen makers... and if you have a pen and paper you must be copying documents so paper producers should pay book dealers... I could live never buying another Universal song on iTunes... thank you very much Bill Gates... his check to Universal is what may be $900. for all Zunes sold... what a joke...
Erasmus
Aug 27, 02:58 AM
I already have those stats, I want to see them drop in a high-end Conroe (~3GHz) so I would know that I could feasibly upgrade my 2GHz Core Duo in the future. It's possible, isn't it? I mean, the G5's were really hot, and the iMac enclosure could handle that, wouldn't the new Intel ones be able to handle the Conroe Extremes?
See Apple???
Yet another potential customer for iMac Ultra. We Want C2DE + X1900 and a 23" screen!
It has been demonstrated an iMac can take large amounts of heat. I should expect (With almost certainty) that iMac will get at least 2.4 Conroe, which should be quite a significant increase on its own, and possibly higher. 2.4 on the low end 17" model, 2.66 in 20" and the option of 2.93 or 3.2 in iMac Ultra! (Then Apple can gift me with one for coming up with such a great idea)
X1800's for the 17 and 20 inches, and X1900 for the 23".
Sounds good to me.
Extra space due to 23" could be used for the cooling of the twin fires of CPU and GPU.
See Apple???
Yet another potential customer for iMac Ultra. We Want C2DE + X1900 and a 23" screen!
It has been demonstrated an iMac can take large amounts of heat. I should expect (With almost certainty) that iMac will get at least 2.4 Conroe, which should be quite a significant increase on its own, and possibly higher. 2.4 on the low end 17" model, 2.66 in 20" and the option of 2.93 or 3.2 in iMac Ultra! (Then Apple can gift me with one for coming up with such a great idea)
X1800's for the 17 and 20 inches, and X1900 for the 23".
Sounds good to me.
Extra space due to 23" could be used for the cooling of the twin fires of CPU and GPU.
Teddy's
Jul 27, 12:32 PM
at last, I may be able to build a system that will run Vista well!
EEEEEEEEEWWWWW!!!!!
EEEEEEEEEWWWWW!!!!!
twoodcc
Nov 30, 05:20 PM
so far i like this game. i haven't had time to play it alot, but i'm a level 6 right now, and i'm about 9% game complete.
balamw
Apr 6, 04:40 PM
I should say that I do own an Android device. I own an original Nook, and will probably pick up a 4-7" device at some point to play with in a generation or two.
B
B
No comments:
Post a Comment