chrismacguy
Apr 29, 12:17 PM
Less than perfect means "in fact uncomfortable" or "almost perfect" ?
And i'm worrying about my music collection (albums and artists got named folders, subfolders, without correct IDtags) can i just use it bypass itunes, don't wasting my time on writing tags .... Is there normal audioplayer, that can eat my folders of music ?
Can you tell me please about Web Flash content situation ? i heard that it seriously load processor, main troubles with flash videos, is it true ? Or exaggerated rumors ?
iTunes can read all of those folders of music just fine, just tell it not to manage your library or copy your stuff around, and itll probably do fine. You can also ofc choose to play all of your audio and video in Quicktime X, which is still there on a Mac, and still useful. But iTunes for Mac is what Windows Media Player is for Windows. You can also use VLC on the Mac to play files QuickTime cant handle.
Flash is just fine on the Mac, the only times you hear about problems are from people with PowerPC Macs, and the high CPU load has decreased dramatically with the latest upgrades from Adobe. As an example, my 5 year old very first gen Intel iMac (You know, the 1.83 Core Duo), running a Flash Video, as well as several instances of this forum with Flash Ads, my CPU is currently at 35%, and thats with iTunes, Mail, iCal, Messenger, Skype open as well.
And i'm worrying about my music collection (albums and artists got named folders, subfolders, without correct IDtags) can i just use it bypass itunes, don't wasting my time on writing tags .... Is there normal audioplayer, that can eat my folders of music ?
Can you tell me please about Web Flash content situation ? i heard that it seriously load processor, main troubles with flash videos, is it true ? Or exaggerated rumors ?
iTunes can read all of those folders of music just fine, just tell it not to manage your library or copy your stuff around, and itll probably do fine. You can also ofc choose to play all of your audio and video in Quicktime X, which is still there on a Mac, and still useful. But iTunes for Mac is what Windows Media Player is for Windows. You can also use VLC on the Mac to play files QuickTime cant handle.
Flash is just fine on the Mac, the only times you hear about problems are from people with PowerPC Macs, and the high CPU load has decreased dramatically with the latest upgrades from Adobe. As an example, my 5 year old very first gen Intel iMac (You know, the 1.83 Core Duo), running a Flash Video, as well as several instances of this forum with Flash Ads, my CPU is currently at 35%, and thats with iTunes, Mail, iCal, Messenger, Skype open as well.
fbriggs
Feb 27, 12:49 AM
press h to toggle help information
press m to toggle the slider menu
press t to toggle track info
press i to toggle fps
press m to toggle the slider menu
press t to toggle track info
press i to toggle fps
caspersoong
Apr 23, 12:15 AM
I think that the White iPhone 4 will only reach my country by the time iPhone 5 in announced. No market at all here.
lynkynpark86
Feb 7, 09:03 AM
hi i have an ipod touch 4 JB on 4.1 i was just wondering that is there a way to put songs in to the ipod without connecting to itunes
and also any app for bluetooth transfer
Well, MewSeek is like limewire and, if you get the paid version, you can add songs to the ipod/music app. And Wifi sync lets you do just that, sync over wifi (but sadly not bluetooth)
and also any app for bluetooth transfer
Well, MewSeek is like limewire and, if you get the paid version, you can add songs to the ipod/music app. And Wifi sync lets you do just that, sync over wifi (but sadly not bluetooth)
Rower_CPU
Oct 20, 03:23 PM
So much for my "two weeks" hypothesis. The spam hounds ran rampant this weekend. ;)
tYNS
Nov 9, 08:30 PM
Oooh, I think I remember that vaguely...But four channels was the best. You had to use up two channels at a time to actually get the sound out of both speakers. But some of the music was *amazing*... Ahhh, good old 8-bit Ensoniq guts. :)
i still listen to old school mods.. i love this music. there are so many wonderful artists out there that people have no clue exist.
:)
i still listen to old school mods.. i love this music. there are so many wonderful artists out there that people have no clue exist.
:)
amacgenius
Aug 23, 12:01 AM
Really hate to dig this thread up, but OP would you happen to have that guide still, and if so can you post it somewhere?
dave420
Mar 1, 09:43 AM
Don't see why Apple would make any hardware changes that would put the breaks on Jailbreaking. Unlocking is a totally different animal so we'll have to see....
There could be legitimate reasons to stop a jailbreak. They are an open security hole that allows access to the device. By closing the jailbreak they are restricting one way to access secure data stored on the device.
I like jailbreaks, but I don't like the idea that somebody can plug a password protected phone into a computer and easily download all text messages and contacts from it.
There could be legitimate reasons to stop a jailbreak. They are an open security hole that allows access to the device. By closing the jailbreak they are restricting one way to access secure data stored on the device.
I like jailbreaks, but I don't like the idea that somebody can plug a password protected phone into a computer and easily download all text messages and contacts from it.
Chisholm
Jan 17, 12:49 PM
This is one of the stupidest things I have ever seen.
I think that IS the stupidest iAccessory I've ever seen. Surely someone is just squatting at a no-show booth.
I think that IS the stupidest iAccessory I've ever seen. Surely someone is just squatting at a no-show booth.
scem0
Oct 14, 10:29 PM
Would I be considered 'old school'?
I've been here for quite a while...
but not nearly as long as some people.
scem0
I've been here for quite a while...
but not nearly as long as some people.
scem0
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;
Crunch
May 5, 11:17 AM
Good stuff! Thank you! Just did a successful upgrade to 4.3.2 without any issues. I had forgotten that I had to hold the Option key while clicking on Restore. (this is on the Mac; Windows works the same way but it's a different key obviously)
(all we need now is a JB ;-) )
(all we need now is a JB ;-) )
cjc343
Nov 7, 07:30 PM
I'm guessing it is something with no-ip then, what happens if you try to access the pictures via the IP address and port (if you are using no-ip to forward to a port other than port 80)?
The problem still persists when I use the IP address... good thinking though, I was hoping beyond hope that you'd be right...
The problem still persists when I use the IP address... good thinking though, I was hoping beyond hope that you'd be right...
NoShoreGuy
Apr 19, 10:23 AM
didn't get it??
LarryC
Apr 26, 09:38 AM
I'm sorry about that. It is fixed now.
mnkeybsness
Jul 4, 01:36 AM
i had that same problem when i used the "minimize in place" hack that installed an old beta of the dock.
Eaton Photos
Mar 20, 09:47 PM
I have a Camo patterned lenscoat on my 300/2.8. I bought the Camo for two reasons; (1) to blend in with the natural surroundings around me, when shooting wildlife, and (2) because it doesn't absorb heat, like black does. What is the point of putting a black coat on a white lens??? Canon makes most of their zooms & tele's white, to help minimize heat issues. Another benefit of having a lenscoat, is that is does provide some protection to the body of the lens, but also prevents paint wear, which in turn helps minimize depreciation values, if one were to sell their lens.
I would suggest asking this question on the FM General Discussion board. You will get many more specific answers to your questions, as there is a lot more traffic there, and there are numerous members who own & use lenscoat products. In response to the statement about fitting, the coat on my 300, fits perfectly. There is some slight movement here & there, but for the most part all the different pieces stay in their respective places. Also, I would strongly advise against putting any type of tape on your lenses, except for Gaffer's tape. I utilize Gaffer's tape in a few strategic areas, but I have never wrapped any of my lenses or hoods in any type of tape.
I would suggest asking this question on the FM General Discussion board. You will get many more specific answers to your questions, as there is a lot more traffic there, and there are numerous members who own & use lenscoat products. In response to the statement about fitting, the coat on my 300, fits perfectly. There is some slight movement here & there, but for the most part all the different pieces stay in their respective places. Also, I would strongly advise against putting any type of tape on your lenses, except for Gaffer's tape. I utilize Gaffer's tape in a few strategic areas, but I have never wrapped any of my lenses or hoods in any type of tape.
Transporteur
Apr 12, 01:26 PM
OWC is making a Mac Pro PCI Express SSD aren't they? I haven't heard about it in what seems like a few months.
OWC, OCZ and FusionIO all said they are working on a fully Mac supported PCIe SSD. However, no one has heard any news yet and apparently they all took the information off their websites.
Doesn't seem to happen any time soon, although I do see the necessity for it as the current SSDs already saturate the 6Gb/s SATA port. Given the trend of SSD development, single drives might be capable of 1GB/s sequential speeds in two years (give or take). I highly doubt that we'll see a 12Gb/s SATA port by then.
OWC, OCZ and FusionIO all said they are working on a fully Mac supported PCIe SSD. However, no one has heard any news yet and apparently they all took the information off their websites.
Doesn't seem to happen any time soon, although I do see the necessity for it as the current SSDs already saturate the 6Gb/s SATA port. Given the trend of SSD development, single drives might be capable of 1GB/s sequential speeds in two years (give or take). I highly doubt that we'll see a 12Gb/s SATA port by then.
MacRumors
Oct 28, 03:56 PM
http://www.macrumors.com/images/macrumorsthreadlogo.gif (http://www.macrumors.com/2010/10/28/apple-addresses-hyper-threading-issue-with-logic-9-1-3/)
http://images.macrumors.com/article/2010/10/28/165210-logic_pro_logic_express.jpg
Apple today released Logic Pro 9.1.3 (http://support.apple.com/kb/DL1014) and Logic Express 9.1.3 (http://support.apple.com/kb/DL1015) to address an issue with Hyper-Threading.This update delivers improved general stability and compatibility.
Issues addressed with 9.1.3 include:
- Resolves problems related to the support of Hyper-ThreadingUnder Logic 9.1.3's audio preferences, users can specify the number of audio rendering threads the software will open at any one time. While the option is set to "automatic" by default and the maximum number of available threads is determined by the number of processor cores and support for Hyper-Threading on the user's computer, the setting allows users to manually adjust the number of threads to best fit their workflow.
The updates weigh in at 193.01 MB (Logic Pro 9.1.3) and 139.68 (Logic Express 9.1.3) and require Mac OS X 10.5.8 or later.
Article Link: Apple Addresses Hyper-Threading Issue With Logic 9.1.3 (http://www.macrumors.com/2010/10/28/apple-addresses-hyper-threading-issue-with-logic-9-1-3/)
http://images.macrumors.com/article/2010/10/28/165210-logic_pro_logic_express.jpg
Apple today released Logic Pro 9.1.3 (http://support.apple.com/kb/DL1014) and Logic Express 9.1.3 (http://support.apple.com/kb/DL1015) to address an issue with Hyper-Threading.This update delivers improved general stability and compatibility.
Issues addressed with 9.1.3 include:
- Resolves problems related to the support of Hyper-ThreadingUnder Logic 9.1.3's audio preferences, users can specify the number of audio rendering threads the software will open at any one time. While the option is set to "automatic" by default and the maximum number of available threads is determined by the number of processor cores and support for Hyper-Threading on the user's computer, the setting allows users to manually adjust the number of threads to best fit their workflow.
The updates weigh in at 193.01 MB (Logic Pro 9.1.3) and 139.68 (Logic Express 9.1.3) and require Mac OS X 10.5.8 or later.
Article Link: Apple Addresses Hyper-Threading Issue With Logic 9.1.3 (http://www.macrumors.com/2010/10/28/apple-addresses-hyper-threading-issue-with-logic-9-1-3/)
jonnysods
Jul 12, 01:55 PM
Still available? I live in Canada and will pay shipping. Please PM me!
Seasought
Nov 27, 04:33 PM
Have you tried firing up the Terminal program in OSX and using the ftp command-line interface?
Does that freeze up as well?
Does that freeze up as well?
snebes
Apr 5, 05:26 PM
Is this the EKM you refer to? http://www.ekmpowershop.com/
If so, I don't think you are looking in the right place or the right tool.
Sell online using PayPal? Check out their supported hosts.
I am a Yahoo store developer and am partial to that platform for small business. That is probably out of your price range.
If so, I don't think you are looking in the right place or the right tool.
Sell online using PayPal? Check out their supported hosts.
I am a Yahoo store developer and am partial to that platform for small business. That is probably out of your price range.
RedReplicant
Apr 14, 02:07 PM
Check the SMART data on the drive and do a short test:
http://www.volitans-software.com/smart_utility.php
http://www.volitans-software.com/smart_utility.php
Xg5
Feb 26, 01:10 PM
true, but he started. i was just reacting, because i like to play with kids.