Moop
Dec 7, 06:38 PM
thanks
tsice19
Jun 20, 11:21 PM
Sounds like you need to read the thread again.
Thanks for catching that... that was incredibly dumb of me.
Thanks for catching that... that was incredibly dumb of me.
FireStar
Oct 21, 10:11 AM
Is the SwitchEasy screen protector high quality and does it resist fingerprints or attract MORE fingerprints? :confused:
I wouldn't think it would be terribly high quality, but it would probably be suitable. If you're big on the fingerprint thing, you should probably get a SPG or something similar. I think they would be fine, IMO. I would suggest just ordering a case, trying the screen protector, and if they're not up to your standard, buy a higher quality screen protector. :)
Anyone know how long it takes for Switcheasy to ship their cases? I ordered the Colors case from them last week and other than an email from Paypal confirming payment, I haven't gotten any contact from Switcheasy regarding the status of my order. There doesn't appear to be anything on their site to check order status either.
They are probably pretty busy, so you should probably wait a few more days, and if you have nothing within those few days, you should contact them. :)
I wouldn't think it would be terribly high quality, but it would probably be suitable. If you're big on the fingerprint thing, you should probably get a SPG or something similar. I think they would be fine, IMO. I would suggest just ordering a case, trying the screen protector, and if they're not up to your standard, buy a higher quality screen protector. :)
Anyone know how long it takes for Switcheasy to ship their cases? I ordered the Colors case from them last week and other than an email from Paypal confirming payment, I haven't gotten any contact from Switcheasy regarding the status of my order. There doesn't appear to be anything on their site to check order status either.
They are probably pretty busy, so you should probably wait a few more days, and if you have nothing within those few days, you should contact them. :)

