acfusion29
May 4, 10:51 AM
i'm pretty sure he just wants to transfer his texts from one iPhone to the other...
trip1ex
Apr 26, 07:49 AM
It seems like the cpu will be quite powerful as it is. And ram you can always upgrade later so worry about that after you get the iMac home.
fiercetiger224
Apr 14, 06:48 PM
PART 1 - http://www.gametrailers.com/player.php?id=18580&type=wmv
PART 2 - http://www.gametrailers.com/player.php?id=18585&type=wmv
I just watched both of these, and all I can say is...WOW. The most impressive game I've seen to date! :D
The guy talks about "progressive mesh" and how it's only possible with the Cell processor, etc. Interesting stuff.
Also, if I heard correctly, he said the game was easier to program for on the PS3 than the PS2? :eek:
PART 2 - http://www.gametrailers.com/player.php?id=18585&type=wmv
I just watched both of these, and all I can say is...WOW. The most impressive game I've seen to date! :D
The guy talks about "progressive mesh" and how it's only possible with the Cell processor, etc. Interesting stuff.
Also, if I heard correctly, he said the game was easier to program for on the PS3 than the PS2? :eek:
stroked
Mar 9, 06:54 PM
Can some really, really kind person help me.
PoerBook G4 17" Tiger
Some of my character key are not working i.e. ' " and the reverse of { [
sometimes my back/delete key does not work.
Is this a mechanical fault of my laptop or is it the software or system?
Thank you
Bernard
It is most likely your keyboard. my iBook has the same problem with the m, and the number after 8. I have a sticky that is always open with those on them, then I just copy and paste what I need.
You can get a new keyboard on ebay fairly cheap.
PoerBook G4 17" Tiger
Some of my character key are not working i.e. ' " and the reverse of { [
sometimes my back/delete key does not work.
Is this a mechanical fault of my laptop or is it the software or system?
Thank you
Bernard
It is most likely your keyboard. my iBook has the same problem with the m, and the number after 8. I have a sticky that is always open with those on them, then I just copy and paste what I need.
You can get a new keyboard on ebay fairly cheap.
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[]) {
of garden gnomes sits on
naked garden gnomes after
or garden gnome helps look
garden-gnome
Papaver Garden Gnome
Garden Gnome
-and-garden-gnomes.html
Death of the garden gnome
Garden gnomes mouse pads by
Whistling Garden Gnomes
store - Garden Gnome
Proper Lawn Gnome Etiquette
Stolen garden gnomes
my sweet obama garden gnome
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[]) {
miklagio777
Feb 18, 09:49 PM
YAY! I love FoTC so any comparison is definitely good
russed
Mar 2, 05:38 AM
i like this very much, good work. i am getting it now!
it looks far more mac like that firefox does at present and probably one of the reasons why i dont use it, i prefer camion instead! maybe you have given me a reason to switch to the other one now!
it looks far more mac like that firefox does at present and probably one of the reasons why i dont use it, i prefer camion instead! maybe you have given me a reason to switch to the other one now!
Jelite
Nov 18, 12:07 PM
Push notifications don't work for me.
Edit: I've installed Echofon, seems to be better.
Edit: I've installed Echofon, seems to be better.
MarximusMG
Apr 12, 07:58 PM
I'm looking at purchasing a workout armband for my iPhone 4, but I don't want to have to take my iPhone out of it's regular case (Speck Fitted case) each time I want to work out. I would really love to find an armband that would allow me to slide the iPhone (in the Speck case) into the armband. Does anyone know of any armband that would let me do this? Thanks in advance!
c7aea
Apr 13, 11:19 AM
The LX5 with wide angle conversion lens will go down to about 18mm. But it's not exactly compact. 24mm without it is still pretty wide though.
GFLPraxis
Apr 15, 09:27 PM
Graphics are impressive, VERY impressive, but the gameplay looks EXACTLY like Rogue Squadron 3. Even down to the "run around on foot" parts.
ipodtoucher
Mar 7, 07:54 PM
I thought there was a discussion back when Apple was switching to Intel about having stickers.
Intel and others pay the computer company to have the sticker placed on the machine as part of the marketing.
Obviously, Apple took a pass...
Yeah I see it as one of the reasons OCs are cheaper (not the main reason) but it's like advertisements for your computer and you see them everyday and they remind you who built the machine
Intel and others pay the computer company to have the sticker placed on the machine as part of the marketing.
Obviously, Apple took a pass...
Yeah I see it as one of the reasons OCs are cheaper (not the main reason) but it's like advertisements for your computer and you see them everyday and they remind you who built the machine
Josh
Oct 9, 01:37 PM
Check out Ruby on Rails, and watch the demo video if you can.
You could create a guestbook in seriously 10 minutes with Ruby pretty easily.
Do you know if you host supports ruby/ruby on rails?
http://www.rubyonrails.org
You could create a guestbook in seriously 10 minutes with Ruby pretty easily.
Do you know if you host supports ruby/ruby on rails?
http://www.rubyonrails.org
UTclassof89
Sep 21, 03:03 PM
Brilliant! Works like a charm
(but why on earth wasn't that a built-in feature of Mail!?!?!)
(but why on earth wasn't that a built-in feature of Mail!?!?!)
macg4
Dec 12, 08:56 AM
nice job man
benhollberg
May 1, 10:43 AM
You always get the exact same as you purchases. If they don't have any white iPhone 4 refurbished in stock then they will give you a new white iPhone 4, if they issue is they must replace the iPhone.
Pinger
May 5, 08:17 AM
No but I got Apple TV and AirPlay is awesome-sauce.
Same here, I also have a WP7 Samsung Focus and wish there was a App to get it to work with Apple TV. My whole home surround/HDTV System is connected to my Apple TV so I can stream all my music and video from my iPad to my system.. It's awesome!!!
Same here, I also have a WP7 Samsung Focus and wish there was a App to get it to work with Apple TV. My whole home surround/HDTV System is connected to my Apple TV so I can stream all my music and video from my iPad to my system.. It's awesome!!!
Veldek
Dec 29, 06:22 PM
Static avatars: Honorable Mention:
Veldek
http://forums.macrumors.com/attachment.php?attachmentid=37185
Additional Honorable Mention:
A number of contest entries had a MacRumors theme or a 2 million post theme. These themes were not contest categories. Veldek's avatar above was a near-finalist in its own right, and we were also impressed with one other static avatar having a 2 million post theme:
tag
http://forums.macrumors.com/attachment.php?attachmentid=36934It's a pity there's no category for these MR achievements (perhaps when we hit 3 million posts?). But I'm very proud about this, too.
Do we also get bragging rights now? ;)
Veldek
http://forums.macrumors.com/attachment.php?attachmentid=37185
Additional Honorable Mention:
A number of contest entries had a MacRumors theme or a 2 million post theme. These themes were not contest categories. Veldek's avatar above was a near-finalist in its own right, and we were also impressed with one other static avatar having a 2 million post theme:
tag
http://forums.macrumors.com/attachment.php?attachmentid=36934It's a pity there's no category for these MR achievements (perhaps when we hit 3 million posts?). But I'm very proud about this, too.
Do we also get bragging rights now? ;)
drpellypo
May 8, 05:12 AM
I'll be there, if I'm not working that day! Do you have to pre-order on the 10th to have any hope of getting one on launch day in store, or is there a chance of getting one on the day?
FlyinggPenguin
Apr 5, 09:01 PM
This past week, my 2006 MacBook has been randomly shutting down. At first, it wouldn't even start up, but now it will periodically turn off while I am in the middle of something important. Before I take it to the Geniuses, I am going to do a clean install of Snow Leopard to see if that solves the problem. Any tips for preserving iLife, my files, and the iWork suite so I can move them back to my MacBook when the reinstall is done?
Thanks. :D
Thanks. :D
Haoshiro
Mar 29, 11:47 AM
Thinking about getting a 360 for a couple FPS games and maybe Oblivion. Looks like a fun game, and I was just wondering if the impression I get from the reviews are correct, or if it's just overzealous writers. :p
The game sounds like it's almost a single player FPS in that there are lots of quests which you can pick up or not and the game more or less just presents options to you rather than following any sort of dictated path. In other words, very open ended like an MMO. Is that accurate, or is it more structured than that? Thanks! :)
Oh yeah, so many times playing this game I've been amazed at the sheer scale of the world. It's like an uber-MMO you play by yourself, but with much MUCH better gameplay.
You're really not restricted in many ways at all. There are some people you just can't kill, but I'm sure that's important to avoid breaking the game. You can go anywhere, do anything you want. You can be good or bad, Famous or Infamous... it's entirely open-ended.
There is a HUGE amount of the world full of completely optional locations, quests, and characters. But don't think that means you'll be left not knowing what the heck to do.
The quest system is fairly robust, and you'll always be able to pick up the main quest at any time. To make that even easier they've even made sure to place rally-points on your map for your active quest. Meaning you are rarely ever left wondering where the heck to go if you want to get back into the main story.
I've done some of the main quest, but I've been adventuring in the game for awhile now (easily 40+ hours) and still feel like this game has a ton of content left for me to explore if I really want to. Best value for your money ever... imho!
The game sounds like it's almost a single player FPS in that there are lots of quests which you can pick up or not and the game more or less just presents options to you rather than following any sort of dictated path. In other words, very open ended like an MMO. Is that accurate, or is it more structured than that? Thanks! :)
Oh yeah, so many times playing this game I've been amazed at the sheer scale of the world. It's like an uber-MMO you play by yourself, but with much MUCH better gameplay.
You're really not restricted in many ways at all. There are some people you just can't kill, but I'm sure that's important to avoid breaking the game. You can go anywhere, do anything you want. You can be good or bad, Famous or Infamous... it's entirely open-ended.
There is a HUGE amount of the world full of completely optional locations, quests, and characters. But don't think that means you'll be left not knowing what the heck to do.
The quest system is fairly robust, and you'll always be able to pick up the main quest at any time. To make that even easier they've even made sure to place rally-points on your map for your active quest. Meaning you are rarely ever left wondering where the heck to go if you want to get back into the main story.
I've done some of the main quest, but I've been adventuring in the game for awhile now (easily 40+ hours) and still feel like this game has a ton of content left for me to explore if I really want to. Best value for your money ever... imho!
Joshuarocks
Apr 2, 07:01 PM
Ok, I am willing to take the 7800 GT apart and see where the noise is coming from. But, can someone still explain to me why the Yellow LED trickle light isn't illuminating when I remove the air deflector shield?
Thats really the only thing thats bugging me right now + the video card's loudness.
Thats really the only thing thats bugging me right now + the video card's loudness.
-=XX=-Nephilim
Jun 30, 11:57 PM
CS4 was a nightmare on my Mac, so I couldn't wait for CS5. But it's been pretty underwhelming for me. While the Adobe apps no longer crash continually, they are really sluggish in SL. PS images opened faster on my old PowerMac G5 with CS1. Even GIMP running through X11 is faster. Flash is still an incomprehensible mess, and getting worse instead of better. I don't know where to lay blame for Adobe's products, but in the end it only will hurt Apple. When I see others running CS5 flawlessly on a PC, I start to think maybe it's time to switch back....
Both Flash CS5, Photoshop CS5 as well as Lightroom 3 works AWESOMELY on 10.5.8 (haven't had a chance to test other stuff properly)
When I say awesomely I mean not a single crash so far, speed has improved drastically and I also haven't noticed any bugs either...
So don't think about Windows - its horrible OS - just go back to 10.5.8 :)
Both Flash CS5, Photoshop CS5 as well as Lightroom 3 works AWESOMELY on 10.5.8 (haven't had a chance to test other stuff properly)
When I say awesomely I mean not a single crash so far, speed has improved drastically and I also haven't noticed any bugs either...
So don't think about Windows - its horrible OS - just go back to 10.5.8 :)
cube
Oct 31, 04:23 PM
OK. Those 3 are all I wanted to post.