Daedalus256
Dec 7, 04:10 PM
(edit Whoops)
Abstract
Apr 18, 05:02 PM
If you want better photos, why not something like a Sony NEX?
mkrishnan
Nov 13, 10:39 PM
I ran across this program the other day and have been using it. The speed of this version of firefox is much faster than safari or ff1.0. Here is a link to the site.
http://www.beatnikpad.com/archives/2004/11/06/firefoxG5
Thread consolidation: http://forums.macrumors.com/showthread.php?t=97289&highlight=firefox
:D
http://www.beatnikpad.com/archives/2004/11/06/firefoxG5
Thread consolidation: http://forums.macrumors.com/showthread.php?t=97289&highlight=firefox
:D
macquariumguy
Oct 16, 05:32 AM
Reporting back for anyone who cares - the banner brought $220 on eBay. Best of all, the shipping address of the buyer was 1 Infinite Loop! :D
The poster is for sale now. We'll see how it does.
The poster is for sale now. We'll see how it does.
more...
wilywampa
May 3, 02:37 PM
I believe your macbook uses ddr2 memory,whereas the newer MBP's use DDR3. There is difference in voltage requirements for those two standards. You can install it in the macbook, it just won't boot, but you won't damage anything.
Why are you trying to do this in the first place?
This page (http://support.apple.com/kb/ht1270#link5) says the Late 2008 15" MBP uses DDR3 memory. I will check for sure when I get home today by looking at "About this Mac." As I said in the original post, I am doing this because I am upgrading the RAM in the new MBP as soon as it's delivered, and upgrading the RAM in the old MBP should get me more $$$ when I sell it. Thanks for the help, everyone.
Why are you trying to do this in the first place?
This page (http://support.apple.com/kb/ht1270#link5) says the Late 2008 15" MBP uses DDR3 memory. I will check for sure when I get home today by looking at "About this Mac." As I said in the original post, I am doing this because I am upgrading the RAM in the new MBP as soon as it's delivered, and upgrading the RAM in the old MBP should get me more $$$ when I sell it. Thanks for the help, everyone.
QuarterSwede
Feb 19, 06:32 PM
Your MBP is definitely a pillow. pillow: anything used to cushion the head. http://dictionary.reference.com/browse/pillow
It's definitely not a cushion. cushion: a soft bag of cloth, leather, or rubber, filled with feathers, air, foam rubber, etc., on which to sit, kneel, or lie. http://dictionary.reference.com/browse/cushion
Ergo, a MBP is not a pillow.
It's definitely not a cushion. cushion: a soft bag of cloth, leather, or rubber, filled with feathers, air, foam rubber, etc., on which to sit, kneel, or lie. http://dictionary.reference.com/browse/cushion
Ergo, a MBP is not a pillow.
more...
cayley
Apr 3, 02:46 PM
What are some good Go clients/servers?
lexfuzo
Sep 23, 02:26 PM
So some of this could be new stock that's just repacked for a low price? Possible I suppose.
Although I wonder where they've dug up the 3rd gen iPods from. Think they've found a stock room that they thought they'd lost? :eek: ;)
I'm sure there is some iPod cemetery where the undead 3rd-gens wait to be sold as refurbished... *BUUUAAHHH* :eek:
Although I wonder where they've dug up the 3rd gen iPods from. Think they've found a stock room that they thought they'd lost? :eek: ;)
I'm sure there is some iPod cemetery where the undead 3rd-gens wait to be sold as refurbished... *BUUUAAHHH* :eek:
more...
mrkjsn
Oct 15, 08:18 PM
Anyone know where I can find wallpapers for the 1680x1050 hi res screen?
What pic resolution should I be looking for?
Thanks
One place I usually frequest is http://www.pixelgirlpresents.com/
Not sure if that's your taste but check it out.
What pic resolution should I be looking for?
Thanks
One place I usually frequest is http://www.pixelgirlpresents.com/
Not sure if that's your taste but check it out.
xper
Feb 9, 10:27 PM
Most useless thread i ever seen in my entire life
more...
toxthexnines
Oct 19, 10:42 AM
I don't know if i am on friday but definately on saturday, i live in bartlesville but im going with a friend to a scion party on saturday so im sure to pick up a copy then.
bruinsrme
May 5, 04:12 AM
thats funny
more...
joecool85
Aug 4, 03:06 PM
What is blank screen mode? I don't run mine in screensaver mode, I turn it on and set my computer to stay on and just shut off my monitor.
**edit**
And I'm pretty sure that seti units are always the same size, its folding ones that aren't.
**edit**
And I'm pretty sure that seti units are always the same size, its folding ones that aren't.
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. :)
more...
militaryman911
Apr 24, 10:33 PM
hows something like this?
Here (http://www.buy.com/prod/13-3-macbook-intel-core-2-duo-2-4ghz-4gb-ram-500gb-hard-drive-nvidia/q/sellerid/31064376/loc/101/217650314.html)
Or this (http://store.apple.com/us/browse/home/shop_mac/family/macbook_pro?mco=MTM3NDc0NDI)? (2nd option, for $1,499.00)
Might get the second, i've heard great things about i7. Also i've heard wifi is better on MB because the aluminum interferes on the MBP?
Here (http://www.buy.com/prod/13-3-macbook-intel-core-2-duo-2-4ghz-4gb-ram-500gb-hard-drive-nvidia/q/sellerid/31064376/loc/101/217650314.html)
Or this (http://store.apple.com/us/browse/home/shop_mac/family/macbook_pro?mco=MTM3NDc0NDI)? (2nd option, for $1,499.00)
Might get the second, i've heard great things about i7. Also i've heard wifi is better on MB because the aluminum interferes on the MBP?
nednarm
Apr 1, 12:57 PM
I can't figure this one out. I successfully jailbroke my 1st gen iPad after using pwnage tool and tetheredboot.
However when I open cydia and do the required updates it asks me to reboot, so I do so but it keeps on going through a boot loop.
I then put it in DFU and do the tetheredboot command in terminal but it fails every time saying:
Macintosh-6:~ Eddy$ /Users/Eddy/Desktop/tetheredboot/tetheredboot -i/Users/Eddy/Desktop/tetheredboot/iBSS.k48ap.RELEASE.dfu -k/Users/Eddy/Desktop/tetheredboot/kernelcache.release.k48
Initializing libpois0n
Waiting for device to enter DFU mode
opening device 05ac:1227...
Found device in DFU mode
Checking if device is compatible with this jailbreak
Checking the device type
Identified device as iPad1,1
Preparing to upload limera1n exploit
Resetting device counters
Sending chunk headers
Sending exploit payload
Sending fake data
libusb:error [darwin_transfer_status] transfer error: timed out
libusb:error [darwin_reset_device] ResetDevice: device not responding
Exploit sent
Reconnecting to device
libusb:error [darwin_close] USBDeviceClose: no connection to an IOService
Waiting 2 seconds for the device to pop up...
Connection failed. Waiting 1 sec before retry.
Connection failed. Waiting 1 sec before retry.
Connection failed. Waiting 1 sec before retry.
Connection failed. Waiting 1 sec before retry.
Connection failed. Waiting 1 sec before retry.
Connection failed. Waiting 1 sec before retry.
Connection failed. Waiting 1 sec before retry.
Connection failed. Waiting 1 sec before retry.
Connection failed. Waiting 1 sec before retry.
Connection failed. Waiting 1 sec before retry.
Command completed successfully
Unable to reconnect
Unable to upload exploit data
Exploit injection failed!
So then my only option is to restore again through itunes and rejailbreak which means I loose the updates I install. I've done this about 5 times now and it's really pissing me off.
Is snowbreeze more reliable then the method I'm using? If so I may have to boot in bootcamp and try.
However when I open cydia and do the required updates it asks me to reboot, so I do so but it keeps on going through a boot loop.
I then put it in DFU and do the tetheredboot command in terminal but it fails every time saying:
Macintosh-6:~ Eddy$ /Users/Eddy/Desktop/tetheredboot/tetheredboot -i/Users/Eddy/Desktop/tetheredboot/iBSS.k48ap.RELEASE.dfu -k/Users/Eddy/Desktop/tetheredboot/kernelcache.release.k48
Initializing libpois0n
Waiting for device to enter DFU mode
opening device 05ac:1227...
Found device in DFU mode
Checking if device is compatible with this jailbreak
Checking the device type
Identified device as iPad1,1
Preparing to upload limera1n exploit
Resetting device counters
Sending chunk headers
Sending exploit payload
Sending fake data
libusb:error [darwin_transfer_status] transfer error: timed out
libusb:error [darwin_reset_device] ResetDevice: device not responding
Exploit sent
Reconnecting to device
libusb:error [darwin_close] USBDeviceClose: no connection to an IOService
Waiting 2 seconds for the device to pop up...
Connection failed. Waiting 1 sec before retry.
Connection failed. Waiting 1 sec before retry.
Connection failed. Waiting 1 sec before retry.
Connection failed. Waiting 1 sec before retry.
Connection failed. Waiting 1 sec before retry.
Connection failed. Waiting 1 sec before retry.
Connection failed. Waiting 1 sec before retry.
Connection failed. Waiting 1 sec before retry.
Connection failed. Waiting 1 sec before retry.
Connection failed. Waiting 1 sec before retry.
Command completed successfully
Unable to reconnect
Unable to upload exploit data
Exploit injection failed!
So then my only option is to restore again through itunes and rejailbreak which means I loose the updates I install. I've done this about 5 times now and it's really pissing me off.
Is snowbreeze more reliable then the method I'm using? If so I may have to boot in bootcamp and try.
more...
heylookitskarl
Feb 21, 11:37 AM
When you do a group interview, be the most outgoing, talkative and fun loving person possible. Apple wants a go getter not a sheltered person who is afraid to speak up, talk, laugh and crack jokes. If you're afraid to talk in a group setting how are you going to be able to communicate to a customer.
Hope this helps.
I'm new to this so I don't know if I quoted this correctly =)
AFPoster is right. I just recently went to one but I think there was some age discrimination there because I was the only one in High School who showed up. I don't get it though, the recruiting seminar went great and I made a lot of the people laugh, I was talkative but just today got the email of death saying that they turned down my application.... What did I do wrong?!?!?!?
Hope this helps.
I'm new to this so I don't know if I quoted this correctly =)
AFPoster is right. I just recently went to one but I think there was some age discrimination there because I was the only one in High School who showed up. I don't get it though, the recruiting seminar went great and I made a lot of the people laugh, I was talkative but just today got the email of death saying that they turned down my application.... What did I do wrong?!?!?!?
blevins321
Apr 28, 10:19 PM
@blevins321:
I myself don't add contacts through the contacts app, as I normally key in the number in the dialer then hit the "+" button to create a contact :/
I think I found it! :D I don't have a number to test it with though lol. In your mail/contacts/calendar settings, there is a setting under Contacts called Default Account. Selectable are the default On My iPhone and my Gmail (don't sync contacts with my work account). Try switching to the exchange account and get someone to call you from a new number and try adding it.
I myself don't add contacts through the contacts app, as I normally key in the number in the dialer then hit the "+" button to create a contact :/
I think I found it! :D I don't have a number to test it with though lol. In your mail/contacts/calendar settings, there is a setting under Contacts called Default Account. Selectable are the default On My iPhone and my Gmail (don't sync contacts with my work account). Try switching to the exchange account and get someone to call you from a new number and try adding it.
Eidorian
Oct 22, 01:40 PM
I still fold on my Radeon HD 4830. I'll be trying the SMP client under Windows later today.
djsound
Feb 5, 10:47 AM
That is just a bunch of mac apps. The client I am doing this for does not even own a mac I don't think. If you look at this page they just want some like this where it says "sign up for news letter".
http://www.garibaldiresources.com/s/Home.asp
The thing is they are not great at using computers and they do not want to file all the emails that come in from that form. They want all the email address that come from that form to go to one database. That they can later send newsletters too. Same as that site. It is quite common, I see those on half the sites I go to....
http://www.garibaldiresources.com/s/Home.asp
The thing is they are not great at using computers and they do not want to file all the emails that come in from that form. They want all the email address that come from that form to go to one database. That they can later send newsletters too. Same as that site. It is quite common, I see those on half the sites I go to....
Meltdownblitz
Apr 10, 12:30 AM
Looks decent. Can't wait till you get more photos up. Maybe even a video review would be awesome. The depending factor for me is how bulky it is.
Alrescha
Mar 1, 12:06 PM
I have an original Mac mini running Leopard. I sleep it every night and wake it up every weekday. It randomly wakes with this Bonjour problem (I've never seen it happen while the machine is awake).
I haven't yet determined a pattern. Note that it's not an IP address problem � this is a Bonjour (or mDNS) naming error. The machine has a fixed IP address acquired via DHCP. I also have an Airport Extreme which can proxy Bonjour.
On the other hand, I have a Macbook running Snow Leopard that is slept/started much more often but has never experienced this problem. I wonder if it is an old Leopard problem which has since been solved.
A.
I haven't yet determined a pattern. Note that it's not an IP address problem � this is a Bonjour (or mDNS) naming error. The machine has a fixed IP address acquired via DHCP. I also have an Airport Extreme which can proxy Bonjour.
On the other hand, I have a Macbook running Snow Leopard that is slept/started much more often but has never experienced this problem. I wonder if it is an old Leopard problem which has since been solved.
A.
trip1ex
May 1, 10:22 AM
Why don't you wait unit the new imac comes out and then decide?
wordmunger
Nov 13, 12:33 PM
ha! i actually bought this cd off itunes a few months ago. could do with some more sequencing and layering. but what it is great for is sampling. i took one of the ink cartridge hitting the side of the caseing sounds and processed it into a kick drum. heres a rough mix.
http://www.riserock.com/mp3s/ocelot/ocelot_demo/aka_final.mp3
cory
Well, at least yours is ... um ... musical.
Neither is exactly in my tastes, though I could imagine a dot-matrix "song" that might be interesting in the way trained seals playing bike horns is interesting.
http://www.riserock.com/mp3s/ocelot/ocelot_demo/aka_final.mp3
cory
Well, at least yours is ... um ... musical.
Neither is exactly in my tastes, though I could imagine a dot-matrix "song" that might be interesting in the way trained seals playing bike horns is interesting.
No comments:
Post a Comment