IJ Reilly
Dec 28, 05:05 PM
Normally I would agree, but since this is a used system, I think he's better off wiping and reinstalling the OS.
Sure. I'll go for that. But the questions was how many times is too much. Sounded like "clean installing, worst case scenario."
Sure. I'll go for that. But the questions was how many times is too much. Sounded like "clean installing, worst case scenario."
crusso03
Sep 8, 01:04 PM
how can you install snow leopard off a usb flash drive? i am currently running tiger...
MacBytes
Jul 2, 09:42 AM
http://www.macbytes.com/images/bytessig.gif (http://www.macbytes.com)
Category: Tips and How To's
Link: 10.6.4's Black Email of Death (http://www.macbytes.com/link.php?sid=20100702104228)
Description:: Somewhere, in recent updates to Safari 5.0 (included in the 10.6.4 update), something went wrong with the way applications pass text to each other. A post at MacFixIt suggests that the fault lies with WebKit, which is now �using rgb(0,0,0) as the value for the CSS �background-color� property for messages�. Whatever the cause, the fix is much easier than some published workarounds suggest...
Posted on MacBytes.com (http://www.macbytes.com)
Approved by Mudbug
Category: Tips and How To's
Link: 10.6.4's Black Email of Death (http://www.macbytes.com/link.php?sid=20100702104228)
Description:: Somewhere, in recent updates to Safari 5.0 (included in the 10.6.4 update), something went wrong with the way applications pass text to each other. A post at MacFixIt suggests that the fault lies with WebKit, which is now �using rgb(0,0,0) as the value for the CSS �background-color� property for messages�. Whatever the cause, the fix is much easier than some published workarounds suggest...
Posted on MacBytes.com (http://www.macbytes.com)
Approved by Mudbug
Doctor Q
Apr 20, 08:02 PM
My toaster is asking for an extension cord.
Don't give it any more power. It's liable to burn you to a crisp after it upgrades itself (http://www.uberreview.com/2005/09/netbsd-controlled-toaster.htm).
Darn ... I never took my empties back to the Beer Store. :cool:
You reminded me of the joke where two guys walking down the street see a mugger approaching. One guy quickly hands the other guy a $20 bill and says "Here's the beer money I owe you".
I guess I should pay my library fines before the library is destroyed tomorrow.
In other news, Skynet stock is up in intense trading today.
Don't give it any more power. It's liable to burn you to a crisp after it upgrades itself (http://www.uberreview.com/2005/09/netbsd-controlled-toaster.htm).
Darn ... I never took my empties back to the Beer Store. :cool:
You reminded me of the joke where two guys walking down the street see a mugger approaching. One guy quickly hands the other guy a $20 bill and says "Here's the beer money I owe you".
I guess I should pay my library fines before the library is destroyed tomorrow.
In other news, Skynet stock is up in intense trading today.
more...
amin
Dec 21, 08:33 PM
My 15" PB has a similar smell. In my case, the odor is maximal if I sniff just below the touchpad button. I've been dealing with it my not putting my nose to the laptop and sniffing. Hopefully it isn't poisoning me slowly with toxic fumes...
alphadog111
Apr 17, 01:48 PM
i myself had this problem once in the past, i fixed it by using a small amount of superglue on the edges of the processor, just enough so it sticks firmly in place but not too much that it blocks the thermal paste between the heatsink and processor
will that fix the issue message that I keep getting? When I boot to the desktop it always says " restart" with a error message that looks like a shutdown button..
will that fix the issue message that I keep getting? When I boot to the desktop it always says " restart" with a error message that looks like a shutdown button..
more...
brosenz
Apr 26, 08:52 PM
These are ok value for money options, try not to go with the OCz though if this article is anything to go by:
http://blog.macsales.com/9438-not-all-ssd%E2%80%99s-are-created-equal-the-story-continues
OWC, Micron\Crucial and Intel are the best brands and use the most quality components. With OWC being better than the Micron\Crucial which uses a slower Marvell Controller.
Thank you, another VERY IMPORTANT variable for me is to be able to upgrade the Firmware of the SSD over time, do you know if OWC provides that option ?, also do you know is the OWC SSDs have the TRIM option ?
http://blog.macsales.com/9438-not-all-ssd%E2%80%99s-are-created-equal-the-story-continues
OWC, Micron\Crucial and Intel are the best brands and use the most quality components. With OWC being better than the Micron\Crucial which uses a slower Marvell Controller.
Thank you, another VERY IMPORTANT variable for me is to be able to upgrade the Firmware of the SSD over time, do you know if OWC provides that option ?, also do you know is the OWC SSDs have the TRIM option ?
idonotliketostu
Feb 29, 07:51 PM
Im curious, how much did you sell these for?
more...
bluehill
May 2, 09:38 AM
The performance tool is showing leak at this position( red color).
NSString *street = [[NSString alloc] initWithString:[dictContact objectForKey:@"add"]];
NSString *city = [[NSString alloc] initWithString:[dictContact objectForKey:@"city"]];
NSString *state = [[NSString alloc] initWithString:[dictContact objectForKey:@"state"]];
NSString *pin = [[NSString alloc] initWithString:[dictContact objectForKey:@"pin"]];
NSMutableString *address = [[NSMutableString alloc] initWithFormat:@"%@+%@+%@+%@",street,city,state,pin];
[address replaceOccurrencesOfString:@" " withString:@"+" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [address length])];
[street release];
[city release];
[state release];
[pin release];
//NSLog(@"Address %@",address);
MapViewController *mvController = [[MapViewController alloc]init];
[mvController setAddress:address];
[self.navigationController pushViewController:mvController animated:YES];
[mvController release];
[address release];
NSString *street = [[NSString alloc] initWithString:[dictContact objectForKey:@"add"]];
NSString *city = [[NSString alloc] initWithString:[dictContact objectForKey:@"city"]];
NSString *state = [[NSString alloc] initWithString:[dictContact objectForKey:@"state"]];
NSString *pin = [[NSString alloc] initWithString:[dictContact objectForKey:@"pin"]];
NSMutableString *address = [[NSMutableString alloc] initWithFormat:@"%@+%@+%@+%@",street,city,state,pin];
[address replaceOccurrencesOfString:@" " withString:@"+" options:NSCaseInsensitiveSearch range:NSMakeRange(0, [address length])];
[street release];
[city release];
[state release];
[pin release];
//NSLog(@"Address %@",address);
MapViewController *mvController = [[MapViewController alloc]init];
[mvController setAddress:address];
[self.navigationController pushViewController:mvController animated:YES];
[mvController release];
[address release];
Doctor Q
Apr 20, 08:02 PM
My toaster is asking for an extension cord.
Don't give it any more power. It's liable to burn you to a crisp after it upgrades itself (http://www.uberreview.com/2005/09/netbsd-controlled-toaster.htm).
Darn ... I never took my empties back to the Beer Store. :cool:
You reminded me of the joke where two guys walking down the street see a mugger approaching. One guy quickly hands the other guy a $20 bill and says "Here's the beer money I owe you".
I guess I should pay my library fines before the library is destroyed tomorrow.
In other news, Skynet stock is up in intense trading today.
Don't give it any more power. It's liable to burn you to a crisp after it upgrades itself (http://www.uberreview.com/2005/09/netbsd-controlled-toaster.htm).
Darn ... I never took my empties back to the Beer Store. :cool:
You reminded me of the joke where two guys walking down the street see a mugger approaching. One guy quickly hands the other guy a $20 bill and says "Here's the beer money I owe you".
I guess I should pay my library fines before the library is destroyed tomorrow.
In other news, Skynet stock is up in intense trading today.
more...
guyute
Nov 13, 12:47 AM
I ran across this program the other day and have been using it. The speed of this version of firefox is much faster than safari or ff1.0. Here is a link to the site.
http://www.beatnikpad.com/archives/2004/11/06/firefoxG5
http://www.beatnikpad.com/archives/2004/11/06/firefoxG5
goldenlotus
Jan 14, 06:45 AM
Of course! So much more exciting this way!
more...
dukeblue91
May 1, 10:26 AM
Let's see.
5-Row keyboard it lets you change the layout and add numbers on top of the regular one.
SBSettings
WinterBoard
RetinaPad
MultiFlow
SwitcherMod
CyDelete
IFile
PkgBackup
All those make my iPad so much better.
5-Row keyboard it lets you change the layout and add numbers on top of the regular one.
SBSettings
WinterBoard
RetinaPad
MultiFlow
SwitcherMod
CyDelete
IFile
PkgBackup
All those make my iPad so much better.
stevod
Jun 16, 03:33 PM
So does the apple store sell the monthly contract versions?
(i.e. I don't have to go to an o2 store for that?)
Cheers,
S
(i.e. I don't have to go to an o2 store for that?)
Cheers,
S
more...
cfairbank
Mar 11, 12:54 PM
Just arrived and by best guess there are around 75 people so far. I am sure there is plenty and waiting here is pretty silly but nothing else goin on today so what the hell. Least I have a good chance of getting something I want rather than having to up or downgrade my choice. T-minus 4 hours.
ivnds
Sep 8, 01:28 AM
With WiFi capability new iPods
So were getting wifi on nanos and classics! That sounds better than the radio feature. Maybe wireless syncing finally?
I don't think this wifi radio will happen on the ipods, your limited to the hotspots coverage, not so on-the-go. More useful for iphones that are always online.
So were getting wifi on nanos and classics! That sounds better than the radio feature. Maybe wireless syncing finally?
I don't think this wifi radio will happen on the ipods, your limited to the hotspots coverage, not so on-the-go. More useful for iphones that are always online.
more...
godrifle
Aug 15, 08:46 AM
...does it fix yet another bug in Mac OS X Server's Wiki/Blog service that causes audio but not video to play back for Windows visitors?
Jeez Apple, get your QT **** together. For a company focused on media consumption, your media consumption software is really ******.
Jeez Apple, get your QT **** together. For a company focused on media consumption, your media consumption software is really ******.
blevins321
Apr 28, 10:12 AM
It's impossible to do with the Native software. You could install rEFIt (http://refit.sourceforge.net/doc/)though and do this. It's an advanced task though.
TheMacMaster
May 2, 08:16 PM
sorry about that just was realy annoyed about my mac. and i will create my own in future thanks for help:apple:
bhsu21
Mar 19, 12:32 PM
The ad is very misleading. The auction is over so there's nothing to change that. I'm very sure the seller must think it's new. No way a refurbished one sells for that much when a brand new one can be bought for less than that unlocked on Ebay from what I have seen.
Auax
Apr 26, 09:58 PM
i used it to record in my diving, just so gogeous..
ECUpirate44
Feb 20, 02:16 PM
There is nothing wrong with buying ram from a 3rd party. Check out OWC. (http://www.macsales.com/)
ZoomZoomZoom
Oct 11, 07:08 PM
I'm not exactly sure what you're asking for. I'm assuming that you have your own webhosting, your own domain, etc. and you want blogger to ftp out an index.html file?
If so, you just set up your blog with the option to "host on your own server." Then, after it's created, you hit it "Settings" tab in your blog panel. And then in that, you hit that "Publishing" tab. Put in your ftp server, path, and the filename you want it to publish to. Then, if you'd like for it to ftp each post without prompting you for your username and password each time, you can enter your ftp username and password under the query for blog filename and such.
If so, you just set up your blog with the option to "host on your own server." Then, after it's created, you hit it "Settings" tab in your blog panel. And then in that, you hit that "Publishing" tab. Put in your ftp server, path, and the filename you want it to publish to. Then, if you'd like for it to ftp each post without prompting you for your username and password each time, you can enter your ftp username and password under the query for blog filename and such.
TootsieToots
Dec 20, 04:07 PM
Recently I've been having major problems with my Airport (PowerBook G4) -- a lot of stalls and stops when opening even the most basic webpages, can't download new software (although I did manage to download the latest airport update) -- it's almost as if I'm on dial-up. It's always run a bit slow, but lately it's just been unacceptable. I'm pretty sure it has nothing to do with my provider. Does anyone here have any idea why this is happening?
No comments:
Post a Comment