Mac Book Pro battery life
Tom's Hardware has a detailed analysis of battery life in a prototype Asus dual-core laptop, with specs that are very similar to the mac book pro.
Interesting, and somewhat discouraging, reading.
Various ramblings from Peter Clark about life, coding, parenthood, Java, grad school, and enjoying my mac book pro
Tom's Hardware has a detailed analysis of battery life in a prototype Asus dual-core laptop, with specs that are very similar to the mac book pro.
My current workhorse machine is a 17" 1.33 ghz PowerBook G4 - it's over 2 years old now. I like it rather a lot. Except that it's kinda slow.
| 1.67ghz G4 | Dual-core 2.5ghz G5 | 1.83 Intel Core Duo | Dell 3.2Ghz Pentium D dual-core | |
| SPECint_rate2000 | 6.7 | 32.3 | 30.3 | 31.3 |
| Desc | time | average |
| Internal disk | 01:51.80 | only ran once |
| FW800 run 1 | 00:32.18 | |
| FW800 run 2 | 00:32.11 | |
| FW800 run 3 | 00:32.08 | 00:32.12 |
| FW400 run 1 | 00:53.78 | |
| FW400 run 2 | 00:53.56 | |
| FW400 run 3 | 00:53.87 | 00:53.74 |
#import <Foundation/Foundation.h>
const int ONE_HALF_GIG = 512*1024*1024;
const int NUM_FILES = 4;
int main (int argc, const char * argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
NSMutableData *contents = [NSMutableData dataWithCapacity:ONE_HALF_GIG];
unsigned int i;
if (argc != 2)
{
NSLog(@"Need to specify a pathname as the sole argument.\n");
}
else
{
for (i = 0; i < (ONE_HALF_GIG/(sizeof(int)))-1; i++)
{
[contents appendBytes:&i length:(sizeof(int))];
}
NSLog(@"Writing files\n");
for (i = 0; i < NUM_FILES; i++)
{
NSString *path = [[NSMutableString alloc]
initWithFormat:@"%s-%u.dat", argv[1], i];
[[NSFileManager defaultManager]
createFileAtPath:path contents:contents attributes:nil];
}
NSLog(@"Done writing files\n");
}
[pool release];
return 0;
}
I selected some of the best kid pictures from 2005 to make a set of pictures to send to my grandpa. If you'd like to see them, here they are.
I'm working up updating SpeedyDog's bugzilla installation from 2.16 to 2.20. I'd been getting nowhere trying to use CPAN to update the perl packages necessary - I kept getting a "Error in server response, closing control connection." message.