Can anyone see whats up with this progam PLEASSSE!

public class Mean
     public static void main(String args[])
          int counter = 0;
          int sum = 0;
          float mean = 0;
          float dev = 0;
          float sum2 = 0;
          float total = 0;
          for(int x =1;x<=5;x++)
               counter = counter+1;
               sum = sum+x;
          mean = sum/counter;
          System.out.println("The mean is "+mean);
          for(float y=1; y<=5;y++)
                    sum2 = (Math.sqrt(y-mean));
                    total = total+sum2;
                    dev = (Math.sqrt(total/mean));
               System.out.println("The deviant is "+dev);
I THINK THE SQUARE ROOT IS WRONG IM NOT SURE HOW TO DO THEM

Ok for debuggin i putputted your parameters before sqrt with the following code
public class Mean
public static void main(String args[])
int counter = 0;
int sum = 0;
double mean = 0d;
double dev = 0d;
double sum2 = 0d;
double total = 0d;
for(int x =1;x<=5;x++)
counter = counter+1;
sum = sum+x;
mean = sum/counter;
System.out.println("The mean is "+mean);
for(double y=1d; y<=5;y++)
sum2 = (Math.sqrt(y-mean));
total = total+sum2;
dev = (Math.sqrt(total/mean));
System.out.println("Before Deviant: \n Total is:"+total+"\n Mean is: " +mean+ "\n Deviant is: " +dev+ "\n");
System.out.println("The deviant is "+dev);
}and got the following results.
The mean is 3.0
Before Deviant:
Total is:NaN
Mean is: 3.0
Deviant is: NaN
Before Deviant:
Total is:NaN
Mean is: 3.0
Deviant is: NaN
Before Deviant:
Total is:NaN
Mean is: 3.0
Deviant is: NaN
Before Deviant:
Total is:NaN
Mean is: 3.0
Deviant is: NaN
Before Deviant:
Total is:NaN
Mean is: 3.0
Deviant is: NaN
The deviant is NaN
Total does not seem to be right. This is because in the statement
sum2 = (Math.sqrt(y-mean));
y is less than mean and you cannot take a sqrt of a negative number. Thus thiserror propagates to give a total as undefined too. Now please figure out your logic to be right. I dont remember high school equations of deviants and stuff but I do remeber there is a very easy equaiton to calculate deviant independent of the mean.

