deermatt
Dec 5, 05:12 PM
ok
ozontheroad
Oct 18, 10:09 AM
http://att.macrumors.com/contest/F5FBFC.gif
First the Zune... now The Wini
Microsoft's answer to the Mini
This new design incorporates Microsoft’s newest security service pack (Vitamin C) to prevent the spread of viruses.
When asked about this new approach to preventive security Bill answered “For thousands of years people have used Vitamin C to prevent viruses”
Users must be warned that prolonged use of the Wini may cause chronic sour taste.
Depp#39;s Sparrow tattoo is shown
Johnny Depp Tattoos
Johnny Depp - Jack Sparrow
Johnny Depp Tattoos etched
various Tattoos. Pirates
Johnny Depp Jack Tattoo are
Sacramento Tattoo Shops Johnny
Johnny Depp live on stage
I think Johnny Depp is
Johnny Depp Jack Sparrow
Johnny Depp tattoos
Depp in costume on the POTC4
Johnny Depp is perhaps one of
Jack Sparrow Tattoo
21 Ridiculous Tattoos Of
johnny depp tattoos name
johnny depp tattoos jack
First the Zune... now The Wini
Microsoft's answer to the Mini
This new design incorporates Microsoft’s newest security service pack (Vitamin C) to prevent the spread of viruses.
When asked about this new approach to preventive security Bill answered “For thousands of years people have used Vitamin C to prevent viruses”
Users must be warned that prolonged use of the Wini may cause chronic sour taste.
jayducharme
Aug 23, 08:49 AM
I think he's right. He, along with many other once-popular acts, will be forgotten, a footnote to history in 100 years. However, The Beatles will be remembered because they were riding the tip of the wave that became a world-wide musical sea change. They set in place many of the rock styles that were to follow them. Mellencamp, on the other hand, was simply coasting along as the wave broke on the shore.
eman
Apr 28, 04:23 PM
Try starting in "safe mode" and the instructions can be found here (http://support.apple.com/kb/ht1455).
Big D 51
Apr 24, 06:33 AM
BetterTouchTool is definitely a must if using the magic mouse. After using the mouse for a few hours, I am returning it. I may be weird, but it's not for me. It doesn't fit my hand well.
Thanks again for helping though.
Thanks again for helping though.
James Philp
May 23, 06:30 PM
Well, the speed of your internet connection has nothing to do with it... it is all about your processor. It is possible that the program just happened to grab a really big protein from the server. I'm running on a G5@ 1.8 and have had some proteins taking many days to complete. My iBook G3 took forever. So, I'd just be patient.
K :) Come on MR!
K :) Come on MR!
DaZOU
Apr 24, 11:18 PM
Speck candyshell view should be released in the next week or two.
Floris7
Apr 28, 03:18 PM
I wouldn't, the quad G5's have major liquid coolant problems that can destroy the machine, if you have to stick with powerpc then get another air cooled dual G5 but an early core 2 duo Intel Mac would be infinitely more future proof.
You are definitely right, an intel would be much better; maybe i have to look out for a solution in that way.
but, still hope someone can answer my question...
You are definitely right, an intel would be much better; maybe i have to look out for a solution in that way.
but, still hope someone can answer my question...
ethernet76
Jun 10, 11:29 PM
When I go to burn a dvd my macbook says that I don't have the superdrive to support that? I thought that all macbooks come with a superdrive? What can I do?
Not all Intel Macs support DVD burning. I had a original Macbook that didn't.
To check if you can burn DVDs:
1. In the top left corner of the screen click on the Apple icon and go to "About this Mac".
2. In the window that Pops up click on the "More info..." button down towards the bottom.
3. A new window should pop up. On the right hand side there is a list of categories. Click on "disc burning".
You should see a list of types of CD/DVDs you can burn. If you don't see a list of DVD types you can't burn DVDs.
Not all Intel Macs support DVD burning. I had a original Macbook that didn't.
To check if you can burn DVDs:
1. In the top left corner of the screen click on the Apple icon and go to "About this Mac".
2. In the window that Pops up click on the "More info..." button down towards the bottom.
3. A new window should pop up. On the right hand side there is a list of categories. Click on "disc burning".
You should see a list of types of CD/DVDs you can burn. If you don't see a list of DVD types you can't burn DVDs.
Big D 51
Apr 15, 09:27 PM
You take the name of the song, type it into iTunes and purchase.
It's some backyard rap music that someone made and isn't on iTunes.
It would be easy if it was a popular song by a popular artist.
It's some backyard rap music that someone made and isn't on iTunes.
It would be easy if it was a popular song by a popular artist.
FireStar
Oct 30, 08:40 PM
I've heard the CandyShell flakes and I'm not sure what it meant by that. Could someone explain/give me a picture?
Also, is the dock piece really that easy to break?
Also, is the dock piece really that easy to break?
DewGuy1999
Dec 24, 12:41 PM
Double click them, the Mac OS will do the rest.
Les Kern
Jan 24, 07:54 AM
install on the Mini, then carbon copy cloner to the Xserve.
then to keep it legal, delete it from the mini.
then to keep it legal, delete it from the mini.
ljg93
Apr 27, 04:41 PM
hey guys i am adding ads to my app
i have a tab bar application and put adds on three of the tabs
to do this i dragged a add from the libary to where i want it to be
for each view controller that corrisponded to the tab i made it a ad delegate imported the ad framwork and made it a property and IBOutlet, i linked everything up in interface builder the ad to delegate and delegate to add, but the ad only randomly runs on my device.. why? heres my code
#import <UIKit/UIKit.h>
#import "TableViewController.h"
#import <iAd/iAd.h>
@class TableViewController;
@interface AddViewController : UIViewController <UITextFieldDelegate,ADBannerViewDelegate>
{
UITextField *nameField;
UITextField *descriptionField;
TableViewController *delegate;
ADBannerView *banner;
}
@property (nonatomic, assign) TableViewController *delegate;
@property (nonatomic, assign) IBOutlet UITextField *nameField;
@property (nonatomic, assign) IBOutlet UITextField *descriptionField;
- (IBAction)cancel:(id)sender;
@property(nonatomic, retain) IBOutlet ADBannerView *banner;
- (void)save;
- (void)cancel;
@end
i have a tab bar application and put adds on three of the tabs
to do this i dragged a add from the libary to where i want it to be
for each view controller that corrisponded to the tab i made it a ad delegate imported the ad framwork and made it a property and IBOutlet, i linked everything up in interface builder the ad to delegate and delegate to add, but the ad only randomly runs on my device.. why? heres my code
#import <UIKit/UIKit.h>
#import "TableViewController.h"
#import <iAd/iAd.h>
@class TableViewController;
@interface AddViewController : UIViewController <UITextFieldDelegate,ADBannerViewDelegate>
{
UITextField *nameField;
UITextField *descriptionField;
TableViewController *delegate;
ADBannerView *banner;
}
@property (nonatomic, assign) TableViewController *delegate;
@property (nonatomic, assign) IBOutlet UITextField *nameField;
@property (nonatomic, assign) IBOutlet UITextField *descriptionField;
- (IBAction)cancel:(id)sender;
@property(nonatomic, retain) IBOutlet ADBannerView *banner;
- (void)save;
- (void)cancel;
@end
TShirtJohn
Feb 8, 12:59 PM
While putting my mini mac back together I noticed that the wire for the front antenna came loose and not got a clue where it's ment to be?
What is this antenna for anyway? Maybe I don't need it?
What is this antenna for anyway? Maybe I don't need it?
iLucas
Apr 4, 06:59 AM
Hello all,
Lately my G5 1.8 dual has been freezing on first boot and i'm not sure why.
If i hold the power button to shut it down, then reboot it, it works great until i shut it down again. Then it freezes on first boot again. It's been doing this for awhile and i think it could be software issues, but im not sure,
what do you think?
Lately my G5 1.8 dual has been freezing on first boot and i'm not sure why.
If i hold the power button to shut it down, then reboot it, it works great until i shut it down again. Then it freezes on first boot again. It's been doing this for awhile and i think it could be software issues, but im not sure,
what do you think?
B.A.T
Feb 1, 01:15 PM
There's an older mini on craigslist in my area. He's asking $120 but I'd like to upgrade the os. I'd like to use the mini to surf the internet on my tv. Here are the specs:
1.25ghz PPC Processor
40gb Hard Drive
DVI Output
Combo Drive
Firewire
Mac OS X 10.4 Tiger
1.25ghz PPC Processor
40gb Hard Drive
DVI Output
Combo Drive
Firewire
Mac OS X 10.4 Tiger
Consultant
Dec 2, 05:19 PM
I did the analysis, it might be Arn's dream within a dream.
makleod
Apr 7, 11:53 AM
Golden rule: do not buy no name RAM. Most of it won't work.
Well known brands like Crucial/Micron, Corsair, Kingston, Hynix, Samsung, Infineon etc. will work. RAM must be low density (ask seller before buying in case of any doubts).
Yea, I figured I was going to get burned with cheap RAM, but had to try just in case it worked. Thanks! I'll order the WINTEC RAM and it should work.
Well known brands like Crucial/Micron, Corsair, Kingston, Hynix, Samsung, Infineon etc. will work. RAM must be low density (ask seller before buying in case of any doubts).
Yea, I figured I was going to get burned with cheap RAM, but had to try just in case it worked. Thanks! I'll order the WINTEC RAM and it should work.
GGJstudios
Apr 17, 06:48 PM
I'm thinking of buying a laptop and the iPad 2 through Apple's online store. If I have problems with the units, can I exchange or return them through one of Apple's physical brick and mortar store?
Yes, you can take them to the physical stores for service. As far as exchanges, the BTO Macs are not all available in stores, so it depends on the configuration.
Yes, you can take them to the physical stores for service. As far as exchanges, the BTO Macs are not all available in stores, so it depends on the configuration.
SummerWind
Apr 12, 05:16 AM
How about considering a case like this (http://www.kittube.com/search?productid=20_228_3966)? The tail could be worked as a stand, is it amazing? i'm currently using the pink one. Really love it!
rpenzinger
Apr 11, 10:43 PM
Buy an AppleTV and AirPlay your movies from iPad to tv. Or use AppleTV to play movies from your computer. Use AppleTV setting in handbrake. Abandon the DVD thing altogether.
DoghouseMike
Mar 7, 04:32 PM
Evening all,
I was messing around with logic on my MBP today, and my son (6, nearly 7) was well into it, and soon took over playing around and adding in instruments/loops/effects and loving it.
In his room we have an old iMac G3, with a whopping 400MhZ processor and 512MB of RAM. Anyone got any recommendations for something similar that'll run on his machine? I know it's lacking the horsepower for a lot of the fancier effects, but once upon a time a 400Mhz G3 was cutting edge!
The iMac is running 10.4, and classic, but I have the OS9 CD if running that natively will open up more options. I think I read somewhere that it was possible to trick garageband 1 into running, but not that quickly. I could rig up an external firewire drive if that's likely to make things any more useable.
Cheers for any input.
Mike
I was messing around with logic on my MBP today, and my son (6, nearly 7) was well into it, and soon took over playing around and adding in instruments/loops/effects and loving it.
In his room we have an old iMac G3, with a whopping 400MhZ processor and 512MB of RAM. Anyone got any recommendations for something similar that'll run on his machine? I know it's lacking the horsepower for a lot of the fancier effects, but once upon a time a 400Mhz G3 was cutting edge!
The iMac is running 10.4, and classic, but I have the OS9 CD if running that natively will open up more options. I think I read somewhere that it was possible to trick garageband 1 into running, but not that quickly. I could rig up an external firewire drive if that's likely to make things any more useable.
Cheers for any input.
Mike
dh2005
May 6, 08:45 PM
So, is that for sale to educational institutions, or something?