jvaska
Feb 23, 10:43 AM
I got the same error message...I use CocalMySQL too...
2002cbr600f4i
Jun 27, 07:13 PM
Well, there may be lines, but unless apple manages to get enough to AT&T to cover all the pre-orders and then some, it might all be for naught...
imaketouchtheme
Apr 8, 07:54 PM
Most likely, the buyer will send you back a Core 2 Duo machine and keep your i5. Did you jot down the serial number with pictures before you sent the computer to him/her?
md63
Mar 14, 12:21 PM
I have an original iPad which is jail broken and has displayout installed. I picked up the new HDMI adapter from the Apple store and every app mirrors perfectly except for Netflix. With Netflix I get a red Netflix screen on my TV, however, the video only plays on the iPad.
All other applications including Air Video, ABC player, and Videos installed through iTunes play on both screens.
Any thoughts would be appreciated.
Thanks
All other applications including Air Video, ABC player, and Videos installed through iTunes play on both screens.
Any thoughts would be appreciated.
Thanks
more...
harpster
Apr 7, 08:33 AM
Hi thanks for looking at this, I tried what you said but Im still not able to receive the email, could there be a server setting or email setting that I need to enable?
thanks
Worked for me, sent to my gmail email address. I didn't use the form, just hard coded the variables on the email script.
thanks
Worked for me, sent to my gmail email address. I didn't use the form, just hard coded the variables on the email script.
WillEH
Apr 27, 09:02 PM
I've read through several different things online and can't seem to find the answer anywhere. I'm going to purchase a 13" Macbook Pro here in the next few weeks and was planning on purchasing AppleCare coverage with it. However I have no Apple Stores near me. I do, however, have two Authorized Service Providers within ten miles of me. Do the Authorized Service Providers honor the AppleCare protection? If the HDD crashes, overheating problems, battery issues, etc will they fix it for free under my AppleCare plan? Or would I have to send it through the mail to Apple and have them fix it?
I've read differing views online. On Apple's AppleCare page it says "Apple may provide service through one or more of the following options: carry-in service (to Apple Retail Stores or Apple Authorized Service Providers), customer drop-off (to UPS stores in the U.S., for iPod and iPhone only), direct mail-in service, onsite service (for desktop computers), or Do-It-Yourself (DIY) parts (so you can service your own product)." I wasn't sure if that meant you can get it repaired (at your cost without voiding the warranty) at Authorized Service Providers or if it meant that the ASPs will honor the AppleCare coverage and fix it for free.
Thanks for your help...
I think you have to send it off to Apple for it to be fixed. I'm sure that resellers don't fix products. But I could be wrong. A reseller may replace the laptop, but I'm sure they won't fix it. Edit: Mal has answered your question. Again my answer was c*ap! ;)
I've read differing views online. On Apple's AppleCare page it says "Apple may provide service through one or more of the following options: carry-in service (to Apple Retail Stores or Apple Authorized Service Providers), customer drop-off (to UPS stores in the U.S., for iPod and iPhone only), direct mail-in service, onsite service (for desktop computers), or Do-It-Yourself (DIY) parts (so you can service your own product)." I wasn't sure if that meant you can get it repaired (at your cost without voiding the warranty) at Authorized Service Providers or if it meant that the ASPs will honor the AppleCare coverage and fix it for free.
Thanks for your help...
I think you have to send it off to Apple for it to be fixed. I'm sure that resellers don't fix products. But I could be wrong. A reseller may replace the laptop, but I'm sure they won't fix it. Edit: Mal has answered your question. Again my answer was c*ap! ;)
more...
TheStrudel
Apr 25, 06:09 PM
You're stuck with it. Sadly, you're looking at the most expensive Mac Pro RAM, probably of all time, because FB-DIMMs are more expensive, these are no longer produced in quantity, and the machines that use them are outdated.
Transintl (via their still-running holiday special) sells the cheapest ram I've been able to find for mine.
Transintl (via their still-running holiday special) sells the cheapest ram I've been able to find for mine.
notjustjay
May 6, 09:27 AM
Congrats on the well-deserved vacation, I hope you enjoy it.
I was working those kind of hours for a couple of months toward the end of last year. Aggressive software deadlines. I count myself fortunate that I get paid for the overtime. It's much easier to accept working at 8pm on a Sunday night when I know I can charge time and a half for the entire weekend!
Things have settled a bit but I'm finding a comfortable pace of working mostly regular hours during the week, plus coming in on Sunday afternoons for a few OT hours.
I was working those kind of hours for a couple of months toward the end of last year. Aggressive software deadlines. I count myself fortunate that I get paid for the overtime. It's much easier to accept working at 8pm on a Sunday night when I know I can charge time and a half for the entire weekend!
Things have settled a bit but I'm finding a comfortable pace of working mostly regular hours during the week, plus coming in on Sunday afternoons for a few OT hours.
more...
Michael383
May 7, 01:37 AM
I don't understand why Apple doesn't produce a wireless version of the number pad keyboard.
InuNacho
Apr 19, 04:23 PM
Unreal 2004 struggles on my 2008 Macbook. I'm sure the current Macbook graphics are a step up, but not by much.
more...
ashwinr87
Apr 19, 11:57 AM
Thank you.. I also figured out the same thing some time back but forgot to post it here...
I would like to ask another thing.. whatever value I give in the options: does not seem to have any effect on my animations.. say If i had given[UIView animateWithDuration:0.8 delay:0.0 options: UIViewAnimationTransitionFlipFromLeft animations:^ { popContents.view.frame = CGRectMake(160, 70, 350, 350);
[self.view.superview bringSubviewToFront:self.view];
[self.view.superview addSubview:popContents.view]; }
completion: ^(BOOL finished) {
NSLog(@"DONE");
}
]; I thought by adding options:UIViewAnimationTransitionFlipFromLeft , it should have added an extra effect to my animation in addition to the zooming effect..
would you be able to help me out?
Something like this should work. You may need to tweak the UIViewAnimationOptions.
[UIView animateWithDuration:0.8 delay:0.0 options:UIViewAnimationOptionCurveEaseInOut | UIViewAnimationOptionAllowUserInteraction animations:^(void) {
popContents.view.frame = CGRectMake(320, ypos-70, 350, 350);
} completion:^(BOOL finished) {
[self.view.superview addSubview:popContents.view];
}];
Don't forget you can nest animations inside of each other.
I would like to ask another thing.. whatever value I give in the options: does not seem to have any effect on my animations.. say If i had given[UIView animateWithDuration:0.8 delay:0.0 options: UIViewAnimationTransitionFlipFromLeft animations:^ { popContents.view.frame = CGRectMake(160, 70, 350, 350);
[self.view.superview bringSubviewToFront:self.view];
[self.view.superview addSubview:popContents.view]; }
completion: ^(BOOL finished) {
NSLog(@"DONE");
}
]; I thought by adding options:UIViewAnimationTransitionFlipFromLeft , it should have added an extra effect to my animation in addition to the zooming effect..
would you be able to help me out?
Something like this should work. You may need to tweak the UIViewAnimationOptions.
[UIView animateWithDuration:0.8 delay:0.0 options:UIViewAnimationOptionCurveEaseInOut | UIViewAnimationOptionAllowUserInteraction animations:^(void) {
popContents.view.frame = CGRectMake(320, ypos-70, 350, 350);
} completion:^(BOOL finished) {
[self.view.superview addSubview:popContents.view];
}];
Don't forget you can nest animations inside of each other.
rx7dude
Apr 25, 11:35 AM
Cool.
Any comments about the battery life?
Hard for me to say. I've only charged it twice since xmas. I only have 2GB card (22 mins at 720P 60hz). The battery is more than enough to fill that up a few times.
The anti shake feature works really well and is probably the main reason the footage is better than the Iphone 4.
Any comments about the battery life?
Hard for me to say. I've only charged it twice since xmas. I only have 2GB card (22 mins at 720P 60hz). The battery is more than enough to fill that up a few times.
The anti shake feature works really well and is probably the main reason the footage is better than the Iphone 4.
more...
macktheknife
Oct 9, 04:30 PM
PS-In a two week trip to Italy last summer, I was delayed by TWO transport labor strikes...according to locals, this happens regularly. You might wonder how they get stuff done if this happens so often. The short answer is that they don't.
A friend told me the same thing happened in France when they were waiting at the Louvre Muesuem. They asked someone working there why the line was so long. The worker responded causally that the workers were deciding on whether to strike. :rolleyes:
This Business 2.0 article talks about how the docks currently operate without even bar-code technology we have in supermarkets:
http://www.business2.com/articles/web/0,1653,44247,FF.html
It's quite ridiculous that the unions are obstructing the implementation of technology. A new scanning system, a better supply chain, and automated cranes might cost a few jobs here and there, but it's an unnecessary inconvenience to many. Should we smash up cars to bring back the jobs of those horse and buggy drivers? :rolleyes:
A friend told me the same thing happened in France when they were waiting at the Louvre Muesuem. They asked someone working there why the line was so long. The worker responded causally that the workers were deciding on whether to strike. :rolleyes:
This Business 2.0 article talks about how the docks currently operate without even bar-code technology we have in supermarkets:
http://www.business2.com/articles/web/0,1653,44247,FF.html
It's quite ridiculous that the unions are obstructing the implementation of technology. A new scanning system, a better supply chain, and automated cranes might cost a few jobs here and there, but it's an unnecessary inconvenience to many. Should we smash up cars to bring back the jobs of those horse and buggy drivers? :rolleyes:
Blackhatch
Apr 5, 08:47 PM
iPhone 4.
Isn't the iPhone 4 a 720i video?
Isn't the iPhone 4 a 720i video?
more...
master-ceo
Mar 13, 06:20 AM
I wonder if they fixed this issue in iPad 2? Has anyone tried higher power devices with the USB adapter yet?
It's still f&$@!? Up on the iPad 2. The reason why I keep my iPad 1 on iOS 3.2
It's still f&$@!? Up on the iPad 2. The reason why I keep my iPad 1 on iOS 3.2
mrsir2009
Mar 3, 12:28 PM
This made me LOL:
more...
aquajet
Dec 6, 01:28 PM
If you do decide to swap out the logicboard from a newer/faster iMac, keep in mind there are two 500mhz boards out there...the DV SE which has the older 8mb Rage chip and the later models which have the 16mb chip. I'd look for a 600 or 700mhz board to be safe.
CarlsonCustoms
Dec 10, 08:23 AM
I honestly havnen't had good luck with the mac clients. I LOVE the GPU clients on regular PC's. There is just so much more PPD available with a GPU client.
Zack
Zack
ap3604
May 4, 12:12 PM
I really hate how if you have to reformat your computer Apple doesn't tell you that you've purchased an app before :(
Makes it VERY difficult to get all your apps back without purchasing new ones by mistake...
Makes it VERY difficult to get all your apps back without purchasing new ones by mistake...
master-ceo
Mar 13, 06:27 AM
4.2.1 is not worth it unless you want MIDI and want to loose CCK functionality. Stay on 3.2
gadgetmonster
Mar 5, 01:00 PM
greenpoison
hackthatphone
Mar 19, 07:25 PM
Simple, play dumb. Claim it was there when you got it.
And that's exactly what's wrong with society these days.
Man or woman up and take responsibility for YOUR screw up.
And that's exactly what's wrong with society these days.
Man or woman up and take responsibility for YOUR screw up.
smiddlehurst
May 5, 06:11 AM
Incorrect. Turbo boost is "dynamic overclocking". Depending on the current number of cores being used and if additional processing power is required, the CPU will slowly increase the clock rate for the currently active cores. It'll do this incrementally until the thermal operating limit of the processor is reached.
Umm, isn't that pretty much exactly what I described in my OP? Albeit I didn't use the phrase "dynamic overclocking".
Umm, isn't that pretty much exactly what I described in my OP? Albeit I didn't use the phrase "dynamic overclocking".
Dagless
Apr 16, 08:37 PM
Doesn't VGA upscale DVDs?
No comments:
Post a Comment