Search Results

Search found 2 results on 1 pages for 'aquat33nfan'.

Page 1/1 | 1 

  • Is NVIDIA GeForce GTX 480 Video Card Compatbile with a Mac Pro Running Windows 7 Pro 64?

    - by aquat33nfan
    I have a Mac Pro (early 2008) and I'm running Windows 7 Pro (64 bit) natively (i.e., with just Windows installed and no OSX or boot camp) on it. If I buy an NVIDIA GeForce GTX 480 video card, will it work or do I have to buy a card that is Mac-specific (e.g., GeForce GTX 285 'for Mac')? Also, more generally, will Windows video cards work on Intel Macs running Windows (in case I pick a cheaper card)? I can't tell if it matters that a Mac does not have a bios. I searched other boards and I gathered that video cards would work fine because Windows has the proper drivers for them and OSX doesn't and not having the BIOS doesn't make a difference. I found one thread on here that seemed to indicate that as well, but I wanted to make sure. Thanks.

    Read the article

  • Python: Access dictionary value inside of tuple and sort quickly by dict value

    - by Aquat33nfan
    I know that wasn't clear. Here's what I'm doing specifically. I have my list of dictionaries here: dict = [{int=0, value=A}, {int=1, value=B}, ... n] and I want to take them in combinations, so I used itertools and it gave me a tuple (Well, okay it gave me a memory object that I then used enumerate on so I could loop over it and enumerate gave ma tuple): for (index, tuple) in enumerate(combinations(dict, 2)): and this is where I have my problem. I want to identify which of the two items in the combination has the bigger 'int' value and which has the smaller value and assign them to variables (I'm actually using more than 2 in the combination so I can't just say if tuple[0]['int'] tuple[1]['int'] and do the assignment because I'd have to list this out a bunch of times and that's hard to manage). I was going to assign each 'int' value to a variable, sort it in a list, index the 'int' value in the list by 1, 2, 3, 4, 5 ... etc., then go back and access the dictionary I wanted by the int value and then assign the dictionary to a variable so I knew which was bigger. But I have a big list and lists and variable assignments are resource intensive and this is taking a long time (I had only a little bit of that written and it was taking forever to run). So I was hoping someone knew a fast way to do this. I actually could list out every possible combination of assignmnets using the if/thens but it's just like 5 pages of if/thens and assignments and is hard to read and manage when I want to change it. You've probably gathered this, but I"m new at programming. thx

    Read the article

1