AndrewR23
May 6, 12:19 AM
Got that part, but what does it mean? Does the genius take a sharpie and write 5k across the screen or something
It's the serial number. Go into your settings, click about, scroll down to serial number and see what your first 2 numbers are.
It's the serial number. Go into your settings, click about, scroll down to serial number and see what your first 2 numbers are.
rdowns
Jun 6, 04:33 PM
Real nice. Definitely at or near the top of my list so far.
RappleRapple
Oct 19, 09:46 PM
I thought for sure that the price was a typo.
What a joke! :p
What a joke! :p
GGJstudios
May 3, 04:17 PM
Why not put an alias to that folder on the Desktop?
imacintel
Oct 30, 08:54 PM
Please use the submissions system if you want your entry to be in the contest.
Okay. This entry I thought wouldn't go anywhere anyways. :(
Okay. This entry I thought wouldn't go anywhere anyways. :(
pagansoul
Feb 14, 06:19 AM
Do a simple layout. What is the rooms dimensions, the furniture? By what I see you can not fit anything else in the room so what you need is color. Get a nice little area rug that you like and use it as a base for setting the color for the rest of the room.
doucy2
Dec 5, 08:05 PM
Hi I have a powemac g4 gigabit ethernet, it has a use less(to me ) zip drive. Does anyone know anything that can be put in there? If any one knows where I could get like the little plastic border that goes around the zipdrive,(my little plastic piece is gone)
if a part one of my g4s i have one
i was thinking about hooking up a led light and putting it in there to shine out
if a part one of my g4s i have one
i was thinking about hooking up a led light and putting it in there to shine out
FireStar
Oct 17, 06:52 PM
What's the name of other cases that aren't hard by them?
Cases by Switcheasy that aren't hard? Define hard.
Cases by Switcheasy that aren't hard? Define hard.
solowmodel
May 1, 08:06 AM
Looks exactly like PvZ just a different skin :eek:
steadysignal
May 6, 10:31 AM
Be careful when you buy those prebuilt "gaming" desktops from ibuypower or other similar sites. They often put really awful video cards in them and you'll end up really disappointed. Just build one yourself
double agree.
buy the parts separate and build on your own. safe and satisfying.
double agree.
buy the parts separate and build on your own. safe and satisfying.
NWI73
Apr 12, 03:22 PM
I would probably call and complain about the issue. You may have better luck calling than going in a store. If the CSR says no, ask for his/her manager and climb the ladder accordingly. Good luck.
larkost
May 3, 09:28 PM
Apple uses NTP (http://en.wikipedia.org/wiki/Network_Time_Protocol) to set the time on Macs, and host their own NTP time server (you can choose to use your own as well) at time.apple.com. This is not a web server, so you can't use it that way.
What are you actually trying to do?
What are you actually trying to do?
torbjoern
Mar 10, 10:30 PM
Screw that. I vote they move towards a naming system like with OSX. Instead of using big cats, they use fruit.
Next iteration of iPhone = iPhone Banana.
After that, iPhone Papaya.
The full name Apple iPhone Banana makes it sound like the device is edible.
Next iteration of iPhone = iPhone Banana.
After that, iPhone Papaya.
The full name Apple iPhone Banana makes it sound like the device is edible.
Prom1
Dec 21, 12:32 AM
RIGHT now the MAIN issue is between Microsoft Office 2011 NOT allowing Sync Services (the reason to reboot after installation) to, well, Sync with Calendar!! :O Only Contacts will sync with Outlook 2011.
I'm SERIOUSLY PISSED at this because I live and breath BB and Outlook for PIM management in my Windows life at work and trying to be completely Mac. Yet Microsoft has "promised" a future update will bring this � whenever THAT is.
NO Microsoft, you will NOT force me to purchase your WM7 Smartphone brands of your partners.
I'm SERIOUSLY PISSED at this because I live and breath BB and Outlook for PIM management in my Windows life at work and trying to be completely Mac. Yet Microsoft has "promised" a future update will bring this � whenever THAT is.
NO Microsoft, you will NOT force me to purchase your WM7 Smartphone brands of your partners.
leaf777
Apr 26, 04:19 PM
Thanks for the links again. I am trying to use apple's "Your First iOS Application" ( http://developer.apple.com/library/ios/#documentation/iPhone/Conceptual/iPhone101/Articles/03_AddingViewController.html) but I am encountering some problems.
I think the problem is something trivial but I cannot pinpoint the problem and would greatly appreciate someone's help.
I have 4 issues coming back in debug mode, as follows:
1. error: expected identifier or '(' before '@' token
2. error: '_myViewController' undeclared (first use in this function)
3. warning: property 'myViewController' requires method '-myViewController' to be defined - use @synthesize, @dynamic or provide a method implementation
4. warning: property 'myViewController' requires the method 'setMyViewController:' to be defined - use @synthesize, @dynamic or provide a method implementation
HelloWorldAppDelegate.h
#import <UIKit/UIKit.h>
@class MyViewController;
@interface HelloWorldAppDelegate : NSObject <UIApplicationDelegate> {
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) MyViewController *myViewController;
@end
HelloWorldAppDelegate.m
#import "HelloWorldAppDelegate.h"
#import "MyViewController.h"
@implementation HelloWorldAppDelegate
@synthesize window=_window;
@synthesize myViewController=_myViewController;
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{

I#39;ve been to this eer garden
I think the problem is something trivial but I cannot pinpoint the problem and would greatly appreciate someone's help.
I have 4 issues coming back in debug mode, as follows:
1. error: expected identifier or '(' before '@' token
2. error: '_myViewController' undeclared (first use in this function)
3. warning: property 'myViewController' requires method '-myViewController' to be defined - use @synthesize, @dynamic or provide a method implementation
4. warning: property 'myViewController' requires the method 'setMyViewController:' to be defined - use @synthesize, @dynamic or provide a method implementation
HelloWorldAppDelegate.h
#import <UIKit/UIKit.h>
@class MyViewController;
@interface HelloWorldAppDelegate : NSObject <UIApplicationDelegate> {
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) MyViewController *myViewController;
@end
HelloWorldAppDelegate.m
#import "HelloWorldAppDelegate.h"
#import "MyViewController.h"
@implementation HelloWorldAppDelegate
@synthesize window=_window;
@synthesize myViewController=_myViewController;
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
R94N
Sep 1, 01:13 AM
Isn't the eMate smaller in size than a Macbook? I doubt the screen would fit.
Yeah, I thought it was more of a modern-day Netbook size rather than a standard MacBook.
Yeah, I thought it was more of a modern-day Netbook size rather than a standard MacBook.
jtara
Apr 15, 01:12 PM
Really two different things the OP needs. One he knows about, and one he doesn't. ;)
First, a request for some clarification. You have a DSL modem that has a single Ethernet port on the back, right? You stated "no wireless". I'm assuming that that's due to some kind of restriction - i.e. workplace or parents or whoever said "no wireless". Is this correct? Or do you simply mean that your DSL modem doesn't have WiFi?
Anyway, if there is some "no wireless" restriction, then the wireless router one person suggested is out.
Does the DSL modem have NAT built in? Do you know what NAT is? (Do a little Wikipedia research...) NAT allows several computers to share a single Internet connection. It changes the packets going out to the Internet so that they all come from the same address. It also provides *some* firewall protection, in that incoming packets are only accepted if they match-up with an outgoing packet. By default, a NAT router won't accept any incoming connections. You can set it up to accept incoming connections, in that case you need to designate which computer to send them to for a given port.
This is of no concern to you unless you are running a server, etc.
If your DSL modem does not have NAT, and also doesn't have some kind of firewall, then you are currently *very* vulnerable to attack.
It would be useful to post your DSL modem model.
If it does have NAT, then I'm a bit surprised that they didn't build in a small Ethernet switch and give you multiple Ethernet ports. If it does have NAT, then you should only need to add an Ethernet switch. Get a gigabit switch, which will make then connection BETWEEN your Macs very fast. (For copying files back and forth, etc.) For the Internet connection, gigabit is a non-issue, since Internet speeds are (typically) way below that of even a 100M switch.
If it doesn't have NAT, then you need a router or firewall. Think "wifi router without the wifi". It's a bit of a specialty product, because they are usually built into a WiFi device, cable modem, or DSL modem.
You can also look for a compatible DSL modem that has a built-in router and switch.
You will have to check your provider's terms of service to see if it's OK to connect more than one computer. Generally, though, the provider won't be able to detect that you are using NAT, so won't know in any case.
First, a request for some clarification. You have a DSL modem that has a single Ethernet port on the back, right? You stated "no wireless". I'm assuming that that's due to some kind of restriction - i.e. workplace or parents or whoever said "no wireless". Is this correct? Or do you simply mean that your DSL modem doesn't have WiFi?
Anyway, if there is some "no wireless" restriction, then the wireless router one person suggested is out.
Does the DSL modem have NAT built in? Do you know what NAT is? (Do a little Wikipedia research...) NAT allows several computers to share a single Internet connection. It changes the packets going out to the Internet so that they all come from the same address. It also provides *some* firewall protection, in that incoming packets are only accepted if they match-up with an outgoing packet. By default, a NAT router won't accept any incoming connections. You can set it up to accept incoming connections, in that case you need to designate which computer to send them to for a given port.
This is of no concern to you unless you are running a server, etc.
If your DSL modem does not have NAT, and also doesn't have some kind of firewall, then you are currently *very* vulnerable to attack.
It would be useful to post your DSL modem model.
If it does have NAT, then I'm a bit surprised that they didn't build in a small Ethernet switch and give you multiple Ethernet ports. If it does have NAT, then you should only need to add an Ethernet switch. Get a gigabit switch, which will make then connection BETWEEN your Macs very fast. (For copying files back and forth, etc.) For the Internet connection, gigabit is a non-issue, since Internet speeds are (typically) way below that of even a 100M switch.
If it doesn't have NAT, then you need a router or firewall. Think "wifi router without the wifi". It's a bit of a specialty product, because they are usually built into a WiFi device, cable modem, or DSL modem.
You can also look for a compatible DSL modem that has a built-in router and switch.
You will have to check your provider's terms of service to see if it's OK to connect more than one computer. Generally, though, the provider won't be able to detect that you are using NAT, so won't know in any case.
TShirtJohn
Apr 28, 10:46 AM
Ok I've tried to use an ethernet between the two routers to join them that way rather than wireless but it's killed the network when i do that
What am i doing wrong?
What am i doing wrong?
KeriJane
Mar 31, 12:09 PM
They were really funny and effective. I miss them.
PC was a riot with some of his schemes.
What happened? Maybe it's because Macs are selling like crazy on their reputation and word of mouth. Why bother spending millions on TV advertising if you don't have to?
Or maybe it's because much can go wrong when you're poking fun at the competition... even if you're understating their faults and downplaying your strengths, it's going to turn off some people and could potentially backfire.
Hoping for a resurrection of these hilarious commercials at the release (escape?) of Windows 8,
Keri
PC was a riot with some of his schemes.
What happened? Maybe it's because Macs are selling like crazy on their reputation and word of mouth. Why bother spending millions on TV advertising if you don't have to?
Or maybe it's because much can go wrong when you're poking fun at the competition... even if you're understating their faults and downplaying your strengths, it's going to turn off some people and could potentially backfire.
Hoping for a resurrection of these hilarious commercials at the release (escape?) of Windows 8,
Keri
Angelchild
Jun 4, 03:49 PM
nice!!
Jaffa Cake
Oct 13, 05:43 PM
...a trip to England, where they will see Manchester United play.Those miners would be more use up in Liverpool � the chaps at Anfield desperately need advice on how to get themselves out of a hole before Christmas...
0 comments:
Post a Comment