Prof.
Oct 17, 03:46 PM
Hopefully they'll have macbooks w/ Leopard installed already that day 'cause I'm planning to get one! :p:apple:
You better get there early if you want a MB with Leopard pre-installed on it. :D
Prof. :apple:
You better get there early if you want a MB with Leopard pre-installed on it. :D
Prof. :apple:
bigbadneil
Apr 19, 09:42 PM
Guy's
I have a 5 days old iMac that I am trying to boot camp but when I try I get this error message..........what can I do????
also I have spent the last 5 days installing programs and setting up my new iMac the way i want it and worry about re formatting the hard drive and loosing all of the last 5 days work.
I do have parallels set up on my iMac to be able to check my company mail using a smartbadge reader but it is not working so i am trying the bootcamp mode to see if I can get the smartbadge reader to work that way.
Any help would be much appreciated
Neil
I have a 5 days old iMac that I am trying to boot camp but when I try I get this error message..........what can I do????
also I have spent the last 5 days installing programs and setting up my new iMac the way i want it and worry about re formatting the hard drive and loosing all of the last 5 days work.
I do have parallels set up on my iMac to be able to check my company mail using a smartbadge reader but it is not working so i am trying the bootcamp mode to see if I can get the smartbadge reader to work that way.
Any help would be much appreciated
Neil
Doctor Q
Oct 16, 06:13 PM
After you submitted your entry, we added mention in the rules that you can suggest a title for your contest entry, to be used in the contest gallery.
We can use "Good enough for Lincoln" for yours, unless you have another preference.
We can use "Good enough for Lincoln" for yours, unless you have another preference.
TheBigKing
May 4, 09:53 AM
ahh mi bad where is the thread to question about programs and thanks for the downloader when i use win 7 use IDM is good but its not avidable on os x
sushi
Mar 5, 07:42 AM
Today i purchased a Linksys WRT54. The service isn't as good as I hoped for, doesn't quite cover my home, so i'll probably be returning it tomorrow for something more powerfull and consistent.
Do you guys have any suggestions for wireless routers?? Ones with good range and good little to no dropped signals?
I've been happy with the WRT54G Routers that I've set up and used.
Make sure you flash update it to the latest version.
Make sure the signal strength is maxed out.
If it does not have enough signal strength for your home, this may be a problem with other wireless routers as well. You might want to get a repeater to extend the range.
Also, location is key. Metal/Rebarb/Iron can really affect the range of wireless.
Netgear makes some good products as well.
Sushi
Do you guys have any suggestions for wireless routers?? Ones with good range and good little to no dropped signals?
I've been happy with the WRT54G Routers that I've set up and used.
Make sure you flash update it to the latest version.
Make sure the signal strength is maxed out.
If it does not have enough signal strength for your home, this may be a problem with other wireless routers as well. You might want to get a repeater to extend the range.
Also, location is key. Metal/Rebarb/Iron can really affect the range of wireless.
Netgear makes some good products as well.
Sushi
jptelthorst
Jun 9, 02:48 PM
I am a recent iMac and iPod touch owner thanks to Apple's Back to School promotion. I'm wondering if the App Store will be available to iPod touch owners. Many of those apps, I would assume, could work for the touch as well as the iPhone. Furthermore, if the touch is more of a multimedia device, touch owners would be more likely to buy games than iPhone users. Apple would only be limiting their potential revenue by excluding touch users from the store. But unless I'm mistaken, there was no mention of the iPod touch in the keynote.
ksiedzulek
Apr 22, 06:38 AM
Hi,
I don't understand selectors. I have written this simple code and put breakpoints to look how it behave and "count" should change from 1 to 4 cause breakpoint points 4 times at count++ . Why "count" doesn't change from 1 to 4? there are three 1 and one 2 instead.
#import <Foundation/Foundation.h>
@interface AdressBook : NSObject {
NSString *bookname;
NSMutableArray *bookArray;
}
@property (nonatomic,copy) NSString *bookname;
@property (nonatomic,copy) NSMutableArray *bookArray;
-(id) initWithName: (NSString*)name;
-(void) addCard: (AdressCard*) kart;
-(void) list;
-(void) sortedList;
@end
#import "AdressCard.h"
#import "AdressBook.h"
@implementation AdressBook
@synthesize bookname, bookArray;
-(id) initWithName: (NSString*)name
{
self=[super init];
bookname=[[NSString alloc] initWithString:name];
bookArray=[[NSMutableArray alloc] init];
return self;
}
-(void) addCard: (AdressCard*) kart
{
;
}
-(void) list
{
for (AdressCard *theKart in bookArray)
NSLog(@"%@",[theKart name]);
}
-(void) sortedList
{
//int count=0;
[bookArray sortUsingSelector:@selector(compareName:)];
}
@end
#import <Foundation/Foundation.h>
@interface [B]AdressCard : NSObject {
NSString *name;
NSString *email;
int count;
}
@property (copy) NSString *name,*email;
-(void) setName: (NSString*) theName setEmail: (NSString*) theEmail;
-(NSComparisonResult) compareName: (id) element;
@end
#import "AdressCard.h"
#import "AdressBook.h"
@implementation AdressCard
@synthesize name,email;
-(void) setName: (NSString*) theName setEmail: (NSString*) theEmail
{
[self setName:theName];
[self setEmail:theEmail];
}
-(NSComparisonResult) compareName: (id) element
{
count++;
NSLog(@" ");
NSLog(@"the count number: %d", count);
NSLog(@"-------------------------");
NSLog(@"what is here?:%@", [element name]);
NSLog(@"and here: %@",[self name]);
NSLog(@"+++++++++++++++++++++++++");
NSLog(@" ");
return [name compare:(id) [element name]];
}
@end
main:
#import <Foundation/Foundation.h>
#import "AdressCard.h"
#import "AdressBook.h"
int main (int argc, const char * argv[]) {
lank sign clipart.
cartoon clipart picture In
holding empty lank banner
on acorel Banners+clip+art
pink princess crown clipart.
Blank+scroll+clip+art
clip Blank+scroll+anner
Robot holding lank banner
bell notes anner clip art
shapes no need contact Cub
Ribbon anner songs may career
Baking Utensils Clipart.
I don't understand selectors. I have written this simple code and put breakpoints to look how it behave and "count" should change from 1 to 4 cause breakpoint points 4 times at count++ . Why "count" doesn't change from 1 to 4? there are three 1 and one 2 instead.
#import <Foundation/Foundation.h>
@interface AdressBook : NSObject {
NSString *bookname;
NSMutableArray *bookArray;
}
@property (nonatomic,copy) NSString *bookname;
@property (nonatomic,copy) NSMutableArray *bookArray;
-(id) initWithName: (NSString*)name;
-(void) addCard: (AdressCard*) kart;
-(void) list;
-(void) sortedList;
@end
#import "AdressCard.h"
#import "AdressBook.h"
@implementation AdressBook
@synthesize bookname, bookArray;
-(id) initWithName: (NSString*)name
{
self=[super init];
bookname=[[NSString alloc] initWithString:name];
bookArray=[[NSMutableArray alloc] init];
return self;
}
-(void) addCard: (AdressCard*) kart
{
;
}
-(void) list
{
for (AdressCard *theKart in bookArray)
NSLog(@"%@",[theKart name]);
}
-(void) sortedList
{
//int count=0;
[bookArray sortUsingSelector:@selector(compareName:)];
}
@end
#import <Foundation/Foundation.h>
@interface [B]AdressCard : NSObject {
NSString *name;
NSString *email;
int count;
}
@property (copy) NSString *name,*email;
-(void) setName: (NSString*) theName setEmail: (NSString*) theEmail;
-(NSComparisonResult) compareName: (id) element;
@end
#import "AdressCard.h"
#import "AdressBook.h"
@implementation AdressCard
@synthesize name,email;
-(void) setName: (NSString*) theName setEmail: (NSString*) theEmail
{
[self setName:theName];
[self setEmail:theEmail];
}
-(NSComparisonResult) compareName: (id) element
{
count++;
NSLog(@" ");
NSLog(@"the count number: %d", count);
NSLog(@"-------------------------");
NSLog(@"what is here?:%@", [element name]);
NSLog(@"and here: %@",[self name]);
NSLog(@"+++++++++++++++++++++++++");
NSLog(@" ");
return [name compare:(id) [element name]];
}
@end
main:
#import <Foundation/Foundation.h>
#import "AdressCard.h"
#import "AdressBook.h"
int main (int argc, const char * argv[]) {
iaddict
May 2, 10:02 AM
Okay, about a month ago I was in bad need of harddrive space. I found my email folders were huge so I started deleting old emails that I felt I didn't need to hold onto any longer. Wrong!! I have probably about 20 emails, maybe more from one person that I need to try and see if there is any way I can recover them. Somewhere in one or two of them is an original document that I need to get back if at all possible.
Does anyone know if this is possible, and if it is, how can I do it?
Thanks:confused:
Does anyone know if this is possible, and if it is, how can I do it?
Thanks:confused:
Bokehlicious
Apr 30, 08:39 AM
is it possible if i upgrade my ram to 8gb ? cos i want use parallel desktop on it . i need use CATIA software on parallels.
Yes. I got this from newegg when they had it for i think 60 after mail in rebate: http://www.newegg.com/product/product.aspx?nm_mc=AFC-TechBargains&cm_mmc=AFC-TechBargains-_-NA-_-NA-_-NA&Item=N82E16820139559
I have a Macbook 6, 1.
Yes. I got this from newegg when they had it for i think 60 after mail in rebate: http://www.newegg.com/product/product.aspx?nm_mc=AFC-TechBargains&cm_mmc=AFC-TechBargains-_-NA-_-NA-_-NA&Item=N82E16820139559
I have a Macbook 6, 1.
liamkp
Jul 6, 10:00 PM
Matters what type of case.
:pullls out scissors:
Problem solved... sorta.
Sorry about the smiley face.
*pulls out cookie cutter*
:pullls out scissors:
Problem solved... sorta.
Sorry about the smiley face.
*pulls out cookie cutter*
rebelbear
Jul 1, 12:39 PM
Yes. That's it! Thanks!
Hellhammer
Feb 4, 08:53 AM
I think the reason why new sub-forums are created is when there is a relatively big number of threads in other sub-forums that are similar and not really related to the topics of the sub-forums. If there are many threads about Science and Apple in current forums, then it might be worth it to create a new sub-forum that is dedicated to that topic.
For example, the creation of OS X Lion sub-forum made sense because it is a topic that is a bit different from normal OS X discussions since currently it's mainly speculation. It is pretty easy to separate normal OS X discussions (mainly troubleshooting and questions) and speculation of future OS X. This makes it easier for people to navigate and find threads. Otherwise Lion discussions might have conquered the whole OS X sub-forum. Lion is also a hot topic so it gets a lot traffic, meaning that it's not a dead sub-forum.
I haven't seen any threads that would belong to Science and Apple sub-forum. You need to have something to start with. Making a new sub-forum and wishing that someone comes in and makes a thread doesn't make much sense. Just because there isn't a sub-forum for every topic about Apple doesn't mean that there should be.
This doesn't sound like a topic that would generate a lot interest and discussion. If you really want to talk about this, go and make a thread to Apple, Industry and Internet Discussion (http://forums.macrumors.com/forumdisplay.php?f=8). That should be a good start at least. There are topics such as Hackintoshes that show up every now and then but there still isn't an own sub-forum for them.
For example, the creation of OS X Lion sub-forum made sense because it is a topic that is a bit different from normal OS X discussions since currently it's mainly speculation. It is pretty easy to separate normal OS X discussions (mainly troubleshooting and questions) and speculation of future OS X. This makes it easier for people to navigate and find threads. Otherwise Lion discussions might have conquered the whole OS X sub-forum. Lion is also a hot topic so it gets a lot traffic, meaning that it's not a dead sub-forum.
I haven't seen any threads that would belong to Science and Apple sub-forum. You need to have something to start with. Making a new sub-forum and wishing that someone comes in and makes a thread doesn't make much sense. Just because there isn't a sub-forum for every topic about Apple doesn't mean that there should be.
This doesn't sound like a topic that would generate a lot interest and discussion. If you really want to talk about this, go and make a thread to Apple, Industry and Internet Discussion (http://forums.macrumors.com/forumdisplay.php?f=8). That should be a good start at least. There are topics such as Hackintoshes that show up every now and then but there still isn't an own sub-forum for them.
saturnino3
Feb 5, 11:35 PM
Is this still available?
FrankieTDouglas
Feb 19, 08:48 PM
I like the app. Is it $1 to press the button how ever often you like from then on out? Or $1 per push? Seriously, if it's the former, it's less than the cost of a pack of gum and could possibly give you money back. No big deal, at least it's a novelty app that could have a redeeming value.
They should also bring back the porn, in fact, create an adult section on the app store. It'd be interesting to see how the porn industry could utilize the mobile app market.
They should also bring back the porn, in fact, create an adult section on the app store. It'd be interesting to see how the porn industry could utilize the mobile app market.
GMaister22
Jan 29, 07:17 PM
Hey guys!
I just pulled of my earbuds from my macbook and now the sound doesn't work :(
Although when i have some headphones plugged in the sounds works :)
Thats what i get:
http://puu.sh/PaB
http://puu.sh/PaC
http://puu.sh/PaD
http://puu.sh/PaK
any ideas how to fix it?
EDIT: after pulling in and out the jack of the earbud sometimes i see a red light , sometimes not
I just pulled of my earbuds from my macbook and now the sound doesn't work :(
Although when i have some headphones plugged in the sounds works :)
Thats what i get:
http://puu.sh/PaB
http://puu.sh/PaC
http://puu.sh/PaD
http://puu.sh/PaK
any ideas how to fix it?
EDIT: after pulling in and out the jack of the earbud sometimes i see a red light , sometimes not
iserian
Mar 12, 10:52 PM
im going for the ipad android. everyone is using android these days, apples bound to start sometime ;)
It's been out for two weeks... Better pick up your xoom before everyone realizes this was a merely a color change upgrade.
It's been out for two weeks... Better pick up your xoom before everyone realizes this was a merely a color change upgrade.
applegeek13
May 28, 07:25 PM
I've always wanted one too. Would it work as a good web server? I might just make one a home file server.
twoodcc
Mar 6, 10:37 PM
cheers for the quick reply twoodcc. i have the console version installed too. its working now.
the GUI version doesnt let you do anything, just think of the TM preferences! its that... lol.
i can run the console version if need be, any hints to change preferences etc? its currently using ~770% of my CPU lol - i dont want it that hot.
i can't recall all the setting for the pref pane, but i know you can start the console version with the -configonly parameter to configure the client.
but let me ask, what machine are you running this on? and which client are you running?
the GUI version doesnt let you do anything, just think of the TM preferences! its that... lol.
i can run the console version if need be, any hints to change preferences etc? its currently using ~770% of my CPU lol - i dont want it that hot.
i can't recall all the setting for the pref pane, but i know you can start the console version with the -configonly parameter to configure the client.
but let me ask, what machine are you running this on? and which client are you running?
vintageapple
Aug 31, 06:30 PM
haha thats classic
drexl5
Apr 27, 10:33 AM
Wirelessly posted (Mozilla/5.0 (iPhone; U; CPU iPhone OS 4_3_1 like Mac OS X; en-us) AppleWebKit/533.17.9 (KHTML, like Gecko) Version/5.0.2 Mobile/8G4 Safari/6533.18.5)
Well compared to how long they waited to update it last time it feels like they just did. I just hope they don't wait for the sandy bridge xeon proccesors to give it TB. I read that in another post btw I don't know if there even making them.
Well compared to how long they waited to update it last time it feels like they just did. I just hope they don't wait for the sandy bridge xeon proccesors to give it TB. I read that in another post btw I don't know if there even making them.
qpawn
Dec 19, 04:48 AM
That's a killer visualizer! Nice work! :)
Omniblast
Feb 24, 09:25 AM
So true, how to get Apple to want to work on your network.
Step 1 Hack the Phone..
Step 2... there is no step 2
I thought the steps were like this.
1) Obtain a iPhone
2) Hack iPhone
3) ?????
4) Profit!
Step 1 Hack the Phone..
Step 2... there is no step 2
I thought the steps were like this.
1) Obtain a iPhone
2) Hack iPhone
3) ?????
4) Profit!
crees!
Jan 22, 10:07 PM
Yes, but the dialog said Stop / Replace, not Merge.
Flying Llama
Aug 14, 10:57 PM
Another thing--could you shrink the sig?!!! Thanks! ;)
Sorry 'bout that! :o
Sorry 'bout that! :o
0 comments:
Post a Comment