cualexander
Jun 18, 10:03 AM
The southpark mall in Charlotte NC opens at 6am and only one door opens at that time. So I am getting there around 5:30am. Maybe I'll get lucky and no one will show up that early :)
DJsteveSD
Mar 11, 04:33 PM
What do u do when you need to go to the bathroom?
someone walking around charging to use their bucket?? :eek:
someone walking around charging to use their bucket?? :eek:
Cuddles
Dec 31, 04:08 PM
Ps3 has a crappy browser. I heard they may be updating it to something like firefox, but have nothing right now.
Sorry about the Netflix, that' a pretty big loss. Streaming media, I think, works better with xbox and windows.
Check out some ps3 games. Interested in any?
Sorry about the Netflix, that' a pretty big loss. Streaming media, I think, works better with xbox and windows.
Check out some ps3 games. Interested in any?
outz
Apr 19, 09:24 PM
I hope this is standard on ios5. It is pretty rediculous for the data to be there and yet the ipad doesnt use it
if they do include that feature in ios5, i'm sure they'll require an ipad 3 to be able to use it.
if they do include that feature in ios5, i'm sure they'll require an ipad 3 to be able to use it.
more...
littlehouse
Jan 12, 09:50 PM
maybe try connecting the dock to a power source
Diatribe
Nov 25, 04:46 PM
Has anything happened for this yet?
After reading threads like this (http://forums.macrumors.com/showthread.php?t=163611), I think we should maybe start a guide about equivalent apps, Windows to Mac.
I don't know nearly enough about Wiki to start and don't have quite enough time to learn today. :o
Judging by your post count you have more than enough time on your hands... :D :p and besides it's not exactly rocket science.
After reading threads like this (http://forums.macrumors.com/showthread.php?t=163611), I think we should maybe start a guide about equivalent apps, Windows to Mac.
I don't know nearly enough about Wiki to start and don't have quite enough time to learn today. :o
Judging by your post count you have more than enough time on your hands... :D :p and besides it's not exactly rocket science.
more...
simsaladimbamba
Apr 6, 07:06 PM
You didn't backup before upgrading to Lion?
A clean install of Mac OS X 10.6 Snow Leopard is your only option, as the dozens of other already existing threads can tell you - MRoogle (http://mroogle.edesignuk.com/) might help you there.
Short version: Clean Install of OS X 10.6 Snow Leopard (http://guides.macrumors.com/Clean_Install_of_OS_X_10.6_Snow_Leopard)
Long version: Mac OS X v10.6 Snow Leopard: How to Erase and Install (http://support.apple.com/kb/ht3910)
A clean install of Mac OS X 10.6 Snow Leopard is your only option, as the dozens of other already existing threads can tell you - MRoogle (http://mroogle.edesignuk.com/) might help you there.
Short version: Clean Install of OS X 10.6 Snow Leopard (http://guides.macrumors.com/Clean_Install_of_OS_X_10.6_Snow_Leopard)
Long version: Mac OS X v10.6 Snow Leopard: How to Erase and Install (http://support.apple.com/kb/ht3910)
snart
Feb 21, 08:08 AM
Strange. Works fine for me with the latest firmware jailbroken.
more...
awadeee
Apr 13, 05:20 AM
I've been waiting and waiting, like many others for the white iPhone 4 to be released, and have been disappointed. I think I'm going to get a used iPhone 4 black (hopefully in shotty condition for cheap) and buy the white kit and transfer.
Questions:
Will the proximity sensor work?
Will the earpiece work?
Are these faulty in all white conversions?
How bad is the camera really?
Any insight would be very much appreciated.
Questions:
Will the proximity sensor work?
Will the earpiece work?
Are these faulty in all white conversions?
How bad is the camera really?
Any insight would be very much appreciated.
Lau
Sep 22, 06:52 PM
Sorry - slow reply. If it's an upgrade thing, well, than that's fine! As long as the people who are up to date can see it that's ok. I need to find an up to date tester now!
more...
xStep
Apr 4, 07:12 PM
rustywild sent me a private message and this is my response to that.
I only slept 4 hours last night so I might still be misunderstanding. Part of your explanation didn't make any sense given your code.
This is what I believe you have�
A dictionary where the keys will be the left most component that sets up what the right side component should display. The keys are placed into a sorted array. Each time component 0 changes, you want to update the right side component. Each time a choice is made, you want it reflected in two labels. The following code should do that for you. This is untested code.
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component
{
if (component == kPotenciaComponent) {
NSString *selectedState = [self.potencia objectAtIndex:row];
// Update values array for key of component 0.
[self.cantidad release];
self.cantidad = [potenciavoltaje objectForKey:selectedState];
[pickerView reloadAllComponents]; // Might not need to load all, but I do.
[pickerView selectRow: row inComponent: kPotenciaComponent animated: YES];
[pickerView selectRow: 0 inComponent: kCantidadComponent animated: YES];
label1.text = [self.potencia objectAtIndex:row];
label2.text = [self.cantidad objectAtIndex: 0];
}
else {
label2.text = [self.cantidad objectAtIndex: row];
}
}
The labels are updated here because that is when the change is occurring in your selection. You may also want to set them when you first setup your two data arrays in your viewDidLoad method.
P.S. Looks like you are a native Spanish speaker. Welcome to the challenge of communicating technical problems in another language. :)
I only slept 4 hours last night so I might still be misunderstanding. Part of your explanation didn't make any sense given your code.
This is what I believe you have�
A dictionary where the keys will be the left most component that sets up what the right side component should display. The keys are placed into a sorted array. Each time component 0 changes, you want to update the right side component. Each time a choice is made, you want it reflected in two labels. The following code should do that for you. This is untested code.
- (void)pickerView:(UIPickerView *)pickerView didSelectRow:(NSInteger)row inComponent:(NSInteger)component
{
if (component == kPotenciaComponent) {
NSString *selectedState = [self.potencia objectAtIndex:row];
// Update values array for key of component 0.
[self.cantidad release];
self.cantidad = [potenciavoltaje objectForKey:selectedState];
[pickerView reloadAllComponents]; // Might not need to load all, but I do.
[pickerView selectRow: row inComponent: kPotenciaComponent animated: YES];
[pickerView selectRow: 0 inComponent: kCantidadComponent animated: YES];
label1.text = [self.potencia objectAtIndex:row];
label2.text = [self.cantidad objectAtIndex: 0];
}
else {
label2.text = [self.cantidad objectAtIndex: row];
}
}
The labels are updated here because that is when the change is occurring in your selection. You may also want to set them when you first setup your two data arrays in your viewDidLoad method.
P.S. Looks like you are a native Spanish speaker. Welcome to the challenge of communicating technical problems in another language. :)
jondob
May 4, 05:22 PM
Have had my macbook 13 inch 2011 for about a month now.
Sometimes when I go to burn a cd i put the cd in but it doesnt grab the cd it doesnt even work..
When I go to reset the computer I can hear the drive put it self back in place, then once the comuter is back from restart it will take the cd in...
Not a huge deal but kinda annoying when I have to retart everytime..
Is there a reason why this is happening?
Sometimes when I go to burn a cd i put the cd in but it doesnt grab the cd it doesnt even work..
When I go to reset the computer I can hear the drive put it self back in place, then once the comuter is back from restart it will take the cd in...
Not a huge deal but kinda annoying when I have to retart everytime..
Is there a reason why this is happening?
more...
AlexH
Jun 24, 03:07 PM
Sold.
Mr. Retrofire
Apr 11, 10:30 AM
=====-----=====
It's weird, My MacBook Pro now wont boot into OS X lion, before the login screen it shows the mouse for a second and now it sticks at blue. :o
=====-----=====
From http://support.apple.com/kb/ht1564
(Mac OS X: What is Safe Boot, Safe Mode?)
"Mac OS X v10.5.6 or later: A Safe Boot deletes the dynamic loader shared cache at (/var/db/dyld/). A cache with issues may cause a blue screen on startup, particularly after a Software Update. Restarting normally recreates this cache."
=====-----=====
From http://support.apple.com/kb/ht1455
(Mac OS X: Starting up in Safe Mode)
"To start up into Safe Mode (to Safe Boot), do this:
1. Be sure your Mac is shut down.
2. Press the power button.
3. Immediately after you hear the startup tone, hold the Shift key. The Shift key should be held as soon as possible after the startup tone, but not before the tone.
4. Release the Shift key when you see the gray Apple icon and the progress indicator (looks like a spinning gear)."
=====-----=====
:)
=====-----=====
It's weird, My MacBook Pro now wont boot into OS X lion, before the login screen it shows the mouse for a second and now it sticks at blue. :o
=====-----=====
From http://support.apple.com/kb/ht1564
(Mac OS X: What is Safe Boot, Safe Mode?)
"Mac OS X v10.5.6 or later: A Safe Boot deletes the dynamic loader shared cache at (/var/db/dyld/). A cache with issues may cause a blue screen on startup, particularly after a Software Update. Restarting normally recreates this cache."
=====-----=====
From http://support.apple.com/kb/ht1455
(Mac OS X: Starting up in Safe Mode)
"To start up into Safe Mode (to Safe Boot), do this:
1. Be sure your Mac is shut down.
2. Press the power button.
3. Immediately after you hear the startup tone, hold the Shift key. The Shift key should be held as soon as possible after the startup tone, but not before the tone.
4. Release the Shift key when you see the gray Apple icon and the progress indicator (looks like a spinning gear)."
=====-----=====
:)
=====-----=====
more...
MCIowaRulz
Apr 30, 07:24 PM
Yes, I understand that there are differences between the two types of computers however, Is the 2360QM i7 in the Samsung be as good as the rumored processor in the iMac? I'd be looking at the 21.5 inch model. Specifically the $1200 model which is rumored to have the following
1199$ 21.5" iMac
Intel Core i3-2100 (3.1GHz)
AMD 6490M with 256MB GDDR5
750GB HD
2x2GB RAM; option for 4x2GB
The Samsung has the following
http://www.bestbuy.com/site/Samsung+-+Laptop+/+Intel%26%23174%3B+Core%26%23153%3B+i7+Processor+/+15.6%22+Display+/+6GB+Memory+/+750GB+Hard+Drive+-+Black/Graphite/2235132.p?id=1218315006844&skuId=2235132
Intel� Core� i7
Processor Speed
2.0GHz (with Turbo Boost up to 2.9GHz)
System Memory (RAM)
6GB
Computer Hard Drive Size
750GB
Graphics
NVIDIA GeForce GT525M
Video Memory
1GB GDDR3
I like the Mac OS X OS (and I NEED to have my Mac OS X G4 from 2001 replaced) but I also need a laptop as well and I want the most BANG for my buck.:)
I have $1,200 to spend. Advice is appreciated from the experts here.
Thanks
1199$ 21.5" iMac
Intel Core i3-2100 (3.1GHz)
AMD 6490M with 256MB GDDR5
750GB HD
2x2GB RAM; option for 4x2GB
The Samsung has the following
http://www.bestbuy.com/site/Samsung+-+Laptop+/+Intel%26%23174%3B+Core%26%23153%3B+i7+Processor+/+15.6%22+Display+/+6GB+Memory+/+750GB+Hard+Drive+-+Black/Graphite/2235132.p?id=1218315006844&skuId=2235132
Intel� Core� i7
Processor Speed
2.0GHz (with Turbo Boost up to 2.9GHz)
System Memory (RAM)
6GB
Computer Hard Drive Size
750GB
Graphics
NVIDIA GeForce GT525M
Video Memory
1GB GDDR3
I like the Mac OS X OS (and I NEED to have my Mac OS X G4 from 2001 replaced) but I also need a laptop as well and I want the most BANG for my buck.:)
I have $1,200 to spend. Advice is appreciated from the experts here.
Thanks
RedReplicant
May 5, 08:16 PM
I'm with the above, enjoy your new imac ;)
more...
anng12
Mar 11, 08:13 AM
Line status anyone?
uknick
Mar 25, 07:28 AM
Hey uknick, firstly welcome to MacRumors ;)
Yeah, I'm going to wait and order mine. I'm not rushing in to it. I'll order mine online also, unless I have good reason to pop in to town and buy the iPad2 from the local Bristol store. I'm still wondering if I really need it or not. Still deciding, but temptation is strong! :rolleyes:
Come on Will - you know you want one!! Just give into the inevitable....
I bought the first gen a year ago and never regretted it ( sold it on eBay before the new one was announced :-)) it is by far the best gadget I have ever owned and believe me I have tried many! I even had a brief flirtation with a Galaxy Tab over recent weeks - but it only took me a few days before I gave up and stuck it back on eBay! Once you have tasted Apple other fruits taste just bland ;-)
I can't wait to get the new one particularly for AirPlay with my Apple TV.
I would be going to Bristol if I wasn't working today. Hope that there might be one with my name on somewhere in London.
One last small point - can you veleive that Orange block this site on my iPhone because they say it is "adult content" that really annoys me - it wouldn't happen on my 3 SIM used in my iPad!
Yeah, I'm going to wait and order mine. I'm not rushing in to it. I'll order mine online also, unless I have good reason to pop in to town and buy the iPad2 from the local Bristol store. I'm still wondering if I really need it or not. Still deciding, but temptation is strong! :rolleyes:
Come on Will - you know you want one!! Just give into the inevitable....
I bought the first gen a year ago and never regretted it ( sold it on eBay before the new one was announced :-)) it is by far the best gadget I have ever owned and believe me I have tried many! I even had a brief flirtation with a Galaxy Tab over recent weeks - but it only took me a few days before I gave up and stuck it back on eBay! Once you have tasted Apple other fruits taste just bland ;-)
I can't wait to get the new one particularly for AirPlay with my Apple TV.
I would be going to Bristol if I wasn't working today. Hope that there might be one with my name on somewhere in London.
One last small point - can you veleive that Orange block this site on my iPhone because they say it is "adult content" that really annoys me - it wouldn't happen on my 3 SIM used in my iPad!
Phat_Pat
Jan 10, 09:04 PM
ohh i remember someone else having this.... if i remember right its just a weird glitch in the sytem...
try restarting
try restarting
b-rad g
Mar 9, 07:43 AM
So it looks like the Handbrake problem is all sorted out as I have encoded about a dozen more movies all using the queue and it's running perfectly.:D
However a new problem has shown up with Rip It. About 1 out of every 10 dvd's will make the superdrive roar and make a loud vibrating sound although I put my hand on the Mini and there is no vibration. Also it bogs down the system with a lot of beachballing, Activity Monitor takes about 5 minutes to open. Most dvd's will take between 20-30 minutes to rip, but on these ocassional "bad" ones they take over an hour. When Rip It is running with the "good" discs the system react like normal.:confused:
Anybody ever heard of any of this with Rip It? In the next couple of days I might download Mac the Ripper and see what it does with these "bad" discs.
However a new problem has shown up with Rip It. About 1 out of every 10 dvd's will make the superdrive roar and make a loud vibrating sound although I put my hand on the Mini and there is no vibration. Also it bogs down the system with a lot of beachballing, Activity Monitor takes about 5 minutes to open. Most dvd's will take between 20-30 minutes to rip, but on these ocassional "bad" ones they take over an hour. When Rip It is running with the "good" discs the system react like normal.:confused:
Anybody ever heard of any of this with Rip It? In the next couple of days I might download Mac the Ripper and see what it does with these "bad" discs.
markyr17
Mar 9, 06:48 AM
Take it to apple if it's not a jb defect, your iPad is still under warranty. You may be able to get it replaced
skinniezinho
Mar 26, 06:15 AM
www.opensourcemac.org, give a read on powerpc faq in my sig, it has some other handy sites :D
ECUpirate44
Mar 21, 07:12 PM
I've followed the steps and now I am looking for the etc folder from the go menu in finder but when I search its not there??
Night Spring
Mar 14, 01:21 PM
I didn't mean to say that new tool will allow him to downgrade without SHSHs, I meant to say that he is stuck until the new tool is release that can Jailbreak 4.3 and he can get all his stuff back. ;)
Actually, if OP doesn't mind a tethered jailbreak, there are tools available to jailbreak 4.3 right now.
Actually, if OP doesn't mind a tethered jailbreak, there are tools available to jailbreak 4.3 right now.