moonislune
Sep 21, 03:34 PM
I tried it and it didnt work. I have a Sony Digital camera and it doesn't read it. Any other suggestions???
Just a note, some cameras will work some wont. I'd definitely check out ichatusb. It has a free trial, so you dont have to buy if it doesnt work.
Just a note, some cameras will work some wont. I'd definitely check out ichatusb. It has a free trial, so you dont have to buy if it doesnt work.
kgarner
Apr 12, 01:56 PM
Thanks for the review. I am really excited about this product and will be getting one when i get an iPod Photo for sure. I have a question that I have not heard anywhere. Does the Camera Connector support USB 2 with cameras that support it, or is it strictly USB 1.1? If it did USB 2 that would be awesome. I will probably buy it either way, but just curious.
mnkeybsness
Nov 27, 03:08 PM
What kind of connection are you on? (cable, dsl, lan, dial-up)
Who is your ISP?
Who is your ISP?
talmy
Mar 1, 10:00 AM
I've had this happen to me.
Seems to happen only when I've rebooted a system (maybe from sleep state -- see the next paragraph for a possible explanation). I guess it sees some ghost of the old system around (BonJour I expect) and renames itself to avoid conflict.
I've got a Mac mini server handling DHCP/DNS. I know this only happens on a specific system that doesn't have a fixed IP address assigned using the "Static Maps" page in Server Admin. But it might not be the server at fault. I also have an AirPort Extreme that does the Wake-on-LAN for the system. Since it responds to BonJour requests for sleeping systems, if it thinks the system being rebooted is asleep when a new one appears with a different IP address (via DHCP assignment).
If I'm right, you can solve the problem by having the DHCP service assign a fixed IP using the Static Maps.
Now if it is the server itself that is changing names, and it has a static IP, I'm baffled.
Seems to happen only when I've rebooted a system (maybe from sleep state -- see the next paragraph for a possible explanation). I guess it sees some ghost of the old system around (BonJour I expect) and renames itself to avoid conflict.
I've got a Mac mini server handling DHCP/DNS. I know this only happens on a specific system that doesn't have a fixed IP address assigned using the "Static Maps" page in Server Admin. But it might not be the server at fault. I also have an AirPort Extreme that does the Wake-on-LAN for the system. Since it responds to BonJour requests for sleeping systems, if it thinks the system being rebooted is asleep when a new one appears with a different IP address (via DHCP assignment).
If I'm right, you can solve the problem by having the DHCP service assign a fixed IP using the Static Maps.
Now if it is the server itself that is changing names, and it has a static IP, I'm baffled.
more...
d4nn0
Dec 16, 04:51 PM
http://www.ss64.com/osx/
maybe you will find a bit more functionality here :D
http://www.macdevcenter.com/pub/a/mac/2001/12/14/terminal_one.html
this is helpful if you've never used terminal before
maybe you will find a bit more functionality here :D
http://www.macdevcenter.com/pub/a/mac/2001/12/14/terminal_one.html
this is helpful if you've never used terminal before
macfan881
May 18, 11:53 AM
other Rumors mainly from the survey taken a while back seem's like there will be a Built in netflix app no disc needed more Facebook features First choice beta accesses and cloud service to store online saves etc.
more...
zeroh3ro
Dec 25, 05:34 PM
should be a tought month!
i just got some of this and a hipflask for xmas, good times.
i just got some of this and a hipflask for xmas, good times.
eyelikeart
Nov 4, 06:56 PM
Originally posted by idkew
you all get drunk together, go out and cuase damage to parked cars. the MR crew.
don't forget sneaking into the Capital in DC or abandoned mental assylums...
oh wait...I've never been drunk before... ;)
you all get drunk together, go out and cuase damage to parked cars. the MR crew.
don't forget sneaking into the Capital in DC or abandoned mental assylums...
oh wait...I've never been drunk before... ;)
more...
taylorwilsdon
Mar 19, 12:22 PM
The word "New" is all over this ebay listing. I see that in the top area it shows refurb, but this listing seems to be a little misleading. One of your headings even says "Brand New." This combined with using an actual iPhone box that didnt come with this item seems shady to me. I may be the only one, but honestly i guarentee that who ever wins this item thinks they are getting an actual brand new phone, not a refurbished product.
At this price I will just buy a brand new one and upgrade them :)
Thanks for the congrats :) I love ebay.. sometimes.
At this price I will just buy a brand new one and upgrade them :)
Thanks for the congrats :) I love ebay.. sometimes.
Poff
Jan 25, 11:38 AM
hmm.. too bad. thanks. :)
more...
Matth3w
May 2, 06:53 PM
Yep, I said non-slim. Reason being, I have a smaller shoulder bag for it on a day to day basis. But the bag doesn't hold much. So if I want to take it in my book bag, either of the bags I have, have larger pockets for laptops.
So I either am looking for a case that is hard and larger, or a book bag with a better (smaller) pocket for a thin laptop.
I've spent hours on Google but I keep finding the manila carrying case for example...I don't want something like that.
So I either am looking for a case that is hard and larger, or a book bag with a better (smaller) pocket for a thin laptop.
I've spent hours on Google but I keep finding the manila carrying case for example...I don't want something like that.
MayPeng
Apr 19, 11:12 PM
I have a hid device , because its class is 0x03. I use HIDManager and IOServiceMatching(kIOHIDDeviceKey), both can't find device, whether the kernel don't have matching driver, and I must write a hid device driver?
Main code:
method 1:
IOHIDManagerRef mgr;
mgr = IOHIDManagerCreate(kCFAllocatorDefault, kIOHIDOptionsTypeNone);
IOHIDManagerSetDeviceDeviceMatching(mgr, NULL);
IOHIDManagerOpen(mgr, kIOHIDOptionsTypeNone);
CFSetRef device_set = IOHIDManagerCopyDevices(mgr);
CFIndex num_devices = CFSetGetCount(device_set);
....
method 2:
io_iterator_t hidObjectIterator;
CFMutableDictionaryRef hidMatchingDict= IOServiceMatching(kIOHIDDeviceKey);
//add my device pid and vid to hidMatchingDict
.....
IOServiceGetMatchingServices(,,hidObjectIterator);
io_object_t hidDevice;
while(hidDevice = IOIteratorNext(hidObjectIterator))
{...}
As a result, hidDevice = 0;
Main code:
method 1:
IOHIDManagerRef mgr;
mgr = IOHIDManagerCreate(kCFAllocatorDefault, kIOHIDOptionsTypeNone);
IOHIDManagerSetDeviceDeviceMatching(mgr, NULL);
IOHIDManagerOpen(mgr, kIOHIDOptionsTypeNone);
CFSetRef device_set = IOHIDManagerCopyDevices(mgr);
CFIndex num_devices = CFSetGetCount(device_set);
....
method 2:
io_iterator_t hidObjectIterator;
CFMutableDictionaryRef hidMatchingDict= IOServiceMatching(kIOHIDDeviceKey);
//add my device pid and vid to hidMatchingDict
.....
IOServiceGetMatchingServices(,,hidObjectIterator);
io_object_t hidDevice;
while(hidDevice = IOIteratorNext(hidObjectIterator))
{...}
As a result, hidDevice = 0;
more...
Rodimus Prime
Apr 11, 04:07 PM
Sure, in your mind it's always Apple's fault.
If you hate Apple so much why are you here?
no read what I was saying. I am not going to go with the standard MS is coping Apple crap that will be coming flying soon.
Hell Apple coping the flash game lay out more proves that the simple lay out used is kind of a standard long before Apple used it. It was shutting down the standard argument MS is coping.
BTW I would not even say Apple is really copy any one. It is just a simple layout and lets face it there are only so many ways to do that layout.
If you hate Apple so much why are you here?
no read what I was saying. I am not going to go with the standard MS is coping Apple crap that will be coming flying soon.
Hell Apple coping the flash game lay out more proves that the simple lay out used is kind of a standard long before Apple used it. It was shutting down the standard argument MS is coping.
BTW I would not even say Apple is really copy any one. It is just a simple layout and lets face it there are only so many ways to do that layout.
s2dio
Apr 23, 01:31 PM
ifixit.com.
'Nuff said.
sorry, I should have mentioned that I've checked ifixit.com, and they have no specific directions on that. All they say is "Remove the following ten screws: Two 9 mm Torx Plus screws, Eight 2.6 mm 5-point Pentalobe screws. To reassemble your device, follow these instructions in reverse order."
'Nuff said.
sorry, I should have mentioned that I've checked ifixit.com, and they have no specific directions on that. All they say is "Remove the following ten screws: Two 9 mm Torx Plus screws, Eight 2.6 mm 5-point Pentalobe screws. To reassemble your device, follow these instructions in reverse order."
more...
giffut
Sep 7, 11:10 AM
... really strange, because those doping accusations don�t come from mere conspiracy, but from serious research on the side of the testing facility as much as from the journalist who uncovered his identity related to the positively tested probes. The DNA testing method is accurate, the EPO separation and testing is accurate, too, all scientifically waterproof to the roof.
He didn�t do anything to prove them wrong, just some rhetorics in that regard, noisy patriotic screaming live on CNN.
Don�t misunderstand me: I don�t hate Armstrong, but to me his behaviour seems to be troublesome at the least. Indeed he did nothing serious, nor anything productive and helpful to falsify those completely fact based accusations. Those results aren�t made up by the french because they hate him.
Actually he behaves quite like Mariah Jones, e.g., or similar doping cases in the last few years. Something seems to be wrong, and probably not only in terms of the 1999 tour.
What do you think?
He didn�t do anything to prove them wrong, just some rhetorics in that regard, noisy patriotic screaming live on CNN.
Don�t misunderstand me: I don�t hate Armstrong, but to me his behaviour seems to be troublesome at the least. Indeed he did nothing serious, nor anything productive and helpful to falsify those completely fact based accusations. Those results aren�t made up by the french because they hate him.
Actually he behaves quite like Mariah Jones, e.g., or similar doping cases in the last few years. Something seems to be wrong, and probably not only in terms of the 1999 tour.
What do you think?
imacgeek
Jan 6, 12:53 PM
Sounds good, I just checked my iPhone and found several Starbucks - duh :D - around Moscone center. Maybe a native San Franciscan can suggest one of them, or an alternative in any case? Veterans of similar meetings from previous years: what do you think??
I'll be wearing my original MacOS X t-shirt :)
I am not a native but know the area pretty well. I would also be wiling to take shifts in line outside the Mascone center in the morning if some people want to wake up early and then I can come and hold the line for a few hours. I don't know about you guys but I am also staying at the Marriott so that could be a place to meet (I think they have a few louges)
I'll be wearing my original MacOS X t-shirt :)
I am not a native but know the area pretty well. I would also be wiling to take shifts in line outside the Mascone center in the morning if some people want to wake up early and then I can come and hold the line for a few hours. I don't know about you guys but I am also staying at the Marriott so that could be a place to meet (I think they have a few louges)
more...
Laird Knox
Mar 10, 02:23 PM
You aren't going to find any Javascript to do that. You are going to need some coding on the server side. Somewhere you are going to need to run the SQL and pull the data from a database.
For example, I'm currently working on a project that has a Flex front end and uses Google App Engine on the back end. I have a servlet that can process images and serve them up. I am using Java on the App Engine side.
http://photography.jeffknox.com/photography/image?id=188005&s=300
The above image is pulled from the database, the watermark is added, the image is sized and sent to the browser. It isn't a trvial copy and past but you might want to start looking at whatever the back end server is running. Too many questions to provide a definitive answer.
(Note: The above image will eventually go away as the database is still in active development and this is a test image. Likewise the watermark is just a placeholder and will change.)
For example, I'm currently working on a project that has a Flex front end and uses Google App Engine on the back end. I have a servlet that can process images and serve them up. I am using Java on the App Engine side.
http://photography.jeffknox.com/photography/image?id=188005&s=300
The above image is pulled from the database, the watermark is added, the image is sized and sent to the browser. It isn't a trvial copy and past but you might want to start looking at whatever the back end server is running. Too many questions to provide a definitive answer.
(Note: The above image will eventually go away as the database is still in active development and this is a test image. Likewise the watermark is just a placeholder and will change.)
Doctor Q
Apr 1, 11:59 PM
We need to know the URL that the ad links to. You don't have to click it, just control-click or right-click to get the address. That's how we track them down.
Eclipse278
May 2, 08:28 PM
have you tried one of these?
http://static.howstuffworks.com/gif/m1-tank-9.jpg
http://static.howstuffworks.com/gif/m1-tank-9.jpg
monsterofNone
Jun 17, 04:16 PM
why exactly did i pay $1500 to attend if they're going to make the videos available free less than a week after the event?
JohnnyQuest
Feb 12, 11:38 AM
I cry at night because of how much I hate the MacRumors forums now. That's all.
liverbomb88
Oct 24, 11:41 AM
UTC = University Town Center = La Jolla mall location of the :apple: store near UCSD.
The UCSD bookstore may remain closed for the Fri release party due to the fires, but it seems like the UTC :apple: store will be open.
Must...survive...the...fires...er, no,...the weekend...without...Leopard!:p
I don't know about the 5 shirt thing, but what's UTC? School? I don't think they'll be giving out the shirts are a school bookstore. Just the Apple Store, AFAIK.
The UCSD bookstore may remain closed for the Fri release party due to the fires, but it seems like the UTC :apple: store will be open.
Must...survive...the...fires...er, no,...the weekend...without...Leopard!:p
I don't know about the 5 shirt thing, but what's UTC? School? I don't think they'll be giving out the shirts are a school bookstore. Just the Apple Store, AFAIK.
jefhatfield
Nov 29, 12:42 AM
hi john123,
i saw a post or two from kela after you left
eyelikeart is still one of the top posters
and i hope to hear from an incarnation, at least a more polite one, of spikey
monkeybusiness has not been around for awhile and you were still heavily here when anonymous poster and anonymous coward left the fold
blakespot does not come around much anymore
but it's really great to see you back
i have had to get used to new waves of posters every three months or so, but if you give the new high end contributers a chance, you may find that you like them
i saw a post or two from kela after you left
eyelikeart is still one of the top posters
and i hope to hear from an incarnation, at least a more polite one, of spikey
monkeybusiness has not been around for awhile and you were still heavily here when anonymous poster and anonymous coward left the fold
blakespot does not come around much anymore
but it's really great to see you back
i have had to get used to new waves of posters every three months or so, but if you give the new high end contributers a chance, you may find that you like them
paola105
Oct 26, 06:06 PM
is there a lot of people? I think if I come now, it'll be too late.
No comments:
Post a Comment