Eidorian
Mar 25, 12:06 AM
Does anybody know why?
P.S. I get about 1/3 the normal battery life running XP, 1/2 running Vista, and 2/3 running an unsupported OS - Windows 7 - on my MBP.No idea. I have even encountered anecdotal evidence where a Hackintosh notebook will have better battery life under hacked OS X when compared to Windows.
Though it only applies to certain models and if you can get the power management to work properly.
P.S. I get about 1/3 the normal battery life running XP, 1/2 running Vista, and 2/3 running an unsupported OS - Windows 7 - on my MBP.No idea. I have even encountered anecdotal evidence where a Hackintosh notebook will have better battery life under hacked OS X when compared to Windows.
Though it only applies to certain models and if you can get the power management to work properly.
Jemi9OD
May 5, 07:17 AM
need it to go with you...air
will use just at home...imac
that was easy!
I think this is about the simplest answer, but very very true.
will use just at home...imac
that was easy!
I think this is about the simplest answer, but very very true.
gsfesz
Apr 9, 08:56 AM
Problem is I only have backups from lion
IrisCaddis
May 5, 07:45 PM
Ext. Drive will not mount however it shows in Disk Utility?
Back story: Been using a Lacie backup on my MBPro with Time Machine. Decided to use the ext. drive to back up my old G3 yosemite running OS 10.3. It would not show on desktop. Decided to pass on that. Went back to my new MBPro, plugged it in and states disk utility cannot repair. "disk1s3" See images. Help! I have stored data on this drive and it was working great.
What did I do ; x
Back story: Been using a Lacie backup on my MBPro with Time Machine. Decided to use the ext. drive to back up my old G3 yosemite running OS 10.3. It would not show on desktop. Decided to pass on that. Went back to my new MBPro, plugged it in and states disk utility cannot repair. "disk1s3" See images. Help! I have stored data on this drive and it was working great.
What did I do ; x
more...
balamw
Mar 23, 12:49 PM
i just found this download...

The Eric McPherson Group
more...

The Eric McPherson Group

joan collins age.
more...

Josh,Lisa,Aaron,Eric,Dana

Scott Alan Miller and Eric
more...

2011_03_28_JOSE ORTIZ BY ERIC

2011_03_28_JOSE ORTIZ BY ERIC
more...

Eric Maynard|MJK Bottle

Eric Maynard|MJK Bottle
more...

Eric Maynard|Winos

Eric Barton-LB, D#39;Qwell
more...

Overseer Eric Bell, Pastor

Jon-Erik Hexum and Joan

