SqlType in creating MutableStruct? Please HELP

Here is the snippets:
import oracle.jpub.runtime.MutableStruct;
public class cisObject implements CustomDatum, CustomDatumFactory
static final String SQLNAME = "OBJ_TYPE_CITY";
public static final int SQLTYPECODE = OracleTypes.STRUCT;
static int[] _sqlType =
12, 12, 12, 2, 91
static CustomDatumFactory[] _factory = new CustomDatumFactory[5];
MutableStruct _struct;
static final cisObject _cisObjectFactory = new cisObject();
public static CustomDatumFactory getFactory()
return _cisObjectFactory;
/* constructor */
public cisObject()
struct = new MutableStruct(new Object[5], sqlType, _factory);
As you can see that MutableStruct need sqlType as its parameter and sqlType is an array of integer. Does anybody know what is that _sqlType correspond to? I khow from the sample code that 12 = String, 4 = Integer.
How about if I want to add user-defined collection (oracle.sql.ARRAY), what sqlType should I used? Is there any list of _sqlType?
MutableStruct is a part of:
import oracle.jpub.runtime.MutableStruct;
but I could not find it anywhere.
Any help would be appreciated.
Best regards,
Rob
null

See the 'Forms' sample file in the Authorware\ShowMe
directory for a
possible approach on doing this...
Erik
nitekid wrote:
> hi..is there anyone here know how to create a multiple
text entry while
> desigining a quiz? i have created a quiz that require
user to type in 5 answers
> but seems like the text entry method didnt allow me to
put in multiple text
> entry. only one text entry can be seen on my screen. can
someone tell me why is
> that please...Thank you very much..
>
>
Erik Lord<br>
http://www.capemedia.net<br>
Adobe Community Expert - Authorware<br>
http://www.macromedia.com/support/forums/team_macromedia/<br>
<HR>
http://www.awaretips.net -
samples, tips, products, faqs, and links!<br>
<b>Search the A'ware newsgroup
archives</b><br>
http://groups.google.com/groups?q=macromedia.authorware