Similar Messages

  • I just got the iPhone 5.  It's completely synced and working.  All my contacts are loaded.  However, caller ID is not working when I receive a call or a text.  Can anyone help me out with this?

    I just got the iPhone 5. It's completely synced and working.  All my contacts are loaded.  However, caller ID is not working when I receive a call or a text.  Can anyone help me out with this?

    Well, assuming all of the above, Notifications, etc., it just might be time for a visit to the Apple tore genius center for a session with the techs.  See if it is a fault in the hardware or just an iOS reinstall is the answer.
    One more thing you could try, backup so you have a record of content, then restore to factory conditions be an Erase All Contents and Settings.  Then restore from the backup you just made.  That has helped some with WiFi problems, may be it would work with your problems.
    But with that behavior of another app with problems, the geniuses looks like a less stressful thing to do.

  • I've bought the first season of Death Note on itunes, and i've was never able to download the 11th episode (Assault), it gives me error -50 each time I try. Can anyone please help me with this?

    the title pretty much has my question i guess. it's my first post so i'm not sur if you'll see all of it. I'll just copy paste it anyhow.
    i've bought the first season of Death Note on itunes, and i've was never able to download the 11th episode (Assault), it gives me error -50 each time I try. Can anyone please help me with this?

    Perhaps try the "Error -50," "-5000," "8003," "8008," or "-42023" section in the Specific Conditions and Alert Messages: (Mac OS X / Windows) section of the following document:
    iTunes: Advanced iTunes Store troubleshooting

  • HT201401 Q) Can anyone please help me with this: My in coming call ringing tone not working?

    Q) Can anyone please help me with this: My in coming call-messges ringing tone not working? All I am getting in Vabration + Flashing light when receiveing messages or incoming Calls. I am missing my phone Calls constantly. Please Help me?
    I have just received this phone as a replacement from my insurance company, as I had lost my own phone. It has taken them 3 weeks to sort this out. This has ruined my business because it has taken so long. I really do not have time to send it back to them. Because it will waist another three weeks for them to sort it out again. Please Help!

    HA! By Jove I've Got it! it was simples..
    TURN ON THE RINGING ON / OFF BUTTON ON THE SIDE OF YOUR PHONE JUST ABOVE THE VOLUME BUTTONS. THEN MAKE SURE THE VOLUME IS UP TO THE HIGHEST. NOW JUST TRY THIS!
    I ALSO LOOKED UP A MANUAL ON IPHONE4:
    Ringtones, Ring/Silent switch, and vibrate
    iPhone comes with ringtones that sound for incoming calls, Clock alarms, and the Clock timer.
    You can also purchase ringtones from songs in iTunes. See Chapter 22, iTunes Store, on page 94.
    Set the default ringtone: Go to Settings > Sounds > Ringtone.
    Turn the ringer on or off: Flip the switch on the side of iPhone.
    Important:  Clock alarms still sound even if you set the Ring/Silent switch to silent.
    Turn vibrate on or off: Go to Settings > Sounds.
    Assign a different ringtone for a contact: In Contacts, choose a contact, tap edit, then tap
    Ringtone and choose a ringtone.
    For more information, see Sounds on page 139.
    THE REASON MY PHONE HAD NO RING TONE, WAS SIMPLY BECAUSE THE VOLUME WAS TURNED DOWN. :-/
    I HOPE THIS HELPS OTHERS INFUTURE!   :-D

  • HT1338 I have a macbook Pro i7 mid november 2010. I am wondering if i can exchange my notebook with the latest one. Can anyone help me out with this query please.

    I have a macbook Pro i7 mid november 2010. I am wondering if i can exchange my notebook with the latest one. Can anyone help me out with this query please.

    You can sell your existing computer using eBay, Craigslist or the venue of your choice. You could then use the proceeds to purchase a new computer.

  • Does ANYONE know whats wrong with this program?!?!

    Hey(again),
    Does anyone know whats wrong with this program?:
    public class FloatingNumbersTest
    public static void main(String args[])
    float float1 =50.0f;
    float closeFloat=0.001f
    float farfloat=100.0f
    if (float1<=closeFloat)
    System.out.print("Float1 pretty close to zero");
    if (float1>=closeFloat)
    System.out.print("Float1 is near 0");
    if (float1>=farfloat)
    System.out.print("Float1 is not even close to zero!"0
    }There has seemed to be 5 errors!

    public class FloatingNumbersTest
    public static void main(String args[])
    float float1 =50.0f;
    float closeFloat=0.001f
    float farfloat=100.0f
    if (float1<=closeFloat)
    HERE        System.out.print("Float1 pretty close to zero");
    if (float1>=closeFloat)
    System.out.print("Float1 is near 0");
    if (float1>=farfloat)
    System.out.print("Float1 is not even close to zero!"0
    }you're missing the opening { for the first if.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Can anyone see the video at this website?

    Hi folks,
    I'm using Safari 5.0.3 and I'm trying to watch coverage (live) of the Egyptian protests. When I go to this webpage I can hear the report but I can't see the video. Then a little popup shows up saying there's a plug-in problem. Is there a plug-in I need to have to view this or is this some other problem? Any help is greatly appreciated.
    Renee

    Yeah, here it is. Looks like Thread 9 might be worth taking a closer look at but none of this means anything to me.
    Process: WebKitPluginHost [229]
    Path: /System/Library/Frameworks/WebKit.framework/WebKitPluginHost.app/Contents/MacOS /WebKitPluginHost
    Identifier: com.apple.WebKit.PluginHost
    Version: 6533 (6533.13)
    Build Info: WebKitPluginHost-75331300~12
    Code Type: X86 (Native)
    Parent Process: WebKitPluginAgent [228]
    Date/Time: 2011-02-02 17:58:36.111 -0600
    OS Version: Mac OS X 10.6.6 (10J567)
    Report Version: 6
    Interval Since Last Report: 1191942 sec
    Crashes Since Last Report: 4
    Per-App Interval Since Last Report: 537144 sec
    Per-App Crashes Since Last Report: 4
    Anonymous UUID: BF950AA3-BFFE-429A-A5F7-E93239A73347
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000010
    Crashed Thread: 9
    Thread 0: Dispatch queue: com.apple.main-thread
    0 ...dia.FlashPlayer-10.6.plugin 0x13be9c82 0x139c0000 + 2268290
    1 ...dia.FlashPlayer-10.6.plugin 0x13befb3a 0x139c0000 + 2292538
    2 ...dia.FlashPlayer-10.6.plugin 0x13bf094b 0x139c0000 + 2296139
    3 ...dia.FlashPlayer-10.6.plugin 0x13c16586 0x139c0000 + 2450822
    4 ...dia.FlashPlayer-10.6.plugin 0x13c1c0d8 0x139c0000 + 2474200
    5 ...dia.FlashPlayer-10.6.plugin 0x13dfff17 unregister_ShockwaveFlash + 27591
    6 ...dia.FlashPlayer-10.6.plugin 0x13e6f4e9 unregister_ShockwaveFlash + 483737
    7 com.apple.QuartzCore 0x94442f80 CAOpenGLLayerDraw(CAOpenGLLayer*, double, CVTimeStamp const*, unsigned int) + 1026
    8 com.apple.QuartzCore 0x944438b7 -[CAOpenGLLayer _display] + 512
    9 com.apple.QuartzCore 0x941c8f45 CALayerDisplayIfNeeded + 621
    10 com.apple.QuartzCore 0x941c8310 CA::Context::commit_transaction(CA::Transaction*) + 362
    11 com.apple.QuartzCore 0x941c7f58 CA::Transaction::commit() + 316
    12 com.apple.CoreFoundation 0x97e38e02 __CFRunLoopDoObservers + 1186
    13 com.apple.CoreFoundation 0x97df448a CFRunLoopRunSpecific + 490
    14 com.apple.CoreFoundation 0x97df4291 CFRunLoopRunInMode + 97
    15 com.apple.HIToolbox 0x95712004 RunCurrentEventLoopInMode + 392
    16 com.apple.HIToolbox 0x95711dbb ReceiveNextEventCommon + 354
    17 com.apple.HIToolbox 0x95711c40 BlockUntilNextEventMatchingListInMode + 81
    18 com.apple.AppKit 0x90d9778d _DPSNextEvent + 847
    19 com.apple.AppKit 0x90d96fce -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    20 com.apple.AppKit 0x90d59247 -[NSApplication run] + 821
    21 com.apple.WebKit.PluginHost 0x1895440f 0x18953000 + 5135
    22 com.apple.WebKit.PluginHost 0x1895404d 0x18953000 + 4173
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x98cd3982 kevent + 10
    1 libSystem.B.dylib 0x98cd409c dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x98cd3559 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x98cd32fe dispatch_workerthread2 + 240
    4 libSystem.B.dylib 0x98cd2d81 pthreadwqthread + 390
    5 libSystem.B.dylib 0x98cd2bc6 start_wqthread + 30
    Thread 2:
    0 ...dia.FlashPlayer-10.6.plugin 0x13bdfc32 0x139c0000 + 2227250
    1 ...dia.FlashPlayer-10.6.plugin 0x13be007f 0x139c0000 + 2228351
    2 ...dia.FlashPlayer-10.6.plugin 0x13bd4b06 0x139c0000 + 2181894
    3 ...dia.FlashPlayer-10.6.plugin 0x13bef150 0x139c0000 + 2290000
    4 ...dia.FlashPlayer-10.6.plugin 0x13bef9b5 0x139c0000 + 2292149
    5 ...dia.FlashPlayer-10.6.plugin 0x139d8cfc 0x139c0000 + 101628
    6 ...dia.FlashPlayer-10.6.plugin 0x13e0497e unregister_ShockwaveFlash + 46638
    7 ...dia.FlashPlayer-10.6.plugin 0x13e04ab5 unregister_ShockwaveFlash + 46949
    8 libSystem.B.dylib 0x98cda85d pthreadstart + 345
    9 libSystem.B.dylib 0x98cda6e2 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x98cdb0a6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x98cdad62 pthread_condwait + 1191
    2 libSystem.B.dylib 0x98cdc9f8 pthreadcondwait$UNIX2003 + 73
    3 ...dia.FlashPlayer-10.6.plugin 0x13e0487f unregister_ShockwaveFlash + 46383
    4 ...dia.FlashPlayer-10.6.plugin 0x139d8d34 0x139c0000 + 101684
    5 ...dia.FlashPlayer-10.6.plugin 0x13e0497e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x13e04ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x98cda85d pthreadstart + 345
    8 libSystem.B.dylib 0x98cda6e2 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x98cad15a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x98cdace5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x98d09ac8 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x13e04841 unregister_ShockwaveFlash + 46321
    4 ...dia.FlashPlayer-10.6.plugin 0x13ba248f 0x139c0000 + 1975439
    5 ...dia.FlashPlayer-10.6.plugin 0x13e0497e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x13e04ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x98cda85d pthreadstart + 345
    8 libSystem.B.dylib 0x98cda6e2 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x98cad15a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x98cdace5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x98d09ac8 pthreadcond_timedwait_relativenp + 47
    3 ...dia.FlashPlayer-10.6.plugin 0x13e04841 unregister_ShockwaveFlash + 46321
    4 ...dia.FlashPlayer-10.6.plugin 0x13cf4822 0x139c0000 + 3360802
    5 ...dia.FlashPlayer-10.6.plugin 0x13e0497e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x13e04ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x98cda85d pthreadstart + 345
    8 libSystem.B.dylib 0x98cda6e2 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x98cdb0a6 _semwaitsignal + 10
    1 libSystem.B.dylib 0x98cdad62 pthread_condwait + 1191
    2 libSystem.B.dylib 0x98cdc9f8 pthreadcondwait$UNIX2003 + 73
    3 ...dia.FlashPlayer-10.6.plugin 0x13e0487f unregister_ShockwaveFlash + 46383
    4 ...dia.FlashPlayer-10.6.plugin 0x13b4821d 0x139c0000 + 1606173
    5 ...dia.FlashPlayer-10.6.plugin 0x13b48a3e 0x139c0000 + 1608254
    6 ...dia.FlashPlayer-10.6.plugin 0x13b48b8b 0x139c0000 + 1608587
    7 ...dia.FlashPlayer-10.6.plugin 0x13e0497e unregister_ShockwaveFlash + 46638
    8 ...dia.FlashPlayer-10.6.plugin 0x13e04ab5 unregister_ShockwaveFlash + 46949
    9 libSystem.B.dylib 0x98cda85d pthreadstart + 345
    10 libSystem.B.dylib 0x98cda6e2 thread_start + 34
    Thread 7: com.apple.CFSocket.private
    0 libSystem.B.dylib 0x98ccc0c6 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x97e34c83 __CFSocketManager + 1091
    2 libSystem.B.dylib 0x98cda85d pthreadstart + 345
    3 libSystem.B.dylib 0x98cda6e2 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x98cea5fe recvfrom$UNIX2003 + 10
    1 libSystem.B.dylib 0x98d0a3c7 recv$UNIX2003 + 54
    2 ...dia.FlashPlayer-10.6.plugin 0x13e1b59b unregister_ShockwaveFlash + 139851
    3 ...dia.FlashPlayer-10.6.plugin 0x13e1a3d5 unregister_ShockwaveFlash + 135301
    4 ...dia.FlashPlayer-10.6.plugin 0x13b47c66 0x139c0000 + 1604710
    5 ...dia.FlashPlayer-10.6.plugin 0x13e0497e unregister_ShockwaveFlash + 46638
    6 ...dia.FlashPlayer-10.6.plugin 0x13e04ab5 unregister_ShockwaveFlash + 46949
    7 libSystem.B.dylib 0x98cda85d pthreadstart + 345
    8 libSystem.B.dylib 0x98cda6e2 thread_start + 34
    Thread 9 Crashed:
    0 com.apple.VideoToolbox 0x99456a63 VP3VideoDecoder_DecodeFrameCompleteCallback + 43
    1 com.apple.AppleVAFramework 0x9503b978 VP3GetSupportedPixelFormats + 1336
    2 AVAHDVP3.dylib 0x187bf076 HDDecThread_HWSliceDecoder_SampleID::outputframe(int, int, int, int, bool) + 200
    3 AVAHDVP3.dylib 0x187ce7fe slicedecoder_completion_NVIDIAVP2(void*) + 3108
    4 libSystem.B.dylib 0x98cda85d pthreadstart + 345
    5 libSystem.B.dylib 0x98cda6e2 thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x98cad15a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x98cdace5 pthread_condwait + 1066
    2 libSystem.B.dylib 0x98d09ac8 pthreadcond_timedwait_relativenp + 47
    3 com.apple.audio.CoreAudio 0x986393c7 CAGuard::WaitFor(unsigned long long) + 219
    4 com.apple.audio.CoreAudio 0x9863c3f9 CAGuard::WaitUntil(unsigned long long) + 289
    5 com.apple.audio.CoreAudio 0x98639cf6 HP_IOThread::WorkLoop() + 1892
    6 com.apple.audio.CoreAudio 0x9863958d HPIOThread::ThreadEntry(HPIOThread*) + 17
    7 com.apple.audio.CoreAudio 0x986394a4 CAPThread::Entry(CAPThread*) + 140
    8 libSystem.B.dylib 0x98cda85d pthreadstart + 345
    9 libSystem.B.dylib 0x98cda6e2 thread_start + 34
    Thread 11:
    0 libSystem.B.dylib 0x98cd2a12 _workqkernreturn + 10
    1 libSystem.B.dylib 0x98cd2fa8 pthreadwqthread + 941
    2 libSystem.B.dylib 0x98cd2bc6 start_wqthread + 30
    Thread 9 crashed with X86 Thread State (32-bit):
    eax: 0x001701a0 ebx: 0x00000000 ecx: 0x001701a0 edx: 0x00170190
    edi: 0x001701a0 esi: 0x00000001 ebp: 0xb0417c78 esp: 0xb0417c40
    ss: 0x0000001f efl: 0x00010206 eip: 0x99456a63 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x0000001f gs: 0x00000037
    cr2: 0x00000010
    Binary Images:
    0xe1000 - 0xe4ff2 +com.macromedia.Flash Player.plugin 10.1.102.64 (10.1.102.64) <0E4F768E-4FF0-90B4-7387-C86A3EC48C43> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x783000 - 0x78dff7 com.apple.IOFWDVComponents 1.9.9 (1.9.9) <5B4E7BD7-EF5A-2F5C-DF8E-3D4A7B59F779> /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x7c1000 - 0x7ebffb com.apple.QuickTimeIIDCDigitizer 7.6.6 (1756) <96489BA5-A106-36A1-FA42-F7F2D6AA098C> /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x7f3000 - 0x7f7ff3 com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <F402CF88-D96C-42A0-3207-49759F496AE8> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x125de000 - 0x125deff7 com.apple.VideoDecodeAcceleration 1.1 (4) <2870DAF2-D95D-CCF7-D0F9-26A0DAD0E69F> /System/Library/Frameworks/VideoDecodeAcceleration.framework/VideoDecodeAcceler ation
    0x126c8000 - 0x126d6fe7 libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <07211458-FD06-9FEF-3DF4-2E5F0304D4BC> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x126da000 - 0x126ecff7 libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <8D606435-1A3C-FE0B-824A-1386809FFFF5> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x1275a000 - 0x12760ffb com.apple.audio.AppleHDAHALPlugIn 1.9.9 (1.9.9f12) <82BFF5E9-2B0E-FE8B-8370-445DD94DA434> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x139c0000 - 0x143adff3 +com.macromedia.FlashPlayer-10.6.plugin 10.1.102.64 (10.1.102.64) <7F846A86-5E18-B6E5-4DA2-E5B46E7CF5B2> /Library/Internet Plug-Ins/Flash Player.plugin/Contents/PlugIns/FlashPlayer-10.6.plugin/Contents/MacOS/FlashPlay er-10.6
    0x14446000 - 0x14482fe3 com.apple.QuickTimeFireWireDV.component 7.6.6 (1756) <5723A7A8-2C99-561B-8D87-C8B0716436FA> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x1448e000 - 0x144ddfe3 com.apple.QuickTimeUSBVDCDigitizer 2.6.5 (2.6.5) <9DABC446-2388-C209-8912-3A33F6178B18> /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0x144e8000 - 0x14660fe7 GLEngine ??? (???) <3A6C5513-7428-2242-2892-B429C72343CB> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x14692000 - 0x14a97fe7 libclh.dylib 3.1.1 C (3.1.1) <745CBD72-DF1F-EC12-BE51-4EEA9847EADF> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x14b0f000 - 0x14b33fe7 GLRendererFloat ??? (???) <1274B762-2FB9-48FE-EAFD-C459B2B4BECC> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x187b7000 - 0x187e4ff3 AVAHDVP3.dylib ??? (???) <F2A201E1-085A-5219-8425-93239B564168> /System/Library/Extensions/AppleVADriver.bundle/Contents/MacOS/AVAHDVP3.dylib
    0x18953000 - 0x1896efe7 com.apple.WebKit.PluginHost 6533 (6533.13) <3332FD2F-AFC1-396F-B2FF-2B58DC6476DA> /System/Library/Frameworks/WebKit.framework/WebKitPluginHost.app/Contents/MacOS /WebKitPluginHost
    0x18977000 - 0x18977ff7 WebKitPluginHostShim.dylib ??? (???) <7FC31FB4-EEF0-6595-36A1-A8C27CFE598A> /System/Library/Frameworks/WebKit.framework/WebKitPluginHost.app/Contents/MacOS /WebKitPluginHostShim.dylib
    0x1acfe000 - 0x1adb7fff com.apple.GeForceVADriver 1.6.26 (6.2.6) <63726FC1-B3AA-90BF-19C6-54E9BB0B0B67> /System/Library/Extensions/GeForceVADriver.bundle/Contents/MacOS/GeForceVADrive r
    0x70000000 - 0x700cbff3 com.apple.audio.units.Components 1.6.3 (1.6.3) <5DA35A22-1B05-6BD3-985A-26A7A2CD6289> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8f0c8000 - 0x8f811ff7 com.apple.GeForceGLDriver 1.6.26 (6.2.6) <518182BB-5A3C-5F4C-3A84-17BB8E385BBF> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <A4F6ADCC-6448-37B4-ED6C-ABB2CD06F448> /usr/lib/dyld
    0x90003000 - 0x90047fe7 com.apple.Metadata 10.6.3 (507.15) <A23633F1-E913-66C2-A073-E2B174C09B18> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9008e000 - 0x90091fe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x90101000 - 0x90108ff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6877F0D8-0DCF-CB98-5304-913667FF50FA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x90109000 - 0x9010ffff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x9015e000 - 0x9028dfe3 com.apple.audio.toolbox.AudioToolbox 1.6.5 (1.6.5) <0A0F68E5-4806-DB51-764B-D97554B801AD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x902df000 - 0x902e1ff7 libRadiance.dylib ??? (???) <10048B4A-2AE8-A4E2-21B8-C6E7A8C5B76F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x902e2000 - 0x9037ffe3 com.apple.LaunchServices 362.2 (362.2) <F3952CAB-322F-A12F-57AF-8B91B1D76DDE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x90490000 - 0x904eafe7 com.apple.CorePDF 1.3 (1.3) <696ADD5F-C038-A63B-4732-82E4109379D7> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x904eb000 - 0x904f2ff3 com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x904f3000 - 0x90500ff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x90501000 - 0x9062ffe7 com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90630000 - 0x90630ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x90632000 - 0x90675ff7 com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x90676000 - 0x906b3ff7 com.apple.SystemConfiguration 1.10.5 (1.10.2) <362DF639-6E5F-9371-9B99-81C581A8EE41> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x906f5000 - 0x906f8ff7 libCoreVMClient.dylib ??? (???) <973B9E1F-70B3-2E76-B14B-E57F306AD2DF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x90800000 - 0x90849fe7 libTIFF.dylib ??? (???) <AC1FC806-F7F4-174B-375F-FE5D6008666C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9084a000 - 0x9084aff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9084b000 - 0x90957ff7 libGLProgrammability.dylib ??? (???) <A077BFEA-19C6-9F48-2F36-8E4E55376F49> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x90958000 - 0x90bcbfe7 com.apple.Foundation 6.6.4 (751.42) <ACC0BAEB-C590-7052-3AB2-86C207C3D6D4> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90bcc000 - 0x90becfe7 libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <751955F3-21FB-A03A-4E92-1F3D4EFB8C5B> /usr/lib/libresolv.9.dylib
    0x90bed000 - 0x90ca3ff7 libFontParser.dylib ??? (???) <33F62EE1-E457-C6FD-369E-E86745B94A4B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x90ca4000 - 0x90ca4ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x90ca5000 - 0x90cecffb com.apple.CoreMediaIOServices 134.0 (1160) <D4F40A28-4E31-3210-7C2B-59D8A1903FB2> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x90ced000 - 0x90cfbfe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
    0x90d4f000 - 0x9162fff7 com.apple.AppKit 6.6.7 (1038.35) <ABC7783C-E4D5-B848-BED6-99451D94D120> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91750000 - 0x91a70ff3 com.apple.CoreServices.CarbonCore 861.23 (861.23) <B08756E4-32C5-CC33-0268-7C00A5ED7537> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x91ac2000 - 0x91affff7 com.apple.CoreMedia 0.484.20 (484.20) <105DDB24-E45F-5473-99E1-B09FDEAE4500> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x91b00000 - 0x92a52fef com.apple.QuickTimeComponents.component 7.6.6 (1756) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x92a9a000 - 0x92adeff3 com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x92adf000 - 0x932ce557 com.apple.CoreGraphics 1.545.0 (???) <1AB39678-00D5-FB88-3B41-93D78348E0DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9393c000 - 0x9395bff7 com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x93967000 - 0x93968ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x93969000 - 0x939e9feb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x939ea000 - 0x93a92ffb com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x93aa3000 - 0x93aa4ff7 com.apple.audio.units.AudioUnit 1.6.5 (1.6.5) <BE4C2495-B758-AD22-DCC0-56A6791E948E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93b6e000 - 0x93b72ff7 libGFXShared.dylib ??? (???) <9E14BE2F-C863-40E9-41A6-1BE9045663A0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x93b73000 - 0x93b81ff7 com.apple.opengl 1.6.12 (1.6.12) <9F13B279-F289-18AC-5D86-DCD52BAF087D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93c0c000 - 0x93c47feb libFontRegistry.dylib ??? (???) <4FB144ED-8AF9-27CF-B315-DCE5575D5231> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x93c48000 - 0x93c6afef com.apple.DirectoryService.Framework 3.6 (621.9) <F2EEE9D7-D4FB-14F3-E647-ABD32754F557> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x93c6b000 - 0x93d24fe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
    0x93d25000 - 0x93d46fe7 com.apple.opencl 12.3 (12.3) <DEA600BF-4F54-66B5-DB2F-DC57FD518543> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x93d47000 - 0x93d53ff7 libkxld.dylib ??? (???) <F0E915AD-6B32-0D5E-D24B-B188447FDD23> /usr/lib/system/libkxld.dylib
    0x93daf000 - 0x93dc3ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x93dc4000 - 0x93e56fe7 com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x93e5e000 - 0x93e68fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93e69000 - 0x93f33fef com.apple.CoreServices.OSServices 357 (357) <CF9530AD-F581-B831-09B6-16D9F9283BFA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x93f3b000 - 0x93f3dff7 com.apple.securityhi 4.0 (36638) <38D36D4D-C798-6ACE-5FA8-5C001993AD6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93f46000 - 0x93faaffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93fab000 - 0x941a8ff7 com.apple.JavaScriptCore 6533.19 (6533.19.1) <85A6BFDD-CBB6-7490-748D-8EA8B9B7FDD8> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x941b3000 - 0x941bdffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x941be000 - 0x94529ff7 com.apple.QuartzCore 1.6.3 (227.34) <CC1C1631-D8D1-D416-171E-A1683274E479> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9452a000 - 0x9456cff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <3F0ED200-741B-4E27-B89F-634B131F5E9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x9456d000 - 0x94591ff7 libJPEG.dylib ??? (???) <46AF3A0F-2B8D-87B9-62D4-0905678A64DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x94592000 - 0x94597ff7 com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x94598000 - 0x9459bff7 libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <B624AACE-991B-0FFA-2482-E69970576CE1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x946c1000 - 0x9489cff3 libType1Scaler.dylib ??? (???) <A7AB841A-3F40-E0B8-ADDD-44014C7287C9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x9489d000 - 0x948deff7 libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <16DAE1A5-937A-1CA2-D98F-2AF958B62993> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x948df000 - 0x94925ff7 libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x94926000 - 0x94d3cff7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x94d3d000 - 0x94d4dff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94d4e000 - 0x94d9eff7 com.apple.framework.familycontrols 2.0.2 (2020) <AF7F86F1-F7BF-CBA8-7A4A-D8F7A19F9601> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x94d9f000 - 0x94e4dff3 com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x94e4e000 - 0x94ea6fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x94ea7000 - 0x94eabff7 IOSurface ??? (???) <D849E1A5-6B0C-2A05-2765-850EC39BA2FF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x94eac000 - 0x94edefe3 libTrueTypeScaler.dylib ??? (???) <6E9D1A50-330E-F1F4-F93D-9ECC8A61B21A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x94f1b000 - 0x94f33ff7 com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x94fa9000 - 0x94fd1ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x94fd2000 - 0x94fd2ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94fd3000 - 0x9504efff com.apple.AppleVAFramework 4.10.12 (4.10.12) <89C4EBE2-FE27-3160-0BD1-D0C2ED5F3605> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x951ec000 - 0x9526effb SecurityFoundation ??? (???) <3670AE8B-06DA-C447-EB14-79423DB9C474> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9526f000 - 0x9531fff3 com.apple.ColorSync 4.6.3 (4.6.3) <AA1076EA-7665-3005-A837-B661260DBE54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x95320000 - 0x95381fe7 com.apple.CoreText 3.5.0 (???) <BB50C045-25F5-65B8-B1DB-8CDAEF45EB46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x95382000 - 0x953cffeb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x955ad000 - 0x9567efe3 ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <8FDB4C40-D453-DA53-2A66-9A53998AB23C> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x9567f000 - 0x956dcff7 com.apple.framework.IOKit 2.0 (???) <A769737F-E0D6-FB06-29B4-915CF4F43420> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x956dd000 - 0x95a01fef com.apple.HIToolbox 1.6.4 (???) <4699C8BB-DE74-C530-564B-D131F74C9B54> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x95a6d000 - 0x95a75ff7 com.apple.DisplayServicesFW 2.3.0 (283) <48D94761-7340-D029-99E3-9BE0262FAF22> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x95b6b000 - 0x95b9eff7 com.apple.AE 496.4 (496.4) <7F34EC47-8429-3077-8158-54F5EA908C66> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x95b9f000 - 0x95bb1ff7 com.apple.MultitouchSupport.framework 207.10 (207.10) <E1A6F663-570B-CE54-0F8A-BBCCDECE3B42> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x95bb2000 - 0x95bc6fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x95bc7000 - 0x95bd8ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <97511CC7-FE23-5AC3-2EE2-B5479FAEB316> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x95bd9000 - 0x95c52ff7 com.apple.PDFKit 2.5.1 (2.5.1) <CEF13510-F08D-3177-7504-7F8853906DE6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x95c53000 - 0x95d96fef com.apple.QTKit 7.6.6 (1756) <4D809734-4E1B-8E18-C825-86C5422FC3DC> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x95d97000 - 0x95e32ff7 com.apple.ApplicationServices.ATS 4.4 (???) <ECB16606-4DF8-4AFB-C91D-F7947C26040F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x95e4c000 - 0x95ea2ff7 com.apple.MeshKitRuntime 1.1 (49.2) <F1EAE9EC-2DA3-BAFD-0A8C-6A3FFC96D728> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x95ea3000 - 0x96025fe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <35DB7644-0780-D2AB-F6A9-45F28D2D434A> /usr/lib/libicucore.A.dylib
    0x96026000 - 0x96069ff7 libGLU.dylib ??? (???) <BB66EDB2-D5FE-61C9-21BE-747F9862819C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x960c2000 - 0x960c2ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x960c3000 - 0x9615bfe7 edu.mit.Kerberos 6.5.10 (6.5.10) <8B83AFF3-C074-E47C-4BD0-4546EED0D1BC> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96573000 - 0x965a3ff7 com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x965a4000 - 0x965f5ff7 com.apple.HIServices 1.8.2 (???) <F6EAC2D1-902A-9374-FC4B-43B50E054416> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x965f6000 - 0x96664ff7 com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x96665000 - 0x96665ff7 com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x970b2000 - 0x970d9ff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x970f3000 - 0x971cefeb com.apple.DesktopServices 1.5.9 (1.5.9) <CED00AC1-924B-0E45-7D5E-1CEA8929F5BE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x97416000 - 0x974c0fe7 com.apple.CFNetwork 454.11.5 (454.11.5) <D8963574-285A-3BD6-6B25-07D39C6F67A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x974c1000 - 0x974d1ff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x974d2000 - 0x975d4fef com.apple.MeshKitIO 1.1 (49.2) <34322CDD-E67E-318A-F03A-A3DD05201046> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x975fc000 - 0x975ffffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9761e000 - 0x9764fff7 libGLImage.dylib ??? (???) <E3EC8E92-4DDD-E7B8-3D38-C5A5160A4930> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x976f0000 - 0x977cdff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x97806000 - 0x9780cfe7 com.apple.CommerceCore 1.0 (6) <41C2A87D-93D8-56C1-9292-0400699F23C1> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x9780d000 - 0x979c6feb com.apple.ImageIO.framework 3.0.4 (3.0.4) <C145139E-24C4-5A3D-B17C-809D528354B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x979c7000 - 0x97a06ff7 com.apple.ImageCaptureCore 1.0.3 (1.0.3) <7E02D104-F31C-CF72-71B4-DA5DF7B48337> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x97a0d000 - 0x97d06fef com.apple.QuickTime 7.6.6 (1756) <F08B13B6-31D7-BD18-DA87-A0CDFCF13B8F> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x97db8000 - 0x97f33fe7 com.apple.CoreFoundation 6.6.4 (550.42) <C78D5079-663E-9734-7AFA-6CE79A0539F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x97f34000 - 0x97f35ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x97f36000 - 0x97f5cffb com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x97f5d000 - 0x97f68ff7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <CB2510BD-A5B3-9D90-5917-C73F6ECAC913> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x97f75000 - 0x98076fe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x980d7000 - 0x98115ff7 com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x98116000 - 0x98180fe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x98181000 - 0x98185ff7 libGIF.dylib ??? (???) <DA5758A4-71B0-DD6E-7402-B7FB15387569> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x98186000 - 0x982b2ffb com.apple.MediaToolbox 0.484.20 (484.20) <D67788A2-B772-C5DB-B12B-173B2F8EE40B> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x982b3000 - 0x982b3ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x982b4000 - 0x982edff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <E0D512DD-365D-46A0-F50C-435BC250424F> /usr/lib/libcups.2.dylib
    0x98307000 - 0x983b4fe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x983b5000 - 0x98618fff com.apple.security 6.1.1 (37594) <B6F2A8BF-C1B7-A0E2-83FB-4FF265E9BDDC> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x98619000 - 0x98693fff com.apple.audio.CoreAudio 3.2.6 (3.2.6) <F7C9B01D-45AD-948B-2D26-9736524C1A33> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x98694000 - 0x98703ff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <2FC2178F-FEF9-6E3F-3289-A6307B1A154C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x98706000 - 0x9883dff7 com.apple.CoreAUC 6.04.04 (6.04.04) <050D9D16-AAE7-3460-4318-8449574F26C7> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x9883e000 - 0x9883eff7 com.apple.Carbon 150 (152) <9252D5F2-462D-2C15-80F3-109644D6F704> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9883f000 - 0x9883fff7 com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x98840000 - 0x9884bff7 libGL.dylib ??? (???) <48405993-0AE9-292B-6705-C3525528682A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x98859000 - 0x98874ff7 libPng.dylib ??? (???) <E14178E0-B92D-94EA-DACB-04F346D7534C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x98971000 - 0x9897aff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9897b000 - 0x98ba6ff3 com.apple.QuartzComposer 4.2 ({156.28}) <08AF01DC-110D-9443-3916-699DBDED0149> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x98ba7000 - 0x98cabfe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <BDEFA030-5E75-7C47-2904-85AB16937F45> /usr/lib/libcrypto.0.9.8.dylib
    0x98cac000 - 0x98e53ff7 libSystem.B.dylib 125.2.1 (compatibility 1.0.0) <62291026-D016-705D-DC1E-FC2B09D47DE5> /usr/lib/libSystem.B.dylib
    0x98e80000 - 0x98e9cfe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x98f14000 - 0x98f29fff com.apple.ImageCapture 6.0.1 (6.0.1) <E7ED2AC1-834C-A44E-531E-EC05F0496DBF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x98f2a000 - 0x9935fff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x993cc000 - 0x99885ffb com.apple.VideoToolbox 0.484.20 (484.20) <E7B9F015-2569-43D7-5268-375ED937ECA5> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x9988e000 - 0x99a70fff com.apple.imageKit 2.0.3 (1.0) <B4DB05F7-01C5-35EE-7AB9-41BD9D63F075> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0xba900000 - 0xba916ff7 libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <B339B85B-1B6D-81D8-1281-7B8C8A517329> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0xbab00000 - 0xbab21fe7 libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <EF3E3210-927F-DB9F-4CD4-4039A2AE2F84> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <62291026-D016-705D-DC1E-FC2B09D47DE5> /usr/lib/libSystem.B.dylib
    Model: MacBookPro5,4, BootROM MBP53.00AC.B03, 2 processors, Intel Core 2 Duo, 2.53 GHz, 4 GB, SMC 1.49f2
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.36.1)
    Bluetooth: Version 2.3.8f7, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: FUJITSU MJA2250BH FFS G1, 232.89 GB
    Serial ATA Device: HL-DT-ST DVDRW GS23N
    USB Device: Internal Memory Card Reader, 0x05ac (Apple Inc.), 0x8403, 0x26500000
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0x24400000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0236, 0x04600000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x04500000
    USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x06100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8213, 0x06110000

  • Can anyone spot the problem with this coding??

    can anyone spot this problem with my program. it keeps saying
    "missing return statement } " with a little arrow beneath the bracket.
    many thanks
    public class Game extends GameInterface
         GameInterface gameInt = new GameInterface();
         String boardString;
         // final static char NOUGHT='O', CROSS='X';
         private int square = 0;
         Player player1 = new Player();
         Player player2 = new Player();
         String firstPlayer, secondPlayer;
         public Game() // Constructor
              boardString = "0123456789";
    public boolean initialise(boolean first)
                   gameInt.setPlayerNames(player1,player2);
              MyPrint.myPrintln("Player one name is " + player1.getName());
              MyPrint.myPrintln("Player two name is " + player2.getName());
              String P1 = player1.getName();
              String P2 = player2.getName();
    }

    It means you declare your method to return something, but you don't actually return anything.

  • Getting an error while using if statement in calculated column.can anyone please help me with this issue

    I am trying to learn HANA on my own.i have product id,product name,delivery date and Grossamount in my calculated view.i am trying to create calculated column where i need Grossamount in two columns based on delivery date.I have 2012 and 2013 as values for my delivery date.so i have created two column as grossamount_2012 and grossamount_2013.if i have delivery date as 4thdec,2012 i want the grossamount value to be in coloumn grossamount_2012 and the grossamount_2013 should be blank.i have written an expression like this
    if("Deliverydate" <= longdate(2012-12-04),"Grossamount","0")
    and it looks like this is wrong.i am getting the text Grossamount rather than values for that field in my output.so can anyone help me please?

    Hi chandra
    i am trying to get the same result by using sql script and CE functions.i have written the following code
    select A."PRODUCTID",
           E."TEXT" as "PRODUCTNAME",
           C."COUNTRY",
           D."DELIVERYDATE",
           Sum(D."GROSSAMOUNT") as "GROSSAMOUNT"
           from "SAP_HANA_DEMO"."sap.hana.democontent.epm.data::EPM.MasterData.Products" as A     
           inner join "SAP_HANA_DEMO"."sap.hana.democontent.epm.data::EPM.MasterData.BusinessPartner" as B
           on A."SUPPLIERID" = B."PARTNERID"      
           inner join "SAP_HANA_DEMO"."sap.hana.democontent.epm.data::EPM.MasterData.Addresses" as C
           on B."ADDRESSID" = C."ADDRESSID"
           inner join "SAP_HANA_DEMO"."sap.hana.democontent.epm.data::EPM.Purchase.Item" as D
           on A."PRODUCTID" = D."PRODUCTID"
           inner join "SAP_HANA_DEMO"."sap.hana.democontent.epm.data::EPM.Util.Texts" as E
           on A."NAMEID" = E."TEXTID"
           GROUP BY A."PRODUCTID",E."TEXT",C."COUNTRY",D."DELIVERYDATE"; 
    this is working fine but i want to split the grossamount based on current year and last year.Any idea how to do this
    In calculation view using script can we use if and case statements?

  • I cannot find the download link for Acrobat 9.0 Standard - all I can see is the Pro versoin.  Can anyone provide or help with this?

    I need to reinstall Acrobat 9 STD which we purchased online.  When I go to the provided link, it does not help me out.  I was eventually able to find the download page for older products but it only shows Acrobat back to v10.x   Am I missing something?  Any help would be appreciated.
    Thx

    Downloads available:
    Suites and Programs:  CC 2014 | CC | CS6 | CS5.5 | CS5 | CS4 | CS3
    Acrobat:  XI, X | 9,8 | 9 standard
    Premiere Elements:  13 |12 | 11, 10 | 9, 8, 7
    Photoshop Elements:  13 |12 | 11, 10 | 9,8,7
    Lightroom:  5.7| 5 | 4 | 3
    Captivate:  8 | 7 | 6 | 5
    Contribute:  CS5 | CS4, CS3
    Download and installation help for Adobe links
    Download and installation help for Prodesigntools links are listed on most linked pages.  They are critical; especially steps 1, 2 and 3.  If you click a link that does not have those steps listed, open a second window using the Lightroom 3 link to see those 'Important Instructions'.window using the Lightroom 3 link to see those 'Important Instructions'.

  • Can anyone help me out with this icon's meaning and how to fix it?

    I just bought a Blackberry Torch 9800.. I have been downloading applications and recently upgraded one of my trial apps to the pro.. but I cannot get the pro version to work. I have activated the account and registered the license key and still nothing... and now I have this crazy icon I cannot seem to find the meaning for it anywhere.. It looks like a phone with a red star above it. I do know that this mean there is an "upgrade" but I don't know what to do to get it to "upgrade" I have deleted and reinstalled the program and still have the trial version... If anyone can help I would certainly appreciate it It is the call control pro application

    queendebbie wrote:
     It is the call control pro application
    Have you contacted the developer of the application for assistance, first?
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Hi, can anyone help me out with this, I need some help on designing GUI for e-learning coursewares. Some tutorials or some helpful sites will do.

    I need some help with the GUI design.

    Have you tried the line inputs on the back of your FirePod? If you update its firmware (not sure if you will need to or not), I seem to remember hearing that the FirePod can run without FW connection, i.e. stand alone. In this mode with the outs from your mixer into line ins 1-2 (2nd from left on the back) it should work fine. I say should because I have never tried. However, these are used for returns from an external effects unit. I assume here, and the important word is assume, that there are two so that they can be used as a stereo send or as a mono send. Worth a try! Let us know how it goes.
    Best, Fred

  • Can anyone please help me with this error I am getting from my application

    javax.servlet.ServletException: Index: 0, Size: 0
         at com.evermind.server.http.EvermindPageContext.handlePageThrowable(EvermindPageContext.java:595)
         at com.evermind.server.http.EvermindPageContext.handlePageException(EvermindPageContext.java:537)
         at jsp.edit__service._jspService(edit_service.jsp:117)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:356)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:498)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:402)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:847)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:340)
         at com.evermind.server.http.ServletRequestDispatcher.forward(ServletRequestDispatcher.java:229)
         at mil.usmc.m4l.servlets.M4LServlet.forward(M4LServlet.java:34)
         at mil.usmc.m4l.servlets.EditService.doGet(EditService.java:175)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:65)
         at mil.usmc.m4l.filters.M4LCMSFilter.doFilter(M4LCMSFilter.java:150)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:673)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:340)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:830)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:285)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:126)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
         at java.lang.Thread.run(Thread.java:534)

    user,
    my computer doesn't work, can you fix it?
    You've not provided any information whatsoever that would help someone help you solve your problem. What version of JDeveloper are you using? What technologies? What are you trying to do that is not working? You really need to be a bit more explicit with your questions.
    John

  • Unable to Intialize HDV deck - can anyone pls help me with this FCE Issue?

    I have recently moved from a MacBook Pro (circa 2 yrs old) to a new MacBook Pro with the NEW firewire 800 port. I have bought a new firewire cable and my camera does not want to be capture from my Sony A1E.
    I have a MacBook Pro 2.8ghz running on OS X 10.6.2 and have all the updates installed for FCE.
    Every time i try to capture the message comes up "Unable to Intialize HDV deck. Please make sure a deck is connected and try again".
    The System is set up to receive the correct frame rate footage and type of footage (which is: HDV-Apple Intermediate Codec 1080i50. Formats: All formats). I am running on PAL, so 25fps.
    Is there any advice / direction that you could give me at all as I am struggling!
    Any help support would be appreciated!
    Thanks, Martin

    Hi,
    Would you confirm that you are using a 9-pin to 4-pin FW cable to connect to your camcorder and that your camcorder is the only FW device connected to your Mac.
    When you start up FCE with the camera connected to your Mac and already powered on in VTR mode, does FCE 'see' the camera, or do you get a warning message that FCE is "Unable to locate the following external devices ..." ?

  • Can anyone see what the problem is?

    Hi
    I get this message whilst trying to debug this jsp: SQLException:java.sql.SQLException: Syntax error or access violation, message from server:
    "You have an error in your SQL syntax near email = 'null'AND password = 'null'' at line 1"
    Here is the JSP code:
    <%
    String email = request.getParameter("username");
    String password = request.getParameter("ppassword");
    String user_type = null;
    mylogin.connect();
    ResultSet loginResult = mylogin.viewLogon(email, password);
    loginResult.next();
    if (loginResult != null)
    %>
    Incorrect Username or Password Entered. Please try again!
    Please clickHere to Go Back!
    <%
    if (loginResult.first())
    user_type = request.getParameter("user");
    }else if (user_type.equals("patient"))
    %>
    <jsp:forward page="homepage.jsp" />
    <%
    }else if (user_type.equals("staff"))
    %>
    <jsp:forward page="outofhoursstaff.jsp" />
    <% }else if (user_type.equals("admin"))
    %>
    <jsp:forward page="siteadminmain.jsp" />
    <%
    %>
    <% mylogin.disconnect(); %>
    Here is the JavaBean code:
    public ResultSet viewLogon(String email, String password) throws SQLException, Exception
         ResultSet loginResult = null;
         try
              String queryString = ("SELECT user_type, email, password" +
                                       "FROM user" +
                                       "WHERE email = '"+email+"'" +
                                       "AND password = '"+password+"'");
              Statement statement = con.createStatement();
              Statement stmt = con.createStatement();
              loginResult = statement.executeQuery(queryString);
         catch (SQLException sqle)
              System.out.println("SQLException:" + sqle);
         catch (Exception e)
              System.out.println("Exception:" + e);
         return loginResult;
    Any suggestions will be gratefully appreciated

    I think you need some spaces in your code - It would have produced
    SELECT user_type, email, passwordFROM userWHERE email ='null'AND password ='null'
    You need to include spaces where you are concatenating the strings.
    String queryString = ("SELECT user_type, email, password" +
    " FROM user" +
    " WHERE email = '"+email+"'" +
    " AND password = '"+password+"'");
    As an aside, I would also suggest that you use a prepared statement, and substitute in the parameters
    ie WHERE email = ? and password = ?
    This will
    - Protect you from stupid people who put quotes in their passwords
    - prevent SQL injection attacks.
    Cheers,
    evnafets

