steve31
Jul 30, 03:56 AM
At southgate. About 100 people here.
FutureBlake
Apr 30, 07:35 AM
I was wondering if anyone else has seen this issue while running Windows 7 from boot camp: My internal speakers don't work - but all sounds work perfectly if I plug in a pair of headphones. I've read about a lot of cases where Windows 7 still assumes a pair of headphones have been plugged in with other Macs and that 'jiggling' the headphones resolves the issue, but that's not my problem. Windows 7 reports - correctly - that headphones are NOT plugged in, yet still no sound through my speakers.
To make it even more frustrating, my speakers were working for the first few boots into Windows 7, but now I can't get a single sound. I've tried reloading all the latest bootcamp drivers, installing other sound drivers (Realtek and Cirrus) with no results. I don't boot into Win 7 often, but it would be nice to have sound. It's these kind of issues that do NOT make me miss the Win experience. :)
Anyone else with this experience? I can't find anything that reports this problem with other MBAs. I'm running a 13" ultimate, but was curious to see if any other Late 2010 MBA owners were running into the same issue.
Thanks for sharing any similar experiences!
To make it even more frustrating, my speakers were working for the first few boots into Windows 7, but now I can't get a single sound. I've tried reloading all the latest bootcamp drivers, installing other sound drivers (Realtek and Cirrus) with no results. I don't boot into Win 7 often, but it would be nice to have sound. It's these kind of issues that do NOT make me miss the Win experience. :)
Anyone else with this experience? I can't find anything that reports this problem with other MBAs. I'm running a 13" ultimate, but was curious to see if any other Late 2010 MBA owners were running into the same issue.
Thanks for sharing any similar experiences!
ITASOR
Dec 28, 03:41 PM
I mean, yeah, but it's not worth worrying about. Maybe if you reformat 10 times a day...but how many times are you really going to do it...
You could argue that opening and closing your Macintosh HD could create more wear and tear on the HD than letting it sit.
On the iMac, you can replace the HD though, so if worst comes to worst, and it's out of warranty, you can just but a new one.
You could argue that opening and closing your Macintosh HD could create more wear and tear on the HD than letting it sit.
On the iMac, you can replace the HD though, so if worst comes to worst, and it's out of warranty, you can just but a new one.
Macmadant
Dec 6, 01:22 AM
There is another one out there utilising an 800 MHz G3.
Unfortunately, I've never seen anything about graphics upgrades as this would take a whole lot more research and possibly a daughterboard and firmware upgrades to make it work.
cool thanks although i live in england and don't fancy sending all the way to the states, but thanks anyway
Unfortunately, I've never seen anything about graphics upgrades as this would take a whole lot more research and possibly a daughterboard and firmware upgrades to make it work.
cool thanks although i live in england and don't fancy sending all the way to the states, but thanks anyway
LoganT
Feb 21, 11:26 PM
It's here http://forums.macrumors.com/forumdisplay.php?f=132
johnnybluejeans
Oct 24, 11:30 AM
see you all at KOP. Ill be the kid wearing the skinny jeans and thick rimmed glasses, im kind of hard to miss (im a guy BTW). Say your from Macrumors, and we'll talk!
LOL
LOL
randas
Dec 5, 09:41 PM
I guess, just make sure it has enough ram
alph45
Apr 15, 11:35 AM
to get your VHS source onto your computer it would have to be digitized first. So either you digitized the video or someone did it for you. How this was done determines the base quality of your DIGITAL source. It can't be better than your source, but it can be converted to a more useful or less useful digital format (h.264 = more / mpeg2 = less for example).
it seems your asking how imovie handles video import for various versions. I don't use imovie, but i can tell your quoting some rather old versions (think it's up to 11 now). this should help with version history and what you can expect: http://tinyurl.com/6gk3p57
if the software got better over the year it may handle recording the source in a different way (e.g. filtering noise while recording, bettering line time base...).
I'm really scratching my head. You not recording, your importing a digital file or your capturing from a digital source such as DV tape.
Noise filtering would be a filter...that's a post process.
Have no idea what a "line time base" is.
There are plenty of products out there for cleaning up old / damaged / noisy video, but they are plugins for the most part (build-in or otherwise).
it seems your asking how imovie handles video import for various versions. I don't use imovie, but i can tell your quoting some rather old versions (think it's up to 11 now). this should help with version history and what you can expect: http://tinyurl.com/6gk3p57
if the software got better over the year it may handle recording the source in a different way (e.g. filtering noise while recording, bettering line time base...).
I'm really scratching my head. You not recording, your importing a digital file or your capturing from a digital source such as DV tape.
Noise filtering would be a filter...that's a post process.
Have no idea what a "line time base" is.
There are plenty of products out there for cleaning up old / damaged / noisy video, but they are plugins for the most part (build-in or otherwise).
fpar
Jun 20, 09:42 AM
would you send it to the uk? The address would be confirmed. paypal
Thanks
Thanks
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;
CoachWade
May 5, 07:00 AM
Derek, like I said earlier, I'm really sorry I wasn't able to help you BEFORE you laid out your hard earned cash but you really did a GREAT job with the video. I'm sure your story, and your EXCELLENT video documenting it, will save someone else from the same outcome in the future.
Jeff
Thanks Jeff. We'll chalk this up to experience. I think it will turn out for the best. I got a better computer for a lower price from an alternate vendor. Unless something goes completely haywire in the Capital One dispute office I should get my full money back since I have more documentation for Gainsaver's antics than Obama has of citizenship, and I was highly motivated to make a video that may keep some other folks from making the same blunder.
All in all, it could be worse.
@Everyone: Thanks for the support and messages of consolation. I do appreciate it. Please help me get the word out to other unsuspecting consumers. If you would like/link to my video from Facebook and MySpace and your other social networking sites I would really appreciate it.
Thank you.
~D.
Jeff
Thanks Jeff. We'll chalk this up to experience. I think it will turn out for the best. I got a better computer for a lower price from an alternate vendor. Unless something goes completely haywire in the Capital One dispute office I should get my full money back since I have more documentation for Gainsaver's antics than Obama has of citizenship, and I was highly motivated to make a video that may keep some other folks from making the same blunder.
All in all, it could be worse.
@Everyone: Thanks for the support and messages of consolation. I do appreciate it. Please help me get the word out to other unsuspecting consumers. If you would like/link to my video from Facebook and MySpace and your other social networking sites I would really appreciate it.
Thank you.
~D.
walangij
Feb 11, 12:35 AM
What's everyone's favorite CMS and what kind of CMS do you have? Recently I've been taking web development more seriously and have been working primarily with Drupal. I really enjoy Wordpress though and find it much easier to teach a client how to use WP3 compared to D7. I've never tried Joomla, and have been seeing what all the fuss is about RoR a couple years late :p.
My next personal project is a niche community site, trying to decide what would be the best fit. I know another drupal developer who has much more experience, but we don't know if it'd be the ideal platform for what we want to create.
My next personal project is a niche community site, trying to decide what would be the best fit. I know another drupal developer who has much more experience, but we don't know if it'd be the ideal platform for what we want to create.
Jim Campbell
Jan 11, 05:26 AM
generally it's quite useful.
That's fair enough, but I honestly didn't find any significant utility in it all. Is there a benefit to having fonts activated and deactivated on the fly?
I'm not being snotty -- I'm genuinely curious!
Cheers
Jim
That's fair enough, but I honestly didn't find any significant utility in it all. Is there a benefit to having fonts activated and deactivated on the fly?
I'm not being snotty -- I'm genuinely curious!
Cheers
Jim
mkjj
May 23, 03:32 PM
I've been looking for a clear TAM for a while now, I'm not entirely sure that it exists, but whatever.
30 minutes left @ $202. I might have to pull the trigger :O
There was a complete Clear TAM at one time. :)
http://www.flickr.com/photos/sonnyhung/
30 minutes left @ $202. I might have to pull the trigger :O
There was a complete Clear TAM at one time. :)
http://www.flickr.com/photos/sonnyhung/
Archman!
Apr 27, 09:11 AM
I would recommend the Nikon 18-200mm VR. It has a great range and can do the work of two or three lenes. Its a little pricey but you may be able to find a good used deal somewhere.
kirbyman100
Mar 19, 10:02 PM
What does "WU" stand for?
Newbe
Apr 24, 11:48 AM
I bought my iMac in 2008 and I did not upgraded to Leopard or Snow Leopard. Lion will be released soon. Can I wait until Lion is released and then upgrade to Lion or will I be required to upgrade to Leopard prior to upgrading to Lion:confused?:?
kishba
Jul 5, 06:06 PM
you can add ram, hard drives, displays, etc. all after you get the computer. i'd recommend getting the dual processor because you can't upgrade to that later on.
i think dv lets you capture roughly 5 minutes for every 1 gigabyte of hard drive space. you could probably only capture 350 minutes with the 80 gig hard drive. so upgrade later :)
and... i like .mac... if you do get it... you should sign up under me... ;) brandonkish@mac.com
i think dv lets you capture roughly 5 minutes for every 1 gigabyte of hard drive space. you could probably only capture 350 minutes with the 80 gig hard drive. so upgrade later :)
and... i like .mac... if you do get it... you should sign up under me... ;) brandonkish@mac.com
JackT06
Feb 6, 04:16 AM
Does anyone know how I could do this? Basically I have a client who wants to stream a part of their store to the general public so that people could see what happens during the day. All that I know at the moment is that it will be a flash window located on their front page. I just don't know how I should go about streaming to the web. Would I need a dedicated IP? Hardware/Server? What kind of bandwidth would this require?
I posted the same question here some time back but got no response(N) So, i done some digging for myself.
When i done mine it was for a DofE (A Charity), which meant i was after a rather free option, i found YawCam (http://www.yawcam.com/). Downloading their software, i was then able to stream live onto a html page, which they set up for free! I then embeded it into my own website.
I posted the same question here some time back but got no response(N) So, i done some digging for myself.
When i done mine it was for a DofE (A Charity), which meant i was after a rather free option, i found YawCam (http://www.yawcam.com/). Downloading their software, i was then able to stream live onto a html page, which they set up for free! I then embeded it into my own website.
scem0
Sep 28, 08:32 PM
how so? I'm asking because I'm bored out of my wits, and I want to go dancing.
Asking for everyone's favorite colors would get me no where.
Sounds good njmac, thanks :).
_Emerson
Asking for everyone's favorite colors would get me no where.
Sounds good njmac, thanks :).
_Emerson
ghostchild
Mar 10, 12:17 PM
Hey guys, so long story short I found out that my parent's property insurance doesn't cover my dslr gear and computing gear. Where would you recommend me go to get insurance for all my gear for myself? I'm looking around for hassle-free options now. Preferably online.
Thanks,
John
Thanks,
John
mad jew
Dec 19, 08:12 AM
I think it's ingenious, but it needs blood.
ozreth
Feb 10, 01:25 AM
Stick around a little longer....you'll see threads that make this one look fascinating.
That guy registered in 2005 :p
That guy registered in 2005 :p
Ikyo
Mar 11, 06:46 AM
Yeah, craigslist is up and down. I am selling some of my camera equipment on there and get a ton of emails, but a lot of them are really low offers. I don't mind them, but I laugh when people get upset when I say no.
No hay comentarios:
Publicar un comentario