GGJstudios
Apr 25, 06:08 PM
thanks for the advice. any idea when this year?
http://www.apple.com/macosx/lion/
... available in summer 2011.
http://www.apple.com/macosx/lion/
... available in summer 2011.
kperry8
Sep 28, 11:13 AM
First of all, I'm just going to assume that you're using Mac OS X only, and if you're not, just ignore my post :) .
The first step in repartitioning your drive is backing up all your data that you want, but seeing that you bought a new Mac, that might be nothing...
Second, take your Mac OS X install disk and put it in the computer and boot it up holding down the 'C' key. That will boot your computer from the CD.
As soon as you have control over the computer after bootup, go to the Installer menu (I'm not sure that's the one... it's whatever's between the Apple and Edit, if there's even an edit menu there...) and select "Disk Utility"
When that loads, select the "Partition" tag and then select your drive. It should be pretty apparant how to setup the partitions you want from there. My suggestion is to reserve about 4-5 gigs of the drive for your Mac OS X and some apps, and then you could partition the rest anyway you want. Either by subject, client, product, whatever... I'm not into graphic design so I don't really know...
Anwyays, after you've set that up, click Partition and it'll erase everything and repartition it for you.
Oh, and make sure that your OSX disk is an install disk not an upgrade disk! You won't be able to reinstall OSX after you partition if that's so...
Anyways, hope that helps. I'm sure others have some things to add or change, so listen to them :)
The first step in repartitioning your drive is backing up all your data that you want, but seeing that you bought a new Mac, that might be nothing...
Second, take your Mac OS X install disk and put it in the computer and boot it up holding down the 'C' key. That will boot your computer from the CD.
As soon as you have control over the computer after bootup, go to the Installer menu (I'm not sure that's the one... it's whatever's between the Apple and Edit, if there's even an edit menu there...) and select "Disk Utility"
When that loads, select the "Partition" tag and then select your drive. It should be pretty apparant how to setup the partitions you want from there. My suggestion is to reserve about 4-5 gigs of the drive for your Mac OS X and some apps, and then you could partition the rest anyway you want. Either by subject, client, product, whatever... I'm not into graphic design so I don't really know...
Anwyays, after you've set that up, click Partition and it'll erase everything and repartition it for you.
Oh, and make sure that your OSX disk is an install disk not an upgrade disk! You won't be able to reinstall OSX after you partition if that's so...
Anyways, hope that helps. I'm sure others have some things to add or change, so listen to them :)
Jazwire
May 4, 11:47 AM
USB 2.0 - 480 mbps
FireWire 800 - 800 mbps
Sata II - 3gbps
USB 3.0 - 5 gbps
SataIII - 6 gbps
Thunderbolt 10 gbps
FireWire 800 - 800 mbps
Sata II - 3gbps
USB 3.0 - 5 gbps
SataIII - 6 gbps
Thunderbolt 10 gbps
iFiend
Apr 21, 08:43 AM
Have you tried applying a screen shield like SGP or Powersupport with water?
It should make it much easier to align and also eliminate all the bubbles or dust, InvisibleShield is applied with water, why shouldn't a normal one work?... Still it's better to ask though.
I have definitely heard of people using water for dry application screen shields. I have never done it myself as I seem to get them on perfect each time :confused: Not sure how though!
It should make it much easier to align and also eliminate all the bubbles or dust, InvisibleShield is applied with water, why shouldn't a normal one work?... Still it's better to ask though.
I have definitely heard of people using water for dry application screen shields. I have never done it myself as I seem to get them on perfect each time :confused: Not sure how though!
OrangeSVTguy
Mar 7, 05:56 PM
Wow it's been years since I seen that link lol. Yep. Always worked for me :D
Hellhammer
Feb 1, 10:27 AM
Companies should improve their services, not downgrade them. I haven't used them but this made sure that I never will
SciFrog
Feb 14, 06:07 PM
Not sure about i5, but fast i7 with 4 real cores plus 4 virtual ones can run bigadv. But SMP2 is pretty good, so you need a real fast i7 to get enough bonus to be worth it.
Bulldog VII
Apr 28, 12:56 AM
Hi all
I have a 500gig Imac & wondered is it easy to increase the size of my hard-drive?
I've just got appleTV & am adding all my DVD's which when reduced down are about 1gig each
Thanks
I have a 500gig Imac & wondered is it easy to increase the size of my hard-drive?
I've just got appleTV & am adding all my DVD's which when reduced down are about 1gig each
Thanks
Sykte
Apr 27, 06: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 would suggest looking over the documentation. In any event this is normal behavior.
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 would suggest looking over the documentation. In any event this is normal behavior.
tech0925
Mar 3, 12:14 AM
I was trying to install MySQL on my iMac and screwed something up. LOL I dragged the zip files to my var folder and extracted it. I am not sure where the files went. I am also now getting a blue home and net button along with a .DS_Store file, that I cannot delete, on my desktop that is driving me crazy. How can I completely uninstall all the MySQL files that I just installed. I don't want to accidentally delete something that I shouldn't.
dh2005
May 6, 11:14 AM
Hm. Your Mac's Bluetooth receiver might be on the blink.
prostuff1
Sep 26, 08:39 PM
I am starting a project for my freshmen english class and i thought that this would be a good subject to do it on. I need comparisons basically on the OS and anything that is good and bad about both sides.
Links would be very nice. adn teh longer the article the better.
Thanks
Links would be very nice. adn teh longer the article the better.
Thanks
skrypj
Mar 3, 10:15 PM
I just loaded OSX client onto my 2010 mini server the other day and have been having issues with low ram, all i am doing is running XBMC and only have 200mb free. I was looking around in "About this mac" to make sure that I really had 4gb or ram when i noticed that is says "64-bit Kernel and Extensions: NO".
I double checked in the terminal and it said i386. As far as I knew there is not two separate OSX discs for 64bit and 32bit. Why would it load 32 bit?
Thanks!
I double checked in the terminal and it said i386. As far as I knew there is not two separate OSX discs for 64bit and 32bit. Why would it load 32 bit?
Thanks!
MacRumors
Apr 28, 03:47 PM
http://www.macrumors.com/images/macrumorsthreadlogo.gif (http://www.macrumors.com/2011/04/28/white-iphone-4-slightly-thicker-than-black-iphone-4/)
Earlier today, a MacRumors reader notified us that the white iPhone 4 is ever so slightly larger than the black iPhone 4. It's a small difference, but enough that the white iPhone 4 wouldn't fit in his Incase slider case:<p class="quote">Just picked up the white iPhone 4 and realized it doesn't fit into my Incase slider case. It appears that Apple has increased the size of the plastic that borders the glass on both sides by about 1mm. </p><center>http://images.macrumors.com/article/2011/04/28/164154-tumblr_lkdqkyjHla1qa45ly.jpg
</center>
Ryan Cash (http://ryancash.net/post/5019047695/white-iphone-4-is-thicker) of Marketcircle (http://www.marketcircle.com/) noticed the same and noticed it just by picking it up.<p class="quote">A colleague of mine just picked up a 16 GB iPhone 4 in white. I was a bit surprised when I picked it up off his desk (I had my black 32 GB in my other hand at the same time) it immediately felt thicker.</p>Cash offers some comparison photos (http://ryancash.net/post/5019047695/white-iphone-4-is-thicker) between the white and black iPhone 4 showing the slight difference. The small different may be enough to affect tight fitting slider cases as evidenced by our reader's experience.
Article Link: White iPhone 4 Slightly Thicker Than Black iPhone 4 (http://www.macrumors.com/2011/04/28/white-iphone-4-slightly-thicker-than-black-iphone-4/)
Earlier today, a MacRumors reader notified us that the white iPhone 4 is ever so slightly larger than the black iPhone 4. It's a small difference, but enough that the white iPhone 4 wouldn't fit in his Incase slider case:<p class="quote">Just picked up the white iPhone 4 and realized it doesn't fit into my Incase slider case. It appears that Apple has increased the size of the plastic that borders the glass on both sides by about 1mm. </p><center>http://images.macrumors.com/article/2011/04/28/164154-tumblr_lkdqkyjHla1qa45ly.jpg
</center>
Ryan Cash (http://ryancash.net/post/5019047695/white-iphone-4-is-thicker) of Marketcircle (http://www.marketcircle.com/) noticed the same and noticed it just by picking it up.<p class="quote">A colleague of mine just picked up a 16 GB iPhone 4 in white. I was a bit surprised when I picked it up off his desk (I had my black 32 GB in my other hand at the same time) it immediately felt thicker.</p>Cash offers some comparison photos (http://ryancash.net/post/5019047695/white-iphone-4-is-thicker) between the white and black iPhone 4 showing the slight difference. The small different may be enough to affect tight fitting slider cases as evidenced by our reader's experience.
Article Link: White iPhone 4 Slightly Thicker Than Black iPhone 4 (http://www.macrumors.com/2011/04/28/white-iphone-4-slightly-thicker-than-black-iphone-4/)
dscuber9000
Mar 3, 04:56 PM
I'd love to see the Tea Party try that. :p Could you imagine the majority leader losing his seat at a time when his party doesn't have the Senate or Presidency? That would be such a huge blow.
And who knows if a teabagger could win in Boehner's district.
And who knows if a teabagger could win in Boehner's district.
Artful Dodger
Dec 14, 10:49 AM
Hi, I have my Apple mouse that came with my G5 iMac (bought in Aug/Sept. 05') and have no need for it. I used it about a week until my wireless mouse arrived and now I wish to sell it. It's in great shape and very white ;)
$20 B.O. shipped to the Continental US or Local pickups welcome.
I take PayPal and have feedback on MR Marketplace with others (just look my name up if you wish), also feedback on heatware.com under artfuldodger.
Send me a pm, post here or email...I prefer pm over email.
All I ask is please leave feedback as it helps each of us out :)
$20 B.O. shipped to the Continental US or Local pickups welcome.
I take PayPal and have feedback on MR Marketplace with others (just look my name up if you wish), also feedback on heatware.com under artfuldodger.
Send me a pm, post here or email...I prefer pm over email.
All I ask is please leave feedback as it helps each of us out :)
PhoneyDeveloper
Apr 1, 10:40 AM
Why don't you add this method to your view controller set a breakpoint in it and then tell us the answer?
-(id)initWithCoder:(NSCoder *)aDecoder
{
if ((self = [super initWithCoder:aDecoder]))
{
}
return self; // set a breakpoint on this line
}
-(id)initWithCoder:(NSCoder *)aDecoder
{
if ((self = [super initWithCoder:aDecoder]))
{
}
return self; // set a breakpoint on this line
}
Jony Mac
Apr 21, 10:51 AM
I recently came across an external hard drive that works with time capsule. I need to have more space in the time capsule but a 2TB capsule cost well into the $500.00 range. This external drive plugs in by usb and it will allow you to make separate backups too. It is totally compatible to Mac. Has anyone out there ever heard of it the cost is $79.00 for 2TB. It actually fits on the bottom of the capsule it also has 4 usb in the back and a firewire and looks like a part of time capsule. i would love any info anyone has on it.
Thanks Emil ebev1234@verizon.net
I have one. Pretty easy to setup. It is just an enclosure tho, you need to provide the hard drives. I'm not using the mirroring option on it though. Its pretty loud when you first turn it on, but once the fans kick on for a sec or so it runs pretty good
Thanks Emil ebev1234@verizon.net
I have one. Pretty easy to setup. It is just an enclosure tho, you need to provide the hard drives. I'm not using the mirroring option on it though. Its pretty loud when you first turn it on, but once the fans kick on for a sec or so it runs pretty good
Dav1
Mar 14, 09:05 AM
Can you connect a jailbroken ipad to xcode and configure it to be used for development?
I was thinking of doing that to get the 'hidden' gestures through x-code in 4.3 when the jail break is available.
Or is there cydia software that will do all the gestures?
One can edit a few plist, and enable gestures on an iPad running 4.3... By the way almost all how to, on this are way off... It took me a bit to find out how to do this...
:)
I was thinking of doing that to get the 'hidden' gestures through x-code in 4.3 when the jail break is available.
Or is there cydia software that will do all the gestures?
One can edit a few plist, and enable gestures on an iPad running 4.3... By the way almost all how to, on this are way off... It took me a bit to find out how to do this...
:)
rick snagwell
May 2, 08:03 PM
clean status doesnt play well with others...i would recommend springtomize.
neifichicken
Jun 28, 01:25 AM
I currently have a blackberry I bought in November so I passed 18 months in May of this year, AT&T told me I was eligible to upgrade in June but when I tried to do so through Apple's website, they said I have to wait until July 26th.
I figure that means I have to go through AT&T in store and I was wondering at what point in time do you guys think it'll be (fairly) easy to get one. I was thinking maybe 2 weeks from now that could be the case, but perhaps I'm just being optimistic. Any guesses or insights?
I figure that means I have to go through AT&T in store and I was wondering at what point in time do you guys think it'll be (fairly) easy to get one. I was thinking maybe 2 weeks from now that could be the case, but perhaps I'm just being optimistic. Any guesses or insights?
DaftUnion
Sep 26, 04:42 PM
Buy one now seriously. If you play the waiting game, you'll never buy one because they're always something, bigger, faster, better around the corner. The iBooks are great right now for the price.
JamesSmart
Mar 19, 10:55 AM
It may be an LCD watch, but it has what seems like a headphone jack
blaster_boy
Mar 16, 02:42 PM
Just enabling the php5 library to load in Apache is not enough. You also need to tell Apache what to do with any .php file that is served to the user.
Check your apache config file to see if this code is in there - perhaps it is commented out ?
<IfModule mod_php5.c>
Check your apache config file to see if this code is in there - perhaps it is commented out ?
<IfModule mod_php5.c>