srobert
Mar 16, 01:32 PM
Nice. 10$ well spent. Count me in.
Original reviews for those interested: A Link (http://www.metacritic.com/games/platforms/psx/castlevaniasymphony?q=symphony%20night) to the past?
Original reviews for those interested: A Link (http://www.metacritic.com/games/platforms/psx/castlevaniasymphony?q=symphony%20night) to the past?
mc68k
Mar 5, 02:52 PM
im not gonna lie, i do it for the points
i like the whole research idea, but i don't think folding is gonna change the world or anything
i like the whole research idea, but i don't think folding is gonna change the world or anything
techlover828
Jul 1, 07:09 PM
very tempting... is this the more expensive monitor that has the adjustable stand and better panel?
wnameth
Dec 16, 07:03 PM
Ok, as of today there are no iPod minis at Circuit City or Sharper Image (at least here in Phoenix anyway) and I had found one on PowerMax's website, but they were already sold out of them before I could order one. I had started a deal with another member here, but his unit needed the battery replaced and couldn't have it done and sent to me before next Thursday (that's when I need it). So that said, is there anyone else here who would like to sell me their iPod mini (any color)? If there are any takers, I can send you money via PayPal today if you can ship it today or tomorrow.
Thanks!
at the store that i work at we still have them, they are 250CAD for them though
Thanks!
at the store that i work at we still have them, they are 250CAD for them though
more...
SanFranKyle
Apr 13, 04:47 PM
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.
Breakdown here:
Proximity Sensor will work at about 85% with the sharpie fix. To the point where you really won't notice it not working, just auto dimming and stuff like that suffers.
Earpiece will work.
All white conversions will have this, unless it's real high quality, which I have not heard of yet.
Camera is not bad. Without flash there is no problem. Using flash you may or may not have bleed, it's kinda luck of the draw. Might be able to fix it if you can find a way to block light bleed. Super low light conditions, where flash is definitely needed is where your pictures will be useless.
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.
Breakdown here:
Proximity Sensor will work at about 85% with the sharpie fix. To the point where you really won't notice it not working, just auto dimming and stuff like that suffers.
Earpiece will work.
All white conversions will have this, unless it's real high quality, which I have not heard of yet.
Camera is not bad. Without flash there is no problem. Using flash you may or may not have bleed, it's kinda luck of the draw. Might be able to fix it if you can find a way to block light bleed. Super low light conditions, where flash is definitely needed is where your pictures will be useless.
Jaz
Nov 4, 05:13 PM
No pink on the 23" I've been using for two months now.
Some residual ghosting with high contrast images that don't move, and a 2 inch band of slight discolouration down the left side. I do design and colour matters but for proofing I deal with a broadcast monitor for video or the printery for paper based.
I bought Applecare with my G5 and screen. Figure I'll test for six months and then return it if the problem becomes an obstacle to work.
Some residual ghosting with high contrast images that don't move, and a 2 inch band of slight discolouration down the left side. I do design and colour matters but for proofing I deal with a broadcast monitor for video or the printery for paper based.
I bought Applecare with my G5 and screen. Figure I'll test for six months and then return it if the problem becomes an obstacle to work.
more...
michaelrjohnson
Apr 4, 10:51 PM
unfortunately, i'm pretty sure it's just a typo...someday though!
olternaut
Jan 14, 12:32 PM
That depends on where in the world you live.
NYC man! ..........thats new york city for those who need help figuring it out. :D
NYC man! ..........thats new york city for those who need help figuring it out. :D
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. :)
wrldwzrd89
Sep 28, 03:03 PM
My ignorance is showing. Thanks, that was it.
Whose? James Craner's suggestion or mine? You didn't quote the post you used...
Whose? James Craner's suggestion or mine? You didn't quote the post you used...
more...
Kasalic
Mar 31, 02:33 AM
Can anyone give me the right amount to partition off for Windows XP+Games+Bootcamp?
Thanks in advance,
K.
Simple answer - No we can't.
Longer answer - Only you know how many games you will be wanting to install on XP, similar to the above poster, I only play one game which requires Windows, so I set mine to 40GB, which was enough for OS and the game.
One piece of advice I would give you is to partition your drive into 3, one for Mac OS, one for Windows and a third 'spare' partition. THat way if you find yourself running out of space on either Mac or Windows you can format the 'spare' partition appropriately, or even split the spare into two.
Thanks in advance,
K.
Simple answer - No we can't.
Longer answer - Only you know how many games you will be wanting to install on XP, similar to the above poster, I only play one game which requires Windows, so I set mine to 40GB, which was enough for OS and the game.
One piece of advice I would give you is to partition your drive into 3, one for Mac OS, one for Windows and a third 'spare' partition. THat way if you find yourself running out of space on either Mac or Windows you can format the 'spare' partition appropriately, or even split the spare into two.
fatboyfootball
Apr 28, 05:40 AM
I think a blue or pink one would be great!! Maybe Apple will have a "rainbow" collection of colors? That would be so much fun!!
more...
JonoColesUK
Jan 24, 01:06 PM
Hy there
I'm actually looking for a wireless router as well
I only want one that enables wireless internet connection so that I dont have to fork out to move my phone line.
Any advice??
Cheers
Jono
the rectangular dial with
more...
CyanideRedHair :O
Table with Woodland Ridge
more...
Trestle French Country
Clip art of two wine glasses
Capitals Washington Nhl 60
I'm actually looking for a wireless router as well
I only want one that enables wireless internet connection so that I dont have to fork out to move my phone line.
Any advice??
Cheers
Jono
chiefroastbeef
Mar 11, 09:59 AM
It is very frustrating that Apple still has not fixed this in 4.3, I want to backup/view photos on my ipad!!!
more...
MacHamster68
Mar 4, 09:28 AM
better get one now before people think they are highly collectable and the prices go up like on the lisa 1 or so
wnorris
Oct 23, 02:15 AM
Anyone else getting broswer (chrome, firefox, safari) crashes constantly since installing this update?
I am having serious problems with pages loading properly since this update. :(
I am having serious problems with pages loading properly since this update. :(
more...
prostuff1
Sep 22, 07:04 PM
No, i can still get the printer from canons website no problem. So it is apple who has discontinued...they just stopped carrying it.
I can get it just fine through canon, amazon, newegg, and some other sites but then i would not get the rebate!!
I can get it just fine through canon, amazon, newegg, and some other sites but then i would not get the rebate!!
macidiot
Mar 30, 01:18 PM
Who gives a rats ass?
Its apparently a great game. Its getting rave reviews. So its a big deal for mac to get an a-list game.
To answer your question, anyone that is a star wars fan or anyone that likes high quality games. Which, last I heard, means a lot of people.
The bigger question is when is it coming out for Mac? Though I'm all for more games on mac, I have to say that I'll probably be finished playing the ps2 version by the time the mac version is released...
Its apparently a great game. Its getting rave reviews. So its a big deal for mac to get an a-list game.
To answer your question, anyone that is a star wars fan or anyone that likes high quality games. Which, last I heard, means a lot of people.
The bigger question is when is it coming out for Mac? Though I'm all for more games on mac, I have to say that I'll probably be finished playing the ps2 version by the time the mac version is released...
bhsu21
Mar 19, 12:32 PM
The ad is very misleading. The auction is over so there's nothing to change that. I'm very sure the seller must think it's new. No way a refurbished one sells for that much when a brand new one can be bought for less than that unlocked on Ebay from what I have seen.
ChrisFromCanada
Dec 20, 10:09 PM
anyone hear of this before....http://www.monstercable.com/press/press_result.asp?pr=2004_11_icruze.asp...looks cool, but will this finally be the answer to my question, "can i hook up my ipod to my car"
How is this differnt then this ,http://www.vaistech.com/home.htmlv
I'm getting errors on both links :confused:
How is this differnt then this ,http://www.vaistech.com/home.htmlv
I'm getting errors on both links :confused:
vincenz
Apr 10, 03:22 PM
I used cases for the first few weeks after getting the phone. Since then, it's been naked.
cocacolakid
Mar 19, 06:13 PM
I have a 2010 unibody mini hooked up to a 37" Vizio 1080p HDTV as it's main monitor. (I also have a 24" HD monitor as a dual monitor, but I rarely use that).
I have had absolutely no issues at all using a large HDTV. There isn't any lag, the picture is fantastic, etc.
I play a ton of movies on this thing, using Front Row, VLC, and Boxee (and the iPad has apps to use as a remote for all 3).
I'd highly recommend it.
I have had absolutely no issues at all using a large HDTV. There isn't any lag, the picture is fantastic, etc.
I play a ton of movies on this thing, using Front Row, VLC, and Boxee (and the iPad has apps to use as a remote for all 3).
I'd highly recommend it.
mainstreetmark
Jun 23, 01:40 PM
wow - this is a really new forum. there's only 15 members.
olliemac
Mar 28, 04:47 PM
Got one! The Best Buy in Gatineau was showing online stock this afternoon. Called to confirm, found out they only had the 1 unit and then drove over ASAP. The exact model I wanted too... 64GB Black Wi-Fi only.
It was a return item so there's hope for more! Good luck!
It was a return item so there's hope for more! Good luck!
No comments:
Post a Comment