Maybe you are looking for

  • Calendar invites: not supported calendar message; webcal events not showing

    I just upgraded from OS X Server 10.7.5 to Yosemite and server 4.0.x (latest as of 24-Jan-2015). A couple of odd things have arisen regarding the calendar: 1.  Invites sent from users' calendars to out-of-network calendars (both Exchange-supported ou

  • How to convert variables on program to shared variables?

    Hi I want the controls and indicators of an already existing programs to be available on the Data Dashboard of a tablet/phone. What are the steps to follow if I want to convert them into shared variables so that I can send them to the dashboard. I ju

  • Powering on without presing power button?

    Hi, On my old G5 tower with an old ADC Cinema display, the G5 was hidden under the desk and I used the power button on the monitor to power on the Mac. Same monitor, Apple ADC-DVI adapter, Mac pro. No good - not working! So, is there any way I an eit

  • External Authentication

    Hi, We need to be able to support external authentication to Oracle 8i. The system we develop is based on a J2EE architecture framework and is being deployed on the BEA Weblogic 8 under SUN Solaris. Currently we are using Oracle Type 4 thin driver. T

  • CAN'T INSTALL 8.0.5.1 ON LINUX MANDRAKE

    Hi, everyone. I'm stuck. I seem to have completed all of the steps in the installation manual for Oracle Server 8.0.5.1 Enterprise Edition, but during the file copying phase I get an error: $bash: make: command not found Then, in an attempt to see if