Determine max differences between times per day

What is the simplest query to determine the max time between date fields per day? In other words we have records being entered all the time to a certain table. I want to watch that table to measure the max time at the end of the day between each record that was entered. I then want to go back historically and look at what the average for max times was.

Test data:
CREATE TABLE test274 AS
WITH src AS(
SELECT '10/19/2010 3:23:53 PM' dta from dual union all
SELECT '10/19/2010 3:28:04 PM' from dual union all
SELECT '10/19/2010 3:28:12 PM' from dual union all
SELECT '10/19/2010 3:40:46 PM' from dual union all
SELECT '10/19/2010 3:50:22 PM' from dual union all
SELECT '10/19/2010 3:55:17 PM' from dual union all
SELECT '10/19/2010 3:58:49 PM' from dual union all
SELECT '10/19/2010 4:00:06 PM' from dual union all
SELECT '10/19/2010 4:00:06 PM' from dual union all
SELECT '10/19/2010 4:00:06 PM' from dual union all
SELECT '10/19/2010 4:08:00 PM' from dual union all
SELECT '10/19/2010 4:08:24 PM' from dual union all
SELECT '10/19/2010 4:09:05 PM' from dual union all
SELECT '10/19/2010 4:11:16 PM' from dual union all
SELECT '10/19/2010 4:19:36 PM' from dual union all
SELECT '10/19/2010 4:29:32 PM' from dual union all
SELECT '10/19/2010 4:34:05 PM' from dual union all
SELECT '10/19/2010 4:47:33 PM' from dual union all
SELECT '10/19/2010 4:47:33 PM' from dual union all
SELECT '10/19/2010 4:48:07 PM' from dual union all
SELECT '10/19/2010 4:49:55 PM' from dual union all
SELECT '10/19/2010 4:55:44 PM' from dual union all
SELECT '10/19/2010 5:01:20 PM' from dual union all
SELECT '10/19/2010 5:13:42 PM' from dual union all
SELECT '10/19/2010 5:13:42 PM' from dual union all
SELECT '10/19/2010 5:16:31 PM' from dual union all
SELECT '10/19/2010 5:21:28 PM' from dual union all
SELECT '10/19/2010 6:44:38 PM' from dual union all
SELECT '10/19/2010 6:46:54 PM' from dual union all
SELECT '10/19/2010 6:48:54 PM' from dual union all
SELECT '10/19/2010 7:04:23 PM' from dual union all
SELECT '10/19/2010 7:13:43 PM' from dual union all
SELECT '10/19/2010 7:53:18 PM' from dual union all
SELECT '10/19/2010 11:42:29 PM' from dual union all
SELECT '10/20/2010 7:32:32 AM' from dual union all
SELECT '10/20/2010 7:57:51 AM' from dual union all
SELECT '10/20/2010 8:02:38 AM' from dual union all
SELECT '10/20/2010 8:22:32 AM' from dual union all
SELECT '10/20/2010 8:25:29 AM' from dual union all
SELECT '10/20/2010 8:37:51 AM' from dual union all
SELECT '10/20/2010 8:37:51 AM' from dual union all
SELECT '10/20/2010 9:18:40 AM' from dual union all
SELECT '10/20/2010 9:37:21 AM' from dual union all
SELECT '10/20/2010 9:41:30 AM' from dual union all
SELECT '10/20/2010 10:07:21 AM' from dual union all
SELECT '10/20/2010 10:24:51 AM' from dual union all
SELECT '10/20/2010 10:37:48 AM' from dual union all
SELECT '10/20/2010 10:42:35 AM' from dual union all
SELECT '10/20/2010 11:02:45 AM' from dual union all
SELECT '10/20/2010 11:02:54 AM' from dual union all
SELECT '10/20/2010 11:07:10 AM' from dual union all
SELECT '10/20/2010 11:29:08 AM' from dual union all
SELECT '10/20/2010 11:29:31 AM' from dual union all
SELECT '10/20/2010 11:42:30 AM' from dual union all
SELECT '10/20/2010 11:42:30 AM' from dual union all
SELECT '10/20/2010 11:46:49 AM' from dual union all
SELECT '10/20/2010 11:58:00 AM' from dual union all
SELECT '10/20/2010 12:17:43 PM' from dual union all
SELECT '10/20/2010 12:20:56 PM' from dual union all
SELECT '10/20/2010 1:24:48 PM' from dual union all
SELECT '10/20/2010 1:32:38 PM' from dual union all
SELECT '10/20/2010 1:38:35 PM' from dual union all
SELECT '10/20/2010 1:41:23 PM' from dual union all
SELECT '10/20/2010 2:09:40 pm' from dual union all
select '10/20/2010 2:20:29 PM' from dual
select to_date( dta, 'mm/dd/yyyy hh:mi:ss am', 'nls_date_language = american' ) dta
from src
;You didn't mention your Oracle version, so this query was tested on Oracle 11.2:
SELECT trunc(dta) dta,
       NVL( max( diff ), numtodsinterval( 0, 'day' ) ) maxdiff
FROM (
    SELECT dta,
           numtodsinterval(
                dta - ( lag( dta) over ( partition by trunc(dta) order by dta )),
                'day'
           ) diff
    FROM test274
GROUP BY trunc(dta)
DTA                       MAXDIFF    
2010/10/19                0 3:49:11.0
2010/10/20                0 1:3:52.0

Similar Messages

  • OSPF problem: Neighbor Down 1-2 times per day

    Hi
    We have 4 devices are running OSPF (3 cisco routers and 1 Juniper firewall as show in attachment file). In last few months, we got Neighbot Down message almost 1-2 times per day. Network between them interrupt for a short time and even monitoring mechanism does not aware the interruption(down time is too short). Could I have your advice of any possible root cause to this problem?
    Timer intervals configured to all devices are same: Hello 10, Dead 40, Wait 40, Retransmit 5
    Neighbor A
    Neighbor A#sh ip ospf neighbor 
    Neighbor ID     Pri   State           Dead Time   Address         Interface
    172.16.255.128    1   FULL/DROTHER    00:00:34    172.16.108.11   GigabitEthernet0/11
    172.16.255.130    1   FULL/DR         00:00:33    172.16.108.2    GigabitEthernet0/11
    172.16.255.64     1   FULL/DROTHER    00:00:34    172.16.107.1    GigabitEthernet0/12
    172.16.255.128    1   FULL/DROTHER    00:00:38    172.16.107.11   GigabitEthernet0/12
    172.16.255.130    1   FULL/DR         00:00:38    172.16.107.7    GigabitEthernet0/12
    Neighbor A#show log
    Mar 16 06:03:33.159: %OSPF-5-ADJCHG: Process 1, Nbr 172.16.255.128 on GigabitEthernet0/12 from FULL to DOWN, Neighbor Down: Dead timer expired
    Mar 16 06:03:50.137: %OSPF-5-ADJCHG: Process 1, Nbr 172.16.255.128 on GigabitEthernet0/12 from LOADING to FULL, Loading Done
    Mar 16 21:15:05.509: %OSPF-5-ADJCHG: Process 1, Nbr 172.16.255.64 on GigabitEthernet0/12 from LOADING to FULL, Loading Done
    Neighbor B
    Neighbor B#sh ip ospf neighbor 
    Neighbor ID     Pri   State           Dead Time   Address         Interface
    172.16.255.128    1   FULL/DROTHER    00:00:36    172.16.108.11   GigabitEthernet0/11
    172.16.255.129    1   FULL/BDR        00:00:35    172.16.108.1    GigabitEthernet0/11
    172.16.255.64     1   FULL/DROTHER    00:00:39    172.16.107.1    GigabitEthernet0/12
    172.16.255.128    1   FULL/DROTHER    00:00:30    172.16.107.11   GigabitEthernet0/12
    172.16.255.129    1   FULL/BDR        00:00:35    172.16.107.6    GigabitEthernet0/12
    Neighbor B#show log
    Mar 16 06:03:33.143: %OSPF-5-ADJCHG: Process 1, Nbr 172.16.255.128 on GigabitEthernet0/12 from FULL to DOWN, Neighbor Down: Dead timer expired
    Mar 16 06:03:50.122: %OSPF-5-ADJCHG: Process 1, Nbr 172.16.255.128 on GigabitEthernet0/12 from LOADING to FULL, Loading Done
    Mar 16 21:14:58.054: %OSPF-5-ADJCHG: Process 1, Nbr 172.16.255.64 on GigabitEthernet0/12 from LOADING to FULL, Loading Done
    Mar 16 21:15:03.800: %OSPF-5-ADJCHG: Process 1, Nbr 172.16.255.128 on GigabitEthernet0/12 from LOADING to FULL, Loading Done
    Neighbor C
    Neighbor C#sh ip ospf neighbor 
    Neighbor ID     Pri   State           Dead Time   Address         Interface
    172.16.255.129    1   FULL/BDR        00:00:35    172.16.108.1    FastEthernet0/1/0
    172.16.255.130    1   FULL/DR         00:00:38    172.16.108.2    FastEthernet0/1/0
    172.16.255.64     1   2WAY/DROTHER    00:00:30    172.16.107.1    FastEthernet0/0/1
    172.16.255.129    1   FULL/BDR        00:00:35    172.16.107.6    FastEthernet0/0/1
    172.16.255.130    1   FULL/DR         00:00:33    172.16.107.7    FastEthernet0/0/1
    Neighbor C#show log
    Mar 16 06:03:23.571: %OSPF-5-ADJCHG: Process 1, Nbr 172.16.255.130 on FastEthernet0/0/1 from FULL to DOWN, Neighbor Down: Dead timer expired
    Mar 16 06:03:25.479: %OSPF-5-ADJCHG: Process 1, Nbr 172.16.255.129 on FastEthernet0/0/1 from FULL to DOWN, Neighbor Down: Dead timer expired
    Mar 16 06:03:29.415: %OSPF-5-ADJCHG: Process 1, Nbr 172.16.255.64 on FastEthernet0/0/1 from EXSTART to DOWN, Neighbor Down: Dead timer expired
    Mar 16 06:03:50.112: %OSPF-5-ADJCHG: Process 1, Nbr 172.16.255.129 on FastEthernet0/0/1 from LOADING to FULL, Loading Done
    Mar 16 06:03:50.112: %OSPF-5-ADJCHG: Process 1, Nbr 172.16.255.130 on FastEthernet0/0/1 from LOADING to FULL, Loading Done
    Mar 16 21:14:53.740: %OSPF-5-ADJCHG: Process 1, Nbr 172.16.255.130 on FastEthernet0/0/1 from FULL to DOWN, Neighbor Down: Dead timer expired
    Mar 16 21:15:03.793: %OSPF-5-ADJCHG: Process 1, Nbr 172.16.255.130 on FastEthernet0/0/1 from LOADING to FULL, Loading Done

    I think no L2 loops in the network. We have spanning tree configured on switches connecting to router A & B.
    VLAN0108
      Spanning tree enabled protocol ieee
      Root ID    Priority    32876
                 Address     5c50.15a3.8480
                 This bridge is the root
                 Hello Time   2 sec  Max Age 20 sec  Forward Delay 15 sec
      Bridge ID  Priority    32876  (priority 32768 sys-id-ext 108)
                 Address     5c50.15a3.8480
                 Hello Time   2 sec  Max Age 20 sec  Forward Delay 15 sec
                 Aging Time  300 sec
    Interface           Role Sts Cost      Prio.Nbr Type
    Gi1/0/45            Desg FWD 4         128.45   P2p Edge
    Gi1/0/47            Desg FWD 19        128.47   P2p Edge
    Gi1/0/48            Desg FWD 4         128.48   P2p Edge
    VLAN0107
      Spanning tree enabled protocol ieee
      Root ID    Priority    32875
                 Address     5c50.15ec.f000
                 This bridge is the root
                 Hello Time   2 sec  Max Age 20 sec  Forward Delay 15 sec
      Bridge ID  Priority    32875  (priority 32768 sys-id-ext 107)
                 Address     5c50.15ec.f000
                 Hello Time   2 sec  Max Age 20 sec  Forward Delay 15 sec
                 Aging Time  300 sec
    Interface           Role Sts Cost      Prio.Nbr Type
    Gi1/0/45            Desg FWD 4         128.45   P2p Edge
    Gi1/0/47            Desg FWD 19        128.47   P2p Edge
    Gi1/0/48            Desg FWD 4         128.48   P2p Edge

  • Home Fusion disconnecting dozens of times per day.  Is there a fix?

    As of a approximately a month ago, my Home Fusion systems disconnects dozens of times per day.  I'm not exaggerating!  I have logs to prove it.  There's a 50-50 chance it will reconnect on it's own after a few minutes.  Then again there's also a 50-50 chance it will not reconnect, at which point I have to (pick one):
         a) reboot the cantenna from the router pages;
         b) unplug the cantenna and plug it back in;
         c) unplug the cantenna and the router, wait 30 seconds, plug in the cantenna, wait 30 seconds, plug in the router.  (This was recommended by tech support on the phone as the best way to get back the connection);
          d) reset the cantenna to the factory settings;
         e) reset the router to the factory settings.
    None of these makes any difference.  I have to do one of the above at least 12 times a day.  There are many more times when it disconnects, then reconnects on it's own.  The system will usually reconnect after 5 minutes, sometimes not. I've had multiple phone calls to tech support, only to hear the same thing, do one of the above.  A few times a day the system will reconnect after doing one of the above, only to disconnect again after 3-5 minutes.  It is bad all hours of the day, but worst in the late afternoons, evenings, and night.   This is absolutely horrid.
    It's not my computers either.  The 'diagnostics' for the router and cantenna (which allow you to ping addresses) fail as well when the system isn't working.
    My wife and I both work from home, both engineers.  I need a stable connection to work.  My kids have online homework (worksheets, drills, etc) most nights.  How do you deal with a elementary schooler in tears because he can't finish his homework because the connection goes down three times in a half hour while he's trying to get a target math drill score?
    One support tech told me a fix would be coming out by the end of February, or early March.  That's weeks away!  Very stressful.  Another told me there was a firmware fix, but it's being rolled out incrementally.  Can't Verizon get that to those who are affected most?  Can we roll back to an earlier version of the cantenna firmware that was stable?  I was told no.

    I have the same problem. My Home Fusion set up works great sometimes and then other times, nothing. I can usually reboot the cantenna and router (usually have to do a few times) to get everything working. Usually have to do this 2-3 times a week (sometimes more.)
    My Method:
    1. Sign into router (192.168.1.1)
    2. Go to the Advanced tab
    3. Reboot the cantenna (HBA)
    4. Wait 1 minute
    5. Reboot the router (HBR)
    6. Take a walk, fingers crossed
    7. Test to see if system working
    8. If not working, repeat these steps (may take 3-4 tries!)
    Good luck and let me know if this works for you!

  • IMac goes to sleep/hibernate multiple times per day after installing Maverick OS. I have to shutdown and power back on.

    iMac goes to sleep/hibernate multiple times per day after installing Maverick OS. Moving the mouse or hitting the spcaebar will not wake the pc. 
    I have to shutdown and power back on. My iMac was purchased in January 2011 and no longer in warrenty.  The energy saver 'sleep' and 'display' settings are set at 10 minutes. When I changed to 'never' the machine got very hot and I changed the settings back.  I have checks by: Put hard disk to sleep when possible and wake for network access.  Any help would be greatly appreciated. 

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a Fusion Drive or a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • How many mails i can send at a time per day using APEX mail system?

    HI,
    I am working on application, when i have written a process to send mail, i have a project where i have to send mail at a time for all the email id's
    given list there are upto 5000 email id's where text body also include certain set of data from a report. thinking at a time 3000 its difficult i divided
    it region wise, but still each region have 2000 odd email id's. during testing when i run the process just 950 mails i could send then i got a error
    saying "ORA-20001: You have exceeded the maximum number of email messages per workspace. Please contact your administrator." so please
    can any one help me to know How many mails i can send at a time per day using APEX mail system?
    Thanks in advance
    Gowthami

    Hi jfosteroracle,
    You are getting the error may be the following reason,
    Check the following,
    Login as ADMIN and Goto -->Manage Instance-->Instance Settings--> Mail-->Maximum Emails per workspace
    Actually this number denotes the Number of mails can be sent per 24 hour for the workspace,It may exceeded.
    It may be the reason.
    Thank you.     
    Regards,
    Gurujothi
    Edited by: Gurujothi on Jun 27, 2012 5:54 AM

  • MSN's latest update is crashing Firefox many times per day. When I try to send the crash report to Firefox, it says it has trouble sending the report. Is anyone else having this problem? Is there a setting that can help?

    Firefox is crashing every time I have my MSN email account up. (Since I use it for business, that's many times per day.) It seems to coincide with hotmail's latest update where the email is checked and downloaded to the inbox automatically. Then when it asks me if I want to send the crash report to Firefox, I select yes and it tells me it had trouble sending the report. Is anyone else having this problem? Is there a setting I can change? I can't seem to keep my email account up for more than 10 minutes.
    p.s if you're reading this Microsoft, it's still not bad enough to make me to go back to Internet Explorer!

    Hi,
    /Users/sarahschadek/Desktop/Safari.app/Contents/MacOS/Safari
    Move the Safari app from the Desktop to the Applications folder.
    Restart your Mac.
    That's why you see this:
    When I try to do the updates my computer says it has ready it goes through like it is downloading them then at the end it says some of the files could not be saved to "/" files.
    After your restart your Mac, click the Apple  menu (top left in your screen) then click:  Software Update ...
    Carolyn  

  • Safari crashes several times per day...kern protection failure (and 'hang')

    Can anyone help? Safari crashes several times per day on both my Mac Mini and Macbook Pro. This has been happening since I bought both machines - and thru several OS upgrades. Hoping to avoid the Genius Bar...
    Thanks in advance!
    Process: Safari [2021]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 3.2.1 (5525.27.1)
    Build Info: WebBrowser-55252701~1
    Code Type: X86 (Native)
    Parent Process: launchd [121]
    Date/Time: 2008-12-18 22:18:32.415 -0500
    OS Version: Mac OS X 10.5.6 (9G55)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000003222
    Crashed Thread: 0
    Thread 0 Crashed:
    0 com.apple.WebCore 0x958dc7f5 ***::HashMap<WebCore::String, WebCore::String, WebCore::CaseFoldingHash, ***::HashTraits<WebCore::String>, ***::HashTraits<WebCore::String> >::set(WebCore::String const&, WebCore::String const&) + 101
    1 com.apple.WebCore 0x9592b685 WebCore::ResourceRequestBase::setHTTPHeaderField(WebCore::String const&, WebCore::String const&) + 53
    2 com.apple.WebCore 0x9592af60 WebCore::FrameLoader::applyUserAgent(WebCore::ResourceRequest&) + 112
    3 com.apple.WebCore 0x95931bb1 WebCore::FrameLoader::willSendRequest(WebCore::ResourceLoader*, WebCore::ResourceRequest&, WebCore::ResourceResponse const&) + 33
    4 com.apple.WebCore 0x959318d7 WebCore::ResourceLoader::willSendRequest(WebCore::ResourceRequest&, WebCore::ResourceResponse const&) + 87
    5 com.apple.WebCore 0x95b302e5 WebCore::SubresourceLoader::willSendRequest(WebCore::ResourceRequest&, WebCore::ResourceResponse const&) + 37
    6 com.apple.WebCore 0x959989b7 -[WebCoreResourceHandleAsDelegate connection:willSendRequest:redirectResponse:] + 455
    7 com.apple.Foundation 0x91793491 -[NSURLConnection(NSURLConnectionReallyInternal) sendWillSendRequest:redirectResponse:] + 193
    8 com.apple.Foundation 0x91793396 _NSURLConnectionWillSendRequest + 150
    9 com.apple.CFNetwork 0x90b9c3c6 URLConnectionClient::getRequestForTransmission(_CFURLResponse*, _CFURLRequest const*, __CFError**) + 272
    10 com.apple.CFNetwork 0x90b9d63d URLConnectionClient::clientWillSendRequest(_CFURLRequest const*, _CFURLResponse*) + 225
    11 com.apple.CFNetwork 0x90b9bd03 URLConnectionClient::ClientConnectionEventQueue::processAllEventsAndConsumePayl oad(XConnectionEventInfo<XClientEvent, XClientEventParams>*, long) + 179
    12 com.apple.CFNetwork 0x90b9cda8 URLConnectionClient::processEvents() + 114
    13 com.apple.CFNetwork 0x90b4cd37 MultiplexerSource::perform() + 189
    14 com.apple.CoreFoundation 0x9103d5f5 CFRunLoopRunSpecific + 3141
    15 com.apple.CoreFoundation 0x9103dcd8 CFRunLoopRunInMode + 88
    16 com.apple.HIToolbox 0x929fa2c0 RunCurrentEventLoopInMode + 283
    17 com.apple.HIToolbox 0x929fa0d9 ReceiveNextEventCommon + 374
    18 com.apple.HIToolbox 0x929f9f4d BlockUntilNextEventMatchingListInMode + 106
    19 com.apple.AppKit 0x92203d7d _DPSNextEvent + 657
    20 com.apple.AppKit 0x92203630 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    21 com.apple.Safari 0x0000808e 0x1000 + 28814
    22 com.apple.AppKit 0x921fc66b -[NSApplication run] + 795
    23 com.apple.AppKit 0x921c98a4 NSApplicationMain + 574
    24 com.apple.Safari 0x000b9b16 0x1000 + 756502
    Thread 1:
    0 libSystem.B.dylib 0x956c33ae _semwaitsignal + 10
    1 libSystem.B.dylib 0x956edd0d pthreadcondwait$UNIX2003 + 73
    2 com.apple.WebCore 0x958c58ff WebCore::IconDatabase::syncThreadMainLoop() + 239
    3 com.apple.WebCore 0x9587e065 WebCore::IconDatabase::iconDatabaseSyncThread() + 181
    4 libSystem.B.dylib 0x956ed095 pthreadstart + 321
    5 libSystem.B.dylib 0x956ecf52 thread_start + 34
    Thread 2:
    0 libSystem.B.dylib 0x956bc1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x956c39bc mach_msg + 72
    2 com.apple.CoreFoundation 0x9103d0ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9103dcd8 CFRunLoopRunInMode + 88
    4 com.apple.CFNetwork 0x90b21052 CFURLCacheWorkerThread(void*) + 396
    5 libSystem.B.dylib 0x956ed095 pthreadstart + 321
    6 libSystem.B.dylib 0x956ecf52 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x956bc1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x956c39bc mach_msg + 72
    2 com.apple.CoreFoundation 0x9103d0ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9103dcd8 CFRunLoopRunInMode + 88
    4 com.apple.Safari 0x00118d4d 0x1000 + 1146189
    5 com.apple.Safari 0x00117fd3 0x1000 + 1142739
    6 com.apple.Safari 0x00118081 0x1000 + 1142913
    7 libSystem.B.dylib 0x956ed095 pthreadstart + 321
    8 libSystem.B.dylib 0x956ecf52 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x956bc1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x956c39bc mach_msg + 72
    2 com.apple.CoreFoundation 0x9103d0ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9103dcd8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x9176cd40 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 320
    5 com.apple.Foundation 0x917097ed -[NSThread main] + 45
    6 com.apple.Foundation 0x91709394 _NSThread__main_ + 308
    7 libSystem.B.dylib 0x956ed095 pthreadstart + 321
    8 libSystem.B.dylib 0x956ecf52 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x9570b6f2 select$DARWIN_EXTSN + 10
    1 libSystem.B.dylib 0x956ed095 pthreadstart + 321
    2 libSystem.B.dylib 0x956ecf52 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x956c33ae _semwaitsignal + 10
    1 libSystem.B.dylib 0x956edd0d pthreadcondwait$UNIX2003 + 73
    2 com.apple.ColorSync 0x94a4b45c pthreadSemaphoreWait(t_pthreadSemaphore*) + 42
    3 com.apple.ColorSync 0x94a5dd8e CMMConvTask(void*) + 54
    4 libSystem.B.dylib 0x956ed095 pthreadstart + 321
    5 libSystem.B.dylib 0x956ecf52 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x95725292 _workqops + 10
    1 libSystem.B.dylib 0x957252c2 start_wqthread + 30
    Thread 8:
    Thread 9:
    0 libSystem.B.dylib 0x956bc1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x956c39bc mach_msg + 72
    2 com.apple.CoreFoundation 0x9103d0ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9103dcd8 CFRunLoopRunInMode + 88
    4 com.apple.audio.CoreAudio 0x915d35dc HALRunLoop::OwnThread(void*) + 160
    5 com.apple.audio.CoreAudio 0x915d3464 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x956ed095 pthreadstart + 321
    7 libSystem.B.dylib 0x956ecf52 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x956bc226 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x956ee1ef pthread_condwait + 1244
    2 libSystem.B.dylib 0x956efa73 pthreadcond_timedwait_relativenp + 47
    3 com.apple.Foundation 0x9174f75c -[NSCondition waitUntilDate:] + 236
    4 com.apple.Foundation 0x9174f570 -[NSConditionLock lockWhenCondition:beforeDate:] + 144
    5 com.apple.Foundation 0x9174f4d5 -[NSConditionLock lockWhenCondition:] + 69
    6 com.apple.AppKit 0x92269d90 -[NSUIHeartBeat _heartBeatThread:] + 753
    7 com.apple.Foundation 0x917097ed -[NSThread main] + 45
    8 com.apple.Foundation 0x91709394 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x956ed095 pthreadstart + 321
    10 libSystem.B.dylib 0x956ecf52 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x956bc1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x956c39bc mach_msg + 72
    2 ...romedia.Flash Player.plugin 0x17c3b3fd Flash_EnforceLocalSecurity + 1188169
    3 libSystem.B.dylib 0x956ed095 pthreadstart + 321
    4 libSystem.B.dylib 0x956ecf52 thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x956bc20e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x956ee206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x95733539 pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x17b001fc 0x17768000 + 3768828
    4 ...romedia.Flash Player.plugin 0x17b38034 Flash_EnforceLocalSecurity + 126336
    5 ...romedia.Flash Player.plugin 0x17b004a6 0x17768000 + 3769510
    6 libSystem.B.dylib 0x956ed095 pthreadstart + 321
    7 libSystem.B.dylib 0x956ecf52 thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x956bc20e semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x956ee206 pthread_condwait + 1267
    2 libSystem.B.dylib 0x95733539 pthreadcondwait + 48
    3 ...romedia.Flash Player.plugin 0x17b001fc 0x17768000 + 3768828
    4 ...romedia.Flash Player.plugin 0x17b38034 Flash_EnforceLocalSecurity + 126336
    5 ...romedia.Flash Player.plugin 0x17b004a6 0x17768000 + 3769510
    6 libSystem.B.dylib 0x956ed095 pthreadstart + 321
    7 libSystem.B.dylib 0x956ecf52 thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x956bc1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x956c39bc mach_msg + 72
    2 com.apple.CoreFoundation 0x9103d0ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9103dd34 CFRunLoopRun + 84
    4 com.apple.DesktopServices 0x90a5de83 TSystemNotificationTask::SystemNotificationTaskProc(void*) + 123
    5 ...ple.CoreServices.CarbonCore 0x932ab10b PrivateMPEntryPoint + 56
    6 libSystem.B.dylib 0x956ed095 pthreadstart + 321
    7 libSystem.B.dylib 0x956ecf52 thread_start + 34
    Thread 15:
    0 libSystem.B.dylib 0x956bc1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x956c39bc mach_msg + 72
    2 com.apple.CoreFoundation 0x9103d0ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9103dd34 CFRunLoopRun + 84
    4 com.apple.DesktopServices 0x90a5dffc TFSEventsNotificationTask::FSEventsNotificationTaskProc(void*) + 216
    5 ...ple.CoreServices.CarbonCore 0x932ab10b PrivateMPEntryPoint + 56
    6 libSystem.B.dylib 0x956ed095 pthreadstart + 321
    7 libSystem.B.dylib 0x956ecf52 thread_start + 34
    Thread 16:
    0 libSystem.B.dylib 0x956c33ae _semwaitsignal + 10
    1 libSystem.B.dylib 0x956edd0d pthreadcondwait$UNIX2003 + 73
    2 ...ple.CoreServices.CarbonCore 0x932acef7 TSWaitOnCondition + 126
    3 ...ple.CoreServices.CarbonCore 0x9328be36 TSWaitOnConditionTimedRelative + 202
    4 ...ple.CoreServices.CarbonCore 0x932acb74 MPWaitOnQueue + 208
    5 com.apple.DesktopServices 0x90a68fba TNodeSyncTask::SyncTaskProc(void*) + 84
    6 ...ple.CoreServices.CarbonCore 0x932ab10b PrivateMPEntryPoint + 56
    7 libSystem.B.dylib 0x956ed095 pthreadstart + 321
    8 libSystem.B.dylib 0x956ecf52 thread_start + 34
    Thread 17:
    0 libSystem.B.dylib 0x956ec906 kevent + 10
    1 libSystem.B.dylib 0x956ed095 pthreadstart + 321
    2 libSystem.B.dylib 0x956ecf52 thread_start + 34
    Thread 18:
    0 libSystem.B.dylib 0x956bc226 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x956ee1ef pthread_condwait + 1244
    2 libSystem.B.dylib 0x956efa73 pthreadcond_timedwait_relativenp + 47
    3 com.apple.audio.CoreAudio 0x915e2bc3 CAGuard::WaitFor(unsigned long long) + 213
    4 com.apple.audio.CoreAudio 0x915e477e CAGuard::WaitUntil(unsigned long long) + 70
    5 com.apple.audio.CoreAudio 0x915e2f23 HP_IOThread::WorkLoop() + 759
    6 com.apple.audio.CoreAudio 0x915e2c27 HPIOThread::ThreadEntry(HPIOThread*) + 17
    7 com.apple.audio.CoreAudio 0x915d3464 CAPThread::Entry(CAPThread*) + 96
    8 libSystem.B.dylib 0x956ed095 pthreadstart + 321
    9 libSystem.B.dylib 0x956ecf52 thread_start + 34
    Thread 19:
    0 libSystem.B.dylib 0x956bc226 semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x956ee1ef pthread_condwait + 1244
    2 libSystem.B.dylib 0x956efa73 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x9328be62 TSWaitOnConditionTimedRelative + 246
    4 ...ple.CoreServices.CarbonCore 0x932acb74 MPWaitOnQueue + 208
    5 com.apple.DesktopServices 0x90a6af04 TFolderSizeTask::FolderSizeTaskProc(void*) + 104
    6 ...ple.CoreServices.CarbonCore 0x932ab10b PrivateMPEntryPoint + 56
    7 libSystem.B.dylib 0x956ed095 pthreadstart + 321
    8 libSystem.B.dylib 0x956ecf52 thread_start + 34
    Thread 20:
    0 libSystem.B.dylib 0x956bc1c6 machmsgtrap + 10
    1 libSystem.B.dylib 0x956c39bc mach_msg + 72
    2 com.apple.CoreFoundation 0x9103d0ae CFRunLoopRunSpecific + 1790
    3 com.apple.CoreFoundation 0x9103dcd8 CFRunLoopRunInMode + 88
    4 com.apple.Foundation 0x9173dd75 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 213
    5 com.apple.Foundation 0x91749e94 -[NSRunLoop(NSRunLoop) run] + 84
    6 com.apple.Safari 0x0005b9b0 0x1000 + 371120
    7 com.apple.Foundation 0x917097ed -[NSThread main] + 45
    8 com.apple.Foundation 0x91709394 _NSThread__main_ + 308
    9 libSystem.B.dylib 0x956ed095 pthreadstart + 321
    10 libSystem.B.dylib 0x956ecf52 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00003222 ebx: 0x9592aefb ecx: 0x00000000 edx: 0x209a6d60
    edi: 0xbfffe790 esi: 0xbfffe7e8 ebp: 0xbfffe778 esp: 0xbfffe730
    ss: 0x0000001f efl: 0x00010206 eip: 0x958dc7f5 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x00003222
    Binary Images:
    0x1000 - 0x1d7fe2 com.apple.Safari 3.2.1 (5525.27.1) <66278f41bc085c64e0f06ff487af4adc> /Applications/Safari.app/Contents/MacOS/Safari
    0x223000 - 0x232ff8 SyndicationUI ??? (???) <edde0133829971dbd8a0f3473cdb85fc> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x500000 - 0x6e8fff com.apple.RawCamera.bundle 2.0.11 (410) <7704cc57f7daceb81672bfdc4434da40> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x14247000 - 0x14266fed com.apple.audio.CoreAudioKit 1.5 (1.5) <795c36d256c2cead9607068b1f78e141> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x150cb000 - 0x150d0ff3 libCGXCoreImage.A.dylib ??? (???) <375e0cdb64b043378dbf637992bbfeb0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x15199000 - 0x15199ffe com.apple.JavaPluginCocoa 12.2.0 (12.2.0) <b08d1285182ffcbaedd747d17fdaeefd> /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0x151e0000 - 0x151e6ffd com.apple.JavaVM 12.2.0 (12.2.0) <9ad39149cc7ecc91da3e93df7f61d315> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x174b4000 - 0x174b7fff com.apple.audio.AudioIPCPlugIn 1.0.5 (1.0.5) <e7424df9b53076d04045fb2e0132b2d0> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x17768000 - 0x17d71fdf +com.macromedia.Flash Player.plugin 9.0.151 (1.0.4f60) <f43004ffc4944f26af228334f2cda80b> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x1ad89000 - 0x1ad8aff3 ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0x1ae16000 - 0x1ae1cfff com.apple.URLMount.AFPPlugin 3.1.1 (3.1.1) <77607fdc65be1505a4f972f37bcda4cf> /System/Library/Filesystems/URLMount/afp.URLMounter/Contents/MacOS/afp
    0x1af5c000 - 0x1af9bfff com.apple.AppleShareClientCore 1.6.2 (1.6.2) <fd00593321701e12c8e8cd503a2a77f6> /System/Library/Frameworks/AppleShareClientCore.framework/Versions/A/AppleShare ClientCore
    0x1b624000 - 0x1b629fff com.apple.audio.AppleHDAHALPlugIn 1.6.2 (1.6.2a37) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x1b917000 - 0x1b917ffd liblangid.dylib ??? (???) <d1bba9ec9142b4eb33db9c24d504ac63> /usr/lib/liblangid.dylib
    0x1c69e000 - 0x1c6a8ffc com.apple.framework.AppleTalk 1.2.0 (???) <03c9e04989b83129f00aecca0cb03fde> /System/Library/Frameworks/AppleTalk.framework/Versions/A/AppleTalk
    0x1c7d8000 - 0x1c7daffe com.apple.AutomatorCMM 1.1 (160) <650079fd95a57e8131e79409a00b2aed> /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x1c7e0000 - 0x1c7e1ffd com.apple.BluetoothMenu 2.1.3 (2.1.3f8) /System/Library/Contextual Menu Items/BluetoothContextualMenu.plugin/Contents/MacOS/BluetoothContextualMenu
    0x1c7e6000 - 0x1c7e8fff com.apple.BezelServicesFW 1.4.925 (1.4.925) /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x1c7ef000 - 0x1c7f0fff +com.vmware.FusionVMDKPlugIn ??? (0.0.1d2) /Library/Contextual Menu Items/FusionVMDKPlugIn.plugin/Contents/MacOS/FusionVMDKPlugIn
    0x1c824000 - 0x1c829fff com.apple.FolderActionsMenu 1.3.2 (1.3.2) <d7aa79798607f865bd48718e2acd6e2b> /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x1c8a0000 - 0x1c8aaffe com.apple.URLMount 3.1.1 (3.1.1) <b4018e683fad4259ee78070e91f35029> /System/Library/PrivateFrameworks/URLMount.framework/URLMount
    0x1d900000 - 0x1d90efeb libSimplifiedChineseConverter.dylib ??? (???) <ec9a1c1949952acb83d09a0320ba2df1> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x2166c000 - 0x2167efff libTraditionalChineseConverter.dylib ??? (???) <086a18ff56a7d80d4446b979a18a4f64> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x24d87000 - 0x24d8dfc7 +com.Adobe.print.AdobePDF8.pde AdobePDF 8.0.0 (8.0.0) /Library/Printers/PPD Plugins/AdobePDFPDE800.plugin/Contents/MacOS/AdobePDFPDE800
    0x25885000 - 0x258affff com.apple.audio.SoundManager.Components 3.9.3 (3.9.3) /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x258b5000 - 0x258f0fff com.apple.QuickTimeFireWireDV.component 7.5.5 (990.7) /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x25d9c000 - 0x25ec3feb libmecab.1.0.0.dylib ??? (???) <d42fb7fb40a58840dd30e4364635c245> /usr/lib/libmecab.1.0.0.dylib
    0x2d14f000 - 0x2d184fff com.apple.print.framework.Print.Private 5.5.6 (237.14) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/Current/Plugins/PrintCocoaUI.bundle/Contents/MacOS/PrintCocoaUI
    0x2d19d000 - 0x2d1c5fff com.apple.print.PrintingCocoaPDEs 5.5.6 (237.14) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Plugins/PrintingCocoaPDEs.bundle/Contents/MacOS/PrintingCocoaPDEs
    0x2d300000 - 0x2d31ffef +com.hp.print.cups.pde.photosmart 2.3.2 (2.3.2f01) /Library/Printers/hp/cups/Photosmart.driver/Contents/PlugIns/PDE.plugin/Content s/MacOS/PDE
    0x2d345000 - 0x2d362fff +com.hp.print.HPSmartPrint 3.4.1 (3.4.1f01) /Library/Frameworks/HPSmartPrint.framework/Versions/A/HPSmartPrint
    0x2d3a1000 - 0x2d40ffff +com.hp.print.cups.settings.photosmart 2.3.2 (2.3.2f01) /Library/Printers/hp/cups/Photosmart.driver/Contents/PlugIns/PDE.plugin/Content s/Resources/HPPrintSettings.bundle/Contents/MacOS/HPPrintSettings
    0x2d44d000 - 0x2d6cdfef +libhputils.dylib ??? (???) /Library/Printers/hp/cups/Photosmart.driver/Contents/lib/libhputils.dylib
    0x2d861000 - 0x2d87dfe7 libPDFRIP.A.dylib ??? (???) <bf4ccb6e46bd2d18896a752e0e2f94b8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libPDFRIP.A.dylib
    0x2fc1c000 - 0x2fc8fff7 com.apple.Bluetooth 2.1.3 (2.1.3f8) <1e2732edbd0f2c1db1ce5ecf06aa8192> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x70000000 - 0x700e6ff2 com.apple.audio.units.Components 1.5.2 (1.5.2) /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe2db43 dyld 97.1 (???) <100d362e03410f181a34e04e94189ae5> /usr/lib/dyld
    0x90003000 - 0x90003ffd com.apple.Accelerate.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x90004000 - 0x90004fff com.apple.Carbon 136 (136) <ec1d4184925e652dbe1b9200a5a552ec> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90005000 - 0x9000bfff com.apple.print.framework.Print 218.0.2 (220.1) <2979f3be4e7e8adc875bf21658e9be94> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9000c000 - 0x90068ff7 com.apple.htmlrendering 68 (1.1.3) <a9f65fa1c4668dc7c49af5bf7d5287ad> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x900a9000 - 0x9018aff7 libxml2.2.dylib ??? (???) <d69560099d9eb32ba7f8a17baa65a28d> /usr/lib/libxml2.2.dylib
    0x902ed000 - 0x9031cfe3 com.apple.AE 402.2 (402.2) <d0da935e781446faa4563e7a9c587cce> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9031d000 - 0x90321fff libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x90322000 - 0x9035cfe7 com.apple.coreui 1.2 (62) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x9035d000 - 0x9039ffef com.apple.NavigationServices 3.5.2 (163) <91844980804067b07a0b6124310d3f31> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x903a0000 - 0x9041fff5 com.apple.SearchKit 1.2.1 (1.2.1) <3140a605db2abf56b237fa156a08b28b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x90420000 - 0x90742fe2 com.apple.QuickTime 7.5.5 (990.7) <87077cec43c7e9b02c8ee80e50b8b81f> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x90743000 - 0x90781ff7 libGLImage.dylib ??? (???) <1123b8a48bcbe9cc7aa8dd8e1a214a66> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x90782000 - 0x90792fff com.apple.speech.synthesis.framework 3.7.1 (3.7.1) <06d8fc0307314f8ffc16f206ad3dbf44> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x90793000 - 0x9079fff9 com.apple.helpdata 1.0.1 (14.2) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x907a0000 - 0x908f2ff3 com.apple.audio.toolbox.AudioToolbox 1.5.2 (1.5.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x908f3000 - 0x90a39ff7 com.apple.ImageIO.framework 2.0.4 (2.0.4) <6a6623d3d1a7292b5c3763dcd108b55f> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x90a5c000 - 0x90ae6fe3 com.apple.DesktopServices 1.4.7 (1.4.7) <d16642ba22c32f67be793ebfbe67ca3a> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90ae7000 - 0x90b1dfef libtidy.A.dylib ??? (???) <f1d1742e06280444baa5637b209fd0af> /usr/lib/libtidy.A.dylib
    0x90b1e000 - 0x90bbbffc com.apple.CFNetwork 422.11 (422.11) <2780dfc3d2186195fccb3634bfb0944b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90bbc000 - 0x90bbcffa com.apple.CoreServices 32 (32) <2760719f7a81e8c2bdfd15b0939abc29> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90c6c000 - 0x90c82fff com.apple.DictionaryServices 1.0.0 (1.0.0) <7e9ff586b5c9d02b09e2a5527d98524f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x90c83000 - 0x90ca1fff libresolv.9.dylib ??? (???) <a8018c42930596593ddf27f7c20fe7af> /usr/lib/libresolv.9.dylib
    0x90cd7000 - 0x90d31ff7 com.apple.CoreText 2.0.3 (???) <1f1a97273753e6cfea86c810d6277680> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90d32000 - 0x90daffef libvMisc.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x90db0000 - 0x90e37ff7 libsqlite3.0.dylib ??? (???) <11311084bc4be9d4555dfac74fe7218a> /usr/lib/libsqlite3.0.dylib
    0x90e38000 - 0x90e65feb libvDSP.dylib ??? (???) <2ee4eb005babc90eaa352b33eb09226e> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x90e66000 - 0x90e8afff libxslt.1.dylib ??? (???) <0a9778d6368ae668826f446878deb99b> /usr/lib/libxslt.1.dylib
    0x90e8b000 - 0x90fc3ff7 libicucore.A.dylib ??? (???) <18098dcf431603fe47ee027a60006c85> /usr/lib/libicucore.A.dylib
    0x90fc4000 - 0x90fc9fff com.apple.CommonPanels 1.2.4 (85) <3b64ef0de184d09c6f99a1a7e77e42be> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x90fca000 - 0x910fdfff com.apple.CoreFoundation 6.5.5 (476.17) <4a70c8dbb582118e31412c53dc1f407f> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9110a000 - 0x911c8fff com.apple.WebKit 5525.27 (5525.27.1) <a15e548666c9a463d61be1f114b2fa27> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x911c9000 - 0x9122fffb com.apple.ISSupport 1.7 (38.2) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x91230000 - 0x9124eff3 com.apple.DirectoryService.Framework 3.5.5 (3.5.5) <f8931f64103c8a86b82e9714352f4323> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x91282000 - 0x91401fff com.apple.AddressBook.framework 4.1.1 (699) <60ddae72a1df8ddbc5c53df92f372b76> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x91402000 - 0x91426feb libssl.0.9.7.dylib ??? (???) <c7359b7ab32b5f8574520746e10a41cc> /usr/lib/libssl.0.9.7.dylib
    0x91560000 - 0x91560ffb com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x91561000 - 0x91563fff com.apple.securityhi 3.0 (30817) <dc95af76e8e2db99907708472ef434bf> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x915b6000 - 0x91633feb com.apple.audio.CoreAudio 3.1.1 (3.1.1) <f35477a5e23db0fa43233c37da01ae1c> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91634000 - 0x91636ff5 libRadiance.dylib ??? (???) <8a844202fcd65662bb9ab25f08c45a62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91637000 - 0x916feff2 com.apple.vImage 3.0 (3.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x916ff000 - 0x9197afe7 com.apple.Foundation 6.5.7 (677.22) <8fe77b5d15ecdae1240b4cb604fc6d0b> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x9197b000 - 0x91a49ff3 com.apple.JavaScriptCore 5525.26 (5525.26.2) <69e219e81bc886a94c4d4b310d393ab9> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x91a4a000 - 0x91afafff edu.mit.Kerberos 6.0.12 (6.0.12) <685cc018c133668d0d3ac6a1cb63cff9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x91afb000 - 0x91b23ff7 com.apple.shortcut 1 (1.0) <5b57f8f162f77a1739b436900517d672> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x91b36000 - 0x91f46fef libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x91f47000 - 0x91f53ffe libGL.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x91f54000 - 0x91f54ffd com.apple.vecLib 3.4.2 (vecLib 3.4.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x91f55000 - 0x91f55ff8 com.apple.ApplicationServices 34 (34) <e9cd7c823062c4382d89e3c9997f4739> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91f56000 - 0x91f5dfff com.apple.agl 3.0.9 (AGL-3.0.9) <2f39c480cfcee9358a23d61b20a6aa56> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x91f5e000 - 0x91f73ffb com.apple.ImageCapture 5.0.1 (5.0.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x91f74000 - 0x91f8fffb libPng.dylib ??? (???) <4780e979d35aa5ec2cea22678836cea5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91f90000 - 0x91f9ffff libsasl2.2.dylib ??? (???) <bb7971ca2f609c070f87786a93d1041e> /usr/lib/libsasl2.2.dylib
    0x91fa0000 - 0x9202cff7 com.apple.LaunchServices 290.3 (290.3) <6f9629f4ed1ba3bb313548e6838b2888> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x920ef000 - 0x92182fff com.apple.ink.framework 101.3 (86) <dfa9debcd7537849d228021d1d9c0f63> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92183000 - 0x921aefe7 libauto.dylib ??? (???) <2072d673706bbe463ed2426af57a28d7> /usr/lib/libauto.dylib
    0x921c3000 - 0x929c1fef com.apple.AppKit 6.5.6 (949.43) <a3a300499bbe4f1dfebf71d752d01916> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x929c2000 - 0x929c9ffe libbsm.dylib ??? (???) <5582985a86ea36504cca31788bccf963> /usr/lib/libbsm.dylib
    0x929ca000 - 0x92cd2fff com.apple.HIToolbox 1.5.4 (???) <3747086ba21ee419708a5cab946c8ba6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x92cd4000 - 0x92ce2ffd libz.1.dylib ??? (???) <545ca09467025f77131cfac09d8b9375> /usr/lib/libz.1.dylib
    0x92ced000 - 0x92deefef com.apple.PubSub 1.0.3 (65.1.1) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x92def000 - 0x92dfafe7 libCSync.A.dylib ??? (???) <e6aceed359bd228f42bc1246af5919c9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x92dfb000 - 0x92e8eff3 com.apple.ApplicationServices.ATS 3.4 (???) <8c51de0ec3deaef416578cd59df38754> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x92f5e000 - 0x9303efff libobjc.A.dylib ??? (???) <7b92613fdf804fd9a0a3733a0674c30b> /usr/lib/libobjc.A.dylib
    0x9303f000 - 0x9304fffc com.apple.LangAnalysis 1.6.4 (1.6.4) <8b7831b5f74a950a56cf2d22a2d436f6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x93056000 - 0x93063fe7 com.apple.opengl 1.5.9 (1.5.9) <7e5048a2677b41098c84045305f42f7f> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x930d7000 - 0x930dafff com.apple.help 1.1 (36) <175489f8adf287b3ebd259362b0292c0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930db000 - 0x93155ff8 com.apple.print.framework.PrintCore 5.5.3 (245.3) <222dade7b33b99708b8c09d1303f93fc> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x93156000 - 0x9324aff4 libiconv.2.dylib ??? (???) <3f183527811098bb7332f67a1f902bfd> /usr/lib/libiconv.2.dylib
    0x9324b000 - 0x93261fe7 com.apple.CoreVideo 1.5.1 (1.5.1) <001910004257f1386724398f584b30b5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x93262000 - 0x9353cff3 com.apple.CoreServices.CarbonCore 786.10 (786.10) <ec35bb05f67fe0e828d49dda88bbf6d7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x937a6000 - 0x937a6ff8 com.apple.Cocoa 6.5 (???) <e9318c93615b27231498bbe585b8da98> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93a07000 - 0x93a11feb com.apple.audio.SoundManager 3.9.2 (3.9.2) <caa41909dcb5a18a94bc68cd13999bd5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x94a18000 - 0x94ae3fff com.apple.ColorSync 4.5.1 (4.5.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x94ae4000 - 0x94cb2ff3 com.apple.security 5.0.4 (34102) <55dda7486df4e8e1d61505be16f83a1c> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x94cb3000 - 0x94cd2ffa libJPEG.dylib ??? (???) <e7eb56555109e23144924cd64aa8daec> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x94cd3000 - 0x94ce2ffe com.apple.DSObjCWrappers.Framework 1.2.1 (1.2.1) <43c5b91223501f917392f59fbf9d7ace> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94dc5000 - 0x94e22ffb libstdc++.6.dylib ??? (???) <6106b1f2b0b303b06ae476253dbb5f3f> /usr/lib/libstdc++.6.dylib
    0x94e55000 - 0x95213fea libLAPACK.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95214000 - 0x9529ffff com.apple.framework.IOKit 1.5.1 (???) <f9f5f0d070e197a832d86751e1d44545> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x952a0000 - 0x952a7ff7 libCGATS.A.dylib ??? (???) <386dce4b28448fb86e33e06ac466f4d8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x952d8000 - 0x9538affb libcrypto.0.9.7.dylib ??? (???) <69bc2457aa23f12fa7d052601d48fa29> /usr/lib/libcrypto.0.9.7.dylib
    0x953af000 - 0x953f0fe7 libRIP.A.dylib ??? (???) <5d0b5af7992e14de017f9a9c7cb05960> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x953fe000 - 0x95435fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <8b26ebf26a009a098484f1ed01ec499c> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x95436000 - 0x95436ffd com.apple.Accelerate 1.4.2 (Accelerate 1.4.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x954e2000 - 0x9551bffe com.apple.securityfoundation 3.0 (32989) <d25780b149d9b0b518899c8aade0b61f> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9551c000 - 0x9551cffc com.apple.audio.units.AudioUnit 1.5 (1.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9551d000 - 0x95525fff com.apple.DiskArbitration 2.2.1 (2.2.1) <42908e7ecc17a83cec4afef2850ec79e> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9552b000 - 0x95584ff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x95588000 - 0x955d2fe1 com.apple.securityinterface 3.0.1 (35183) <f855cb06d2541ce544d9bcdf998b991c> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x955d3000 - 0x955d4ffc libffi.dylib ??? (???) <596e0dbf626b211741cecaa9698f271b> /usr/lib/libffi.dylib
    0x955d5000 - 0x956baff3 com.apple.CoreData 100.1 (186) <9187380c86061cb4c37b6bec8abeae75> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x956bb000 - 0x95822ff3 libSystem.B.dylib ??? (???) <d68880dfb1f8becdbdac6928db1510fb> /usr/lib/libSystem.B.dylib
    0x95823000 - 0x95828fff com.apple.backup.framework 1.0 (1.0) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x95829000 - 0x9587aff7 com.apple.HIServices 1.7.0 (???) <01b690d1f376e400ac873105533e39eb> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9587b000 - 0x95eccfff com.apple.WebCore 5525.26 (5525.26.6) <8676962ab93f003cf9b10748725c1bc2> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95ecd000 - 0x9626afef com.apple.QuartzCore 1.5.7 (1.5.7) <2fed2dd7565c84a0f0c608d41d4d172c> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9626b000 - 0x96293fff libcups.2.dylib ??? (???) <81abd305142ad1b771024eb4a1309e2e> /usr/lib/libcups.2.dylib
    0x96294000 - 0x9629dfff com.apple.speech.recognition.framework 3.7.24 (3.7.24) <6a6518b392d3d41ace3dcea69d6809d9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9629e000 - 0x962a0fff com.apple.CrashReporterSupport 10.5.5 (159) <4ca9b6643fcbafd76424a46d162363eb> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x962a1000 - 0x962a5fff libGIF.dylib ??? (???) <572a32e46e33be1ec041c5ef5b0341ae> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x962ec000 - 0x96304fff com.apple.openscripting 1.2.8 (???) <572c7452d7e740e8948a5ad07a99602b> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x96305000 - 0x963bffe3 com.apple.CoreServices.OSServices 226.5 (226.5) <2a135d4fb16f4954290f7b72b4111aa3> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x963d8000 - 0x96417fef libTIFF.dylib ??? (???) <3589442575ac77746ae99ecf724f5f87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x96418000 - 0x96ab8fff com.apple.CoreGraphics 1.407.2 (???) <3a91d1037afde01d1d8acdf9cd1caa14> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x96ab9000 - 0x96aebfff com.apple.LDAPFramework 1.4.5 (110) <cc04500cf7b6edccc75bb3fe2973f72c> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x96aec000 - 0x96b35fef com.apple.Metadata 10.5.2 (398.25) <e0572f20350523116f23000676122a8d> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x96b36000 - 0x96b3dfe9 libgcc_s.1.dylib ??? (???) <28a7cbc3a5ca2982d124668306f422d9> /usr/lib/libgcc_s.1.dylib
    0x96b3e000 - 0x9700ff3e libGLProgrammability.dylib ??? (???) <5d283543ac844e7c6fa3440ac56cd265> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9703b000 - 0x970e2feb com.apple.QD 3.11.54 (???) <b743398c24c38e581a86e91744a2ba6e> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0xba900000 - 0xba916fff libJapaneseConverter.dylib ??? (???) <79f7cbef6bc9f4c32a42d63c7332bf8e> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe2 libKoreanConverter.dylib ??? (???) <4b497e7a0027447eaff2b45572bb85ea> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xeab00000 - 0xeab0ffff libConverter.dylib ??? (???) /System/Library/Printers/Libraries/libConverter.dylib
    0xfffe8000 - 0xfffebfff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff0000 - 0xffff1780 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

    i haven't really used the other user (guest) account much - don't remember it crashing on there.
    i opened my hd/library/internet plug ins folder, but can't seem to find the version of the pdf viewer. it just says AdobePDFViewer.plugin...didn't see any additional info when i did command+i.
    i'm thinking a trip to the genius bar is in order. i just started using my webcam and found that the other person's video is blurry and ends up w/ little garbled (moving) pixels randomly. bah. humbug.
    thanks for all of your help so far. and...happy new year!
    (i keep forgetting that i posted this help topic on here...lol)

  • What's the difference between time capsule and time machine?

    What is the difference between time capsule and time machine?

    See Using Time Machine with a Time Capsule.

  • OS X freezes few times per day

    Hello. I've a problem with my Macbook Pro Retina 15". Few times per day system freeze. After freeze and manual reboot (power button) sometimes system have a problem with boot (i need turn on and off few times). Now i check in logs when i open Diablo 3 and have something like this:
    24.07.2014 17:56:59,158 WindowServer[135]: CGXMuxCapture: Starting
    24.07.2014 17:56:59,158 WindowServer[135]: CGXMuxCapture: Acquired
    24.07.2014 17:56:59,159 WindowServer[135]: Display 0x4280642 captured by conn 0x1cc8f
    24.07.2014 17:56:59,202 Diablo III[28354]: *** WARNING: Method convertPointFromBase: in class NSView is deprecated on 10.7 and later. It should not be used in new applications.
    24.07.2014 17:56:59,394 Diablo III[28354]: *** WARNING: Method convertRectToBase: in class NSView is deprecated on 10.7 and later. It should not be used in new applications.
    24.07.2014 17:57:31,000 kernel[0]: NVDA(OpenGL): Channel exception! Exception type = 0x8 DMA Engine Error (FIFO Error 8)
    24.07.2014 17:57:31,000 kernel[0]: 4443564e 00000118 88c93bc5 01f794e7 00000001 00000014 d3793533 46d3a4a6
    24.07.2014 17:57:31,000 kernel[0]: 4614f297 e71edccf 00088301 000000e1 12f2500a 081d0a4d 1002a0ad 20001801
    24.07.2014 17:57:31,000 kernel[0]: 30002800 02803800 0c828040 00500048 00601258 01080d22 808e8010 81042202
    24.07.2014 17:57:31,000 kernel[0]: 22188093 1001080d 02808a84 9c820422 0e2268b4 84100108 22028180 80a6b805
    24.07.2014 17:57:31,000 kernel[0]: 030a0880 0a00149a 1f138222 41100008 81200218 9b862808 5000480c 60015802
    24.07.2014 17:57:31,000 kernel[0]: 78007064 01019000 0a000198 00138a03 13923d0a 24380a3a 0e000000 01000000
    24.07.2014 17:57:31,000 kernel[0]: 490000e0 0100000f 49000000 0000000b 47000000 ff000304 ff000000 ff000000
    24.07.2014 17:57:31,000 kernel[0]: ff000000 ff000000 ff000000 0a000000 1d13c220 00100008 e480a818 12200bf7
    24.07.2014 17:57:31,000 kernel[0]: 03300828 a7a6a038 0dd7b0b6 48028040 00000000 4443564e
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to start of command buffer processing!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Unable to make context resident prior to adding drawable to channel!
    24.07.2014 17:57:31,000 kernel[0]: NVDA: Calling glrKillClient for task 0xffffff8044c190c0
    24.07.2014 17:57:31,835 WindowServer[135]: CGXMuxCapture: Released
    24.07.2014 17:57:31,835 WindowServer[135]: Display 0x4280642 released by conn 0x1cc8f
    24.07.2014 17:58:18,000 bootlog[0]: BOOT_TIME 1406217498 0

    The logic board is defective and must be replaced under warranty.

  • HP ENVY m6 Notebook PC overheats several times per day

    My laptop overheats and crashes CONSTANTLY—several times per day!  I have vacuumed all of the vents in back, I took it to the Geek Squad, who sold me a chill pad that helps minimally, I have started putting ice packs on the lower left corner, I don't take it outside, anymore.  There is nothing that keeps this laptop cool enough for me to use like a laptop and take it where I need it.  It started doing this about 6 months ago.
    It's sitting on the chill pad right now, getting hotter and hotter (everywhere to the left of the letter i).  Also, the adapter gets so hot, it makes me think it might be a fire hazard.  It seems to overheat slower when it runs off the battery, which seems to be the only thing that doesn't get hot.
    What do I do about this?  I don't want to get another laptop; this one is only a year and a half old.

    It likely needs to be opened up and cleaned out around the processor/heatsink and new thermal compound applied. I am understanding that the battery does not heat up? What if you let it run down and then recharge it with the laptop on? Does the battery get hot during that process? It does not heat up as much on battery power because the processor has been "throttled back" to save battery life so that tells us the heat is likely coming from the processor. You can set the processor to run at 97 or 98% power even when plugged in and this helps a lot but should not be seen as a permanent fix. Go into power options in Control Panel and get to advanced.
    Set maximum processor state plugged in to 98% and see if that does not help.
    If this is "the Answer" please click "Accept as Solution" to help others find it. 

  • IMac crashes several times per day. What is causing the issue?

    Here is the error report.
    I am always prompted to "report this issue to Apple" but never hear back as to what the issue actually is.
    Can someone decipher the "crash report"? 
    Thank you!
    Anonymous UUID:       90EECEB1-8B18-7E28-D93F-A28EA4557704
    Mon Jan 26 21:11:35 2015
    panic(cpu 0 caller 0xffffff8000e4e7fa): "A kext releasing a(n) OSData has corrupted the registry."@/SourceCache/xnu/xnu-2422.115.4/libkern/c++/OSObject.cpp:218
    Backtrace (CPU 0), Frame : Return Address
    0xffffff82ccfa3d90 : 0xffffff8000a22f79
    0xffffff82ccfa3e10 : 0xffffff8000e4e7fa
    0xffffff82ccfa3e60 : 0xffffff7f81e9251e
    0xffffff82ccfa3eb0 : 0xffffff7f81e948df
    0xffffff82ccfa3ee0 : 0xffffff7f81e9488f
    0xffffff82ccfa3ef0 : 0xffffff7f81e92cc9
    0xffffff82ccfa3f30 : 0xffffff7f81ed1e27
    0xffffff82ccfa3f50 : 0xffffff7f81ed1dd6
    0xffffff82ccfa3f70 : 0xffffff7f81ed1e4c
    0xffffff82ccfa3f90 : 0xffffff7f81ed1f40
    0xffffff82ccfa3fb0 : 0xffffff8000ad7607
          Kernel Extensions in backtrace:
             com.apple.iokit.IOBluetoothFamily(4.2.7f3)[7E5FC847-3012-3851-B67C-A1274D8D834F ]@0xffffff7f81e8d000->0xffffff7f81f29fff
                dependency: com.apple.iokit.IOUSBFamily(686.4.1)[815E4F64-F2D5-3847-931A-BE755698D993]@0xff ffff7f811fc000
                dependency: com.apple.iokit.IOReportFamily(23)[EE246983-FE6F-32F3-A5A0-88F3E3CDBA89]@0xffff ff7f81d3c000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    13F34
    Kernel version:
    Darwin Kernel Version 13.4.0: Sun Aug 17 19:50:11 PDT 2014; root:xnu-2422.115.4~1/RELEASE_X86_64
    Kernel UUID: 9477416E-7BCA-3679-AF97-E1EAAD3DD5A0
    Kernel slide:     0x0000000000800000
    Kernel text base: 0xffffff8000a00000
    System model name: iMac14,2 (Mac-27ADBB7B4CEE8E61)
    System uptime in nanoseconds: 17023306605484
    last loaded kext at 4898854516476: com.apple.driver.AppleUSBCDC 4.2.1b5 (addr 0xffffff7f83033000, size 20480)
    last unloaded kext at 6271896713280: com.apple.filesystems.exfat 1.4 (addr 0xffffff7f83026000, size 53248)
    loaded kexts:
    com.Perfect.Driver.SystemAudioRecorder 1.0.0
    com.Cycling74.driver.Soundflower 1.6.6
    com.apple.driver.AppleBluetoothMultitouch 80.14
    com.apple.driver.AppleHWSensor 1.9.5d0
    com.apple.iokit.IOBluetoothSerialManager 4.2.7f3
    com.apple.filesystems.autofs 3.0
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.driver.AGPM 100.14.34
    com.apple.driver.ApplePlatformEnabler 2.0.9d7
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.driver.AudioAUUC 1.60
    com.apple.driver.AppleUpstreamUserClient 3.5.13
    com.apple.GeForce 8.2.6
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.driver.AppleIntelHD5000Graphics 8.2.8
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleMikeyDriver 2.6.3f4
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.2.7f3
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleIntelFramebufferAzul 8.2.8
    com.apple.driver.AppleLPC 1.7.0
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.driver.AppleThunderboltIP 1.1.2
    com.apple.driver.AppleBacklight 170.4.11
    com.apple.driver.AppleMCCSControl 1.2.5
    com.apple.iokit.SCSITaskUserClient 3.6.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.AppleUSBHub 683.4.0
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.0
    com.apple.driver.AppleSDXC 1.5.2
    com.apple.iokit.AppleBCM5701Ethernet 3.8.1b2
    com.apple.driver.AirPort.Brcm4360 842.21.65
    com.apple.driver.AppleAHCIPort 3.0.5
    com.apple.driver.AppleUSBXHCI 683.4.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleACPIButtons 2.0
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 2.0
    com.apple.driver.AppleAPIC 1.7
    com.apple.nke.applicationfirewall 153
    com.apple.security.quarantine 3
    com.apple.driver.AppleBluetoothHIDKeyboard 170.15
    com.apple.driver.IOBluetoothHIDDriver 4.2.7f3
    com.apple.driver.AppleMultitouchDriver 245.13.1
    com.apple.iokit.IOSerialFamily 10.0.7
    com.apple.kext.triggers 1.0
    com.apple.driver.DspFuncLib 2.6.3f4
    com.apple.vecLib.kext 1.0.0
    com.apple.iokit.IOAcceleratorFamily 98.23
    com.apple.nvidia.driver.NVDAGK100Hal 8.2.6
    com.apple.nvidia.driver.NVDAResman 8.2.6
    com.apple.iokit.IOAudioFamily 1.9.7fc2
    com.apple.kext.OSvKernDSPLib 1.14
    com.apple.iokit.IOBluetoothFamily 4.2.7f3
    com.apple.iokit.IOSurface 91.1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.2.7f3
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.driver.AppleHDAController 2.6.3f4
    com.apple.iokit.IOHDAFamily 2.6.3f4
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.AppleGraphicsDeviceControl 3.6.22
    com.apple.iokit.IOAcceleratorFamily2 98.23
    com.apple.driver.IOPlatformPluginFamily 5.7.1d6
    com.apple.driver.AppleSMC 3.1.8
    com.apple.driver.AppleThunderboltEDMSink 2.1.3
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.driver.AppleSMBusController 1.0.12d1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleUSBHIDKeyboard 170.15
    com.apple.driver.AppleHIDKeyboard 170.15
    com.apple.iokit.IOUSBHIDDriver 660.4.0
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.6.7
    com.apple.iokit.IOUSBMassStorageClass 3.6.0
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.6.7
    com.apple.driver.AppleUSBMergeNub 650.4.0
    com.apple.driver.AppleUSBComposite 656.4.1
    com.apple.driver.AppleThunderboltDPOutAdapter 3.1.7
    com.apple.driver.AppleThunderboltDPInAdapter 3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily 3.1.7
    com.apple.driver.AppleThunderboltPCIDownAdapter 1.4.5
    com.apple.driver.CoreStorage 380.70.2
    com.apple.iokit.IOUSBUserClient 660.4.2
    com.apple.driver.AppleThunderboltNHI 2.0.1
    com.apple.iokit.IOThunderboltFamily 3.3.1
    com.apple.iokit.IOEthernetAVBController 1.0.3b4
    com.apple.iokit.IO80211Family 640.36
    com.apple.driver.mDNSOffloadUserClient 1.0.1b5
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOAHCIFamily 2.6.5
    com.apple.iokit.IOUSBFamily 686.4.1
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 278.11.1
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.DiskImages 371.1
    com.apple.iokit.IOStorageFamily 1.9
    com.apple.iokit.IOReportFamily 23
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 2.0
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    com.apple.kec.pthread 1
    Model: iMac14,2, BootROM IM142.0118.B00, 4 processors, Intel Core i7, 3.5 GHz, 24 GB, SMC 2.15f2
    Graphics: NVIDIA GeForce GTX 780M, NVIDIA GeForce GTX 780M, PCIe, 4096 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1333 MHz, 0x02FE, 0x45424A3430554738454655352D474E4C2D46
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1333 MHz, 0x02FE, 0x45424A3430554738454655352D474E4C2D46
    Memory Module: BANK 0/DIMM1, 8 GB, DDR3, 1333 MHz, 0x029E, 0x434D5358384758334D314131363030433130
    Memory Module: BANK 1/DIMM1, 8 GB, DDR3, 1333 MHz, 0x029E, 0x434D5358384758334D314131363030433130
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x111), Broadcom BCM43xx 1.0 (6.30.223.154.65)
    Bluetooth: Version 4.2.7f3 14616, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: APPLE SSD SD0128F, 121.33 GB
    Serial ATA Device: APPLE HDD ST3000DM001, 3 TB
    USB Device: My Book 1230
    USB Device: External USB 3.0
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Keyboard Hub
    USB Device: Apple Keyboard
    Thunderbolt Bus: iMac, Apple Inc., 23.10

    Thanks for the update on this, Linc. I did try this out and it was helpful, however, I'm back in the same boat again!
    Thanks for any help and insight you can offer.
    The iMac has resorted to shutting down several times per day again.    Here is the latest error report.
    Anonymous UUID:       90EECEB1-8B18-7E28-D93F-A28EA4557704
    Thu Feb  5 23:44:25 2015
    panic(cpu 2 caller 0xffffff7f8cc56a35): "This LVG was created before the fix for <rdar://11023142>, you must recreate your LVGs"@/SourceCache/CoreStorage/CoreStorage-380.70.2/core/btree/btree_impl.h:55
    Backtrace (CPU 2), Frame : Return Address
    0xffffff82d7e5ba90 : 0xffffff800b023139
    0xffffff82d7e5bb10 : 0xffffff7f8cc56a35
    0xffffff82d7e5bba0 : 0xffffff7f8cc56a58
    0xffffff82d7e5bc30 : 0xffffff7f8cc4bcc7
    0xffffff82d7e5bc90 : 0xffffff7f8cc4f711
    0xffffff82d7e5bd70 : 0xffffff7f8cc4fb9f
    0xffffff82d7e5bf20 : 0xffffff7f8cc4b1af
    0xffffff82d7e5bf70 : 0xffffff7f8cc4b10c
    0xffffff82d7e5bf80 : 0xffffff7f8cc466e3
    0xffffff82d7e5bfb0 : 0xffffff800b0d7c67
          Kernel Extensions in backtrace:
             com.apple.driver.CoreStorage(380.70.2)[DFECD064-FF24-3CC7-9BB9-2469FCAA15AF]@0x ffffff7f8cbd6000->0xffffff7f8cc98fff
                dependency: com.apple.iokit.IOStorageFamily(1.9)[9B09B065-7F11-3241-B194-B72E5C23548B]@0xff ffff7f8b648000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    13F34
    Kernel version:
    Darwin Kernel Version 13.4.0: Wed Dec 17 19:05:52 PST 2014; root:xnu-2422.115.10~1/RELEASE_X86_64
    Kernel UUID: 45486BF2-BDDE-34CB-8C71-606FF3FE181B
    Kernel slide:     0x000000000ae00000
    Kernel text base: 0xffffff800b000000
    System model name: iMac14,2 (Mac-27ADBB7B4CEE8E61)
    System uptime in nanoseconds: 15502458977428
    last loaded kext at 11079372093582: com.apple.filesystems.exfat 1.4 (addr 0xffffff7f8d61b000, size 61440)
    last unloaded kext at 11199508699870: com.apple.driver.AppleUSBCDC 4.2.1b5 (addr 0xffffff7f8d617000, size 16384)
    loaded kexts:
    com.Perfect.Driver.SystemAudioRecorder 1.0.0
    com.apple.filesystems.exfat 1.4
    com.apple.driver.AppleBluetoothMultitouch 80.14
    com.apple.driver.AppleHWSensor 1.9.5d0
    com.apple.filesystems.autofs 3.0
    com.apple.iokit.IOBluetoothSerialManager 4.2.7f4
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleMikeyDriver 2.6.3f4
    com.apple.driver.AppleHDA 2.6.3f4
    com.apple.driver.AGPM 100.14.34
    com.apple.driver.ApplePlatformEnabler 2.0.9d7
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.driver.AudioAUUC 1.60
    com.apple.driver.AppleUpstreamUserClient 3.5.13
    com.apple.iokit.IOUserEthernet 1.0.0d1
    com.apple.GeForce 8.2.6
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.2.7f4
    com.apple.driver.AppleIntelHD5000Graphics 8.2.8
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleThunderboltIP 1.1.2
    com.apple.driver.AppleSMCLMU 2.0.4d1
    com.apple.driver.AppleLPC 1.7.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleIntelFramebufferAzul 8.2.8
    com.apple.driver.AppleBacklight 170.4.11
    com.apple.driver.AppleMCCSControl 1.2.5
    com.apple.iokit.SCSITaskUserClient 3.6.7
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeLZVN 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 35
    com.apple.driver.AppleUSBHub 683.4.0
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.6.0
    com.apple.driver.AppleSDXC 1.5.2
    com.apple.iokit.AppleBCM5701Ethernet 3.8.1b2
    com.apple.driver.AirPort.Brcm4360 842.21.65
    com.apple.driver.AppleAHCIPort 3.0.5
    com.apple.driver.AppleUSBXHCI 683.4.0
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleACPIButtons 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 2.0
    com.apple.driver.AppleAPIC 1.7
    com.apple.nke.applicationfirewall 153
    com.apple.security.quarantine 3
    com.apple.driver.AppleBluetoothHIDKeyboard 170.15
    com.apple.driver.IOBluetoothHIDDriver 4.2.7f4
    com.apple.driver.AppleMultitouchDriver 245.13.1
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSerialFamily 10.0.7
    com.apple.driver.DspFuncLib 2.6.3f4
    com.apple.vecLib.kext 1.0.0
    com.apple.iokit.IOAudioFamily 1.9.7fc2
    com.apple.kext.OSvKernDSPLib 1.14
    com.apple.iokit.IOAcceleratorFamily 98.24
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.2.7f4
    com.apple.iokit.IOSurface 91.1
    com.apple.nvidia.driver.NVDAGK100Hal 8.2.6
    com.apple.nvidia.driver.NVDAResman 8.2.6
    com.apple.iokit.IOBluetoothFamily 4.2.7f4
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.driver.AppleHDAController 2.6.3f4
    com.apple.iokit.IOHDAFamily 2.6.3f4
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.driver.AppleSMC 3.1.8
    com.apple.driver.IOPlatformPluginFamily 5.7.1d6
    com.apple.driver.AppleThunderboltEDMSink 2.1.3
    com.apple.AppleGraphicsDeviceControl 3.6.22
    com.apple.iokit.IOAcceleratorFamily2 98.24
    com.apple.driver.AppleBacklightExpert 1.0.4
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.driver.AppleSMBusController 1.0.12d1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleUSBHIDKeyboard 170.15
    com.apple.driver.AppleHIDKeyboard 170.15
    com.apple.iokit.IOUSBHIDDriver 660.4.0
    com.apple.iokit.IOSCSIBlockCommandsDevice 3.6.7
    com.apple.iokit.IOUSBMassStorageClass 3.6.0
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.6.7
    com.apple.driver.AppleUSBMergeNub 650.4.0
    com.apple.driver.AppleUSBComposite 656.4.1
    com.apple.driver.AppleThunderboltDPInAdapter 3.1.7
    com.apple.driver.AppleThunderboltDPOutAdapter 3.1.7
    com.apple.driver.AppleThunderboltDPAdapterFamily 3.1.7
    com.apple.driver.AppleThunderboltPCIDownAdapter 1.4.5
    com.apple.driver.CoreStorage 380.70.2
    com.apple.iokit.IOUSBUserClient 660.4.2
    com.apple.driver.AppleThunderboltNHI 2.0.1
    com.apple.iokit.IOThunderboltFamily 3.3.1
    com.apple.iokit.IOEthernetAVBController 1.0.3b4
    com.apple.iokit.IO80211Family 640.36
    com.apple.driver.mDNSOffloadUserClient 1.0.1b5
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.iokit.IOAHCIFamily 2.6.5
    com.apple.iokit.IOUSBFamily 686.4.1
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 278.11.2
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.security.TMSafetyNet 7
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.DiskImages 371.1
    com.apple.iokit.IOStorageFamily 1.9
    com.apple.iokit.IOReportFamily 23
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 2.0
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    com.apple.kec.pthread 1
    System Profile:
    Model: iMac14,2, BootROM IM142.0118.B00, 4 processors, Intel Core i7, 3.5 GHz, 24 GB, SMC 2.15f2
    Graphics: NVIDIA GeForce GTX 780M, NVIDIA GeForce GTX 780M, PCIe, 4096 MB
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1333 MHz, 0x02FE, 0x45424A3430554738454655352D474E4C2D46
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1333 MHz, 0x02FE, 0x45424A3430554738454655352D474E4C2D46
    Memory Module: BANK 0/DIMM1, 8 GB, DDR3, 1333 MHz, 0x029E, 0x434D5358384758334D314131363030433130
    Memory Module: BANK 1/DIMM1, 8 GB, DDR3, 1333 MHz, 0x029E, 0x434D5358384758334D314131363030433130
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x111), Broadcom BCM43xx 1.0 (6.30.223.154.65)
    Bluetooth: Version 4.2.7f4 15112, 3 services, 23 devices, 1 incoming serial ports
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: APPLE SSD SD0128F, 121.33 GB
    Serial ATA Device: APPLE HDD ST3000DM001, 3 TB
    USB Device: My Book 1230
    USB Device: External USB 3.0
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Keyboard Hub
    USB Device: Apple Keyboard
    USB Device: USB2.0 Printer (Hi-speed)
    Thunderbolt Bus: iMac, Apple Inc., 23.10

  • Updated iPad2 to iOS6. Now it randomly freezes. Have to reboot (home   sleep key for 15 seconds) several times per day. Help!

    Help! I guess I can restore it to original factory settings but I am afraid of losing everything. If it helps the iPad is NOT jailbroken. Any ideas or do I have to wait for a future update?

    Just to clarify. Once I am done with the iPad and push the sleep button (upper right corner) or just let it sleep from inactivity for a couple minutes, the issue happens when I try to wake it up. I can see the unlock screen with the pin pad but the iPad becomes unresponsive and I cannot enter the numbers or I can enter the numbers but it freezes right after that while the pin pad is still visible. The only thing that fixes it is to hold the home and sleep button for 10-15 seconds and wait a minute for the whole thing to reboot. At that point it usually works. Still, what I liked about the iPad was the convenience of being immediately ready and now I have to reboot many times per day.
    I have an iPad2 with the latest update (6.01) and it is not jail broken. Apple help me please!

  • Indesign CS5 Buggy Crashes Many times per day

    I manage to crash CS5 at least 10 times per day. Cut and paste from one layter to another seems to do it alot. Running on a new Core I7 machine. Very disappointed. CS4 rarely crashed. Also I wish Adobe would focus on performace of their programs. CS5 has a few marginal things over 4 but to Adobe performance never seems to matter.
    Rob

    There are quite a few document elements I've ran into that were valid in CS3 layouts that InDesign CS5 will not copy and paste. I've not ran into any elements created in CS5 that didn't copy and paste expected.
    Generally I've found it to be elements that were never meant to be text frames that have been converted to text frames via the text tool click to create frame option. It's mostly when elements that should have been type on path through that tool being created as a frame.
    Also, though this forum occasionally has some venting is generally support oriented. This late into CS5 most people aren't really concerned with the relative displeasure of new users. Getting used to it is the best way and someone may come along with the link to the feature request for to vote for what you want to see. I'll sympathize that things aren't going to get better and performance is likely to continue to degrade, that much of the new stuff is designed for next generation hardware and won't perform even on great hardware now, such as live screen drawing and not making me swear with files that used to not make me swear (particularly EPS which although I know is dead is very much alive in the history of a 20+ year old art departments past files).

  • Firefox crashes multiple times per day

    Hello all!
    As of the last month or two, Firefox now crashes multiple times per day (even in Safe Mode). Firefox is fully updated, as are my Add-ons and Extensions.
    Yesterday alone, it crashed 14 times (which is about average).
    System Info:
    Windows 7 Home Premium
    Intel Core i7-3610QM CPU @ 2.30 GHz
    8.00 GB RAM
    64-bit OS
    Troubleshooting details:
    "application": {
    "name": "Firefox",
    "version": "30.0",
    "userAgent": "Mozilla/5.0 (Windows NT 6.1; WOW64; rv:30.0) Gecko/20100101 Firefox/30.0",
    "supportURL": "https://support.mozilla.org/1/firefox/30.0/WINNT/en-US/"
    "crashes": {
    "submitted": [
    "id": "bp-56f4b9d3-7646-4804-b1f0-6b86a2140712",
    "date": 1405205216202,
    "pending": false
    "id": "bp-252f490e-dbc4-4b6c-89bb-abc7a2140712",
    "date": 1405205139899,
    "pending": false
    "id": "bp-728dabc3-d5ae-42cc-a7b3-5ef922140712",
    "date": 1405204414387,
    "pending": false
    "id": "bp-f4cf2971-3a0d-4737-b3e4-81c2f2140712",
    "date": 1405204325838,
    "pending": false
    "id": "bp-717ff5d6-7edf-49c7-956f-247e52140712",
    "date": 1405204300027,
    "pending": false
    "id": "bp-e0f0c131-39c9-40e3-b6aa-45c312140712",
    "date": 1405184955514,
    "pending": false
    "id": "bp-8f6e4e47-0363-48d2-a7ff-875b92140712",
    "date": 1405184937698,
    "pending": false
    "id": "bp-9245429c-ccfc-41fa-9edd-79baa2140712",
    "date": 1405184884426,
    "pending": false
    "id": "bp-5e91822b-8fc3-411c-bcf7-c753f2140712",
    "date": 1405184798033,
    "pending": false
    "id": "bp-db406fb0-7045-41a5-b42c-522db2140712",
    "date": 1405183704121,
    "pending": false
    "id": "bp-6c913909-d1ef-4773-9712-fa1b92140712",
    "date": 1405183678385,
    "pending": false
    "id": "bp-65a30f3e-da4a-406b-9bfa-8cec72140712",
    "date": 1405178435488,
    "pending": false
    "id": "bp-11fbb2a8-923f-4ab3-b577-6dbe32140712",
    "date": 1405178411720,
    "pending": false
    "id": "bp-968183f6-086d-430a-a993-f1d892140712",
    "date": 1405127322874,
    "pending": false
    "id": "bp-017688f8-afc7-4b90-8fa7-2be692140711",
    "date": 1405040514173,
    "pending": false
    "id": "bp-342b9f6c-3ffd-489e-ae1c-b5ac62140711",
    "date": 1405037808744,
    "pending": false
    "id": "bp-62c1ea5a-24da-421f-9983-9b09c2140711",
    "date": 1405037772426,
    "pending": false
    "id": "bp-a7227128-b4dd-4cd5-997c-b9f132140711",
    "date": 1405037229671,
    "pending": false
    "id": "bp-2d0b1114-0d86-4f2b-ba7d-20f902140711",
    "date": 1405037207333,
    "pending": false
    "pending": 1
    "modifiedPreferences": {
    "accessibility.typeaheadfind.flashBar": 0,
    "accessibility.browsewithcaret": true,
    "browser.cache.disk.capacity": 358400,
    "browser.cache.disk.smart_size.first_run": false,
    "browser.cache.disk.smart_size.use_old_max": false,
    "browser.cache.disk.smart_size_cached_value": 358400,
    "browser.places.smartBookmarksVersion": 7,
    "browser.sessionstore.upgradeBackup.latestBuildID": "20140605174243",
    "browser.startup.homepage_override.mstone": "30.0",
    "browser.startup.homepage": "https://www.bing.com/",
    "browser.startup.homepage_override.buildID": "20140605174243",
    "dom.mozApps.used": true,
    "extensions.lastAppVersion": "30.0",
    "font.internaluseonly.changed": false,
    "gfx.direct3d.last_used_feature_level_idx": 0,
    "network.cookie.prefsMigrated": true,
    "network.cookie.cookieBehavior": 2,
    "places.database.lastMaintenance": 1405257179,
    "places.history.expiration.transient_current_max_pages": 104858,
    "plugin.state.npitunes": 0,
    "plugin.state.npesnsonar": 0,
    "plugin.state.npesnlaunch": 0,
    "plugin.importedState": true,
    "plugin.state.npsitesafety": 0,
    "plugin.state.npauthz": 0,
    "plugin.disable_full_page_plugin_for_types": "application/pdf,application/vnd.adobe.xfdf,application/vnd.fdf,application/vnd.adobe.xdp+xml",
    "plugin.state.npwlpg": 0,
    "plugin.state.npffwloplugin": 0,
    "plugin.state.npdeployjava": 0,
    "plugin.state.np_wtapp": 0,
    "privacy.cpd.offlineApps": true,
    "privacy.cpd.sessions": false,
    "privacy.donottrackheader.enabled": true,
    "privacy.sanitize.migrateFx3Prefs": true,
    "storage.vacuum.last.places.sqlite": 1405258871,
    "storage.vacuum.last.index": 0
    "graphics": {
    "numTotalWindows": 2,
    "numAcceleratedWindows": 2,
    "windowLayerManagerType": "Direct3D 10",
    "windowLayerManagerRemote": false,
    "adapterDescription": "Intel(R) HD Graphics 4000",
    "adapterVendorID": "0x8086",
    "adapterDeviceID": "0x0166",
    "adapterRAM": "Unknown",
    "adapterDrivers": "igdumd64 igd10umd64 igd10umd64 igdumd32 igd10umd32 igd10umd32",
    "driverVersion": "9.17.10.2843",
    "driverDate": "8-21-2012",
    "adapterDescription2": "NVIDIA GeForce GT 650M ",
    "adapterVendorID2": "0x10de",
    "adapterDeviceID2": "0x0fd1",
    "adapterRAM2": "2048",
    "adapterDrivers2": "nvd3dumx,nvwgf2umx,nvwgf2umx nvd3dum,nvwgf2um,nvwgf2um",
    "driverVersion2": "9.18.13.3788",
    "driverDate2": "5-19-2014",
    "isGPU2Active": false,
    "direct2DEnabled": true,
    "directWriteEnabled": true,
    "directWriteVersion": "6.2.9200.16571",
    "clearTypeParameters": "Gamma: 2200 Pixel Structure: R ClearType Level: 100 Enhanced Contrast: 100 ",
    "webglRenderer": "Google Inc. -- ANGLE (Intel(R) HD Graphics 4000 Direct3D9Ex vs_3_0 ps_3_0)",
    "info": {
    "AzureCanvasBackend": "direct2d",
    "AzureSkiaAccelerated": 0,
    "AzureFallbackCanvasBackend": "cairo",
    "AzureContentBackend": "direct2d"
    "javaScript": {
    "incrementalGCEnabled": true
    "accessibility": {
    "isActive": false,
    "forceDisabled": 0
    "libraryVersions": {
    "NSPR": {
    "minVersion": "4.10.6",
    "version": "4.10.6"
    "NSS": {
    "minVersion": "3.16 Basic ECC",
    "version": "3.16 Basic ECC"
    "NSSUTIL": {
    "minVersion": "3.16",
    "version": "3.16"
    "NSSSSL": {
    "minVersion": "3.16 Basic ECC",
    "version": "3.16 Basic ECC"
    "NSSSMIME": {
    "minVersion": "3.16 Basic ECC",
    "version": "3.16 Basic ECC"
    "userJS": {
    "exists": false
    "extensions": [
    "name": "Norton Toolbar",
    "version": "2014.7.2.6",
    "isActive": true,
    "id": "{2D3F3651-74B9-4795-BDEC-6DA2F431CB62}"
    "name": "Norton Vulnerability Protection",
    "version": "12.2.0.5 - 1",
    "isActive": true,
    "id": "{BBDA0591-3099-440a-AA10-41764D9DB4DB}"
    "name": "Troubleshooter",
    "version": "1.1a",
    "isActive": true,
    "id": "[email protected]"
    "name": "Windows Media Player Extension for Firefox",
    "version": "1.1",
    "isActive": true,
    "id": "jid0-nRwp7VvCqZcSRTppwWz2npqGEKw@jetpack"
    "name": "HTTPS-Everywhere",
    "version": "3.5.3",
    "isActive": false,
    "id": "[email protected]"
    }

    Was discussed here - https://support.mozilla.org/en-US/forums/contributors/709022 - in Feb 2013. And Bug #738661 was filed in March of 2012, with the consensus being.
    '''"In that case this is more likely a bug in Covenant Eyes than it is a bug in Firefox. If we have no hope of success through engaging with Covenant Eyes and can't blocklist the offending DLL from loading, can we at least get a support article posted instructing users how to work around this issue (ie. removing Covenant Eyes or switching to a different browser)?'''
    '''Additionally, I don't see much point in keeping this bug in the NEW state if it's unreasonable to expect that we'll ever fix this."'''

  • Difference between Time Management and Time Evaluation

    Hello
    Is there any Difference between Time Management and Time Evaluation? if yes, then what is it? I guess there's no diff, time evaluation is a report..
    please advice
    Thanks

    Hi Charlene,
    Time management can be divided into 3 steps
    1.Time Recording
    2.Time Evaluation
    3. Planning
    Time Evaluation :
    The recorded time data is grouped and converted to wage types which can be used by payroll for compensation.SAP provides a time evaluation program RPTIME00 for this purpose.
    Standard schemas TM00 and TM04 are used for evaluation of time data got from positive and negative time recording approaches.
    time evaluation program RPTIME00 also calculates accrual and entitlement for employees.
    Regards,
    Swapnil

Maybe you are looking for

  • Routing according to Organizational groups

    Hi all, In the current process which I am building, I have just one role. The role has just three activities. But the routing is based on groups and sub-groups and on call type and sub call type. For example:- If role is Support Center If groups are

  • My blue tooth will not pair with windows 8.1

    hp envy m6 notebook pc  having problems with my bluetooth will not pair with speaker after up graded to 8.1 ,and my simplepass dosent work eather.

  • Installing Actions for Elements on a Mac

    Does anyone know why I have no "Adobe" folder in "Applications Support" folder under library on my Mac hardrive while trying to download actions for Elements 10?

  • Podcast Info tab

    Can anyone tell me why, with OS 10.5.6, when in I tunes, I am having a problem closing the Podcast Info window with Com/W. I am having to quit iTunes do get rid of the Info Window. Thanx

  • Error "Values cannot be null"

    Hello. I'm trying load a picture from file using the cards that are dealt. But the Error I get is the values cannot be null. I'm trying to use a build path with a string on the class FiveCard. Then I'm trying to call its property from the frmGameBoar