USCG photo by PA3 ERIC HEDAA
musique
Apr 27, 10:47 AM
I've never used it, but I've heard it's the kind of thing that may help. It's called Plural Eyes from a company called Singular Software. It's supposed to sync audio and video. I hope it helps.
more...
Koopz
Oct 19, 10:53 PM
Meet you guys at KOP.. ill be there by 5pm! cant wait to try it out!
rhpenguin
Jun 12, 04:25 PM
I just picked up my iBook a few weeks ago (seven days before they drop the price... bastards...) and I too am in a simular situation as you are. I am tech support at a small pc shop and after putting up with months and months of people calling me retarded I got my iBook anyway. I thought about the Powerbook but beat on my laptops too hard to get something with the aluminum...
But seriously, this platform rocks. I can use OS X with the best of them and before owning my book I had barely used them at all. So yeah... if i keep going its just gonna be pointless babble about how much the switch is a good thing and yeah. So im gonna draw the line here and stop! :P
w00t @ switching!
RHPeNgUiN
But seriously, this platform rocks. I can use OS X with the best of them and before owning my book I had barely used them at all. So yeah... if i keep going its just gonna be pointless babble about how much the switch is a good thing and yeah. So im gonna draw the line here and stop! :P
w00t @ switching!
RHPeNgUiN
more...
Dwalls90
Apr 12, 10:30 PM
Yea sent it in as bug ... may not be isolated to 10.7, as other threads have come up in the past month since iOS 4.3.1 and iTunes 10.2.1
:mad:
:mad:
xStep
Apr 4, 07:12 PM
rustywild sent me a private message and this is my response to that.
I only slept 4 hours last night so I might still be misunderstanding. Part of your explanation didn't make any sense given your code.
This is what I believe you have�
A dictionary where the keys will be the left most component that sets up what the right side component should display. The keys are placed into a sorted array. Each time component 0 changes, you want to update the right side component. Each time a choice is made, you want it reflected in two labels. The following code should do that for you. This is untested code.
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component
{
if (component == kPotenciaComponent) {
NSString *selectedState = [self.potencia objectAtIndex:row];
// Update values array for key of component 0.
[self.cantidad release];
self.cantidad = [potenciavoltaje objectForKey:selectedState];
[pickerView reloadAllComponents]; // Might not need to load all, but I do.
[pickerView selectRow: row inComponent: kPotenciaComponent animated: YES];
[pickerView selectRow: 0 inComponent: kCantidadComponent animated: YES];
label1.text = [self.potencia objectAtIndex:row];
label2.text = [self.cantidad objectAtIndex: 0];
}
else {
label2.text = [self.cantidad objectAtIndex: row];
}
}
The labels are updated here because that is when the change is occurring in your selection. You may also want to set them when you first setup your two data arrays in your viewDidLoad method.
P.S. Looks like you are a native Spanish speaker. Welcome to the challenge of communicating technical problems in another language. :)
I only slept 4 hours last night so I might still be misunderstanding. Part of your explanation didn't make any sense given your code.
This is what I believe you have�
A dictionary where the keys will be the left most component that sets up what the right side component should display. The keys are placed into a sorted array. Each time component 0 changes, you want to update the right side component. Each time a choice is made, you want it reflected in two labels. The following code should do that for you. This is untested code.
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component
{
if (component == kPotenciaComponent) {
NSString *selectedState = [self.potencia objectAtIndex:row];
// Update values array for key of component 0.
[self.cantidad release];
self.cantidad = [potenciavoltaje objectForKey:selectedState];
[pickerView reloadAllComponents]; // Might not need to load all, but I do.
[pickerView selectRow: row inComponent: kPotenciaComponent animated: YES];
[pickerView selectRow: 0 inComponent: kCantidadComponent animated: YES];
label1.text = [self.potencia objectAtIndex:row];
label2.text = [self.cantidad objectAtIndex: 0];
}
else {
label2.text = [self.cantidad objectAtIndex: row];
}
}
The labels are updated here because that is when the change is occurring in your selection. You may also want to set them when you first setup your two data arrays in your viewDidLoad method.
P.S. Looks like you are a native Spanish speaker. Welcome to the challenge of communicating technical problems in another language. :)
more...
Cromulent
Dec 28, 12:39 PM
Done.
All invitations are gone now.
All invitations are gone now.
innominato5090
Dec 25, 11:17 AM
http://www.timeidol.com/wp-content/uploads/2010/05/Jack-Daniels-1.jpg
should be a tought month!
should be a tought month!
more...
Patmian212
Dec 3, 11:14 AM
No offence, but this is MACRumors :D
You got a point there:rolleyes:
But still people instead of blowing up your windows laptops with fireworks SElL IT TO ME.
You got a point there:rolleyes:
But still people instead of blowing up your windows laptops with fireworks SElL IT TO ME.
r.j.s
May 4, 12:08 PM
No, they are tied to your Apple ID, so you will not have to buy them again.
more...
nixoninajar
Mar 25, 04:19 AM
Wirelessly posted (Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3 like Mac OS X; ja-jp) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8F190 Safari/6533.18.5)
So is there anyone at the Pacific Center yet ?
So is there anyone at the Pacific Center yet ?
iccy82
Jun 20, 10:36 PM
more...
jlwilsonjr
Feb 14, 07:19 PM
FOr me they are
Metallica - Cunning Stunts
NIN - Beside You In Time
Eagles - Hell Freezes Over
Alice In Chains - Unplugged
Foo Fighters - Skin and Bones
Ozzy - Live for Budaka
Metallica - Cunning Stunts
NIN - Beside You In Time
Eagles - Hell Freezes Over
Alice In Chains - Unplugged
Foo Fighters - Skin and Bones
Ozzy - Live for Budaka
Raska
Oct 23, 10:24 PM
I'll be there. I was going to go to Rockaway, but this one is much closer to my college.
zen.state
Mar 7, 01:26 PM
By the way, I hate saying this but it's pathetic how my iPhone can run video better than my G4. :(
The iphone has h.264 decoding hardware in it so it hardly even uses the CPU to play video. That is why it plays so much better. Overall a high end G4 tower would have a lot more capability than an iphone.
Hardware can only be as good as the software it's running after all.
The iphone has h.264 decoding hardware in it so it hardly even uses the CPU to play video. That is why it plays so much better. Overall a high end G4 tower would have a lot more capability than an iphone.
Hardware can only be as good as the software it's running after all.
robbieduncan
Dec 15, 04:23 PM
Are we talking Aluminium or Titanium here?
macdaddy121
Oct 2, 10:51 AM
How much cash would you accept for it in an outright sale?
macdaddyuk
Feb 17, 05:41 AM
yeah recruitment seminar?? any info for me?
Brother tn350
May 4, 02:36 AM
The fact, that you were deceived the first time, you should no longer engage in any transaction with the man because it will be possible that in the end, you will be losing more.:(
Weaselboy
May 3, 08:59 AM
Your MBP does not have the SATA III connection required to get the max performance out of the M4. Your MBP has only a SATA II connection, so even though the M4 would work it will not give you peak speeds shown in benchmark tests.
Look at the test at the top of this page (http://www.anandtech.com/show/4253/the-crucial-m4-micron-c400-ssd-review/8) that shows overall system performance. Note the M4 at a SATA II connection and the Intel 320 are about the same speed.
With the same performance and better price and reliability of the Intel, I hink Intel is your best choice.
Look at the test at the top of this page (http://www.anandtech.com/show/4253/the-crucial-m4-micron-c400-ssd-review/8) that shows overall system performance. Note the M4 at a SATA II connection and the Intel 320 are about the same speed.
With the same performance and better price and reliability of the Intel, I hink Intel is your best choice.