funny bieber jokes
Posted by bodrong | | Posted On Sunday, 22 May 2011 at 01:07
roland.g
Sep 1, 01:39 PM
wouldn't swapping a conroe chip in be an option? just go to Fry's and buy the chip then.
No Yonah and Merom are pin-compatible. Conroe isn't. Need a whole new motherboard.
No Yonah and Merom are pin-compatible. Conroe isn't. Need a whole new motherboard.
RebootD
Apr 12, 09:59 PM
I hope they don't consider this a all new program and not offer upgrades.
But then again it might be offered for cheap on the App Store anyway.
It will be interesting if they sell it stand alone and drop motion/livetype etc.
But then again it might be offered for cheap on the App Store anyway.
It will be interesting if they sell it stand alone and drop motion/livetype etc.
csimmons
Apr 3, 04:03 AM
It is, indeed, sad to see someone get so emotionally attached to a consumer product that they cannot admit to themselves that the product may have some flaws.
You obviously need to relax. There is more to life than iPad.
The only thing worse than trolls in threads like this are posters (like yourself) who suffer from Yogi Bear Syndrome.
To say that "virtually every" iPad 2 has a backlight problem simply makes you look like an idiot. There's no way you can know this, and basing your assumption on the number of posts in a forum - be it Apple's or someone else's - just make you look foolish, especially considering most forums are populated by just a few people. The reality is that 99% of iPad 2 users probably don't even know that there is an iPad forum on the internet!
Case in point: count the number of times YOU'VE posted your BS here, and the 9 or 10 people who bothered to answer you. That's already taken up more than 4 pages by itself. Case rested. :rolleyes:
You obviously need to relax. There is more to life than iPad.
The only thing worse than trolls in threads like this are posters (like yourself) who suffer from Yogi Bear Syndrome.
To say that "virtually every" iPad 2 has a backlight problem simply makes you look like an idiot. There's no way you can know this, and basing your assumption on the number of posts in a forum - be it Apple's or someone else's - just make you look foolish, especially considering most forums are populated by just a few people. The reality is that 99% of iPad 2 users probably don't even know that there is an iPad forum on the internet!
Case in point: count the number of times YOU'VE posted your BS here, and the 9 or 10 people who bothered to answer you. That's already taken up more than 4 pages by itself. Case rested. :rolleyes:
Small White Car
Apr 12, 09:14 PM
Ok, so the text update says the screenshot is 'sexy.'
Well, I'm sold!
Well, I'm sold!
JFreak
Jul 14, 03:41 AM
Wireless "N"? psh, I'm still using "B".
It would be nice - in theory - to have a hyper-fast wireless connection; however, what does it matter if my outside line stays at 2M/512k speed? The B-spec is perfectly fine for quite some time.
It would be nice - in theory - to have a hyper-fast wireless connection; however, what does it matter if my outside line stays at 2M/512k speed? The B-spec is perfectly fine for quite some time.
alakazzam
Jun 22, 01:57 PM
would be interesting to see it in action. I'm not sure I'd like touching my iMac screen, in fact right now I HATE fingers near my iMac's screen let alone a fingerprint. I'll have to see it before I completely bash it though :)
islanders
Dec 28, 08:09 PM
Well here is a link for LCD outselling CRT in both Europe and North America.
http://news.com.com/2100-1041_3-6138678.html
http://news.com.com/2100-1041_3-6138678.html
dethmaShine
May 2, 05:24 PM
If you click on Show Content on any app and replace the first three files from an app downloaded from the app store it will happen with any app you want.
Right Click -> Show Package Contents -> Contents
Copy:
_CodeSignature
_MASReceipt
CodeResources
Then select and app not from the Mac App Store and Right Click -> Show Package Contents -> Contents
Then paste the three files. After you reboot your Mac it should work.
(This has been working since the past DP)
Im on DP 2 Update 3. This un-installation process applies to all external apps, not just MAS apps. No code, no change required. :)
Right Click -> Show Package Contents -> Contents
Copy:
_CodeSignature
_MASReceipt
CodeResources
Then select and app not from the Mac App Store and Right Click -> Show Package Contents -> Contents
Then paste the three files. After you reboot your Mac it should work.
(This has been working since the past DP)
Im on DP 2 Update 3. This un-installation process applies to all external apps, not just MAS apps. No code, no change required. :)
janstett
Mar 23, 09:31 AM
The chance that the iPod Classic is updated to 220GB is zero. Apple has no plans to ever update a hard drive based non-touch portable device (they would not waste their time), and they've shown even less interest in increasing the capacity of any device beyond even 64GB flash.
Tony
Wasn't there a decrease from 160 to 120? But I see now it's back to 160.
I'd like to see Apple take it to the next level -- 500gb - 1TB. I have a 500gb Archos (as well as two 240gb iPods) and none of them makes it past an altitude of 33,000 songs.
Tony
Wasn't there a decrease from 160 to 120? But I see now it's back to 160.
I'd like to see Apple take it to the next level -- 500gb - 1TB. I have a 500gb Archos (as well as two 240gb iPods) and none of them makes it past an altitude of 33,000 songs.
adroit
Nov 15, 11:25 AM
That really depends on the program, on how "parallelizable" the application is.
The simplest way to think of it is like this: Let's say you have a program that first has to calculate A. Then, when it's done that, it uses the result of A to calculate B. Then, when it's done that, uses the result of B to calculate C, then C to D, and so on. That's a *serial* problem there. The calculation of B can't begin until A is done, so it doesn't matter how many processors you have running, all computation is held up on one spot.
On the other hand, let's say you have an application that needs to calculate A, B, C and D, but those four values are not dependent on each other at all. In that case, you can use four processors at the same time, to calculate all four values at the same time.
Think of it like baking a cake. You can't start putting on the icing until the cake is done baking. And you can't start baking the cake until the ingredients are all mixed together. But you can have people simultaneously getting out and measuring the ingredients.
So that problem is partially parallelizable, but the majority of its workload is a serial process.
Some software applications, just by their very nature, will never be able to do anything useful with multiple processors.
This is true, but there are still many many ways to optimize the multi-core processor that's not currently being use.
For example, I am waiting for a program to compile right now. Although I have a dual core on my computer, the compiler only compile one file at a time and usually takes about 10 min to do a full compile . If I have an 8 core computer with a multi-threaded compiler then I can cut the total time to jsut over a min + couple of seconds for linking time.
I think the main problem with muti-threading program is that it is difficult to implement, especially for coders who only knows high-level languages. Muti-threading in low-level program such as C is not easy but at least it is straight-forward. But trying to muti-thread high-level language such as VB or C# can get you into a big headace since everything is abstracted from the programmer. To do that, you need to get into unsafe code and call a bunch of DLLs, and it's easy to get memory leaks. Basically it can start to get very complicated, very quickly.
The simplest way to think of it is like this: Let's say you have a program that first has to calculate A. Then, when it's done that, it uses the result of A to calculate B. Then, when it's done that, uses the result of B to calculate C, then C to D, and so on. That's a *serial* problem there. The calculation of B can't begin until A is done, so it doesn't matter how many processors you have running, all computation is held up on one spot.
On the other hand, let's say you have an application that needs to calculate A, B, C and D, but those four values are not dependent on each other at all. In that case, you can use four processors at the same time, to calculate all four values at the same time.
Think of it like baking a cake. You can't start putting on the icing until the cake is done baking. And you can't start baking the cake until the ingredients are all mixed together. But you can have people simultaneously getting out and measuring the ingredients.
So that problem is partially parallelizable, but the majority of its workload is a serial process.
Some software applications, just by their very nature, will never be able to do anything useful with multiple processors.
This is true, but there are still many many ways to optimize the multi-core processor that's not currently being use.
For example, I am waiting for a program to compile right now. Although I have a dual core on my computer, the compiler only compile one file at a time and usually takes about 10 min to do a full compile . If I have an 8 core computer with a multi-threaded compiler then I can cut the total time to jsut over a min + couple of seconds for linking time.
I think the main problem with muti-threading program is that it is difficult to implement, especially for coders who only knows high-level languages. Muti-threading in low-level program such as C is not easy but at least it is straight-forward. But trying to muti-thread high-level language such as VB or C# can get you into a big headace since everything is abstracted from the programmer. To do that, you need to get into unsafe code and call a bunch of DLLs, and it's easy to get memory leaks. Basically it can start to get very complicated, very quickly.
twoodcc
Nov 28, 12:29 AM
Congrats! may the next mil go quickly by.
thanks! i hope so.
and congrats to you, whiterabbit, for hitting 3 million!
thanks! i hope so.
and congrats to you, whiterabbit, for hitting 3 million!
archer75
Apr 19, 11:45 AM
It was rumored just prior to the macbook pro refresh that they might come with a small 16gb SSD drive just for the OS. Wouldn't surprise me to see that make it's way into an imac. Large SSD's are just too expensive and often times not big enough. And you only get a finite number of writes on them before they're garbage.
BenRoethig
Aug 29, 11:45 AM
I would like to see a "media center" with a basic built-in TV-tuner so I could use it as a TIVO. It cant be that hard to add a TV-tuner...
I'm thinking something similar. 3.5x8.5x8.5. Basically a larger MacMini with a 3.5" hard drive, dedicated graphics, and video chipset similar to the Miglia TV Max.
I'm thinking something similar. 3.5x8.5x8.5. Basically a larger MacMini with a 3.5" hard drive, dedicated graphics, and video chipset similar to the Miglia TV Max.
-AG-
Apr 12, 08:36 PM
Its a room FULL of video industry specialists.
You would think that ONE of them would be able to do a live video stream.
You would think that ONE of them would be able to do a live video stream.
Porchland
Sep 8, 03:30 PM
We'll I guess you guys are right about getting a new streaming airport... looks like the wait time is back up from 24hours to 1-3 WEEKS WEEEEHOOOOOO!!!!!
Airport Express still shows available within 24 hours, so looks like Extreme is getting updated but Express is not.
Airport Express still shows available within 24 hours, so looks like Extreme is getting updated but Express is not.
mwayne85
Apr 19, 10:57 AM
What are these "Macs" you speak of?
kadajawi
Sep 6, 11:21 AM
Now that the Minis are Core Duo I like it more. Even though it's still $599 ($579 Edu) for the low end, it is at least not a solo. The Mini is still a good computer for a low end price range, even if it isn't the very newest processor available. I would definitely recommend a Mini, but since the iMac is so close in the Edu department, it is a little tough for the 1.83 clockspeed.
I don't think the iMac is so close. The low end iMac doesn't has a superdrive, no Front Row remote... it does have more than twice the HD and a slightly faster CPU, but other than that it seems pretty identical to the low end Mac Mini. That means $400 gets me a not so big TFT screen (far less than $200... although the quality may be better on the iMac... but you would get a bigger one for less than $200...), a bit more and faster storage space (external HD? How much is that? $100 for a small one (still bigger than the iMacs 160 GB, if you take the built in space. And you can make use of Time Machine)), and a slightly faster CPU (not a big deal to me) + you get Front Row.
If you don't mind you can get an external superdrive. A DVD writer is 30 � here, dunno about the case. Might be faster too. And you may upgrade the drive to Blue Ray or HD-DVD, later.
I don't think the iMac is so close. The low end iMac doesn't has a superdrive, no Front Row remote... it does have more than twice the HD and a slightly faster CPU, but other than that it seems pretty identical to the low end Mac Mini. That means $400 gets me a not so big TFT screen (far less than $200... although the quality may be better on the iMac... but you would get a bigger one for less than $200...), a bit more and faster storage space (external HD? How much is that? $100 for a small one (still bigger than the iMacs 160 GB, if you take the built in space. And you can make use of Time Machine)), and a slightly faster CPU (not a big deal to me) + you get Front Row.
If you don't mind you can get an external superdrive. A DVD writer is 30 � here, dunno about the case. Might be faster too. And you may upgrade the drive to Blue Ray or HD-DVD, later.
JRM PowerPod
Aug 7, 04:54 AM
Yes living in th UK is like punishment for being born at the moment. Can I stay with you in Aussie? I have a G5 and a MacBook you can use. :D
To think you guys thought it was punishment to ship us here. I laugh
I already have one of each, though my MacBook does randomly shut down. But another G5, hmmmm, well i don't use my Quad with 4gb 1tb 7800 to its potential anyway.
Once again the UK is redundant. Wait until we play England in the Ashes, omg, we are going to destroy you.
To think you guys thought it was punishment to ship us here. I laugh
I already have one of each, though my MacBook does randomly shut down. But another G5, hmmmm, well i don't use my Quad with 4gb 1tb 7800 to its potential anyway.
Once again the UK is redundant. Wait until we play England in the Ashes, omg, we are going to destroy you.
Eidorian
Aug 26, 11:00 AM
Watch the WWDC keynote and note that the xserves now use Woodcrest which has a higher TDP than Conroe (95W compared to 65W). Also note what they say about Woodcrest having a better thermal environment that the G5's they were using before which were the same G5's (non-dual core) that the iMac used I believe. Conroe has better thermal characteristics than G5's, the Mac Pro and xserve prove that.
iMac will get Conroe. 2.4Ghz and 2.66Ghz. Conroe is the best value for performance processor that Intel are offering, so they need to use it SOMEWHERE in their lineup.Err...I was defending that Conroe could fit in the iMac. Especially having the G5 in there. (Woodcrest's TDP is 85W by the way...)
And look here (http://spamreaper.org/frankie/macintel.html)
iMac will get Conroe. 2.4Ghz and 2.66Ghz. Conroe is the best value for performance processor that Intel are offering, so they need to use it SOMEWHERE in their lineup.Err...I was defending that Conroe could fit in the iMac. Especially having the G5 in there. (Woodcrest's TDP is 85W by the way...)
And look here (http://spamreaper.org/frankie/macintel.html)
wolfie37
Apr 21, 03:42 PM
And the non-story with the non-privacy issues goes on and on and on. Sometimes a little knowledge really is a bad thing. So some info is stored on your phone, and your computer and this results in a public outcry. Yet every mobile phone company has logs of where and when every text and call you made through them and data on which masts you were connected to at the time, regardless of wether you have a smart phone or a plain old dumb one. Credit card companies know what you spent, what you bought and where you bought it. Shops have data on when and where you purchased from them using your card. Airports/airlines know where you have been and when. I could go on.
All of these miss one key point, they are of no use except to someone with malicious intent, yet do we hear anything about addressing that which is the real issue. The biggest fear I have read about, in terms of numbers, is someone getting caught cheating on their partner. Think about it, no complaints about the cheating but about being caught!!! Just where is the sense of proportion and focus on the real issues???
All of these miss one key point, they are of no use except to someone with malicious intent, yet do we hear anything about addressing that which is the real issue. The biggest fear I have read about, in terms of numbers, is someone getting caught cheating on their partner. Think about it, no complaints about the cheating but about being caught!!! Just where is the sense of proportion and focus on the real issues???
TangoCharlie
Jul 14, 02:52 AM
imagine the data you could put onto those disks though!
... and what you'd loose when the disk goes bad :mad:
... and what you'd loose when the disk goes bad :mad:
fuziwuzi
Jun 23, 08:34 AM
Then what was the point in the iPad?
it can warm your balls in winter?
it can warm your balls in winter?
Erwin-Br
Apr 21, 12:30 PM
If this were Google or M$ you apologists would be foaming at the mouth.
The anti-Google folks on this forum have used the privacy issue as ammunition against Google for quite some time now. To my surprise (or not really) all of the sudden privacy is not important to then anymore.
At least with Google you KNOW data is collected.
The anti-Google folks on this forum have used the privacy issue as ammunition against Google for quite some time now. To my surprise (or not really) all of the sudden privacy is not important to then anymore.
At least with Google you KNOW data is collected.
andrew.gw
Apr 3, 06:30 AM
If you scroll up over the icon of a closed app in the dock you see thumbnails of those recent files. Pretty cool.
Hey, that's pretty awesome! I wish that would work with Expos�, for open applications...
Hey, that's pretty awesome! I wish that would work with Expos�, for open applications...
Post a Comment