Similar Messages

  • !The folder itunes can't be found or created.. please help!!

    Hi everyone.. I just bought this ipod mini, but i had instled itunes in the past in my laptop(Windows xp)because I bought before and couldn't figure out so I returned this was like 5mo ago.. now I have decided to buy a used one from a friend to give it a go.. but I can't make itunes come up.. it gives me this mesage:
    "!the folder itunes cannot be found or created and is required the defult location for this folder inside the "my music" folder" I looked in my music folder and there is nothing in there from itunes.. what should I do... PLEASE HELP ME!!!!!!!!!!!

    the best place to start with that one is with the following document:
    iTunes for Windows: "Disk is locked" or "iTunes folder cannot be found" when installing or opening iTunes
    ... but if you run into the complication where "My Music" doesn't appear as an option in TweakUI, perhaps try the alternate procedure from the following Nigel Carpenter post:
    Nigel Carpenter: re: Itunes problem

  • Urgent Deadline to Fix PC Mess Displaying iWeb Created Site -- Please Help!

    IWeb 08 and web-design-savvy Mac users, I really need your help... and I'm on a tight deadline.
    I've designed the website promoting our group's big event by using iWeb 08; I was very troubled when I discovered tonight that there are major display problems in Microsoft Internet Explorer 6 on Windows PCs. This website is essential to promoting the event and I can't afford to lose traffic because of display issues.
    Here's the site.
    www.spj.org/pittsburgh
    Can anyone walk me through the best fixes for the following problems?
    On a PC in Internet Explorer:
    1) The home page display chokes up during scrolling; there's a sort of "stuttering" effect in rendering of simple images that slows down the PC and gums things up.
    2) The layout of the center-justified text is trashed by Explorer's insertion of large blocks of blank spaces and a line return in an area where I change the color of the text for emphasis.
    On my web pages that display the iWeb-generated navigation links:
    3) The label for the final navigation link drops down to a second row, creating a ragged, poorly formatted look.
    4) If you click on the navigation link for the current page, it takes you to the home page instead of keeping you on the current page.
    None of these problems happen in Safari for Windows.
    In Firefox for Windows, I believe that only problem 3 happens.
    Explorer 7 for Windows appears to fix only problem 2.
    -Will an "optimizer" program fix any or all of these problems?
    -Can I open the iWeb-created html files in Netscape Composer, SeaMonkey, TextEdit, or any other application, change the html code to fix any of this, and save the repaired result?
    -Is there any change in the formating within iWeb that I should try that will put things right on a PC?
    Thanks for any help you can offer. I have to fix this somehow this weekend.

    Cédric,
    Thank you. I will definitely build my own navigation menu, as you described to solve problems 3 and 4.
    I'm still struggling with the decision of how to deal with issues 1 and 2 On a PC in Internet Explorer. (See below.)
    I did already update to iWeb 2.0.3 before I created the site.
    1) The home page display chokes up during scrolling; there's a sort of "stuttering" effect in rendering of simple images that slows down the PC and gums things up.
    2) The layout of the center-justified text is trashed by Explorer's insertion of large blocks of blank spaces and a line return in an area where I change the color of the text for emphasis.
    Here are options I'm considering.
    One is to take screenshots of the site's current iWeb-generated graphics, turn them into jpegs, and reinsert them into the page as jpegs. My thinking is that it would eliminate any Explorer problems with rendering png images and effects.
    Another option is to rebuild the entire site in another program, trying to imitate the look of my current iWeb-created site. The problem is, I don't know if I have to skills to properly create my PayPal online registration section, which is essential. If I do try to redo the entire site, I haven't decided to use Netscape Composer (my old method), SeaMonkey (its successor), or some other application with which I have no experience. If I do recreate the entire site, I'm going to have to be careful to exactly duplicate the individual page names, so that I don't break the links for anyone who has linked to the current pages.

  • Issue with Create BAPI - Please help

    I need to do a Create BAPI the structure is as follows:
      -Orders
         -Operations_create  (Afvgd - BAPI table structure)
    On a click of a InsertOperation button, I should be able to insert the line Items to the Operations_create node and then set them finally to the Model node. Then do the order create(Insert BAPI as a whole).
    The problem is there is an already existing element (framework created). So if I do the following code in onActionInsertOperation. I am getting an extra duplicate record.
    Is there a easy fix to this . I am not sure Supplyfunction will help here. If so, How?
    Or Can I tweak the code here?
    Thank you ... Any help is appreciated
    View Controller:
    onActionInsertOperation(){
        IOperations_CreateElement oprEle = wdContext.createOperations_CreateElement();
        oprEle .setGLAccount(wdContext.currentOperations_CreateElement().getGLAccount());       
        oprEle .setVendorNo(wdContext.currentOperations_CreateElement().getVendorNo());          
        wdContext.nodeOperations_Create().addElement(oprEle);
    onActionCreateOrder(){
        wdThis.wdGetVmrsCustController().callBapi_CreateOrder();
        wdThis.wdGetVmrsCustController().callBapi_Commit();
    Custom Controller:
    callBapi_CreateOrder(){
         for(int i=0;i<wdContext.nodeOperations_Create().size();i++) {
          Afvgd item = new Afvgd();          
          item.setGLAccount(wdThis.wdGetContext().nodeOperations_Create().getOperations_CreateElementAt(i).getGLAccount());               
          item.setVendor(wdThis.wdGetContext().nodeOperations_Create().getOperations_CreateElementAt(i).getVendorNo());               
          inputCreateOrder.addOperations(item) ;
         // Executing the Model
         // Invalidating ...          

    Hello Vivek,
    If the node <b>Operations_create</b> is a Value Node then you may <b>bind</b> the oprEle element to
    the <b>nodeOperations_Create()</b> instead of adding it to the Node.
    onActionInsertOperation()
          IOperations_CreateElement oprEle =
                   wdContext.createOperations_CreateElement();
          oprEle .setGLAccount
                   (wdContext.currentOperations_CreateElement().getGLAccount());
          oprEle .setVendorNo
                   (wdContext.currentOperations_CreateElement().getVendorNo());
          <b>wdContext.nodeOperations_Create().bind(oprEle);</b>
    Also, you may change the cardinality of the Operations_Create node to 0:1 or 0:N (from 1:N).
    By doing this, you can prevent automatic generation and addition of an element by the WDF.
    Bala

  • Lion Server 10.7.4 will not create users - please help

    I am completely stumped.
    I bought a Mac Mini Server yesterday and set it up successfully (Set OD, etc). Everything was working great until I went back and tried to create new users via the server app. As of now, it gives me the error "SEUserErrorDomain error1" and tells me that it cannot create the user. Even though it says that, it will still show up in the user list with the "blue globe" (that I believe is from OD?) but disappear the moment I drill into it and try to save anything. Workgroup Manager will allow me to create the user, but it does not show up in the user list in the server app so I cannot enable certain services for the user (i.e. assign folders for share point, etc).
    I am new to Mac Server so any help would be appreciated.
    P.S. Apple tech support had me reinstall the 10.7.4 combo update - no help. They also had me use disk utility to repair permissions - no help.
    P.S.S. On a side note, I did install Samba 3 on the server via mac port to try and help with LDAP auth (I ended up going with pGina for my windows users), but I have no clue how to uninstall it. Not sure if that would create this issue or not (forgive my naivety).
    Thank you in advance for any help
    Derek

    Hey studio.lx
    They are all running, and there were no errors. However, after talking with Apple Support a few times, they helped me figure out how to fix it.
    Our best guess is that when I pushed through the 10.7.4 combo update, it didn't take completely and corrupted the LDAP server. Thankfully, I had not spent a great deal of time on my users yet, so all we ended up having to do, was destroy the server and rebuild the Open Directory.
    To destroy it, I opened terminal and ran this command: sudo slapconfig -destroyldapserver
    Took about 10 minutes and it worked beautifully. Apple Tech Support did say, that as long as I had an archive of the Open Directory saved somewhere, I could have destroyed it and restored the information back from there. Not sure how this would have went down if I had already populated my info, but thankfully it was early enough on in the process that it did not set me back too far. Just glad it was resolved.
    Thanks everyone for your help.
    Derek

  • Displaying only User created roles -  Please help

    Hi,
    Can anyone of you please post the code for displaying only Non - SAP roles (which are created by users).
    Thank you for your time.
    Regards
    Som

    Hi,
    I will explain little bit more in detail..
    We are trying to have a Mapping between JobTitle and Portal-ID/Name in our database. so for the Portal-ID/Name instead of having a textbox for the user to enter, we want to have a list box which displays all the roles which were created by users (only) - that is I mean custom roles not the roles provided out of the box like useradministration,systemadministration etc.
    Thanks
    Vasu

  • Unable to create archive. please help!

    hello everyone,
    i am trying to archive a project into a new folder using the media manager. the project bin contained many different sequences and was "saved as" many times in different names. when i reached the final version of the project i wanted to move all the files associated with the project to a new folder so i can back them up and trash anything else. i've used the media manager to copy media files to a new folder and create a new project, then i moved the old folder containing the "capture scratch" to another location (before deleting it, luckily). however, when i tried to open the new project, the program kept looking for files from the "capture scratch" folder, and wouldn't open the project without them.
    i've repeated the procedure many times, trying many different option of the MM, and got the same results each time. the project will not play without the original "final cut pro documents" and "capture scratch" folders i their original location.
    isn't there a way to copy EVERYTHING needed to open and play a project into a new location? am i missing something?
    i know that there are many threads complaining about the MM but i haven't found anyone describing this kind of problem.
    does anybody have a clue?
    powerbook G4 17"   Mac OS X (10.4.2)  

    Thanks for your help

  • My notes has crashed.  i made a guest account and it is fine there.  Here is the info on the crash screen.  Please help, Process:         Notes [377] Path:            /Applications/Notes.app/Contents/MacOS/Notes Identifier:      com.apple.Notes Version:

    My notes has crashed and here is the printout.  It works fine in a guest account I created.
    Please help
    Process:         Notes [377]
    Path:            /Applications/Notes.app/Contents/MacOS/Notes
    Identifier:      com.apple.Notes
    Version:         1.5 (107)
    Build Info:      Notes-107000000000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [186]
    User ID:         501
    Date/Time:       2013-08-18 22:07:25.392 -0700
    OS Version:      Mac OS X 10.8.4 (12E55)
    Report Version:  10
    Interval Since Last Report:          8448 sec
    Crashes Since Last Report:           24
    Per-App Interval Since Last Report:  34 sec
    Per-App Crashes Since Last Report:   24
    Anonymous UUID:                      14E94F91-30E8-3221-31AA-EC9E86F52275
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: EXC_I386_GPFLT
    Application Specific Information:
    objc_msgSend() selector name: retain
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libobjc.A.dylib                         0x000000010e6a2710 objc_msgSend_vtable13 + 16
    1   com.apple.CoreFoundation                0x000000010e8fd1de +[__NSArrayI __new:::] + 174
    2   com.apple.CoreFoundation                0x000000010e8694d3 -[NSArray initWithObjects:] + 707
    3   com.apple.WebKit                        0x000000010e425035 -[WebHTMLView(WebPrivate) _setAsideSubviews] + 133
    4   com.apple.WebKit                        0x000000010e4251eb -[WebHTMLView drawRect:] + 363
    5   com.apple.Notes                         0x000000010dbdcc04 0x10dbc4000 + 101380
    6   com.apple.AppKit                        0x000000010f7f7064 -[NSView _drawRect:clip:] + 4217
    7   com.apple.AppKit                        0x000000010f7f56c1 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1656
    8   com.apple.WebKit                        0x000000010e424f5b -[WebHTMLView(WebPrivate) _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 267
    9   com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    10  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    11  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    12  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    13  com.apple.AppKit                        0x000000010f7f36f2 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 817
    14  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    15  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    16  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    17  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    18  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    19  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    20  com.apple.AppKit                        0x000000010f7f3143 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 314
    21  com.apple.AppKit                        0x000000010f7eed6d -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4675
    22  com.apple.AppKit                        0x000000010f7b8c93 -[NSView displayIfNeeded] + 1830
    23  com.apple.AppKit                        0x000000010f731322 -[NSAnimationManager animationTimerFired:] + 2256
    24  com.apple.Foundation                    0x000000010ebad463 __NSFireTimer + 96
    25  com.apple.CoreFoundation                0x000000010e835804 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 20
    26  com.apple.CoreFoundation                0x000000010e83531d __CFRunLoopDoTimer + 557
    27  com.apple.CoreFoundation                0x000000010e81aad9 __CFRunLoopRun + 1529
    28  com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    29  com.apple.Foundation                    0x000000010ebd47ee -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    30  com.apple.Notes                         0x000000010dbe9d3e 0x10dbc4000 + 154942
    31  com.apple.Notes                         0x000000010dbe9b55 0x10dbc4000 + 154453
    32  com.apple.Notes                         0x000000010dbe9528 0x10dbc4000 + 152872
    33  com.apple.Notes                         0x000000010dbe9591 0x10dbc4000 + 152977
    34  com.apple.Notes                         0x000000010dbdc9e8 0x10dbc4000 + 100840
    35  com.apple.AppKit                        0x000000010f7f7064 -[NSView _drawRect:clip:] + 4217
    36  com.apple.AppKit                        0x000000010f7f56c1 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1656
    37  com.apple.WebKit                        0x000000010e424f5b -[WebHTMLView(WebPrivate) _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 267
    38  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    39  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    40  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    41  com.apple.AppKit                        0x000000010f7f5ad9 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 2704
    42  com.apple.AppKit                        0x000000010f7f36f2 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 817
    43  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    44  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    45  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    46  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    47  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    48  com.apple.AppKit                        0x000000010f7f4a44 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 5763
    49  com.apple.AppKit                        0x000000010f7f3143 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 314
    50  com.apple.AppKit                        0x000000010f7eed6d -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4675
    51  com.apple.AppKit                        0x000000010f7b8c93 -[NSView displayIfNeeded] + 1830
    52  com.apple.AppKit                        0x000000010f7b81cc _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 738
    53  com.apple.AppKit                        0x000000010fd83901 __83-[NSWindow _postWindowNeedsDisplayOrLayoutOrUpdateConstraintsUnlessPostingDisabled]_block_ invoke_01208 + 46
    54  com.apple.CoreFoundation                0x000000010e83f417 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
    55  com.apple.CoreFoundation                0x000000010e83f381 __CFRunLoopDoObservers + 369
    56  com.apple.CoreFoundation                0x000000010e81a7b8 __CFRunLoopRun + 728
    57  com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    58  com.apple.HIToolbox                     0x00000001113ceeb4 RunCurrentEventLoopInMode + 209
    59  com.apple.HIToolbox                     0x00000001113ceb94 ReceiveNextEventCommon + 166
    60  com.apple.HIToolbox                     0x00000001113ceae3 BlockUntilNextEventMatchingListInMode + 62
    61  com.apple.AppKit                        0x000000010f7b5533 _DPSNextEvent + 685
    62  com.apple.AppKit                        0x000000010f7b4df2 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    63  com.apple.AppKit                        0x000000010f7ac1a3 -[NSApplication run] + 517
    64  com.apple.AppKit                        0x000000010f750bd6 NSApplicationMain + 869
    65  libdyld.dylib                           0x0000000110a177e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x0000000110bedd16 kevent + 10
    1   libdispatch.dylib                       0x00000001109e0dea _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00000001109e09ee _dispatch_mgr_thread + 54
    Thread 2:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7b023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x000000010eb6f589 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.IMAP                          0x000000010dd7b328 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 167
    4   com.apple.IMAP                          0x000000010dd9480e -[IMAPGateway waitUntilClientOperationIsFinished:] + 168
    5   com.apple.IMAP                          0x000000010dd94756 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 411
    6   com.apple.IMAP                          0x000000010dd84dc4 -[IMAPConnection separatorChar] + 116
    7   com.apple.IMAP                          0x000000010dd839e8 -[IMAPConnection _authenticateWithAuthenticator:] + 197
    8   com.apple.CoreMessage                   0x000000010dc5c295 -[Connection authenticate] + 598
    9   com.apple.IMAP                          0x000000010dd83830 -[IMAPConnection authenticate] + 66
    10  com.apple.Notes.framework               0x000000010df31cc7 -[NFIMAPAccountProxy connectAndAuthenticate:] + 963
    11  com.apple.Notes.framework               0x000000010df350e5 -[NFIMAPAccountProxy _recoverFromConnectionlessState] + 115
    12  com.apple.Notes.framework               0x000000010df34c8b -[NFIMAPAccountProxy checkOutGatewayForFolder:highPriority:needsCheckIn:] + 403
    13  com.apple.Notes.framework               0x000000010df3c891 -[NFIMAPFolderProxy synchronizeWithServer] + 318
    14  com.apple.Foundation                    0x000000010ebf29cf -[NSBlockOperation main] + 124
    15  com.apple.Foundation                    0x000000010ebc8926 -[__NSOperationInternal start] + 684
    16  com.apple.Foundation                    0x000000010ebd00f1 __block_global_6 + 129
    17  libdispatch.dylib                       0x00000001109e1f01 _dispatch_call_block_and_release + 15
    18  libdispatch.dylib                       0x00000001109de0b6 _dispatch_client_callout + 8
    19  libdispatch.dylib                       0x00000001109df1fa _dispatch_worker_thread2 + 304
    20  libsystem_c.dylib                       0x0000000110a78d0b _pthread_wqthread + 404
    21  libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 6:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7b023 _pthread_cond_wait + 927
    2   com.apple.Foundation                    0x000000010eb6f589 -[__NSOperationInternal waitUntilFinishedOrTimeout:] + 227
    3   com.apple.IMAP                          0x000000010dd7b328 -[IMAPClientOperationQueue waitUntilOperationIsFinished:] + 167
    4   com.apple.IMAP                          0x000000010dd9480e -[IMAPGateway waitUntilClientOperationIsFinished:] + 168
    5   com.apple.IMAP                          0x000000010dd94756 -[IMAPGateway addClientOperation:toQueueAndWaitUntilFinished:] + 411
    6   com.apple.IMAP                          0x000000010dd83039 -[IMAPConnection _fetchCapabilitiesIfNeeded] + 262
    7   com.apple.IMAP                          0x000000010dd82c30 -[IMAPConnection capabilities] + 33
    8   com.apple.IMAP                          0x000000010dd839d0 -[IMAPConnection _authenticateWithAuthenticator:] + 173
    9   com.apple.CoreMessage                   0x000000010dc5c295 -[Connection authenticate] + 598
    10  com.apple.IMAP                          0x000000010dd83830 -[IMAPConnection authenticate] + 66
    11  com.apple.Notes.framework               0x000000010df31cc7 -[NFIMAPAccountProxy connectAndAuthenticate:] + 963
    12  com.apple.Notes.framework               0x000000010df350e5 -[NFIMAPAccountProxy _recoverFromConnectionlessState] + 115
    13  com.apple.Notes.framework               0x000000010df34c8b -[NFIMAPAccountProxy checkOutGatewayForFolder:highPriority:needsCheckIn:] + 403
    14  com.apple.Notes.framework               0x000000010df3c891 -[NFIMAPFolderProxy synchronizeWithServer] + 318
    15  com.apple.Foundation                    0x000000010ebf29cf -[NSBlockOperation main] + 124
    16  com.apple.Foundation                    0x000000010ebc8926 -[__NSOperationInternal start] + 684
    17  com.apple.Foundation                    0x000000010ebd00f1 __block_global_6 + 129
    18  libdispatch.dylib                       0x00000001109e1f01 _dispatch_call_block_and_release + 15
    19  libdispatch.dylib                       0x00000001109de0b6 _dispatch_client_callout + 8
    20  libdispatch.dylib                       0x00000001109df1fa _dispatch_worker_thread2 + 304
    21  libsystem_c.dylib                       0x0000000110a78d0b _pthread_wqthread + 404
    22  libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib                  0x0000000110beb686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000110beac42 mach_msg + 70
    2   com.apple.CoreFoundation                0x000000010e815233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x000000010e81a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x000000010ebd47ee -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.Foundation                    0x000000010eb6d1aa -[NSRunLoop(NSRunLoop) run] + 74
    7   com.apple.CoreMessage                   0x000000010dc40d57 +[_NSSocket _runIOThread] + 77
    8   com.apple.Foundation                    0x000000010ebcf562 __NSThread__main__ + 1345
    9   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    10  libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 8:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x0000000110beb686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000110beac42 mach_msg + 70
    2   com.apple.CoreFoundation                0x000000010e815233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x000000010e81a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage                   0x000000010dc400e9 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage                   0x000000010dc428cb -[_NSSocket readBytes:length:error:] + 161
    7   com.apple.CoreMessage                   0x000000010dc5ca7b -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 76
    8   com.apple.CoreMessage                   0x000000010dc5c961 -[Connection _fillBuffer:] + 764
    9   com.apple.CoreMessage                   0x000000010dc5c4f3 -[Connection _readLineIntoData:error:] + 202
    10  com.apple.IMAP                          0x000000010dd82486 -[IMAPConnection _readLineIntoData:error:] + 53
    11  com.apple.IMAP                          0x000000010dd88e14 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 112
    12  com.apple.IMAP                          0x000000010ddab428 -[IMAPResponse initWithConnection:error:] + 144
    13  com.apple.IMAP                          0x000000010dd8257a -[IMAPConnection _copyNextServerResponse:] + 55
    14  com.apple.IMAP                          0x000000010dd827eb -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 551
    15  com.apple.IMAP                          0x000000010dd87a87 -[IMAPConnection _responseFromSendingOperation:] + 863
    16  com.apple.IMAP                          0x000000010dd84f8f -[IMAPConnection executeListOrLSub:] + 215
    17  com.apple.IMAP                          0x000000010dd765ae -[IMAPClientListOperation executeOnConnection:] + 26
    18  com.apple.IMAP                          0x000000010dd819f5 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1247
    19  com.apple.IMAP                          0x000000010dd94501 -[IMAPGateway _allowClientOperationThrough:] + 1237
    20  com.apple.IMAP                          0x000000010dd93fd4 -[IMAPGateway allowClientOperationThrough:] + 369
    21  com.apple.IMAP                          0x000000010dd78ae3 -[IMAPClientOperation main] + 84
    22  com.apple.Foundation                    0x000000010ebc8926 -[__NSOperationInternal start] + 684
    23  com.apple.Foundation                    0x000000010ebd00f1 __block_global_6 + 129
    24  libdispatch.dylib                       0x00000001109e1f01 _dispatch_call_block_and_release + 15
    25  libdispatch.dylib                       0x00000001109de0b6 _dispatch_client_callout + 8
    26  libdispatch.dylib                       0x00000001109df1fa _dispatch_worker_thread2 + 304
    27  libsystem_c.dylib                       0x0000000110a78d0b _pthread_wqthread + 404
    28  libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 11:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7afe9 _pthread_cond_wait + 869
    2   com.apple.Foundation                    0x000000010eb70453 -[__NSOperationInternal waitUntilFinished] + 151
    3   com.apple.Notes                         0x000000010dbc9cf0 0x10dbc4000 + 23792
    4   com.apple.Foundation                    0x000000010ebf29cf -[NSBlockOperation main] + 124
    5   com.apple.Foundation                    0x000000010ebc8926 -[__NSOperationInternal start] + 684
    6   com.apple.Foundation                    0x000000010ec1c2a7 -[_NSCFURLProtocolBridgeWithTrampoline processEventQ] + 279
    7   com.apple.Foundation                    0x000000010ec1c8b8 -[_NSCFURLProtocolBridgeWithTrampoline pushEvent:from:] + 180
    8   com.apple.Foundation                    0x000000010ec1d0aa -[_NSCFURLProtocolBridge start] + 98
    9   com.apple.Foundation                    0x000000010ec1e09c _bridger + 65
    10  com.apple.CFNetwork                     0x0000000112384376 URLProtocol_Classic::_protocolInterface_startLoad(_CFCachedURLResponse const*) + 74
    11  com.apple.CFNetwork                     0x000000011232b589 ___private_ScheduleOriginLoad_block_invoke_0108 + 157
    12  com.apple.CFNetwork                     0x000000011232b4ba __withExistingProtocolAsync_block_invoke_0 + 28
    13  com.apple.CFNetwork                     0x00000001123caf3a __block_global_1 + 28
    14  com.apple.CoreFoundation                0x000000010e816154 CFArrayApplyFunction + 68
    15  com.apple.CFNetwork                     0x000000011232b2b4 RunloopBlockContext::perform() + 124
    16  com.apple.CFNetwork                     0x000000011232b18b MultiplexerSource::perform() + 221
    17  com.apple.CoreFoundation                0x000000010e7f7b31 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    18  com.apple.CoreFoundation                0x000000010e7f7455 __CFRunLoopDoSources0 + 245
    19  com.apple.CoreFoundation                0x000000010e81a7f5 __CFRunLoopRun + 789
    20  com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    21  com.apple.Foundation                    0x000000010eb71546 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    22  com.apple.Foundation                    0x000000010ebcf562 __NSThread__main__ + 1345
    23  libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    24  libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 12:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x0000000110bed322 __select + 10
    1   com.apple.CoreFoundation                0x000000010e859f46 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    3   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 13:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7afe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00000001173cfb66 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore                0x00000001175f2bfa JSC::BlockAllocator::blockFreeingThreadMain() + 90
    4   com.apple.JavaScriptCore                0x000000011760825f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 14:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7afe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00000001175559d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00000001175558b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x000000011760825f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 15:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7afe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00000001175559d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00000001175558b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x000000011760825f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 16:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x0000000110bed0fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x0000000110a7afe9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00000001175559d4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00000001175558b6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x000000011760825f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    6   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 17:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib                  0x0000000110beb686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000110beac42 mach_msg + 70
    2   com.apple.QuartzCore                    0x000000010f17f17b CA::Render::Server::server_thread(void*) + 403
    3   com.apple.QuartzCore                    0x000000010f203dc6 thread_fun + 25
    4   libsystem_c.dylib                       0x0000000110a767a2 _pthread_start + 327
    5   libsystem_c.dylib                       0x0000000110a631e1 thread_start + 13
    Thread 18:: Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib                  0x0000000110beb686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x0000000110beac42 mach_msg + 70
    2   com.apple.CoreFoundation                0x000000010e815233 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x000000010e81a916 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x000000010e81a0e2 CFRunLoopRunSpecific + 290
    5   com.apple.CoreMessage                   0x000000010dc400e9 _handleRequestWithTimeout + 1527
    6   com.apple.CoreMessage                   0x000000010dc428cb -[_NSSocket readBytes:length:error:] + 161
    7   com.apple.CoreMessage                   0x000000010dc5ca7b -[Connection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 76
    8   com.apple.CoreMessage                   0x000000010dc5c961 -[Connection _fillBuffer:] + 764
    9   com.apple.CoreMessage                   0x000000010dc5c4f3 -[Connection _readLineIntoData:error:] + 202
    10  com.apple.IMAP                          0x000000010dd82486 -[IMAPConnection _readLineIntoData:error:] + 53
    11  com.apple.IMAP                          0x000000010dd88e14 -[IMAPConnection(MFPrivate) _readDataOfLength:intoData:error:] + 112
    12  com.apple.IMAP                          0x000000010ddab428 -[IMAPResponse initWithConnection:error:] + 144
    13  com.apple.IMAP                          0x000000010dd8257a -[IMAPConnection _copyNextServerResponse:] + 55
    14  com.apple.IMAP                          0x000000010dd827eb -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:] + 551
    15  com.apple.IMAP                          0x000000010dd87a87 -[IMAPConnection _responseFromSendingOperation:] + 863
    16  com.apple.IMAP                          0x000000010dd8310b -[IMAPConnection executeCapability:] + 42
    17  com.apple.IMAP                          0x000000010dd79bc8 -[IMAPClientCapabilityOperation executeOnConnection:] + 26
    18  com.apple.IMAP                          0x000000010dd819f5 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1247
    19  com.apple.IMAP                          0x000000010dd94501 -[IMAPGateway _allowClientOperationThrough:] + 1237
    20  com.apple.IMAP                          0x000000010dd93fd4 -[IMAPGateway allowClientOperationThrough:] + 369
    21  com.apple.IMAP                          0x000000010dd78ae3 -[IMAPClientOperation main] + 84
    22  com.apple.Foundation                    0x000000010ebc8926 -[__NSOperationInternal start] + 684
    23  com.apple.Foundation                    0x000000010ebd00f1 __block_global_6 + 129
    24  libdispatch.dylib                       0x00000001109e1f01 _dispatch_call_block_and_release + 15
    25  libdispatch.dylib                       0x00000001109de0b6 _dispatch_client_callout + 8
    26  libdispatch.dylib                       0x00000001109df1fa _dispatch_worker_thread2 + 304
    27  libsystem_c.dylib                       0x0000000110a78d0b _pthread_wqthread + 404
    28  libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 19:
    0   libsystem_kernel.dylib                  0x0000000110bed6d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x0000000110a78f4c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x0000000110a78d13 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x0000000110a631d1 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x3000000000000000  rbx: 0x00007f7ffe8b7390  rcx: 0x3000000000000000  rdx: 0x000000010ea1a180
      rdi: 0x00007f7ffd6b21d0  rsi: 0x000000010e9e5640  rbp: 0x00007fff52031600  rsp: 0x00007fff520315b8
       r8: 0x000000011aebaa00   r9: 0x000000010e9ff4d0  r10: 0x00007f7ffbc19d30  r11: 0x00007f7ffe8b7380
      r12: 0x0000000000000001  r13: 0x00007fff52031610  r14: 0x000000010ea14110  r15: 0x00007f7ffd6b21d0
      rip: 0x000000010e6a2710  rfl: 0x0000000000010246  cr2: 0x00007f7ffe8eb0af
    Logical CPU: 0
    Binary Images:
           0x10dbc4000 -        0x10dc07fff  com.apple.Notes (1.5 - 107) <69EAB705-A00B-3584-91C6-F532B94806F9> /Applications/Notes.app/Contents/MacOS/Notes
           0x10dc2d000 -        0x10dc2efff  libDiagnosticMessagesClient.dylib (8) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
           0x10dc3a000 -        0x10dc3afff  com.apple.Cocoa (6.7 - 19) <3CFC90D2-2BE9-3E5C-BFDB-5E161A2C2B29> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x10dc3e000 -        0x10dcf6fff  com.apple.CoreMessage (6.5 - 1508) <E05A89F9-46AB-310C-B147-8B1E89C5A565> /System/Library/PrivateFrameworks/CoreMessage.framework/Versions/A/CoreMessage
           0x10dd71000 -        0x10ddd0fff  com.apple.IMAP (6.5 - 1508) <42C96BC0-5E8B-38CC-BA03-BE32A7115521> /System/Library/PrivateFrameworks/IMAP.framework/Versions/A/IMAP
           0x10de10000 -        0x10de4afff  com.apple.framework.internetaccounts (2.1 - 210) <546769AA-C561-3C17-8E8E-4E65A700E2F1> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
           0x10de7f000 -        0x10deedff7  com.apple.framework.IOKit (2.0.1 - 755.24.1) <04BFB138-8AF4-310A-8E8C-045D8A239654> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x10df1e000 -        0x10df60ff7  com.apple.Notes.framework (1.5 - 107) <A665344C-A62E-33EE-A0F3-66959EB4D12E> /System/Library/PrivateFrameworks/Notes.framework/Versions/A/Notes
           0x10df96000 -        0x10df96fff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
           0x10df99000 -        0x10e26aff7  com.apple.security (7.0 - 55179.13) <F428E306-C407-3B55-BA82-E58755E8A76F> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10e39e000 -        0x10e3d2fff  com.apple.securityinterface (6.0 - 55024.4) <FCF87CA0-CDC1-3F7C-AADA-2AC3FE4E97BD> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x10e403000 -        0x10e403fff  SleepServices (1.46) <A49C34BF-A696-3266-BCC1-D0788853D626> /System/Library/PrivateFrameworks/SleepServices.framework/Versions/A/SleepServi ces
           0x10e408000 -        0x10e40afff  apop.so (169) <2A1CAD32-5734-3D4E-868B-E773DCD192B5> /usr/lib/sasl2/apop.so
           0x10e40f000 -        0x10e59afff  com.apple.WebKit (8536 - 8536.30.1) <56B86FA1-ED74-3001-8942-1CA2281540EC> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
           0x10e690000 -        0x10e691ff7  libSystem.B.dylib (169.3) <92475A81-385C-32B9-9D6D-38E4BAC90996> /usr/lib/libSystem.B.dylib
           0x10e69b000 -        0x10e7b392f  libobjc.A.dylib (532.2) <90D31928-F48D-3E37-874F-220A51FD9E37> /usr/lib/libobjc.A.dylib
           0x10e7d3000 -        0x10e7d5fff  libanonymous.2.so (166) <6417EA9E-4202-31DA-A086-B58F1E92C931> /usr/lib/sasl2/libanonymous.2.so
           0x10e7da000 -        0x10e7dafff  com.apple.CoreServices (57 - 57) <45F1466A-8264-3BB7-B0EC-E5E5BFBED143> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x10e7de000 -        0x10e7e0fff  login.so (166) <1F868238-FB26-3477-B31C-67DB400D6F68> /usr/lib/sasl2/login.so
           0x10e7e5000 -        0x10e9cfff7  com.apple.CoreFoundation (6.8 - 744.19) <0F7403CA-2CB8-3D0A-992B-679701DF27CA> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x10eb33000 -        0x10eb33fff  com.apple.ApplicationServices (45 - 45) <5302CC85-D534-3FE5-9E56-CA16762177F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x10eb39000 -        0x10ee98fff  com.apple.Foundation (6.8 - 945.18) <1D7E58E6-FA3A-3CE8-AC85-B9D06B8C0AA0> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x10f0bb000 -        0x10f0bdfff  libplain.2.so (166) <074D7604-3435-3E01-A86B-FF102001FC5B> /usr/lib/sasl2/libplain.2.so
           0x10f0c2000 -        0x10f270fff  com.apple.QuartzCore (1.8 - 304.3) <F450F2DE-2F24-3557-98B6-310E05DAC17F> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x10f329000 -        0x10f55eff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x10f660000 -        0x11028dfff  com.apple.AppKit (6.8 - 1187.39) <199962F0-B06B-3666-8FD5-5C90374BA16A> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x110982000 -        0x110984fff  pwauxprop.so (387.2) <F29F2067-8A39-3BDC-B1CA-9FC7C3470675> /usr/lib/sasl2/pwauxprop.so
           0x110989000 -        0x11098efff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
           0x110993000 -        0x110995fff  smb_nt.so (169) <757409B3-32F6-3FA1-97A4-92FEEF9FD624> /usr/lib/sasl2/smb_nt.so
           0x11099a000 -        0x1109a8fff  libcommonCrypto.dylib (60027) <BAAFE0C9-BB86-3CA7-88C0-E3CBA98DA06F> /usr/lib/system/libcommonCrypto.dylib
           0x1109b5000 -        0x1109b5ff7  com.apple.SafariServices.framework (8536 - 8536.30.1) <2EB5365E-7D56-3283-89BB-AF6ED10F6D73> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
           0x1109bb000 -        0x1109c0fff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
           0x1109c8000 -        0x1109cffff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
           0x1109d6000 -        0x1109d6fff  com.apple.SafariDAVNotifier (1.1.1 - 1) <89F59707-91A2-387B-9415-ABD5D92D1776> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
           0x1109dc000 -        0x1109f1ff7  libdispatch.dylib (228.23) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
           0x110a0a000 -        0x110a0bff7  libdnsinfo.dylib (453.19) <14202FFB-C3CA-3FCC-94B0-14611BF8692D> /usr/lib/system/libdnsinfo.dylib
           0x110a15000 -        0x110a18ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
           0x110a1f000 -        0x110a1ffff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
           0x110a25000 -        0x110a2dfff  liblaunch.dylib (442.26.2) <2F71CAF8-6524-329E-AC56-C506658B4C0C> /usr/lib/system/liblaunch.dylib
           0x110a37000 -        0x110a3dfff  libmacho.dylib (829) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
           0x110a45000 -        0x110a47fff  libquarantine.dylib (52.1) <143B726E-DF47-37A8-90AA-F059CFD1A2E4> /usr/lib/system/libquarantine.dylib
           0x110a4c000 -        0x110a4dfff  libodfde.dylib (18) <46A5538E-3719-3BE8-AD13-537930B4082C> /usr/lib/libodfde.dylib
           0x110a53000 -        0x110a54ff7  libremovefile.dylib (23.2) <6763BC8E-18B8-3AD9-8FFA-B43713A7264F> /usr/lib/system/libremovefile.dylib
           0x110a5a000 -        0x110a5bfff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
           0x110a62000 -        0x110b2eff7  libsystem_c.dylib (825.26) <4C9EB006-FE1F-3F8F-8074-DFD94CF2CE7B> /usr/lib/system/libsystem_c.dylib
           0x110b77000 -        0x110b7fff7  libsystem_dnssd.dylib (379.38.1) <BDCB8566-0189-34C0-9634-35ABD3EFE25B> /usr/lib/system/libsystem_dnssd.dylib
           0x110b8b000 -        0x110bc1ff7  libsystem_info.dylib (406.17) <C9BA1024-043C-3BD5-908F-AF709E05DEE4> /usr/lib/system/libsystem_info.dylib
           0x110bdb000 -        0x110bf6ff7  libsystem_kernel.dylib (2050.24.15) <A9F97289-7985-31D6-AF89-151830684461> /usr/lib/system/libsystem_kernel.dylib
           0x110c09000 -        0x110c37ff7  libsystem_m.dylib (3022.6) <11B6081D-6212-3EAB-9975-BED6234BD6A5> /usr/lib/system/libsystem_m.dylib
           0x110c46000 -        0x110c54ff7  libsystem_network.dylib (77.10) <2AAA67A1-525E-38F0-8028-1D2B64716611> /usr/lib/system/libsystem_network.dylib
           0x110c66000 -        0x110c71fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
           0x110c81000 -        0x110c82ff7  libsystem_sandbox.dylib (220.3) <B739DA63-B675-387A-AD84-412A651143C0> /usr/lib/system/libsystem_sandbox.dylib
           0x110c8d000 -        0x110c8fff7  libunc.dylib (25) <2FDC94A7-3039-3680-85F3-2164E63B464D> /usr/lib/system/libunc.dylib
           0x110c96000 -        0x110c9cff7  libunwind.dylib (35.1) <21703D36-2DAB-3D8B-8442-EAAB23C060D3> /usr/lib/system/libunwind.dylib
           0x110ca8000 -        0x110ccaff7  libxpc.dylib (140.43) <70BC645B-6952-3264-930C-C835010CCEF9> /usr/lib/system/libxpc.dylib
           0x110ce9000 -        0x110d38ff7  libcorecrypto.dylib (106.2) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
           0x110d49000 -        0x110d95ff7  libauto.dylib (185.4) <AD5A4CE7-CB53-313C-9FAE-673303CC2D35> /usr/lib/libauto.dylib
           0x110db2000 -        0x110dd7ff7  libc++abi.dylib (26) <D86169F3-9F31-377A-9AF3-DB17142052E4> /usr/lib/libc++abi.dylib
           0x110e0a000 -        0x110e72ff7  libc++.1.dylib (65.1) <E5A0C88E-0837-3015-A987-F8C5A0D35DD6> /usr/lib/libc++.1.dylib
           0x110ecb000 -        0x110f0eff7  com.apple.RemoteViewServices (2.0 - 80.6) <5CFA361D-4853-3ACC-9EFC-A2AC1F43BA4B> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
           0x110f46000 -        0x111098fff  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <62770C0F-5600-3EF9-A893-8A234663FFF5> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x111128000 -        0x111128ffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <EC55FB59-2443-3F08-9142-7BCC93C76E4E> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x111132000 -        0x11119fff7  com.apple.datadetectorscore (4.1 - 269.3) <5775F0DB-87D6-310D-8B03-E2AD729EFB28> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x1111dc000 -        0x1112fcfff  com.apple.desktopservices (1.7.4 - 1.7.4) <ED3DA8C0-160F-3CDC-B537-BF2E766AB7C1> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x11136f000 -        0x11169ffff  com.apple.HIToolbox (2.0 - 626.1) <656D08C2-9068-3532-ABDD-32EC5057CCB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x1117fa000 -        0x111804fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <5A4B532E-3428-3F0A-8032-B0AFFF72CA3D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x11180e000 -        0x111810fff  com.apple.Notes.webplugin (1.5 - 107) <F7192C71-204F-312E-94F1-50E701287E91> /Applications/Notes.app/Contents/PlugIns/Notes.webplugin/Contents/MacOS/Notes
           0x111815000 -        0x111a15fff  libicucore.A.dylib (491.11.3) <5783D305-04E8-3D17-94F7-1CEAFA975240> /usr/lib/libicucore.A.dylib
           0x111abb000 -        0x111bb8ff7  libxml2.2.dylib (22.3) <7FD09F53-83DA-3ECD-8DD9-870E1A2F0427> /usr/lib/libxml2.2.dylib
           0x111bf1000 -        0x111c03ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
           0x111c09000 -        0x111c0aff7  ATSHI.dylib (341.1) <6852B534-7542-338A-903F-26615745901F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
           0x111c0f000 -        0x111cd4ff7  com.apple.coreui (2.0 - 181.1) <7C4196D5-79E8-3557-963B-71F494DC9B04> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x111d4a000 -        0x111dadff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1) <9ACD3AED-6C04-3BBB-AB2A-FC253B16D093> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x111dd4000 -        0x111ddafff  com.apple.DiskArbitration (2.5.2 - 2.5.2) <C713A35A-360E-36CE-AC0A-25C86A3F50CA> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x111de8000 -        0x111de9fff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
           0x111def000 -        0x111e05fff  com.apple.MultitouchSupport.framework (235.29 - 235.29) <617EC8F1-BCE7-3553-86DD-F857866E1257> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x111e15000 -        0x111e3cff7  com.apple.PerformanceAnalysis (1.16 - 16) <1BDA3662-18B7-3F38-94E5-9ACD477A7682> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x111e5f000 -        0x111e76fff  com.apple.GenerationalStorage (1.1 - 132.3) <FD4A84B3-13A8-3C60-A59E-25A361447A17> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x111e87000 -        0x111e96fff  com.apple.opengl (1.8.9 - 1.8.9) <6FD163A7-16CC-3D1F-B4B5-B0FDC4ADBF79> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x111ea0000 -        0x111f72ff7  com.apple.CoreText (260.0 - 275.16) <990F3C7D-EEF1-33C4-99D6-8E81C96ED3E3> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
           0x111fd9000 -        0x1120f2fff  com.apple.ImageIO.framework (3.2.1 - 850) <C3FFCEEB-AA0C-314B-9E94-7005EE48A403> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
           0x112151000 -        0x11222bfff  com.apple.backup.framework (1.4.3 - 1.4.3) <6B65C44C-7777-3331-AD9D-438D10AAC777> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x1122ae000 -        0x112423ff7  com.apple.CFNetwork (596.4.3 - 596.4.3) <A57B3308-2F08-3EC3-B4AC-39A3D9F0B9F7> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
           0x1124e7000 -        0x112538ff7  com.apple.SystemConfiguration (1.12.2 - 1.12.2) <A4341BBD-A330-3A57-8891-E9C1A286A72D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x11256d000 -        0x11258eff7  libCRFSuite.dylib (33) <B49DA255-A4D9-33AF-95AB-B319570CDF7B> /usr/lib/libCRFSuite.dylib
           0x11259e000 -        0x1125a2ff7  com.apple.TCC (1.0 - 1) <76A86876-2280-3849-8478-450E1A8C0E01> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
           0x1125ac000 -        0x112615fff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
           0x112681000 -        0x112694ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
           0x1126a0000 -        0x11279dfff  libsqlite3.dylib (138.1) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
           0x1127b8000 -        0x1127c7ff7  libxar.1.dylib (105) <B6A7C8AA-3E20-3A1D-A7BA-4FD0052FA508> /usr/lib/libxar.1.dylib
           0x1127d3000 -        0x1127d7fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
           0x1127e1000 -        0x1127e1fff  libOpenScriptingUtil.dylib (148.3) <F8681222-0969-3B10-8BCE-C55A4B9C520C> /usr/lib/libOpenScriptingUtil.dylib
           0x1127e5000 -        0x1127f2fff  libbz2.1.0.dylib (29) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
           0x1127fc000 -        0x112b13ff7  com.apple.CoreServices.CarbonCore (1037.6 - 1037.6) <1E567A52-677F-3168-979F-5FBB0818D52B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x112b92000 -        0x112c13fff  com.apple.Metadata (10.7.0 - 707.11) <2DD25313-420D-351A-90F1-300E95C970CA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x112c6d000 -        0x112d13ff7  com.apple.CoreServices.OSServices (557.6 - 557.6) <1BDB5456-0CE9-301C-99C1-8EFD0D2BFCCD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x112d7a000 -        0x112e07ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <54A8069C-E497-3B07-BEA7-D3BC9DB5B649> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x112e4e000 -        0x112eadfff  com.apple.AE (645.6 - 645.6) <44F403C1-660A-3543-AB9C-3902E02F936F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x112eda000 -        0x112f8bfff  com.apple.LaunchServices (539.9 - 539.9) <07FC6766-778E-3479-8F28-D2C9917E1DD1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x112fe4000 -        0x113015ff7  com.apple.DictionaryServices (1.2 - 184.4) <2EC80C71-263E-3D63-B461-6351C876C50D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x11303b000 -        0x113042fff  com.apple.NetFS (5.0 - 4.0) <195D8EC9-72BB-3E04-A64D-E1A89B4850C1> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x113049000 -        0x113057ff7  libkxld.dylib (2050.24.15) <A619A9AC-09AF-3FF3-95BF-F07CC530EC31> /usr/lib/system/libkxld.dylib
           0x113061000 -        0x11306eff7  com.apple.NetAuth (4.0 - 4.0) <A4A21A2F-B26A-3DC9-95E4-DAFA43A4A2C3> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x113080000 -        0x113097fff  com.apple.CFOpenDirectory (10.8 - 151.10) <10F41DA4-AD54-3F52-B898-588D9A117171> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x1130b3000 -        0x1130defff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
           0x1130ee000 -        0x113115fff  com.apple.framework.familycontrols (4.1 - 410) <50F5A52C-8FB6-300A-977D-5CFDE4D5796B> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
           0x113136000 -        0x1131d4ff7  com.apple.ink.framework (10.8.2 - 150) <3D8D16A2-7E01-3EA1-B637-83A36D353308> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x113208000 -        0x113b984af  com.apple.CoreGraphics (1.600.0 - 332) <5AB32E51-9154-3733-B83B-A9A748652847> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
           0x113ca0000 -        0x113d20ff7  com.apple.ApplicationServices.ATS (332 - 341.1) <AFDC05E6-F842-33D9-9379-81DF26E510CA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x113d52000 -        0x113e0fff7  com.apple.ColorSync (4.8.0 - 4.8.0) <73BE495D-8985-3B88-A7D0-23DF0CB50304> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x113e55000 -        0x113eabfff  com.apple.HIServices (1.20 - 417) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x113ee1000 -        0x113ef4ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <023D909C-3AFA-3438-88EB-05D0BDA5AFFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x113f08000 -        0x113f62fff  com.apple.print.framework.PrintCore (8.3 - 387.2) <5BA0CBED-4D80-386A-9646-F835C9805B71> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x113f96000 -        0x113fd5ff7  com.apple.QD (3.42.1 - 285.1) <77A20C25-EBB5-341C-A05C-5D458B97AD5C> /System/Library/Frameworks/Ap

    Here goes:
    Hardware Information:
              MacBook Pro (Retina, 13-inch, Early 2013)
              MacBook Pro - model: MacBookPro10,2
              1 3 GHz Intel Core i7 CPU: 2 cores
              8 GB RAM
    Video Information:
              Intel HD Graphics 4000 - VRAM: 768 MB
    System Software:
              OS X 10.8.4 (12E55) - Uptime: 0 days 1:25:41
    Disk Information:
              APPLE SSD SM512E disk0 : (500.28 GB)
                        disk0s1 (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 499.42 GB (458.41 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
    USB Information:
              Microsoft Microsoft® Nano Transceiver v2.0
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Inc. BRCM20702 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Inc. FaceTime HD Camera (Built-in)
    FireWire Information:
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Kernel Extensions:
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
    Launch Agents:
    User Launch Agents:
    User Login Items:
              iTunesHelper
    3rd Party Preference Panes:
              Flash Player
              Java
    Internet Plug-ins:
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              Flip4Mac WMV Plugin.plugin
              JavaAppletPlugin.plugin
              QuickTime Plugin.plugin
              Silverlight.plugin
              SlingPlayer.plugin
    User Internet Plug-ins:
    Bad Fonts:
              None
    Top Processes by CPU:
                   2%          WindowServer
                   1%          EtreCheck
                   1%          fontd
                   1%          Mail
                   0%          Safari
                   0%          ManagedClient
                   0%          WebProcess
                   0%          SystemUIServer
                   0%          System Events
                   0%          configd
    Top Processes by Memory:
              352 MB             Finder
              319 MB             WebProcess
              213 MB             Mail
              213 MB             Safari
              164 MB             WindowServer
              115 MB             Dock
              106 MB             Messages
              66 MB              mds
              57 MB              SystemUIServer
              49 MB              com.apple.dock.extra
    Virtual Memory Statistics
              3.96 GB            Free RAM
              2.18 GB            Active RAM
              256 MB             Inactive RAM
              1.60 GB            Wired RAM
              198 MB             Page-ins
              0 B                Page-outs

  • This happening to many site when I enter my usename and password and click on login my password get disappear and sites give warning of no password please help

    when I enter my password mainly on forums website password get disappears immediately after I click on Login button .IE is working fine only firefox creating problem please help .

    Make sure that you do not block cookies.
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    *https://support.mozilla.org/kb/Cannot+log+in+to+websites
    Start Firefox in <u>[[Safe Mode]]</u> to check if one of the extensions or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance/Themes).
    *Don't make any changes on the Safe mode start window.
    *https://support.mozilla.org/kb/Safe+Mode

  • HI, please help with PMD

    Hello, I'm trying to create rule for PMD ( [http://pmd.sourceforge.net/|http://pmd.sourceforge.net/] )
    Did anyone have experience in writing such rules?
    I'm trying to create a rule which can detect the simplest case of SQL injection.
    /** Wow!11!!1 stringParameter cause SQL injection. */
    String myq2 = "select * from table where a = " + stringParameter;
    ps = con.prepareStatement(myq2);
    rs = ps.executeQuery(); I can easilly find distinct feature of this case: con.prepareStatement
    Here is my code:
    public Object visit(ASTExpression astExpr, Object data){
            LOG.debug("==> ENTER visit(ASTExpression astStmt, Object data) <==");
            LOG.debug("image=[{}] LINE[{}]",astExpr.getImage(), astExpr.getBeginLine());
            Node preparedStmtNode = recursiveSearch(astExpr, "prepareStatement");
        /** Searches for searchStr in node image and its children. */
        public static final Node recursiveSearch(Node node, String searchStr){
            Node matchedNode = null;
            String image = getImage(node);
            if(image!=null && image.contains(searchStr)){
                matchedNode = node;
            }else{
                for(int i=0; i<node.jjtGetNumChildren();i++){
                    Node subNode = recursiveSearch(node.jjtGetChild(i), searchStr);
                    if(subNode!=null){
                        matchedNode = subNode;
                        break;
            return matchedNode;
        /** SimpleNode children do have image. */
        public static final String getImage(Object node){
            String image = null;
            if(node instanceof SimpleNode){
                image = ((SimpleNode)node).getImage();
            return image;
        }But I don't understand how can I get an argument or argument list of con.prepareStatement(myq2); expression.
    Then I would like:
    1. to get info about myq2 type
    2. and if it's a string, go upper and see how it was created.
    Please, help me to get arguments of con.prepareStatement(*myq2*);

    YoungWinston wrote:
    I'm trying to create a rule which can detect the simplest case of SQL injection.Wouldn't a PMD forum be a better place to ask?
    WinstonYes, the task is rather complicated. Thr resolution of all common cases will take a lot of time.
    Unfortunately, the forum seems like dead. :(
    I hoped to find any help here.
    su_penguin wrote:
    http://pmd.sourceforge.net/howtowritearule.html
    http://pmd.sourceforge.net/apidocs/index-all.html
    Hope that helps a bit.I've watched tutors and source code of rules included in distribution, but I didn't find anything close to my task.
    Anyway exceuse me for disturbing you. Maybe someone will give me some experience is solving such task.
    Edited by: Holod on 14.07.2010 11:51

  • I need to update my Apple ID to reflect my new e-mail address, but seem to have created a whole new Apple ID instead. Please help!

    Hi- not sure if this is the right forum for this, but I'm hoping to merge my two Apple ID's, or at least get rid of the new one that isn't linked to either of my devices. I seem to have my old Apple ID, that is linked to my Iphone 4 and Mac Book Pro, Itunes etc. And my NEW Apple ID, with the correct e-mail address, that isn't linked to anything. I have tried to change my Apple ID by managing my account, but it won't let me change the e-mail address as the correct address is already being used. Please help, anyone!
    Thank you,
    Julie.

    Hi Julie, I have the same issue (except to complicate matters even further the .me address I'd like to keep is an alias) and have spent over an hour on the 'Express Support' chat tonight; where I've been told that to date Apple will not merge two accounts and if you choose to delete one account, that .me address/ID will never be available again ... I did ask if this was something Apple were looking at changing, but was told:
    "Once an @me.com email address is created once it is used forever. To create an account you would have to use an email address that would have never been used before. I wish there was a way for us to do that, however there is not. The only way to free up an @me.com email address would be if we recycled accounts and we currently are not doing that."
    Crystal, the support technician, then went on to state:
    "When you remove an alias from an account that permanently deletes it and makes it unable to be used again on that account it was deleted from or on another account."
    followed (after my attempts at suggesting various work-arounds) by:
    "Merging of Apple IDs is something that we are unable to do. There are a series of Apple Discussion Boards stating this as other customers discuss not be able to merge their IDs also. If you click on Frequently asked questions at this link, it also states that we cannot merge IDs: http://support.apple.com/kb/HT4895"
    Bless Crystal, she really did try to help, but this looks like an option we'll just have to wait for! Hope this makes sense ...

  • Error in creating a process using runtime class - please help

    Hi,
    I am experimenting with the following piece of code. I tried to run it in one windows machine and it works fine. But i tried to run it in a different windows machine i get error in creating a process. The error is attached below the code. I don't understand why i couldn't create a process with the 'exec' command in the second machine. Can anyone please help?
    CODE:
    import java.io.*;
    class test{
    public static void main(String[] args){
    try{
    Runtime r = Runtime.getRuntime();
         Process p = null;
         p= r.exec("dir");
         BufferedReader br = new BufferedReader(new InputStreamReader(p.getInputStream()));
         System.out.println(br.readLine());
    catch(Exception e){e.printStackTrace();}
    ERROR (when run in the dos prompt):
    java.io.IOException: CreateProcess: dir error=2
    at java.lang.Win32Process.create(Native Method)
    at java.lang.Win32Process.<init>(Win32Process.java:63)
    at java.lang.Runtime.execInternal(Native Method)
    at java.lang.Runtime.exec(Runtime.java:550)
    at java.lang.Runtime.exec(Runtime.java:416)
    at java.lang.Runtime.exec(Runtime.java:358)
    at java.lang.Runtime.exec(Runtime.java:322)
    at test.main(test.java:16)
    thanks,
    Divya

    As much as I understand from the readings in the forums, Runtime.exec can only run commands that are in files, not native commands.
    Hmm how do I explain that again?
    Here:
    Assuming a command is an executable program
    Under the Windows operating system, many new programmers stumble upon Runtime.exec() when trying to use it for nonexecutable commands like dir and copy. Subsequently, they run into Runtime.exec()'s third pitfall. Listing 4.4 demonstrates exactly that:
    Listing 4.4 BadExecWinDir.java
    import java.util.*;
    import java.io.*;
    public class BadExecWinDir
    public static void main(String args[])
    try
    Runtime rt = Runtime.getRuntime();
    Process proc = rt.exec("dir");
    InputStream stdin = proc.getInputStream();
    InputStreamReader isr = new InputStreamReader(stdin);
    BufferedReader br = new BufferedReader(isr);
    String line = null;
    System.out.println("<OUTPUT>");
    while ( (line = br.readLine()) != null)
    System.out.println(line);
    System.out.println("</OUTPUT>");
    int exitVal = proc.waitFor();
    System.out.println("Process exitValue: " + exitVal);
    } catch (Throwable t)
    t.printStackTrace();
    A run of BadExecWinDir produces:
    E:\classes\com\javaworld\jpitfalls\article2>java BadExecWinDir
    java.io.IOException: CreateProcess: dir error=2
    at java.lang.Win32Process.create(Native Method)
    at java.lang.Win32Process.<init>(Unknown Source)
    at java.lang.Runtime.execInternal(Native Method)
    at java.lang.Runtime.exec(Unknown Source)
    at java.lang.Runtime.exec(Unknown Source)
    at java.lang.Runtime.exec(Unknown Source)
    at java.lang.Runtime.exec(Unknown Source)
    at BadExecWinDir.main(BadExecWinDir.java:12)
    As stated earlier, the error value of 2 means "file not found," which, in this case, means that the executable named dir.exe could not be found. That's because the directory command is part of the Windows command interpreter and not a separate executable. To run the Windows command interpreter, execute either command.com or cmd.exe, depending on the Windows operating system you use. Listing 4.5 runs a copy of the Windows command interpreter and then executes the user-supplied command (e.g., dir).
    Taken from:
    http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html

  • HT2534 when i create the apple ID with the above procedure, i dont see "none" options under credit card selection, please help.

    When i create the apple ID with the above procedure, i dont see "none" options under credit card selection, please help.

    Apple needs people like you.

  • HT4972 I have ipad 1 . And i want to update it from ios 4.3.5 to ios 7 but i can't why ?? Please help me becouse i can't download apps from app store !!!!!   I would suggust:  1 to create a big camera for i pads and ipods and iphones so we can put it in a

    I have ipad 1 . And i want to update it from ios 4.3.5 to ios 7 but i can't why ?? Please help me becouse i can't download apps from app store !!!!!
    I would suggust:
    1 to create a big camera for i pads and ipods and iphones so we can put it in another ipad or ipod or iphone and it has a zoom lens
    2 when i downloaded photos and music from a computer to my ipad , i cant delete them now plese do the itunes like samsung becuz samsung have an easier way to download thing from computer
    I hope to help me with my poblome and fix it please !!??
    And i hope to take my suggusts and make me happy becouse apple it is cooler from samsung
    Apple the best
    H.M

    The iPad 1 can't run the newer operating systems. It'd be like trying to play a bluray disc in your 6 year old dvd player....it simply lacks the hardware to make the software run.
    No suggestion about the camera, but given that Apple's attitude seems to be to focus more on the more mobile devices for photography (the iPhone and Touch cameras got features, the iPad and mini didn't), that is highly unlikely. You can tell Apple what you want, but you'd probably be money ahead to get a digital camera.
    as to the photos, anything put on via iTunes has to come off via iTunes.Your main alternative would be to look for photo apps that offer file exchange that may give you more functionality.

  • Please help. Trying to create external xml vidoe playlist. Desperate!

    I was given an assignment to  create and external video playlist using an xml file.  I have never used  flash before, know nothing about encoding and all that was given to the  class in terms of instuctions was a short tutorial that has no  resources for troubleshooting.  We were given everything; the external  playlist file equipped with the video skin, the video list, actionscript  that loads the xml and the xml file.  We were told that all we need to  do is change the names of the videos in the xml file to match the names  of our videos.  I did that.  We were also told we needed to "name  target", but we were not informed on how to do this.  I have tried  everything, visited every tutorial and I cannot figure out how to get  this damn thing to work.  I cannot even get flash to load the xml file.  PLEASE HELP.
    Here is the xml file:
    <?xml version = "1.0" encoding = "i-8859-1"?>
    <playlist>
    <ADogWithoutABone
    flvurl="ADogWithoutABone.flv"
    desc="Hyper Wall First Video" />
    <Highway
    flvurl="Highway.flv"
    desc="Hyper Wall Second Video" />
    <PsychoBabble
    flvurl="PsychoBabble.flv"
    desc="Hyper Wall Third Video" />
    <SomethingElse
    flvurl="SomethingElse.flv"
    desc="Hyper Wall Fourth Video" />
    </playlist>
    I tried putting in the entire address of the file location, but it did nothing.
    Here is the actionscript in the flash file:
    var xmlLoader:URLLoader = new URLLoader();
    xmlLoader.addEventListener(Event.COMPLETE, xmlLoaded);
    xmlLoader.load(new URLRequest("playlistXML.xml"));
    function xmlLoaded(event:Event):void {
    var playlistXML:XML = new XML(event.target.data);
    var item:XML;
    for each(item in playlistXML.videoname) {
    trace("item: "+item.attribute("flvurl").toXMLString());
    myPlayList.addItem({label:item.attribute("desc").toXMLString(), data:item.attribute("flvurl").toXMLString()});
    //Select the first video
    myPlayList.selectedIndex = 0;
    //And automatically play it
    myPlayScreen.play(myPlayList.selectedItem.data);
    //Add a listener to detect when new video is selected and play it
    function listListener(event:Event) {
    myPlayScreen.play(event.target.selectedItem.data);
    myPlayList.addEventListener(Event.CHANGE, listListener);
    I  tried placing the full address of the xml file in, along with the file  address of the videos, but again it did nothing.  Everything is located  in the same file, and the videos in a sub file in that file. I tried  taking out the sub file and putting all the videos in the same file, but  it did nothing.  I am sure it's something very simple, but like I said I  have NO experience with this whatsoever. I am SO lost and DESPERATELY  need help. PLEASE someone SAVE MEEEE!
    Thanks

    to parse your xml correctly use:
    function xmlLoaded(event:Event):void {
        var playlistXML:XML=new XML(event.target.data);
        var item:XML;
        for each (item in playlistXML.children()) {
            trace("node: "+item.attribute("flvurl").toXMLString());
            myPlayList.addItem({label:item.attribute("desc").toXMLString(), data:item.attribute("flvurl").toXMLString()});
        //Select the first video
        myPlayList.selectedIndex=0;
        //And automatically play it
        myPlayScreen.play(myPlayList.selectedItem.data);
    you more problems after that, though.  is myPlayList a list component?

Maybe you are looking for