Array of Sockets

Hi, I am new with Socket programming and I have read a java tutorial that talks about socket. I am trying this server (sample program from the tutorial):
import java.net.*;
import java.io.*;
public class MultiServer3333 {
public static void main(String[] args) throws IOException {
ServerSocket serverSocket = null;
boolean listening = true;
try {
serverSocket = new ServerSocket(3333);
} catch (IOException e) {
System.err.println("Could not listen on port: 3333.");
System.exit(-1);
while (listening){
new KKMultiServerThread(serverSocket.accept()).start();
serverSocket.close();
this server program supports multiple clients, but what i am trying is a client program that has an array of sockets, an error would usually yield to a NullPointerException when the clientSocket[i] = new Socket(ipAddress, portNumbers); code is reached.
here is my client code:
System.out.println("init method");
try {
for(int i = 0; i < 3; i++) {
System.out.println("Creating socket connection at port[" + portNumbers[i] + "]");
clientSocket[i] = new Socket(ipAddress, portNumbers[i]);
out[i] = new PrintWriter(clientSocket[i].getOutputStream(), true);
System.out.println("Assigning clientSocket to PrintWriter");
in[i] = new BufferedReader(new InputStreamReader(clientSocket[i].getInputStream()));
System.out.println("Assigning PrintWriter to BufferedReader");
Tell me, is an array of socket not advisable? or not supported?
Thanks in advance!

I think you should create a thread associated to
each one of your connexion
Each thread would contain a socket...
hope it helps

Similar Messages

  • Receiving it as a byte array via socket

    Yes, I could know the data end as read() returning -1 and the total byte-count value is in my hand then. But, however, if the byte-count value is N, I want those bytes in a single byte array of size N. What could be the standard, quickest and smartest way of getting the byte array on a socket peer?

    hiwa wrote:
    The readFully() method takes a byte array as an argument. The size of the array can't be decided as the total data size when we begin reading. We don't know it yet then.
    My method would be:
    LOOP(read -> out to a ByteArrayOutputStream) -> call ByteArrayOutputStream.toByteArray()
    However, if there is/are more smarter ones ...What problem are you actually trying to solve here?
    Here's a possible "solution" for you.
    Use a buffer. Then read the buffer and append the contents to a larger buffer. With code like this.
    private byte[] mergeBuffers(byte[] a, byte b[]){
      byte[] newBuffer = new byte[a.length+b.length];
      System.arraycopy(a,0,newBuffer,0,a.length);
      System.arraycopy(b,0,newBuffer,a.length,b.length);
      return newBuffer;
    }so during the read loop as the buffer fills up add the results of the current buffer to your "super"-buffer or whatever you want that has all the data.
    And then when you have finished reading trim the byte array to fit.

  • How best to receive large short array --- tcp, socket, LabVIEW, ShortBuffer

    The application in question works with a LabVIEW program via Ethernet (a tcp connection). The LabVIEW program generates a large (e.g. 600x600) array of numbers (either 32-bit floats or 16-bit signed ints, whichever we choose). The question is what is the fastest, reliable, way to get those numbers? LabVIEW can send it two ways, the first is to convert the array to a string, the second is just to send the array data as-is. I believe that converting to string inflates the size of the message so much that this is not a good option. So I guess my question is how to receive the array of numbers (either as 32-bit floats or 16-bit signed ints)?
    I was thinking of using a FloatBuffer or a ShortBuffer. The latter would be best since floats do not get us any extra information in this case, so I do not know why I even bothered to consider using them. I guess what happened was that I learned first of the existence of the FloatBuffer, so I sought to get LabVIEW to send floats. Now that I know there is a ShortBuffer I guess floats are out. Okay, rambling, do you think a LabVIEW array of shorts will be able to get read by a ShortBuffer on the other end of a TCP connection? Also, am I going to have to call read() multiple times in order to get all the elements of the array?

    theHandOfTheKing wrote:
    The application in question works with a LabVIEW program via Ethernet (a tcp connection). The LabVIEW program generates a large (e.g. 600x600) array of numbers (either 32-bit floats or 16-bit signed ints, whichever we choose). The question is what is the fastest, reliable, way to get those numbers? LabVIEW can send it two ways, the first is to convert the array to a string, the second is just to send the array data as-is. Text is more likely to be reliable as you will be able to read the data to see when something has gone wrong and have a better idea of why.
    I believe that converting to string inflates the size of the message so much that this is not a good option. Why do you believe this? Do you have a bandwidth or time limit you haven't mentioned?
    So I guess my question is how to receive the array of numbers (either as 32-bit floats or 16-bit signed ints)?You can optimise the data send later after you get something working.
    I was thinking of using a FloatBuffer or a ShortBuffer. The latter would be best since floats do not get us any extra information in this case, so I do not know why I even bothered to consider using them. Not sure why float would have less information.
    Okay, rambling, do you think a LabVIEW array of shorts will be able to get read by a ShortBuffer on the other end of a TCP connection? Provided the data is only shorts, its ideal.
    Also, am I going to have to call read() multiple times in order to get all the elements of the array?yes.

  • Byte array convert to image works fine for a peiod of time, Then error

    Hi all
    I'm on a program of reading incoming image set which comes as byte arrays through socket and convert them back to images using the method.
    javax.microedition.lcdui.Image.createImage();This works perfect for some time.
    But after 1 minute of running it gives an error
    java.lang.OutOfMemoryError: Java heap space
            at java.awt.image.BufferedImage.getRGB(Unknown Source)
            at com.sun.kvem.midp.GraphicsBridge.loadImage(Unknown Source)
            at com.sun.kvem.midp.GraphicsBridge.createImageFromData(Unknown Source)
            at sun.reflect.GeneratedMethodAccessor14.invoke(Unknown Source)
            at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
            at java.lang.reflect.Method.invoke(Unknown Source)
            at com.sun.kvem.sublime.MethodExecution.process(Unknown Source)
            at com.sun.kvem.sublime.SublimeExecutor.processRequest(Unknown Source)
            at com.sun.kvem.sublime.SublimeExecutor.run(Unknown Source)My J2ME client code
    public class ChangeImage extends Thread
        private SocketConnection sock = null;
        private Image img = null;
        private CanvasKey canvas = null;
        private InputStream in = null;
        public ChangeImage(SocketConnection sock, Canvas canvas) throws IOException
            this.sock = sock;
            this.canvas = (CanvasKey) canvas;
            in = sock.openInputStream();
        public void run()
            super.run();
            short length;
            while (true)
                DataInputStream din = null;
                try
                    din = new DataInputStream(in);
                    length = din.readShort();     // to determine next data packet size
                    byte[] arr = new byte[length];  // next data packet store here
                    din.readFully(arr);  //read image
                    img = Image.createImage(arr, 0, arr.length);
                    canvas.setImage(img);
                    ChangeImage.sleep(50);
                catch (Exception ex)
                    ex.printStackTrace();
    }When I comment following line no error prints.
    img = Image.createImage(arr, 0, arr.length);So the problem is not with socket program.
    What is this problem? Think old image isn't being flushed!!! in the method javax.microedition.lcdui.Image.createImage();Please help me.

    Forgot to Mention i'm using Windows 8.1 - 32 GB Ram - i7-3970x - 2 SSd's in raid 0 for C Drive/ Storage drive is three ( 2 tb HDD in a raid 0 ) / Pictures Folder defaults to the Storage Drive not the Application drive .

  • Errors and exceptions in writing large binary data on sockets!!! urgent

    hi
    I am trying to write large binary data in the form of byte arrays on sockets.
    Data is as large as 512KB(== 524288bytes) So i store the data (actually read from a file through FileInputStream ) and then write on the socket with lines like this
    DataOutputStream dos =
    new DataOutputStream(new BufferedOutputStream(sock.getOutputStream()));
    dos.write(b);
    /* suppose b is the arrayreference in which data is stored. sometimes i write with that offset + len function*/
    dos.flush();
    dos.close();
    sock.close();
    but the program is not stable: sometimes the whole 512KB is read on other side and sometimes less usually 64KB.
    The program is unthreaded.
    There is another problem : one side(reading or writing) sometimes gives error :
    java.net.SocketException: Software caused connection abort: socket write error
    please reply and reply soon and give ur suggestions
    thanks

    hi
    I am trying to write large binary data in theform
    of byte arrays on sockets.
    Data is as large as 512KB(== 524288bytes) So istore
    the data (actually read from a file through
    FileInputStream ) and then write on the socketwith
    lines like this
    DataOutputStream dos =
    new DataOutputStream(new
    BufferedOutputStream(sock.getOutputStream()));
    dos.write(b);
    /* suppose b is the arrayreference in which datais
    stored. sometimes i write with that offset + len
    function*/
    dos.flush();
    dos.close();
    sock.close();
    but the program is not stable: sometimes the whole
    512KB is read on other side and sometimes less
    usually 64KB.
    The program is unthreaded.
    There is another problem : one side(reading or
    writing) sometimes gives error :
    java.net.SocketException: Software caused
    connection abort: socket write error
    please reply and reply soon and give ursuggestions
    thanksUmm how are you reading the data on the other side?
    some of your code snippet might help. Your writing
    code seems ok. I've written a file transfer program
    in a similar fashion and have successfully testing on
    different platforms (AIX, AS400, Solaris, Windows,
    etc) without any problems and without needing to set
    the buffer sizes with files as large as 600MB and you
    said you're testing this on the loopback?
    Point here is you should never need to reset any of the default TCP options to get program correctness. The options are more for optimizations and fine tuning. If indeed you need to change the options to get your program to work, then you program wont be able to scale under different load.

  • Launchd: Using Sockets key for on demand jobs

    Hi,
    I would like to start nginx whenever I send an HTTP request to localhost. This is my plist:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN"
    "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>Disabled</key>
    <false/>
    <key>Label</key>
    <string>org.sysoev.nginx</string>
    <key>ProgramArguments</key>
    <array>
    <string>/usr/local/nginx/sbin/nginx</string>
    </array>
    <key>Sockets</key>
    <dict>
    <key>Listeners</key>
    <dict>
    <key>SockNodeName</key>
    <string>127.0.0.1</string>
    <key>SockServiceName</key>
    <string>http</string>
    </dict>
    </dict>
    <key>KeepAlive</key>
    <dict>
    <key>SuccessfulExit</key>
    <false/>
    </dict>
    </dict>
    </plist>
    Although nginx is started when I request a webpage from localhost, the request never arrives at nginx, so the requested page is not loaded. When I replace the Sockets dict with RunAtLoad: true, all works fine.
    Could it be that launchd somehow intercepts the requests sent to an on-demand daemon?
    Kind regards,
    Jan

    Launchd does intercept the requests sent to an on-demand process. That's how launch on demand works.
    I'm not familiar with nginx, but I wouldn't expect launch on demand to work with any web server, for the same reason it doesn't work with Apache. Apache has to start up as root in order to bind the usual ports 80 and 443. It then forks an unprivileged process to handle the actual network traffic. Any sort of automatic forking is incompatible with launch on demand. The solution is the one you already found, run at launch and let the process do its own listening on the network.

  • Data Transfer with Socket

    Hi,
    we want to transfer some arrays using socket.
    On the server side we send two array (arrays of byte of ~50 Kbytes) with:
    PrintStream out = new PrintStream(client.getOutputStream(), true)
    out.write(Array of byte).
    On the client side we do not receive two stream of data of 50Kbyte, but we receive two or more stream of different size using:
    BufferedInputStream in = new BufferedInputStream(s.getInputStream()) in.read(Msg).
    Server side:
    Send Array1;
    Send Array2;
    Client Side:
    get Stream1;
    get Stream2;
    get Stream3;
    Stream1 = part of Array1
    Stream2 = remaining of Array1 and part of Array 2
    Stream3 = remaining of Array2
    Is it possible to receive each array in one stream each and not fragmented in different stream ??
    What we wanna is:
    Server side:
    Send Array1;
    Send Array2;
    Client side:
    get Stream1 (= Array1)
    get Stream2 (= Array2)
    Best Regs

    I didn't quite understand your post, given your mix of Java code and pseudocode.
    However, I shall attempt to give you some guidance:
    When you say you are using multiple streams, I am assuming that you are only using 1 stream, but reading in from it multiple times.
    With a network connection, delivery over the stream of all the content at one time cannot be guranteed. In practical terms this means that you cannot do the following:
    Server:
    send 50kb of data
    Client:
    receive 50kb of data.
    Close connection.
    What you have to do instead is:
    Server:
    send 50kb of data
    Client:
    read from stream until 50kb of data have been read.
    Close connection.
    For the above to work, you must know that you are expecting 50kb of data. If you don't know how big the data stream is going to be, there are two solutions:
    Solution 1: include length of data in send:
    Server:
    send 2 bytes representing the length of the data (in this case 12bk)
    send 12kb of data
    Client:
    read length of stream (2 bytes. Should give you 12kb).
    read 12kb of data.
    Close connection.
    Solution 2: include batch separators:
    This solution is when you want to send a number of batches down the same line (kindda what you want).
    Server:
    send 50kb of data
    send separator (e.g. '|''|')
    send 34kb of data
    Client:
    read stream until stream is closed, or separator encountered.
    if separator encountered, create new data batch, continue as above.
    The problem with solution 2, is that you now have to devise an appropriate way for escaping the separator. If the separator occurs naturally in the data you are sending, you should escape it on sending, and unescape it on reading in at the other end.
    However, after all of the explanation above, my advise to you is: use the ObjectOutputStream and the ObjectInputStream classes. With these, you should be able to send and receive the array with no problems. Follow the advice in the JavaDocs and possibly the Java Tutorial for more info on using the ObjectStreams.
    Regards,
    Manuel Amago.

  • Monitering Multiple Sockets in one thread

    Hi all
    i have a problem.....i want to create and moniter multiple sockets BUT Due to resourse problems i cannot create as many threads. I want to use multiple sockets in one thread.
    Cani do something where i can have array of sockets and poll for data in a single while loop for all the sockets...OR u may suggest another solution for my porblem of using multiple sockets in one thread.
    thanks in advance
    Sai Burra

    Here's a pseudocode solution I've used:
    Create a thread to listen to incoming connections. Upon incoming connection, add the socket and inputstream to the incoming messages listener thread.
    Create a threadpool for outgoing messages.
    Create a thread to process incoming messages.
    Incoming message listener thread:
    Create a hashtable of sockets. Socket is the key, inputstream is the value.
    Loop through each key, and assuming BufferedReader input you can poll by using (input.isReady()). If isReady() returns true, that means there is data on the stream coming in, so you'll need to process it.
    After processing the data, call a thread from your outgoing messages threadpool to send the response - in case there is blocking, you'll still be able to process the rest of your data.
    Sleep the incoming messages thread for 200 ms (300-400ms is quite adequate for real time processing I've found, at least the slowdown isn't noticable).
    This should work for what you're talking about.

  • Multi homeing with java sockets.

    suppose i have N different NIC's in my machine,each with its own IP Address.
    I want to listen on port# X on all the NIC's.
    does i have to feed every IP Address to the Socket I want it listen to that port,or there's some method or trick so that Java Socket can find itself all the IP's associated with my machine?

    So the OS itself looks for every IP assigned to machine and Java and JVM will get it from the OS?Not in this case. The OS or rather TCP/IP binds the listening socket to the 'wildcard' address which matches any IP address of the host, so when a connection comes in on that port via any NIC it will be despatched to the listening socket.
    ServerSocket listner=new
    ServerSocket(port);
    now running :
    listner.accept()
    returns an array of Sockets each bined to a specific
    IP?No, there is only a single listening socket, and accept() returns a single Socket for every incoming connection.
    What about DatagramSockets if I want to listen for
    UDP packets?Same principle. Don't bind it to any local IP address, or bind it to the null address which is Java's way of expressing the wildcard address.

  • Can Java Socket listen from VB?

    I have a program that first writes some data on output stream on socket , on which VB program is listening..and then it try to read from input stream what VB program would write back. Everytime I write the data , it doesnt throw any exception at that point and when I do inStream.read() , it returns -1 indicating end of stream. However, when I run a VB client using WinSock , it works perfect!!! I thought it should not matter whether client is java or VB ..but was wondering if any of you have any opinion on this? My java client just doesnt seem to work. Both are communicating through TCP protocol.
    fyi: following is the piece of code..
        outStr = socket.getOutputStream(); // connected
        outStr.write(vgBufferOut); //vgBufferOut is bytes array.
        socket.shutdownOutput(); //if I dont shutdown output stream server will stay in the loop
        inStr = socket.getInputStream(); //get the input stream
         vlLenbufferIn = inStr.read(vlBufferIn);  //store it in byte array vlBufferIn and get length.
          System.out.println("Length is " + vlLenbufferIn);   //This always returns -1

    I believe it should work. Did you try it with a java server on the other side? If you are completely stuck try using a TCP monitor to monitor all data that is transmitted. I recommend the one provided with Apache Axis:
    http://docs.pushtotest.com/axisdocs/user-guide.html#tcpmon
    but I am sure you can find others too.

  • Help needed regarding sockets

    Hi,
    I am new to java. Could anybody tell me how to pass arrays through sockets? i tried passing them by using a for loop but am getting an error because client reads an empty socket. Could anyone please help me with this problem?

    You could use an ObjectOutputStream and ObjectInputStream, the cast the object into the array type - of which your client/server must know about.
    That way, Java transfers it on the socket as object data (binary), and the receiving end simply decodes it into a Class holder. You must cast or "type cast" the object received into something useful.
    If lets say you want an integer array, type casting to a String array would not be good - it would throw an exception.
    ObjectOutputStream.write(int[]);
    (int[])ObjectInputStream.read();

  • Internet stops for no apparent reason.

    My mac mini has been in use since about 2009 with no issues.  It runs 10.7.5 and has 2Gb RAM. It is connected to my airport base station via a 16 port gigabit switch (I haven't yet tried wifi to see if I get the same problem).
    The problem started about a week ago.  What happens is that while browsing the internet using firefox or safari, pages suddenly fail to load.
    This can include watching catch-up TV - it suddenly stops playing and then I find that no other web pages will load in either browser.  A re-boot solves the problem for a while.
    When the problem occurs, I am still able to browse web pages from other computers or iPhone etc. so I don't believe it is anything to do with my ADSL connection, modem or router.  Also when the problem occurs, my computer is still able to download mail from the internet into Mail and view my IP-cam on my LAN (to my recording software - not yet tried opening it in safari but I suspect it won't work).  But this all proves that the MAC MINI still has connection to the intent via its ethernet connection but it just can't load web pages.
    I have checked that it is not a DNS issue by trying to open a web page by its IP address, this failed.  I will try pinging webpages and their corresponding IP address to see what happens.
    I opened iStat and when there is a problem, most of the RAM is in use, the CPU has a high load and this is being used by an app called "web filter…" (couldn't see the full name because the window was too small to show it all).  After a re-boot, CPU and memory usage returns to normal levels and the "web filter…" app is gone.  I tried a spotlight search for web filter but came up blank.  I have taken a screen shot of activity monitor while everything is OK and will do another the next time I get this issue.
    I hope someone can shed some light on this.
    Thanks very much
    Grommett

    Hi Linc
    The machine has been fine for over 24 hours until just now.  Web pages stopped loading so I ran your test.  I hope you can find the answer somewhere in this!...
    Many thanks
    Grommett
    Start time: 20:35:05 12/07/14
    Model Identifier: Macmini2,1
    Memory: 2 GB
    System Version: Mac OS X 10.7.5 (11G63)
    Kernel Version: Darwin 11.4.2
    64-bit Kernel and Extensions: No
    Time since boot: 1 day1:49
    Admin access: No
    Memory
      BANK 0/DIMM0:
      Size: 1 GB
      Speed: 667 MHz
      Status: OK
      Manufacturer: 0x2C00000000000000
      BANK 1/DIMM1:
      Size: 1 GB
      Speed: 667 MHz
      Status: OK
      Manufacturer: 0x2C00000000000000
    SATA
      ST1000LM024 HN-M101MBB
    USB
      Backup+ Desk (Seagate LLC)
    Diagnostic reports
      2014-12-06 AppleIDAuthAgent crash
      2014-12-06 PluginProcess crash
      2014-12-06 WebProcess crash
      2014-12-06 iTunes crash x2
      2014-12-06 xeoma crash x20
    Log
      Dec 6 10:41:42 com.apple.mdworker.pool.0: Throttling respawn: Will start in 3 seconds
      Dec 6 14:15:30 com.apple.AirPortBaseStationAgent: Throttling respawn: Will start in 3 seconds
      Dec 6 18:21:29 com.apple.AirPortBaseStationAgent: Throttling respawn: Will start in 2 seconds
    kexts
      e.iokit.IOACPIFamily (1.4)
      e.iokit.IOPCIFamily (2.7)
      e.driver.AppleACPIPlatform (1.5)
      e.driver.AppleKeyStore (28.18)
      e.iokit.IOStorageFamily (1.7.2)
      e.driver.DiskImages (331.7)
    e.driver.AppleIntelCPUPowerManagement (195.0.0)
      e.security.TMSafetyNet (8)
      e.kext.AppleMatch (1.0.0d1)
      e.security.sandbox (177.11)
      e.security.quarantine (1.4)
      e.nke.applicationfirewall (3.2.30)
    e.driver.AppleIntelCPUPowerManagementClient (195.0.0)
      e.driver.AppleAPIC (1.6)
      e.iokit.IOSMBusFamily (1.1)
      e.driver.AppleACPIEC (1.5)
      e.driver.AppleSMBIOS (1.9)
      e.iokit.IOHIDFamily (1.7.1)
      e.driver.AppleACPIButtons (1.5)
      e.driver.AppleRTC (1.5)
      e.driver.AppleEFIRuntime (1.6.1)
      e.driver.AppleEFINVRAM (1.6.1)
      e.iokit.IOUSBFamily (5.1.0)
      e.driver.AppleUSBUHCI (5.1.0)
      e.driver.AppleUSBEHCI (5.1.0)
      e.driver.AppleHPET (1.7)
      e.iokit.IONetworkingFamily (2.1)
      e.iokit.AppleYukon2 (3.2.2b1)
      e.iokit.IOFireWireFamily (4.4.8)
      e.driver.AppleFWOHCI (4.9.0)
      e.iokit.IOAHCIFamily (2.0.8)
      e.driver.AppleAHCIPort (2.3.1)
      e.iokit.IOUSBUserClient (5.0.0)
      e.driver.AppleUSBHub (5.1.0)
      e.iokit.IOATAFamily (2.5.1)
      e.driver.AppleIntelPIIXATA (2.5.1)
      e.iokit.IOAHCIBlockStorage (2.1.0)
    e.iokit.IOSCSIArchitectureModelFamily (3.2.1)
      e.iokit.IOATAPIProtocolTransport (3.0.0)
      e.driver.XsanFilter (404)
      e.iokit.SCSITaskUserClient (3.2.1)
      e.iokit.IOCDStorageFamily (1.7.1)
      e.iokit.IODVDStorageFamily (1.7.1)
      e.iokit.IOBDStorageFamily (1.7)
    e.iokit.IOSCSIMultimediaCommandsDevice (3.2.1)
      e.BootCache (33)
    e.AppleFSCompression.AppleFSCompressionTypeZlib (1.0.0d1)
    e.AppleFSCompression.AppleFSCompressionTypeDataless (1.0.0d1)
      e.driver.AppleUSBComposite (5.0.0)
      e.iokit.IOUSBAttachedSCSI (1.0.2)
      e.iokit.IOSCSIBlockCommandsDevice (3.2.1)
      e.iokit.IOUSBHIDDriver (5.0.0)
      e.driver.AppleIRController (312)
      e.iokit.IOBluetoothFamily (4.0.8f17)
    e.driver.AppleUSBBluetoothHCIController (4.0.8f17)
    e.driver.CSRUSBBluetoothHCIController (4.0.8f17)
      e.driver.IOPlatformPluginFamily (5.1.1d6)
      e.iokit.IOGraphicsFamily (2.3.4)
      e.iokit.IONDRVSupport (2.3.4)
      e.driver.IOPlatformPluginLegacy (5.0.0d8)
      e.driver.AppleSMC (3.1.3d10)
      e.driver.ACPI_SMC_PlatformPlugin (5.0.0d8)
      e.driver.AppleSMBusController (1.0.10d0)
      e.driver.AppleMCCSControl (1.0.33)
      e.driver.AppleUpstreamUserClient (3.5.9)
      e.iokit.IOHDAFamily (2.2.5a5)
      e.driver.AppleHDAController (2.2.5a5)
      e.driver.AppleLPC (1.6.0)
      e.iokit.IOFireWireIP (2.2.5)
      e.iokit.IO80211Family (420.3)
      e.driver.AirPort.Atheros21 (431.14.10)
    e.driver.AppleIntelIntegratedFramebuffer (7.0.4)
      e.driver.AppleGraphicsControl (3.1.33)
      e.driver.ApplePolicyControl (3.1.33)
      e.kext.OSvKernDSPLib (1.3)
      e.iokit.IOAudioFamily (1.8.6fc18)
      osiaSW.AudioSupport (2.3.6)
      e.driver.AudioIPCDriver (1.2.3)
      e.Dont_Steal_Mac_OS_X (7.0.0)
      e.iokit.IOSerialFamily (10.0.5)
      e.iokit.IOBluetoothSerialManager (4.0.8f17)
      e.iokit.IOSurface (80.0.2)
      e.iokit.IOUserEthernet (1.0.0d1)
      e.driver.DspFuncLib (2.2.5a5)
      e.driver.AppleHDA (2.2.5a5)
      e.driver.AppleIntelGMA950 (7.0.4)
      e.driver.AudioAUUC (1.59)
      e.kext.triggers (1.0)
      e.filesystems.autofs (3.0)
      re.kext.vmx86 (2.0.0)
      re.kext.vmci (2.0.0)
      re.kext.vmioplug (2.0.0)
      re.kext.vmnet (2.0.0)
      e.driver.IOBluetoothHIDDriver (4.0.8f17)
      e.driver.AppleMultitouchDriver (231.4)
      e.driver.AppleBluetoothMultitouch (70.12)
      e.driver.AppleHIDKeyboard (160.7)
      e.driver.AppleBluetoothHIDKeyboard (160.7)
      e.nke.webcontentfilter (3.0)
      e.filesystems.smbfs (1.7.2)
    Agents
      com.apple.AirPortBaseStationAgent
      com.nero.HSMMonitor
      com.google.keystone.user.agent
    com.apple.AddressBook.ScheduledSync.PHXCardDAVSource.UUID
    Startup items
    /Library/StartupItems/AGMacFSWatcher/AGMacFSWatcher
    /Library/StartupItems/AGMacFSWatcher/StartupParameters.plist
    /Library/StartupItems/IntegoCommon/IntegoCommon
    /Library/StartupItems/IntegoCommon/StartupParameters.plist
    /Library/StartupItems/IntegoCommon/TaskManagerDaemon
    /Library/StartupItems/IntegoCommon/TM_Notifier.app/Contents/Info.plist
    /Library/StartupItems/IntegoCommon/TM_Notifier.app/Contents/MacOS/TM_Notifier
    Bundles
    /Library/Audio/Plug-Ins/Components/A52Codec.component
      - com.shepmater.A52Codec
      /Library/Internet Plug-Ins/Disabled Plug-Ins/Windows Media Plugin
      - com.microsoft.WMP.defaultplugin
      /Library/Internet Plug-Ins/Disabled Plug-Ins/Windows Media Plugin/Contents/Resources/English.lproj
      - N/A
      /Library/Internet Plug-Ins/DivXBrowserPlugin.plugin
      - com.divx.DivXBrowserPlugin
      /Library/Internet Plug-Ins/DRM Plugin.bundle
      - com.microsoft.DRMPlugin
      /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.plugin
      - net.telestream.wmv.plugin
      /Library/Internet Plug-Ins/JavaAppletPlugin.plugin
      - com.apple.java.JavaAppletPlugin
      /Library/Internet Plug-Ins/Silverlight.plugin
      - com.microsoft.SilverlightPlugin
    /Library/PreferencePanes/DivX.prefPane
      - com.divx.divxprefs
      /Library/PreferencePanes/Flash Player.prefPane
      - com.adobe.flashplayerpreferences
      /Library/PreferencePanes/Flip4Mac WMV.prefPane
      - net.telestream.wmv.prefpane
    /Library/PreferencePanes/NetUpdate.prefPane
      - com.intego.preference.netupdate
    /Library/PreferencePanes/Perian.prefPane
      - org.perian.PerianPane
    /Library/QuickTime/AC3MovieImport.component
      - com.cod3r.ac3movieimport
      /Library/QuickTime/DivX Decoder.component
      - com.DivXInc.DivXDecoder
      /Library/QuickTime/DivX Decoder.component/Contents/Resources
      - com.DivXInc.DivXDecoder
      /Library/QuickTime/DivX Encoder.component
      - com.DivXInc.DivXCodec
      /Library/QuickTime/Flip4Mac WMV Advanced.component
      - net.telestream.wmv.advanced
      /Library/QuickTime/Flip4Mac WMV Export.component
      - net.telestream.wmv.export
      /Library/QuickTime/Flip4Mac WMV Import.component
      - net.telestream.wmv.import
      /Library/QuickTime/Perian.component
      - org.perian.Perian
      /Library/ScriptingAdditions/Adobe Unit Types.osax
      - N/A
      /Library/Spotlight/iMovie.mdimporter
      - com.apple.iMovieMDImporter
      /Library/Widgets/Intego Status.wdgt
      - com.intego.widget
      /Library/Widgets/NetUpdate.wdgt
      - com.intego.widget.netupdate
      Library/Internet Plug-Ins/Google Earth Web Plug-in.plugin
    - com.Google.GoogleEarthPlugin.plugin
      Library/Internet Plug-Ins/RealPlayer Plugin.plugin
      - com.RealNetworks.RealPlayerPlugin
      Library/Widgets/BluetoothTexter.wdgt
    - com.happymakinggames.widget.bluetoothtexter
      Library/Widgets/Chrysalis.wdgt
    - com.reflectivelayer.widget.chrysalis
      Library/Widgets/iStat pro 21-55-17-604.wdgt
      - com.iSlayer.iStatpro4.widget
      Library/Widgets/iStat pro.wdgt
      - com.iSlayer.iStatpro4.widget
      Library/Widgets/Sudoku.wdgt
      - com.bdeboer.widget.sudoku
      Library/Widgets/TideApp.wdgt
      - com.atlantistech.widget.tideapp
      Library/Widgets/Tides.wdgt
      - com.hahn.widget.tides
    dylibs
      /usr/lib/libbz2.1.0.3.dylib
      /usr/lib/libgimpprint.7.dylib
      /usr/lib/libgutenprint.2.0.3.dylib
    /usr/lib/libPrintServiceQuota.1.dylib
    Contents of /System/Library/LaunchAgents/com.apple.iCalPush.plist (checksum 2684394709)
      <?xml version="1.0" encoding="UTF-8"?>
      <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
      <plist version="1.0">
      <dict>
      <key>Label</key>
    <string>com.apple.iCalPush</string>
    <key>LimitLoadToSessionType</key>
      <array>
    <string>LoginWindow</string>
      <string>Aqua</string>
      </array>
      <key>MachServices</key>
      <dict>
    <key>com.apple.iCalPush</key>
      <true/>
      </dict>
      <key>ProgramArguments</key>
      <array>
    <string>/Applications/iCal.app/Contents/Resources/iCalPush</string>
      </array>
      </dict>
      </plist>
    Contents of /System/Library/LaunchAgents/com.apple.screensharing.MessagesAgent.plist (checksum 4254080775)
      <?xml version="1.0" encoding="UTF-8"?>
      <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
      <plist version="1.0">
      <dict>
      <key>EnableTransactions</key>
      <true/>
      <key>Label</key>
    <string>com.apple.screensharing.MessagesAgent</string>
      <key>ProgramArguments</key>
      <array>
    <string>/System/Library/CoreServices/RemoteManagement/AppleVNCServer.bundle/Cont ents/MacOS/AppleVNCServer</string>
      </array>
      <key>MachServices</key>
      <dict>
    <key>com.apple.screensharing.MessagesAgent</key>
      <true/>
      </dict>
      <key>RunAtLoad</key>
      <false/>
      </dict>
      </plist>
    Contents of /System/Library/LaunchAgents/org.x.startx.plist (checksum 355348819)
      <?xml version="1.0" encoding="UTF-8"?>
      <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
      <plist version="1.0">
      <dict>
      <key>Label</key>
      <string>org.x.startx</string>
      <key>ProgramArguments</key>
      <array>
    <string>/usr/X11/bin/startx</string>
      </array>
      <key>Sockets</key>
      <dict>
      <key>org.x:0</key>
      <dict>
      <key>SecureSocketWithKey</key>
      <string>DISPLAY</string>
      </dict>
      </dict>
      <key>ServiceIPC</key>
      <true/>
      <key>EnableTransactions</key>
      <true/>
      </dict>
      </plist>
    Contents of /System/Library/LaunchDaemons/com.apple.xprotectupdater.plist (checksum 3591382872)
      <?xml version="1.0" encoding="UTF-8"?>
      <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
      <plist version="1.0">
      <dict>
      <key>Label</key>
    <string>com.apple.xprotectupdater</string>
      <key>ProgramArguments</key>
      <array>
    <string>/usr/libexec/XProtectUpdater</string>
      </array>
      <key>RunAtLoad</key>
      <true/>
      <key>StartCalendarInterval</key>
      <dict>
      <key>Hour</key>
      <integer>22</integer>
      <key>Minute</key>
      <integer>19</integer>
      </dict>
      </dict>
      </plist>
    Contents of /Library/LaunchDaemons/com.intego.VirusBarrier.daemon.plist (checksum 430929910)
      <?xml version="1.0" encoding="UTF-8"?>
      <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
      <plist version="1.0">
      <dict>
      <key>Label</key>
    <string>com.intego.VirusBarrier.daemon</string>
      <key>OnDemand</key>
      <false/>
      <key>ProgramArguments</key>
      <array>
    <string>/Library/Intego/virusbarrier.bundle/Contents/Resources/virusbarrierd</st ring>
      </array>
      <key>RunAtLoad</key>
      <true/>
      </dict>
      </plist>
    Contents of /Library/LaunchDaemons/com.intego.VirusBarrier.logger.daemon.plist (checksum 911422826)
      <?xml version="1.0" encoding="UTF-8"?>
      <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
      <plist version="1.0">
      <dict>
      <key>Label</key>
    <string>com.intego.VirusBarrier.logger.daemon</string>
      <key>OnDemand</key>
      <false/>
      <key>ProgramArguments</key>
      <array>
    <string>/Library/Intego/virusbarrier.bundle/Contents/Resources/virusbarrierl</st ring>
      </array>
      <key>RunAtLoad</key>
      <true/>
      </dict>
      </plist>
    Contents of /Library/LaunchDaemons/com.intego.VirusBarrier.scanner.daemon.plist (checksum 2106093038)
      <?xml version="1.0" encoding="UTF-8"?>
      <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
      <plist version="1.0">
      <dict>
      <key>Label</key>
    <string>com.intego.VirusBarrier.scanner.daemon</string>
      <key>OnDemand</key>
      <false/>
      <key>ProgramArguments</key>
      <array>
    <string>/Library/Intego/virusbarrier.bundle/Contents/Resources/virusbarriers</st ring>
      <string>-m</string>
      </array>
      <key>RunAtLoad</key>
      <true/>
      </dict>
      </plist>
    Contents of /Library/LaunchDaemons/com.intego.task.manager.daemon.plist (checksum 4102722290)
      <?xml version="1.0" encoding="UTF-8"?>
      <!DOCTYPE plist PUBLIC -//Apple Computer//DTD PLIST 1.0//EN http://www.apple.com/DTDs/PropertyList-1.0.dtd >
      <plist version="1.0">
      <dict>
      <key>Label</key>
    <string>com.intego.task.manager.daemon</string>
      <key>ProgramArguments</key>
      <array>
    <string>/Library/StartupItems/IntegoCommon/TaskManagerDaemon</string>
      </array>
      <key>OnDemand</key>
      <false/>
      <key>RunAtLoad</key>
      <true/>
      </dict>
      </plist>
    Contents of /Library/LaunchDaemons/com.vmware.launchd.vmware.plist (checksum 1467462916)
      <?xml version="1.0" encoding="UTF-8"?>
      <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN"
    "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
      <plist version="1.0">
      <dict>
      <key>Label</key>
    <string>com.vmware.launchd.vmware</string>
      <key>ProgramArguments</key>
      <array>
    <string>/Library/Application Support/VMware Fusion/boot.sh</string>
    <string>--start</string>
      </array>
      <key>RunAtLoad</key>
      <true/>
      </dict>
      </plist>
    Contents of Library/LaunchAgents/com.apple.AddressBook.ScheduledSync.PHXCardDAVSource.UUID. plist (checksum 1312073118)
      <?xml version="1.0" encoding="UTF-8"?>
      <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
      <plist version="1.0">
      <dict>
      <key>Label</key>
    <string>com.apple.AddressBook.ScheduledSync.PHXCardDAVSource.UUID</string>
      <key>ProgramArguments</key>
      <array>
    <string>/System/Library/Frameworks/AddressBook.framework/Resources/AddressBookSo urceSyncScheduleHelper</string>
      <string>-scheduleSync</string>
      <string>UUID</string>
      </array>
      <key>StartInterval</key>
      <integer>120000</integer>
      </dict>
      </plist>
    Contents of Library/LaunchAgents/com.google.keystone.agent.plist (checksum 3876858404)
      <?xml version="1.0" encoding="UTF-8"?>
      <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
      <plist version="1.0">
      <dict>
      <key>Label</key>
    <string>com.google.keystone.user.agent</string>
      <key>LimitLoadToSessionType</key>
      <string>Aqua</string>
      <key>ProgramArguments</key>
      <array>
    <string>/Users/USER/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bun dle/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftwa reUpdateAgent</string>
      <string>-runMode</string>
      <string>ifneeded</string>
      </array>
      <key>RunAtLoad</key>
      <true/>
      <key>StartInterval</key>
      <integer>3523</integer>
      <key>StandardErrorPath</key>
      <string>/dev/null</string>
      <key>StandardOutPath</key>
      <string>/dev/null</string>
      </dict>
      </plist>
    Contents of Library/LaunchAgents/com.nero.HSMMonitor.plist (checksum 3334467695)
      <?xml version="1.0" encoding="UTF-8"?>
      <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
      <plist version="1.0">
      <dict>
      <key>Label</key>
    <string>com.nero.HSMMonitor</string>
      <key>ProgramArguments</key>
      <array>
      <string>/Applications/HTC Sync Manager 2.app/Contents/Resources/HSMMonitor.app/Contents/MacOS/HSMMonitor</string>
      <string>-runMode</string>
      <string>autoLaunched</string>
      </array>
      <key>RunAtLoad</key>
      <true/>
      </dict>
      </plist>
    Font issues: 63
    Bad plists
    Library/Preferences/ByHost/com.apple.DotMacSync.001ff346e9fa.plist
    Library/Preferences/ByHost/com.apple.iWork.001ff346e9fa.plist
    Library/Preferences/ByHost/com.apple.PrefPane.Network.001ff346e9fa.plist
    Library/Preferences/ByHost/com.apple.QuickTime.001ff346e9fa.plist
    Library/Preferences/ByHost/com.apple.screensaver.Nature Patterns.001ff346e9fa.plist
    Library/Preferences/ByHost/com.apple.screensaver.slideshow.001ff346e9fa.plist
    Library/Preferences/com.solidstatenetworks.awkhost.plist
    Library/Preferences/com.solidstatenetworks.host.plist
    Parental Controls: On
    User login items
      DiskWarriorStarter
    - /Applications/Utilities/DiskWarrior.app/Contents/MacOS/DiskWarriorStarter.app
      iTunes
      - /Applications/iTunes.app
      OpenDNS Updater
      - /Users/USER/Applications/OpenDNS Updater.app
      xeoma
      - /Applications/xeoma.app
    Widgets
      iStat pro
      Tides
    Restricted files: 242
    Lockfiles: 3
    Elapsed time (s): 190

  • After updating to 10.10.2, my OpenGL applications do not work, and there are problems with window updates/refresh in App Store, and many applications, Google Chrome is unusable.

    After performing the OS X 10.10.2 update, OpenGL applications, for example Starry Night Pro fail to run, there are numerous windows update/refresh problems (incomplete refresh, remnants of window/frame borders), and some applications, for example Google Chrome are unusable, as cursor motion in the application window causes the display to flash horizontal bars in the window.
    I've tried a variety of things, including downloading the most current release of Xcode, turning on/off transparency in Accessibility, graphics switching, and a few other things, but the problem persists.
    The App Store display behaves similarly.  I am running a MacBook Pro.
    This is the output from EtreCheck:
    Problem description:
    Screen/windows corruption
    EtreCheck version: 2.1.8 (121)
    Report generated March 11, 2015 at 10:26:15 PM CDT
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        MacBook Pro (15-inch, Mid 2012) (Technical Specifications)
        MacBook Pro - model: MacBookPro9,1
        1 2.6 GHz Intel Core i7 CPU: 4-core
        16 GB RAM Upgradeable
            BANK 0/DIMM0
                8 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                8 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 36
    Video Information: ℹ️
        Intel HD Graphics 4000
        NVIDIA GeForce GT 650M - VRAM: 1024 MB
    System Software: ℹ️
        OS X 10.10.2 (14C1510) - Time since boot: 23:26:45
    Disk Information: ℹ️
        APPLE HDD HTS547575A9E384 disk0 : (750.16 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 748.96 GB (146.71 GB free)
                Encrypted AES-XTS Unlocked
                Core Storage: disk0s2 749.30 GB Online
        HL-DT-ST DVDRW  GS31N 
    USB Information: ℹ️
        Apple Inc. FaceTime HD Camera (Built-in)
        Apple iPod
        Western Digital My Book 1 TB
            EFI (disk3s1) <not mounted> : 210 MB
            WDP1 (disk3s2) /Volumes/WDP1 : 333.40 GB (9.12 GB free)
            WDP2 (disk3s3) /Volumes/WDP2 : 333.40 GB (2.55 GB free)
            WDP3 (disk3s4) /Volumes/WDP3 : 332.79 GB (94.00 GB free)
        Western Digital My Book 1140 2 TB
            EFI (disk4s1) <not mounted> : 210 MB
            2TB_1 (disk4s2) /Volumes/2TB_1 : 666.79 GB (31.36 GB free)
            2TB_2 (disk4s3) /Volumes/2TB_2 : 666.79 GB (58.76 GB free)
            2TB_3 (disk4s4) /Volumes/2TB_3 : 666.18 GB (70.41 GB free)
        Logitech USB Receiver
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Computer, Inc. IR Receiver
        Logitech USB Receiver
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Anywhere
    Kernel Extensions: ℹ️
            /Applications/Parallels Access.app
        [loaded]    com.parallels.virtualsound (1.0.36 36 - SDK 10.6) [Click for support]
            /Applications/Parallels Desktop.app
        [not loaded]    com.parallels.kext.hypervisor (10.1.1 28614 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.netbridge (10.1.1 28614 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.usbconnect (10.1.1 28614 - SDK 10.7) [Click for support]
        [not loaded]    com.parallels.kext.vnic (10.1.1 28614 - SDK 10.7) [Click for support]
            /Applications/Utilities/DiskWarrior.app
        [not loaded]    com.alsoft.Preview (4.1) [Click for support]
            /Library/Extensions
        [loaded]    com.epson.driver.EPSONProjectorUDAudio (1.40 - SDK 10.6) [Click for support]
            /System/Library/Extensions
        [not loaded]    com.FTDI.driver.FTDIUSBSerialDriver (2.2.18 - SDK 10.6) [Click for support]
        [loaded]    com.Logitech.Control Center.HID Driver (3.6.0 - SDK 10.6) [Click for support]
        [loaded]    com.Logitech.Unifying.HID Driver (1.2.0 - SDK 10.6) [Click for support]
        [not loaded]    com.Ralink.driver.RT73 (1.1.6) [Click for support]
        [not loaded]    com.beceem.BeceemAppleWiMAXAdapter (5.2.56d16) [Click for support]
        [not loaded]    com.cisco.nke.ipsec (2.0.1) [Click for support]
        [not loaded]    com.devguru.driver.DIFMCDFree (1.1.0) [Click for support]
        [not loaded]    com.devguru.driver.DIFMSerial (1.1.0) [Click for support]
        [not loaded]    com.fklt.driver (1.8.0) [Click for support]
        [not loaded]    com.novatelwireless.driver.3G (2.2.8) [Click for support]
        [not loaded]    com.novatelwireless.driver.DisableAutoInstall (1.2) [Click for support]
        [not loaded]    com.prolific.driver.PL2303 (2.0.0) [Click for support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverInt (0.0.39) [Click for support]
        [not loaded]    com.rim.driver.BlackBerryUSBDriverVSP (0.0.39) [Click for support]
        [not loaded]    com.sbig.driver.SBIGUSBEDriver (4.70) [Click for support]
        [not loaded]    com.sbig.driver.SBIGUSBLoader (4.70.2) [Click for support]
        [not loaded]    com.sierrawireless.driver.SierraDevSupport (2.0.6) [Click for support]
        [not loaded]    com.sierrawireless.driver.SierraFSCSupport (2.0.6) [Click for support]
        [not loaded]    com.tomtom.driver.UsbEthernetGadget (1.0.0d1) [Click for support]
        [not loaded]    com.wacom.kext.wacomtablet (6.3.7 - SDK 10.8) [Click for support]
        [not loaded]    org.emul.driver.EarthMate (1.0.0d1) [Click for support]
            /System/Library/Extensions/NovatelWireless3G.kext/Contents/Plugins
        [not loaded]    com.novatelwireless.driver.3GData (2.2.8) [Click for support]
    Launch Agents: ℹ️
        [not loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [running]    com.adobe.AdobeCreativeCloud.plist [Click for support]
        [not loaded]    com.canon.MFManager.plist [Click for support]
        [loaded]    com.divx.dms.agent.plist [Click for support]
        [loaded]    com.divx.update.agent.plist [Click for support]
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.kodak.BonjourAgent.plist [Click for support]
        [running]    com.Logitech.Control Center.Daemon.plist [Click for support]
        [loaded]    com.oracle.java.Java-Updater.plist [Click for support]
        [running]    com.parallels.mobile.prl_deskctl_agent.launchagent.plist [Click for support]
        [running]    com.wacom.wacomtablet.plist [Click for support]
        [loaded]    org.macosforge.xquartz.startx.plist [Click for support]
    Launch Daemons: ℹ️
        [running]    com.adobe.adobeupdatedaemon.plist [Click for support]
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [running]    com.autodesk.backburner_manager.plist [Click for support]
        [running]    com.autodesk.backburner_server.plist [Click for support]
        [loaded]    com.autodesk.backburner_start.plist [Click for support]
        [loaded]    com.google.keystone.daemon.plist [Click for support]
        [running]    com.makerbot.conveyor.plist [Click for support]
        [loaded]    com.oracle.java.Helper-Tool.plist [Click for support]
        [loaded]    com.oracle.java.JavaUpdateHelper.plist [Click for support]
        [running]    com.parallels.mobile.dispatcher.launchdaemon.plist [Click for support]
        [loaded]    com.parallels.mobile.kextloader.launchdaemon.plist [Click for support]
        [loaded]    org.macosforge.xquartz.privileged_startx.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.adobe.AAM.Updater-1.0.plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [loaded]    com.citrixonline.GoToMeeting.G2MUpdate.plist [Click for support]
        [loaded]    com.kodak.KODAK AiO Firmware Updater.plist [Click for support]
        [loaded]    com.kodak.KODAK AiO Software Updater.plist [Click for support]
        [running]    com.parallels.mobile.startgui.launchagent.plist [Click for support]
        [loaded]    com.valvesoftware.steamclean.plist [Click for support]
    User Login Items: ℹ️
        Google Drive    Application  (/Applications/Google Drive.app)
        USB Display Agent    Application  (/Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app)
        USB Display Agent    Application  (/Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app)
    Internet Plug-ins: ℹ️
        WacomNetscape: Version: 2.1.0-1 - SDK 10.8 [Click for support]
        OVSHelper: Version: 1.1 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Google Earth Web Plug-in: Version: 6.0 [Click for support]
        SlingPlayer: Version: Unknown [Click for support]
        RealPlayer Plugin: Version: Unknown [Click for support]
        AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 [Click for support]
        FlashPlayer-10.6: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        DivX Web Player: Version: 3.2.4.1250 - SDK 10.6 [Click for support]
        Silverlight: Version: 5.1.10411.0 - SDK 10.6 [Click for support]
        Flash Player: Version: 16.0.0.305 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        iPhotoPhotocast: Version: 6.0
        WacomTabletPlugin: Version: WacomTabletPlugin 2.1.0.2 [Click for support]
        AdobePDFViewer: Version: 9.5.5 [Click for support]
        JavaAppletPlugin: Version: Java 8 Update 40 Check version
    User internet Plug-ins: ℹ️
        fbplugin_1_0_3: Version: Unknown [Click for support]
        BrowserPlus_2.6.0: Version: 2.6.0 [Click for support]
        CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 [Click for support]
        fbplugin_1_0_1: Version: Unknown [Click for support]
        Picasa: Version: 1.0 [Click for support]
    Safari Extensions: ℹ️
        Open in Internet Explorer
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
        Flip4Mac WMV  [Click for support]
        GoPro  [Click for support]
        Growl  [Click for support]
        Java  [Click for support]
        Logitech Control Center  [Click for support]
        MacFUSE  [Click for support]
        Perian  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: NO - Auto backup turned off
        Volumes being backed up:
            Macintosh HD: Disk size: 748.96 GB Disk used: 602.25 GB
        Destinations:
            WDP3 [Local]
            Total size: 332.79 GB
            Total number of backups: 2
            Oldest backup: 2013-04-03 12:26:32 +0000
            Last backup: 2013-04-03 12:26:32 +0000
            Size of backup disk: Too small
                Backup size 332.79 GB < (Disk used 602.25 GB X 3)
            STAR_TECH_EXT [Local]
            Total size: 499.76 GB
            Total number of backups: 2
            Oldest backup: 2013-04-03 14:26:44 +0000
            Last backup: 2013-04-03 14:26:44 +0000
            Size of backup disk: Too small
                Backup size 499.76 GB < (Disk used 602.25 GB X 3)
    Top Processes by CPU: ℹ️
             3%    WindowServer
             1%    Creative Cloud
             0%    firefox
             0%    fontd
             0%    AdobeUpdateDaemon
    Top Processes by Memory: ℹ️
        670 MB    Safari
        567 MB    firefox
        464 MB    softwareupdated
        395 MB    mds_stores
        309 MB    WindowServer
    Virtual Memory Information: ℹ️
        1.43 GB    Free RAM
        7.87 GB    Active RAM
        6.40 GB    Inactive RAM
        1.47 GB    Wired RAM
        7.30 GB    Page-ins
        205 KB    Page-outs
    Diagnostics Information: ℹ️
        Mar 11, 2015, 04:04:23 PM    /Library/Logs/DiagnosticReports/ScreenSaverEngine_2015-03-11-160423_[redacted]. cpu_resource.diag [Click for details]
        Mar 11, 2015, 02:54:29 PM    /Library/Logs/DiagnosticReports/ScreenSaverEngine_2015-03-11-145429_[redacted]. cpu_resource.diag [Click for details]
        Mar 11, 2015, 10:18:18 AM    /Library/Logs/DiagnosticReports/ScreenSaverEngine_2015-03-11-101818_[redacted]. cpu_resource.diag [Click for details]
        Mar 10, 2015, 10:55:10 PM    Self test - passed
        Mar 9, 2015, 03:21:58 AM    /Library/Logs/DiagnosticReports/SubmitDiagInfo_2015-03-09-032158_[redacted].cpu _resource.diag [Click for details]

    Here is the diagnostic script output:
    Start time: 12:06:12 03/14/15
    Revision: 1290
    Model Identifier: MacBookPro9,1
    System Version: OS X 10.10.2 (14C1510)
    Kernel Version: Darwin 14.1.0
    Time since boot: 3 days 13:11
    UID: 502
    Memory
        BANK 0/DIMM0
          Size: 8 GB
          Speed: 1600 MHz
          Status: OK
          Manufacturer: 0x859B
        BANK 1/DIMM0
          Size: 8 GB
          Speed: 1600 MHz
          Status: OK
          Manufacturer: 0x859B
    USB
        Hub (Belkin Corporation)
        My Book 1140 (Western Digital Technologies, Inc.)
        My Book (Western Digital Technologies, Inc.)
        USB Receiver (Logitech Inc.)
        USB Receiver (Logitech Inc.)
    FileVault 2: On
    Activity
        CPU: user 13%, system 7%
    CPU usage (%)
        plugin-container (UID 502): 100.0
        com.apple.WebKit (UID 502): 26.2
    File opens (per sec)
        AdobeUpdateDaem (UID 0) => /tmp/UUID_OUT (status 60): 6
    Energy (lifetime)
        WindowServer (UID 88): 7.44
        com.apple.WebKit.WebContent (UID 502): 7.22
    Energy (sampled)
        plugin-container (UID 502): 99.13
        com.apple.WebKit.WebContent (UID 502): 23.60
        WindowServer (UID 88): 21.29
        com.apple.WebKit.WebContent (UID 502): 13.16
        Console (UID 502): 12.28
    Memory (MB)
        kernel_task (UID 0): 1327
    Font issues: 1
    Listeners
        launchd: ftp
    System caches/logs
        3.6 GiB: /System/Library/Caches/com.apple.coresymbolicationd/data
    Diagnostic reports
        2015-02-19 com.apple.WebKit.WebContent crash
        2015-02-20 Topaz Adjust 5 crash
        2015-02-20 Topaz ReStyle crash
        2015-02-20 com.apple.WebKit.WebContent crash x2
        2015-02-21 com.apple.WebKit.WebContent crash x2
        2015-02-25 com.apple.WebKit.WebContent crash
        2015-03-04 system_profiler crash
        2015-03-07 com.apple.WebKit.WebContent crash
        2015-03-08 MPEG Streamclip hang x2
        2015-03-08 com.apple.WebKit.WebContent crash
    I/O errors
        disk2s2: close: journal 0xffffff8049bb9c20, is invalid.  aborting outstanding transactions 1
        disk2s2: do_jnl_io: strategy err 0x6 1
        disk2s3: close: journal 0xffffff8049bb9740, is invalid.  aborting outstanding transactions 1
        disk2s3: do_jnl_io: strategy err 0x6 1
        disk2s4: close: journal 0xffffff8049bb9260, is invalid.  aborting outstanding transactions 1
        disk2s4: do_jnl_io: strategy err 0x6 1
        disk3s2: do_jnl_io: strategy err 0x6 1
        disk3s3: close: journal 0xffffff8049bb95a0, is invalid.  aborting outstanding transactions 1
        disk3s3: do_jnl_io: strategy err 0x6 1
        disk3s4: close: journal 0xffffff8049bb9400, is invalid.  aborting outstanding transactions 1
        disk3s4: do_jnl_io: strategy err 0x6 1
        disk4s3: close: journal 0xffffff8023522c20, is invalid.  aborting outstanding transactions 1
        disk4s3: do_jnl_io: strategy err 0x6 1
    Volumes
        disk1: /
        disk5s3: /Volumes/WDP2
        disk5s2: /Volumes/WDP1
        disk5s4: /Volumes/WDP3
        disk6s2: /Volumes/2TB_1
        disk6s4: /Volumes/2TB_3
        disk6s3: /Volumes/2TB_2
        disk7s2: /Volumes/Starry Night Pro 7
    HID errors: 3
    Kernel log
        Mar  8 17:08:19 firefox (map: 0xffffff80501790f0) triggered DYLD shared region unnest for map: 0xffffff80501790f0, region 0x7fff8a200000->0x7fff8a400000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Mar  8 17:08:59 firefox (map: 0xffffff8051e54870) triggered DYLD shared region unnest for map: 0xffffff8051e54870, region 0x7fff8a200000->0x7fff8a400000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Mar  9 08:11:09 jnl: disk2s4: close: journal 0xffffff8049bb9260, is invalid.  aborting outstanding transactions
        Mar  9 08:11:09 jnl: disk3s4: close: journal 0xffffff8049bb9400, is invalid.  aborting outstanding transactions
        Mar  9 08:11:09 jnl: disk2s3: close: journal 0xffffff8049bb9740, is invalid.  aborting outstanding transactions
        Mar  9 08:11:09 jnl: disk3s3: close: journal 0xffffff8049bb95a0, is invalid.  aborting outstanding transactions
        Mar  9 08:11:09 jnl: disk3s2: write_journal_header: error writing the journal header!
        Mar  9 08:11:09 jnl: disk2s2: close: journal 0xffffff8049bb9c20, is invalid.  aborting outstanding transactions
        Mar  9 11:42:59 firefox (map: 0xffffff8031b5e780) triggered DYLD shared region unnest for map: 0xffffff8031b5e780, region 0x7fff89e00000->0x7fff8a000000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Mar 10 13:44:08 Limiting closed port RST response from 310 to 250 packets per second
        Mar 10 23:03:12 firefox (map: 0xffffff802a954780) triggered DYLD shared region unnest for map: 0xffffff802a954780, region 0x7fff90000000->0x7fff90200000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Mar 10 23:20:37 Limiting icmp unreach response from 302 to 250 packets per second
        Mar 11 08:39:04 jnl: disk4s3: write_journal_header: error writing the journal header!
        Mar 11 08:39:04 jnl: disk4s3: close: journal 0xffffff8023522c20, is invalid.  aborting outstanding transactions
        Mar 13 17:42:33 Limiting icmp unreach response from 428 to 250 packets per second
        Mar 13 17:42:34 Limiting icmp unreach response from 433 to 250 packets per second
    System log
        Mar 14 09:09:18 VTDecoderXPCService: GVA warning: failed to get a service for display id: 4128828
        Mar 14 09:09:18 VTDecoderXPCService: GVA warning: failed to get a service for display id: 4128829
        Mar 14 09:09:18 VTDecoderXPCService: GVA warning: failed to get a service for display id: 4128830
        Mar 14 09:09:18 VTDecoderXPCService: GVA warning: failed to get a service for display id: 4128831
        Mar 14 09:14:35 Adobe Photoshop Elements Editor: Error loading /Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library:  dlopen(/Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library, 262): no suitable image found.  Did find:
        /Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library: mach-o, but wrong architecture
        Mar 14 09:14:35 Adobe Photoshop Elements Editor: Error loading /Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library:  dlopen(/Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library, 262): no suitable image found.  Did find:
        /Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library: mach-o, but wrong architecture
        Mar 14 09:14:35 Adobe Photoshop Elements Editor: Error loading /Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library:  dlopen(/Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library, 262): no suitable image found.  Did find:
        /Applications/Adobe Photoshop Elements 10/Support Files/Plug-Ins/onOne Library.8li/Contents/MacOS/onOne Library: mach-o, but wrong architecture
        Mar 14 09:32:27 com.apple.sbd:  SOSCCThisDeviceIsInCircle SOSCCThisDeviceIsInCircle!! 7
        Mar 14 09:35:28 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 09:47:41 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "Installer" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 09:50:38 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 09:52:55 WindowServer: WSGetSurfaceInWindow : Invalid surface 583724228 for window 1898
        Mar 14 10:09:38 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "com.apple.appkit.xpc.openAndSav" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 10:09:38 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "com.apple.WebKit.Plugin.64" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 10:09:48 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "com.apple.appkit.xpc.openAndSav" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 10:09:49 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "com.apple.WebKit.Plugin.64" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 10:09:55 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "com.apple.appkit.xpc.openAndSav" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 10:10:08 WindowServer: disable_update_timeout: UI updates were forcibly disabled by application "com.apple.appkit.xpc.openAndSav" for over 1.00 seconds. Server has re-enabled them.
        Mar 14 10:39:34 launchservicesd: Application App:"loginwindow" asn:0x0-1001 pid:69 refs=7 @ 0x7fd821519070 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x29a29a pid=25591 "ScreenSaverEngine"")), so denying. : LASSession.cp #1521 SetFrontApplication() q=LSSession 100005/0x186a5 queue
        Mar 14 10:39:34 launchservicesd: Application App:"loginwindow" asn:0x0-1001 pid:69 refs=8 @ 0x7fd821519070 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x29a29a pid=25591 "ScreenSaverEngine"")), so denying. : LASSession.cp #1521 SetFrontApplication() q=LSSession 100005/0x186a5 queue
        Mar 14 11:57:26 launchservicesd: Application App:"loginwindow" asn:0x0-1001 pid:69 refs=7 @ 0x7fd821519070 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x29f29f pid=26088 "ScreenSaverEngine"")), so denying. : LASSession.cp #1521 SetFrontApplication() q=LSSession 100005/0x186a5 queue
        Mar 14 11:57:26 launchservicesd: Application App:"loginwindow" asn:0x0-1001 pid:69 refs=8 @ 0x7fd821519070 tried to be brought forward, but isn't in fPermittedFrontApps ( ( "LSApplication:0x0-0x29f29f pid=26088 "ScreenSaverEngine"")), so denying. : LASSession.cp #1521 SetFrontApplication() q=LSSession 100005/0x186a5 queue
    launchd log
        Mar  8 17:07:46 com.apple.xpc.launchd.domain.system: Session adoption is only allowed in user domains.
        Mar  8 17:08:18 com.apple.xpc.launchd.user.502.100006.Aqua: Could not import service from caller: caller = otherbsd.341, service = com.garmin.renu.service, error = 119: Service is disabled
        Mar  8 17:08:18 com.apple.xpc.launchd.user.502.100006.Aqua: Could not import service from caller: caller = otherbsd.341, service = com.apple.photostream-agent, error = 119: Service is disabled
        Mar  9 11:41:23 com.apple.xpc.launchd.domain.system: Session adoption is only allowed in user domains.
        Mar  9 11:41:51 com.apple.xpc.launchd.user.502.100006.Aqua: Could not import service from caller: caller = otherbsd.274, service = com.garmin.renu.service, error = 119: Service is disabled
        Mar  9 11:41:51 com.apple.xpc.launchd.user.502.100006.Aqua: Could not import service from caller: caller = otherbsd.274, service = com.apple.photostream-agent, error = 119: Service is disabled
        Mar 10 22:48:48 com.apple.xpc.launchd.domain.user.loginwindow.14802.4294967295: Could not import service from caller: caller = imklaunchagent.14852, service = com.parallels.inputmethod.ParallelsIM.5712, error = 134: Service cannot load in requested session
        Mar 10 22:48:58 com.apple.xpc.launchd.domain.user.loginwindow.14802.4294967295: Could not import service from caller: caller = WacomTabletDriv.14813, service = com.wacom.WacomTouchDriver.183780, error = 134: Service cannot load in requested session
        Mar 10 22:48:59 com.apple.xpc.launchd.domain.user.loginwindow.14802.4294967295: Could not import service from caller: caller = prl_deskctl_age.14812, service = com.parallels.mobile.prl_deskctl_agent.220416.UUID, error = 134: Service cannot load in requested session
        Mar 10 22:48:59 com.apple.xpc.launchd.domain.user.loginwindow.14802.4294967295: Could not import service from caller: caller = WacomTabletDriv.14813, service = com.wacom.TabletDriver.184064, error = 134: Service cannot load in requested session
        Mar 10 22:56:21 com.apple.xpc.launchd.domain.system: Session adoption is only allowed in user domains.
        Mar 10 22:59:02 com.apple.xpc.launchd.user.502.100005.Aqua: Could not import service from caller: caller = otherbsd.340, service = com.garmin.renu.service, error = 119: Service is disabled
        Mar 10 22:59:02 com.apple.xpc.launchd.user.502.100005.Aqua: Could not import service from caller: caller = otherbsd.340, service = com.apple.photostream-agent, error = 119: Service is disabled
    Loaded kernel extensions
        com.Logitech.Control Center.HID Driver (3.6.0)
        com.Logitech.Unifying.HID Driver (1.2.0)
        com.epson.driver.EPSONProjectorUDAudio (1.40)
        com.parallels.virtualsound (1.0.36 36)
    System services loaded
        com.adobe.adobeupdatedaemon
        com.adobe.fpsaud
        com.apple.watchdogd
        com.autodesk.backburner_manager
        com.autodesk.backburner_server
        com.autodesk.backburner_start
        com.google.keystone.daemon
        com.makerbot.conveyor.daemon
        com.oracle.java.Helper-Tool
        com.oracle.java.JavaUpdateHelper
        com.parallels.mobile.dispatcher.launchdaemon
        com.parallels.mobile.kextloader.launchdaemon
        org.macosforge.xquartz.privileged_startx
    System services disabled
        com.apple.security.FDERecoveryAgent
        com.apple.mtmd
        com.apple.mrt
        com.apple.mtmfs
    Login services loaded
        com.GoPro.GoPro-Importer
        com.Logitech.Control Center.Daemon
        com.adobe.AAM.Scheduler-1.0
        com.adobe.ARM.UUID
        com.adobe.ARM.UUID
        com.adobe.ARM.UUID
        com.adobe.AdobeCreativeCloud
        com.apple.Safari
        - status: 78
        com.apple.mrt.uiagent
        com.citrixonline.GoToMeeting.G2MUpdate
        com.divx.dms.agent
        com.divx.update.agent
        com.google.keystone.system.agent
        com.kodak.BonjourAgent
        com.kodak.KODAK AiO Firmware Updater
        com.kodak.KODAK AiO Software Updater
        com.oracle.java.Java-Updater
        com.parallels.mobile.prl_deskctl_agent.launchagent
        com.parallels.mobile.startgui.launchagent
        com.valvesoftware.steamclean
        com.wacom.wacomtablet
        gldrvmond
        org.macosforge.xquartz.startx
    Global login items
        /Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app
        /Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app
    User login items
        Google Drive
        - /Applications/Google Drive.app
        USB Display Agent
        - /Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app
        USB Display Agent
        - /Applications/USB Display/USB Display.app/Contents/Resources/USB Display Agent.app
    User crontab
        #SqzS VERSION = 1.0.0
        #SYMANTEC SCHEDULER CRON ENTRIES.  THESE ENTRIES ARE AUTOMATICALLY GENERATED
        #PLEASE DO NOT EDIT.
        # Enc=1 Name="Update Virus Protection"  EvType1=1 EvType2=0 Sched=2
        0 8 * * 5 "/Library/Application Support/Symantec/Scheduler/SymSecondaryLaunch.app/Contents/schedLauncher"  1 "/Applications/Symantec Solutions/LiveUpdate.app/Contents/MacOS/LiveUpdate" "    "  "oapp"  "aevt"  "exAG" "-update LUdf"
        # Enc=1 Name="My AntiVirus Scan Task"  EvType1=2 EvType2=0 Sched=2
        #0 9 * * 6 "/Library/Application Support/Symantec/Scheduler/SymSecondaryLaunch.app/Contents/schedLauncher" -n  2 "/Library/Application Support/Symantec/AntiVirus/ScanNotification.app/Contents/scheduledScanner" "    "  "NVsi"  "SCae"  "path" '/' "kydo" "niCE" "long" 0
        # Enc=1 Name="My Product Update Task"  EvType1=1 EvType2=0 Sched=3
        0 8 * * * "/Library/Application Support/Symantec/Scheduler/SymSecondaryLaunch.app/Contents/schedLauncher"  3 "/Applications/Symantec Solutions/LiveUpdate.app/Contents/MacOS/LiveUpdate" "    "  "oapp"  "aevt"  "exAG" "-update LUlu"
        #SqzS END SYMANTEC CRON ENTRIES
    Safari extensions
        Open in Internet Explorer
        - com.parallels.openinie
    Widgets
        TimeCalc
        eCalc_Scientific
    iCloud errors
        bird 137
        cloudd 18
        storedownloadd 2
        CallHistorySyncHelper 2
    Continuity errors
        lsuseractivityd 21
        sharingd 11
    Restricted files: 10847
    Lockfiles: 19
    High file counts
        Desktop: 84
    Accessibility
        Keyboard Zoom: On
        Scroll Zoom: On
    Contents of /Library/LaunchAgents/com.canon.MFManager.plist
        - mod date: May 22 05:23:32 2012
        - checksum: 290641261
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.canon.MFManager</string>
        <key>Program</key>
        <string>/Applications/Canon Utilities/ImageBrowser EX/ExtApp/MFManager.app/Contents/MacOS/MFManager</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Canon Utilities/ImageBrowser EX/ExtApp/MFManager.app/Contents/MacOS/MFManager</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.divx.dms.agent.plist
        - mod date: Nov 17 02:11:48 2014
        - checksum: 637650676
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.divx.dms.agent</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/DivX/DivXMediaServer.app/Contents/MacOS/DivXMediaServer</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.divx.update.agent.plist
        - mod date: May 19 16:24:29 2014
        - checksum: 3867571547
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.divx.update.agent</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/DivX/DivXUpdate.app/Contents/MacOS/DivXUpdate</string>
        <string>/silent</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>10800</integer>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.kodak.BonjourAgent.plist
        - mod date: Sep 21 01:39:00 2012
        - checksum: 2625351456
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Kodak Version</key>
        <string>7.1.6.10</string>
        <key>Label</key>
        <string>com.kodak.BonjourAgent</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Printers/Kodak/AiO_Printers/KodakAiOBonjourAgent.app/Contents/ MacOS/KodakAiOBonjourAgent</string>
        </array>
        <key>ServiceIPC</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.oracle.java.Java-Updater.plist
        - mod date: Feb 15 11:22:20 2014
        - checksum: 2857777334
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.oracle.java.Java-Updater</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Internet Plug-Ins/JavaAppletPlugin.plugin/Contents/Resources/Java Updater.app/Contents/MacOS/Java Updater</string>
        <string>-bgcheck</string>
        </array>
        <key>StandardErrorPath</key>
        <string>/dev/null</string>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
        <key>StartCalendarInterval</key>
        <dict>
        <key>Hour</key>
        <integer>71</integer>
        <key>Minute</key>
        <integer>54</integer>
        <key>Weekday</key>
        <integer>5</integer>
        </dict>
        </dict>
        ...and 1 more line(s)
    Contents of /Library/LaunchAgents/com.parallels.mobile.prl_deskctl_agent.launchagent.plist
        - mod date: Feb 24 10:45:51 2015
        - checksum: 1795713191
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>EnableTransactions</key>
        <true/>
        <key>KeepAlive</key>
        <dict>
        <key>PathState</key>
        <dict>
        <key>/etc/com.parallels.mobile.prl_deskctl_agent.launchd</key>
        <true/>
        </dict>
        </dict>
        <key>Label</key>
        <string>com.parallels.mobile.prl_deskctl_agent.launchagent</string>
        <key>LimitLoadToSessionType</key>
        <array>
        <string>Aqua</string>
        <string>LoginWindow</string>
        </array>
        <key>Program</key>
        <string>/Applications/Parallels Access.app/Contents/MacOS/Parallels Access Agent.app/Contents/MacOS/prl_deskctl_agent</string>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/com.wacom.wacomtablet.plist
        - mod date: Oct 11 17:37:46 2013
        - checksum: 2972905917
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>EnvironmentVariables</key>
        <dict>
        <key>RUN_WITH_LAUNCHD</key>
        <string>1</string>
        </dict>
        <key>KeepAlive</key>
        <dict>
        <key>SuccessfulExit</key>
        <true/>
        </dict>
        <key>Label</key>
        <string>com.wacom.wacomtablet</string>
        <key>LimitLoadToSessionType</key>
        <array>
        <string>Aqua</string>
        <string>LoginWindow</string>
        </array>
        <key>Program</key>
        <string>/Library/Application Support/Tablet/WacomTabletSpringboard</string>
        <key>RunAtLoad</key>
        <true/>
        ...and 4 more line(s)
    Contents of /Library/LaunchAgents/org.macosforge.xquartz.startx.plist
        - mod date: Aug 11 16:52:54 2014
        - checksum: 2451978492
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>org.macosforge.xquartz.startx</string>
        <key>ProgramArguments</key>
        <array>
        <string>/opt/X11/lib/X11/xinit/launchd_startx</string>
        <string>/opt/X11/bin/startx</string>
        <string>--</string>
        <string>/opt/X11/bin/Xquartz</string>
        </array>
        <key>Sockets</key>
        <dict>
        <key>org.macosforge.xquartz:0</key>
        <dict>
        <key>SecureSocketWithKey</key>
        <string>DISPLAY</string>
        </dict>
        </dict>
        <key>ServiceIPC</key>
        <true/>
        <key>EnableTransactions</key>
        <true/>
        ...and 2 more line(s)
    Contents of /Library/LaunchDaemons/com.autodesk.backburner_manager.plist
        - mod date: Feb  4 12:44:56 2013
        - checksum: 3394451584
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>KeepAlive</key>
        <dict>
        <key>PathState</key>
        <dict>
        <key>/usr/discreet/backburner/nrapi.conf</key>
        <true/>
        </dict>
        </dict>
        <key>Label</key>
        <string>com.autodesk.backburner_manager</string>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/discreet/backburner/backburnerManager</string>
        </array>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.autodesk.backburner_server.plist
        - mod date: Feb  4 12:44:56 2013
        - checksum: 2405015914
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>KeepAlive</key>
        <dict>
        <key>PathState</key>
        <dict>
        <key>/usr/discreet/backburner/nrapi.conf</key>
        <true/>
        </dict>
        </dict>
        <key>Label</key>
        <string>com.autodesk.backburner_server</string>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/discreet/backburner/backburnerServer</string>
        </array>
        <key>Nice</key>
        <integer>18</integer>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.autodesk.backburner_start.plist
        - mod date: Feb  4 12:44:56 2013
        - checksum: 597826117
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>RunAtLoad</key>
        <true/>
        <key>Label</key>
        <string>com.autodesk.backburner_start</string>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/discreet/backburner/backburner</string>
        <string>boot</string>
        </array>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.makerbot.conveyor.plist
        - mod date: Dec  2 11:47:26 2013
        - checksum: 147573995
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
            <key>Disabled</key>
            <false/>
            <key>Label</key>
            <string>com.makerbot.conveyor.daemon</string>
            <key>WorkingDirectory</key>
            <string>/Library/MakerBot</string>
            <key>ProgramArguments</key>
            <array>
                <string>/Library/MakerBot/conveyor-svc</string>
                <string>--config_file</string>
                <string>/Library/MakerBot/conveyor.conf</string>
            </array>
            <key>KeepAlive</key>
            <true/>
            <key>EnvironmentVariables</key>
            <dict/>
            <key>RunAtLoad</key>
            <true/>
            <key>UserName</key>
            <string>_conveyor</string>
        </dict>
        ...and 1 more line(s)
    Contents of /Library/LaunchDaemons/com.parallels.mobile.dispatcher.launchdaemon.plist
        - mod date: Feb 24 10:45:50 2015
        - checksum: 1994226602
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>ExitTimeOut</key>
        <integer>150</integer>
        <key>Label</key>
        <string>com.parallels.mobile.dispatcher.launchdaemon</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Parallels Access.app/Contents/MacOS/Parallels Access Dispatcher Service.app/Contents/MacOS/prl_pm_service</string>
        <string>-e</string>
        <string>--logfile</string>
        <string>/var/log/prl_disp_service_server.log</string>
        <string>--pidfile</string>
        <string>/var/run/prl_pm_service.pid</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.parallels.mobile.kextloader.launchdaemon.plist
        - mod date: Feb 24 10:45:51 2015
        - checksum: 3938648138
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>ExitTimeOut</key>
        <integer>150</integer>
        <key>Label</key>
        <string>com.parallels.mobile.kextloader.launchdaemon</string>
        <key>ProgramArguments</key>
        <array>
                <string>/sbin/kextload</string>
        <string>/Applications/Parallels Access.app/Contents/Library/Extensions/10.9/prl_virtual_sound.kext</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /private/etc/ssh_config
        - mod date: Nov 19 19:03:16 2012
        - checksum: 1281775184
         Host *
           SendEnv LANG LC_*
        Host *
            XAuthLocation /opt/X11/bin/xauth
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Jan 20 19:45:18 2011
        - checksum: 408149527
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Jan 29 16:03:43 2010
        - checksum: 2544798274
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader 8/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Sep 11 18:20:35 2011
        - checksum: 2170691092
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader 9/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Oct 19 12:47:52 2009
        - checksum: 10744905
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Acrobat 8 Professional/Adobe Acrobat Professional.app/Contents/MacOS/Updater/Adobe Acrobat Updater Helper.app/Contents/MacOS/Adobe Acrobat Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.apple.FolderActions.folders.plist
        - mod date: Jan 30 08:36:08 2015
        - checksum: 1189540302
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.apple.FolderActions.folders</string>
        <key>Program</key>
        <string>/usr/bin/osascript</string>
        <key>ProgramArguments</key>
        <array>
        <string>osascript</string>
        <string>-e</string>
        <string>tell application "Folder Actions Dispatcher" to tick</string>
        </array>
        <key>WatchPaths</key>
        <array/>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.apple.SafariBookmarksSyncer.plist
        - mod date: Dec 18 09:24:48 2008
        - checksum: 3493273791
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.apple.Safari</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Safari.app/Contents/SafariSyncClient.app/Contents/MacOS/S afariSyncClient</string>
        <string>--sync</string>
        <string>com.apple.Safari</string>
        <string>--entitynames</string>
        <string>com.apple.bookmarks.Bookmark,com.apple.bookmarks.Folder</string>
        </array>
        <key>RunAtLoad</key>
        <false/>
        <key>ThrottleInterval</key>
        <integer>60</integer>
        <key>WatchPaths</key>
        <array>
        <string>/Users/USER/Library/Safari/Bookmarks.plist</string>
        </array>
        </dict>
        ...and 1 more line(s)
    Contents of Library/LaunchAgents/com.citrixonline.GoToMeeting.G2MUpdate.plist
        - mod date: Dec 15 10:55:51 2014
        - checksum: 3001252484
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.citrixonline.GoToMeeting.G2MUpdate</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Users/USER/Library/Application Support/CitrixOnline/GoToMeeting/G2MUpdate</string>
        </array>
        <key>StartInterval</key>
        <integer>3660</integer>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.parallels.mobile.startgui.launchagent.plist
        - mod date: Mar 10 23:00:25 2015
        - checksum: 662430762
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>ExitTimeOut</key>
        <integer>150</integer>
        <key>Label</key>
        <string>com.parallels.mobile.startgui.launchagent</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Parallels Access.app/Contents/MacOS/prl_deskctl_wizard</string>
                <string>--autorun</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.valvesoftware.steamclean.plist
        - mod date: Mar  7 15:48:06 2014
        - checksum: 1327160095
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.valvesoftware.steamclean</string>
        <key>Program</key>
        <string>/Users/USER/Library/Application Support/Steam/SteamApps/steamclean</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Users/USER/Library/Application Support/Steam/SteamApps/steamclean</string>
        <string>Public</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>SteamContentPaths</key>
        <array>
        <string>/Users/USER/Library/Application Support/Steam/SteamApps</string>
        </array>
        <key>WatchPaths</key>
        <array>
        <string>/Applications/Steam.app</string>
        </array>
        </dict>
        </plist>
    App extensions
        com.google.GoogleDrive.FinderSyncAPIExtension
        com.parallels.desktop.console.Resource-Monitor
    Installations
        Topaz Detail2: 11/15/12, 2:58 PM
        Topaz DeNoise 5: 11/15/12, 2:57 PM
        Topaz Adjust 5: 1

  • Frequent kernel panics/crashes on mid-2012 13" MBP

    For several months I've been experiencing frequent kernel panics on my MBP. It can occur at anytime and is seemingly random. Sometimes I get green lines on the screen when it freezes, before it reboots itself or I am forced to do it myself.
    The MBP is the 13" mid-2012 model (Yosemite 10.10.3)
    2.9Ghz Intel Core i7
    8 GB 1600 MHz DDR3
    Intel HD Graphics 4000 1024 MB
    I've already taken the MBP to the Genius bar recently, and they completely reinstalled Yosemite for me, wiping everything off it and starting from scratch. For a day or so it was fine, before the problems started occurring again.
    Sometimes when it's rebooting, it fails during this and reboots all over again.
    I've been reading the forums for a while, looking for people who have similar issues, and so I've already got the log here through Terminal, hopefully this helps in identifying my problem(s):
    Start time: 14:17:54 04/18/15
    Revision: 1295
    Model Identifier: MacBookPro9,2
    System Version: OS X 10.10.3 (14D136)
    Kernel Version: Darwin 14.3.0
    Time since boot: 4:01
    UID: 501
    Battery
        Cycle Count: 1019
    Energy (sampled)
        WindowServer (UID 88): 6.28
    Diagnostic reports
        2015-04-09 com.apple.WebKit.WebContent crash x3
        2015-04-09 networkd crash x3
        2015-04-10 Kernel panic
        2015-04-10 networkd crash x9
        2015-04-13 WindowServer crash x2
        2015-04-13 com.apple.WebKit.WebContent crash x2
        2015-04-13 networkd crash x2
        2015-04-14 Google Chrome Helper crash
        2015-04-14 Kernel panic
        2015-04-14 com.apple.WebKit.WebContent crash x18
        2015-04-14 networkd crash x3
        2015-04-17 com.apple.AmbientDisplayAgent crash
        2015-04-17 com.apple.WebKit.WebContent crash
        2015-04-18 com.apple.WebKit.WebContent crash x12
        2015-04-18 hidd crash
        2015-04-18 networkd crash
    HID errors: 26
    Shutdown codes
        -112 1
        -62 15
    Kernel log
        Apr 13 09:05:10 Sleep failure code 0x00000bc4 0x14006500
        Apr 13 21:48:02 SerialATAPI device reconfiguration did not complete successfully.  (failedCommandInfo = 0x1)
        Apr 14 08:48:26 Limiting closed port RST response from 272 to 250 packets per second
        Apr 14 17:34:59 Limiting closed port RST response from 269 to 250 packets per second
        Apr 14 22:41:03 Limiting closed port RST response from 295 to 250 packets per second
        Apr 14 23:00:30 Limiting closed port RST response from 266 to 250 packets per second
        Apr 15 11:18:47 Sleep failure code 0x00000840 0x27006900
        Apr 15 11:19:42 0xffffff803c824960) triggered DYLD shared region unnest for map: 0xffffff803c824960, region 0x7fff95400000->0x7fff95600000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Apr 15 16:00:52 Sleep failure code 0x00000000 0x28006900
        Apr 16 00:40:13 Limiting closed port RST response from 300 to 250 packets per second
        Apr 16 00:42:01 Limiting closed port RST response from 252 to 250 packets per second
        Apr 16 00:43:31 Limiting closed port RST response from 280 to 250 packets per second
        Apr 16 19:10:39 Limiting closed port RST response from 685 to 250 packets per second
        Apr 16 19:14:48 Limiting closed port RST response from 523 to 250 packets per second
        Apr 16 19:17:40 Limiting closed port RST response from 455 to 250 packets per second
        Apr 16 21:29:30 SerialATAPI device reconfiguration did not complete successfully.  (failedCommandInfo = 0x1)
        Apr 17 00:24:13 firefox (map: 0xffffff8031fbce10) triggered DYLD shared region unnest for map: 0xffffff8031fbce10, region 0x7fff94000000->0x7fff94200000. While not abnormal for debuggers, this increases system memory footprint until the target exits.
        Apr 17 10:34:24 proc 672: load code signature error 4 for file "RdrCEF Helper"
        Apr 17 10:34:24 proc 673: load code signature error 4 for file "RdrCEF Helper"
    System log
        Apr 18 14:06:42 SubmitDiagInfo: Failed to submit problem report file:///Users/USER/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2 015-04-18-092946_Jamess-MacBook-Pro.crash
        Apr 18 14:06:42 SubmitDiagInfo: Failed to submit problem report file:///Users/USER/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2 015-04-18-092947_Jamess-MacBook-Pro.crash
        Apr 18 14:06:42 SubmitDiagInfo: Failed to submit problem report file:///Users/USER/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2 015-04-18-092952_Jamess-MacBook-Pro.crash
        Apr 18 14:06:42 SubmitDiagInfo: Failed to submit problem report file:///Users/USER/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2 015-04-18-092953-1_Jamess-MacBook-Pro.crash
        Apr 18 14:06:42 SubmitDiagInfo: Failed to submit problem report file:///Users/USER/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2 015-04-18-092953_Jamess-MacBook-Pro.crash
        Apr 18 14:06:42 SubmitDiagInfo: Failed to submit problem report file:///Users/USER/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2 015-04-18-100859_Jamess-MacBook-Pro.crash
        Apr 18 14:06:42 SubmitDiagInfo: Failed to submit problem report file:///Users/USER/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2 015-04-18-134943_Jamess-MacBook-Pro.crash
        Apr 18 14:06:42 SubmitDiagInfo: Failed to submit problem report file:///Library/Logs/DiagnosticReports/hidd_2015-04-18-093006_Jamess-MacBook-Pr o.crash
        Apr 18 14:06:42 SubmitDiagInfo: Failed to submit problem report file:///Library/Logs/DiagnosticReports/networkd_2015-04-18-102718_Jamess-MacBoo k-Pro.crash
        Apr 18 14:16:50 SubmitDiagInfo: Connection to https://radarsubmissions.apple.com/submit failed. statusCode: 500 error: (null)
        Apr 18 14:16:50 SubmitDiagInfo: Error while submitting usage and diagnostic messages. SubmitDiagInfo failed to submit diagnostic messages
        Apr 18 14:16:50 SubmitDiagInfo: Failed to submit problem report file:///Users/USER/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2 015-04-17-094346_Jamess-MacBook-Pro.crash
        Apr 18 14:16:50 SubmitDiagInfo: Failed to submit problem report file:///Users/USER/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2 015-04-17-143603_Jamess-MacBook-Pro.crash
        Apr 18 14:16:50 SubmitDiagInfo: Failed to submit problem report file:///Users/USER/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2 015-04-17-143615_Jamess-MacBook-Pro.crash
        Apr 18 14:16:50 SubmitDiagInfo: Failed to submit problem report file:///Users/USER/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2 015-04-17-154139_Jamess-MacBook-Pro.crash
        Apr 18 14:16:50 SubmitDiagInfo: Failed to submit problem report file:///Users/USER/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2 015-04-18-092946-1_Jamess-MacBook-Pro.crash
        Apr 18 14:16:50 SubmitDiagInfo: Failed to submit problem report file:///Users/USER/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2 015-04-18-092946_Jamess-MacBook-Pro.crash
        Apr 18 14:16:50 SubmitDiagInfo: Failed to submit problem report file:///Users/USER/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2 015-04-18-092947_Jamess-MacBook-Pro.crash
        Apr 18 14:16:50 SubmitDiagInfo: Failed to submit problem report file:///Users/USER/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2 015-04-18-092952_Jamess-MacBook-Pro.crash
        Apr 18 14:16:50 SubmitDiagInfo: Failed to submit problem report file:///Users/USER/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2 015-04-18-092953-1_Jamess-MacBook-Pro.crash
        Apr 18 14:16:50 SubmitDiagInfo: Failed to submit problem report file:///Users/USER/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2 015-04-18-092953_Jamess-MacBook-Pro.crash
        Apr 18 14:16:50 SubmitDiagInfo: Failed to submit problem report file:///Users/USER/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2 015-04-18-100859_Jamess-MacBook-Pro.crash
        Apr 18 14:16:50 SubmitDiagInfo: Failed to submit problem report file:///Users/USER/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_2 015-04-18-134943_Jamess-MacBook-Pro.crash
        Apr 18 14:16:50 SubmitDiagInfo: Failed to submit problem report file:///Library/Logs/DiagnosticReports/hidd_2015-04-18-093006_Jamess-MacBook-Pr o.crash
        Apr 18 14:16:50 SubmitDiagInfo: Failed to submit problem report file:///Library/Logs/DiagnosticReports/networkd_2015-04-18-102718_Jamess-MacBoo k-Pro.crash
    launchd log
        Apr 18 10:17:28 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Failed to bootstrap path: path = /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/XPCTimeSta mpingService.xpc, error = 1: Operation not permitted
        Apr 18 10:17:28 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Failed to bootstrap path: path = /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/XPCSer vices/DataDetectorsDynamicData.xpc, error = 1: Operation not permitted
        Apr 18 10:17:28 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Failed to bootstrap path: path = /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/XP CServices/com.apple.SpeechRecognitionCore.brokerd.xpc, error = 1: Operation not permitted
        Apr 18 10:17:28 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Failed to bootstrap path: path = /System/Library/Frameworks/AppKit.framework/Versions/C/XPCServices/SandboxedSer viceRunner.xpc, error = 1: Operation not permitted
        Apr 18 10:17:28 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Failed to bootstrap path: path = /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/XPCServices/com.apple.DictionaryServiceHelper.x pc, error = 1: Operation not permitted
        Apr 18 10:17:28 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Failed to bootstrap path: path = /System/Library/Frameworks/IOKit.framework/Versions/A/XPCServices/IOServiceAuth orizeAgent.xpc, error = 1: Operation not permitted
        Apr 18 10:17:28 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Failed to bootstrap path: path = /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/XPCKeychai nSandboxCheck.xpc, error = 1: Operation not permitted
        Apr 18 10:17:28 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Path not allowed in target domain: type = uid, path = /System/Library/Frameworks/AppKit.framework/Versions/C/XPCServices/SandboxedSer viceRunner.xpc/Contents/MacOS/SandboxedServiceRunner error = 1: Operation not permitted, origin = /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/SecurityAg ent.xpc
        Apr 18 10:17:28 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Path not allowed in target domain: type = uid, path = /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/XP CServices/com.apple.SpeechRecognitionCore.brokerd.xpc/Contents/MacOS/com.apple.S peechRecognitionCore.brokerd error = 1: Operation not permitted, origin = /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/SecurityAg ent.xpc
        Apr 18 10:17:28 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Path not allowed in target domain: type = uid, path = /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/XPCSer vices/DataDetectorsDynamicData.xpc/Contents/MacOS/DataDetectorsDynamicData error = 1: Operation not permitted, origin = /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/SecurityAg ent.xpc
        Apr 18 10:17:28 com.apple.xpc.launchd.domain.pid.SecurityAgent.205: Path not allowed in target domain: type = uid, path = /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/XPCServices/ com.apple.geod.xpc/Contents/MacOS/com.apple.geod error = 1: Operation not permitted, origin = /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/SecurityAg ent.xpc
        Apr 18 10:17:28 com.apple.xpc.launchd.domain.user.200: Could not read path: path = /Library/LaunchAgents/com.oracle.java.Java-Updater.plist, error = 2: No such file or directory
        Apr 18 10:17:28 com.apple.xpc.launchd.domain.user.200: Failed to bootstrap path: path = /Library/LaunchAgents/com.oracle.java.Java-Updater.plist, error = 2: No such file or directory
        Apr 18 10:17:30 com.apple.xpc.launchd.domain.user.89: Could not read path: path = /Library/LaunchAgents/com.oracle.java.Java-Updater.plist, error = 2: No such file or directory
        Apr 18 10:17:30 com.apple.xpc.launchd.domain.user.89: Failed to bootstrap path: path = /Library/LaunchAgents/com.oracle.java.Java-Updater.plist, error = 2: No such file or directory
        Apr 18 10:17:44 com.apple.xpc.launchd.domain.user.92: Could not read path: path = /Library/LaunchAgents/com.oracle.java.Java-Updater.plist, error = 2: No such file or directory
        Apr 18 10:17:44 com.apple.xpc.launchd.domain.user.92: Failed to bootstrap path: path = /Library/LaunchAgents/com.oracle.java.Java-Updater.plist, error = 2: No such file or directory
        Apr 18 10:17:45 com.apple.xpc.launchd.domain.user.501: Could not read path: path = /Library/LaunchAgents/com.oracle.java.Java-Updater.plist, error = 2: No such file or directory
        Apr 18 10:17:45 com.apple.xpc.launchd.domain.user.501: Failed to bootstrap path: path = /Library/LaunchAgents/com.oracle.java.Java-Updater.plist, error = 2: No such file or directory
        Apr 18 10:17:45 com.apple.xpc.launchd.user.501.100005.Aqua: Could not read path: path = /Library/LaunchAgents/com.oracle.java.Java-Updater.plist, error = 2: No such file or directory
        Apr 18 10:17:45 com.apple.xpc.launchd.user.501.100005.Aqua: Failed to bootstrap path: path = /Library/LaunchAgents/com.oracle.java.Java-Updater.plist, error = 2: No such file or directory
        Apr 18 10:17:46 com.apple.xpc.launchd.domain.user.202: Could not read path: path = /Library/LaunchAgents/com.oracle.java.Java-Updater.plist, error = 2: No such file or directory
        Apr 18 10:17:46 com.apple.xpc.launchd.domain.user.202: Failed to bootstrap path: path = /Library/LaunchAgents/com.oracle.java.Java-Updater.plist, error = 2: No such file or directory
        Apr 18 10:17:49 com.apple.xpc.launchd.domain.user.55: Could not read path: path = /Library/LaunchAgents/com.oracle.java.Java-Updater.plist, error = 2: No such file or directory
        Apr 18 10:17:49 com.apple.xpc.launchd.domain.user.55: Failed to bootstrap path: path = /Library/LaunchAgents/com.oracle.java.Java-Updater.plist, error = 2: No such file or directory
    Console log
        Apr 13 21:40:28 ReportCrash: Too many crashes in rapid succession! No crash report being written for pid 1024
    System services loaded
        com.adobe.ARMDC.Communicator
        com.adobe.ARMDC.SMJobBlessHelper
        com.adobe.fpsaud
        com.apple.networkd
        - status: -11
        com.apple.nsurlsessiond_privileged
        - status: 1
        com.apple.spindump
        - status: 75
        com.apple.watchdogd
        org.macosforge.xquartz.privileged_startx
    System services disabled
        com.apple.NetBootClientHelper
    Login services loaded
        com.apple.nsurlsessiond
        - status: 1
        com.bittorrent.BitTorrent
        com.google.keystone.user.agent
        com.kodak.BonjourAgent
        com.spotify.webhelper
        org.macosforge.xquartz.startx
    User login items
        Flux
        - /Applications/Flux.app
    Safari extensions
        AdBlock
        - com.betafish.adblockforsafari
        YouTube Center Developer Build
        - dk.yeppha.ytcenter
    iCloud errors
        comapple.CloudPhotosConfiguration 22
        cloudphotosd 19
        Mail 6
        Finder 3
        CallHistorySyncHelper 3
        comapple.InputMethodKit.UserDictionary 1
        cloudd 1
        Spotlight 1
    Continuity errors
        lsuseractivityd 130
        sharingd 31
    Restricted files: 7
    Lockfiles: 1
    Contents of /Library/LaunchAgents/com.kodak.BonjourAgent.plist
        - mod date: Sep 21 07:39:00 2012
        - checksum: 2625351456
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Kodak Version</key>
        <string>7.1.6.10</string>
        <key>Label</key>
        <string>com.kodak.BonjourAgent</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Printers/Kodak/AiO_Printers/KodakAiOBonjourAgent.app/Contents/ MacOS/KodakAiOBonjourAgent</string>
        </array>
        <key>ServiceIPC</key>
        <true/>
        </dict>
        </plist>
    Contents of /Library/LaunchAgents/org.macosforge.xquartz.startx.plist
        - mod date: Aug 11 22:52:54 2014
        - checksum: 2451978492
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>org.macosforge.xquartz.startx</string>
        <key>ProgramArguments</key>
        <array>
        <string>/opt/X11/lib/X11/xinit/launchd_startx</string>
        <string>/opt/X11/bin/startx</string>
        <string>--</string>
        <string>/opt/X11/bin/Xquartz</string>
        </array>
        <key>Sockets</key>
        <dict>
        <key>org.macosforge.xquartz:0</key>
        <dict>
        <key>SecureSocketWithKey</key>
        <string>DISPLAY</string>
        </dict>
        </dict>
        <key>ServiceIPC</key>
        <true/>
        <key>EnableTransactions</key>
        <true/>
        ...and 2 more line(s)
    Contents of /Library/LaunchDaemons/com.adobe.ARMDC.Communicator.plist
        - mod date: Apr  8 19:08:28 2015
        - checksum: 3887726299
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARMDC.Communicator</string>
        <key>MachServices</key>
        <dict>
        <key>com.adobe.ARMDC.Communicator</key>
        <true/>
        </dict>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PrivilegedHelperTools/com.adobe.ARMDC.Communicator</string>
        </array>
        </dict>
        </plist>
    Contents of /Library/LaunchDaemons/com.adobe.ARMDC.SMJobBlessHelper.plist
        - mod date: Apr  8 19:08:28 2015
        - checksum: 930028549
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARMDC.SMJobBlessHelper</string>
        <key>MachServices</key>
        <dict>
        <key>com.adobe.ARMDC.SMJobBlessHelper</key>
        <true/>
        </dict>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PrivilegedHelperTools/com.adobe.ARMDC.SMJobBlessHelper</string >
        </array>
        </dict>
        </plist>
    Contents of /Library/Preferences/SystemConfiguration/com.apple.Boot.plist
        - empty
        - mod date: Apr  8 17:47:58 2015
        - checksum: 4294967295
        [N/A]
    Contents of /System/Library/LaunchDaemons/com.apple.NetBootClientHelper.plist
        - mod date: Jan 31 18:26:47 2015
        - checksum: 601108312
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>KeepAlive</key>
        <dict>
        <key>SuccessfulExit</key>
        <false/>
        </dict>
        <key>Label</key>
        <string>com.apple.NetBootClientHelper</string>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/sbin/NetBootClientHelper</string>
        <string>-setSharingNames</string>
        <string>-resetLocalKDC</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        </dict>
        </plist>
    Contents of /System/Library/LaunchDaemons/org.apache.httpd.plist
        - mod date: Apr  8 20:16:32 2015
        - checksum: 3012644940
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Disabled</key>
        <true/>
        <key>Label</key>
        <string>org.apache.httpd</string>
        <key>EnvironmentVariables</key>
        <dict>
        <key>XPC_SERVICES_UNAVAILABLE</key>
        <string>1</string>
        </dict>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/sbin/httpd-wrapper</string>
        <string>-D</string>
        <string>FOREGROUND</string>
        </array>
        <key>OnDemand</key>
        <false/>
        </dict>
        </plist>
    Contents of /private/etc/ssh_config
        - mod date: Apr 10 00:48:12 2015
        - checksum: 2841432291
         Host *
           SendEnv LANG LC_*
        Host *
            XAuthLocation /opt/X11/bin/xauth
    Contents of /private/etc/sshd_config
        - mod date: Apr 10 00:48:12 2015
        - checksum: 2518667249
        SyslogFacility AUTHPRIV
        AuthorizedKeysFile .ssh/authorized_keys
        UsePrivilegeSeparation sandbox # Default for new installations.
        AcceptEnv LANG LC_*
        Subsystem sftp /usr/libexec/sftp-server
        XAuthLocation /opt/X11/bin/xauth
    Contents of Library/LaunchAgents/com.bittorrent.BitTorrent.plist
        - mod date: Apr  8 16:23:26 2015
        - checksum: 4092591536
        <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC -//Apple Computer//DTD PLIST 1.0//EN http://www.apple.com/DTDs/PropertyList-1.0.dtd> <plist version="1.0"> <dict> <key>Label</key> <string>com.bittorrent.BitTorrent</string> <key>ProgramArguments</key> <array>  <string>/usr/bin/open</string>  <string>-W</string>  <string>-a</string>  <string>/Applications/BitTorrent.app</string> </array> <key>KeepAlive</key> <false/> <key>LaunchOnlyOnce</key> <true/> </dict> </plist>
    Contents of Library/LaunchAgents/com.google.keystone.agent.plist
        - mod date: Apr  8 16:26:52 2015
        - checksum: 1460605466
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.google.keystone.user.agent</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>ProgramArguments</key>
        <array>
          <string>/Users/USER/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bu ndle/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftw areUpdateAgent</string>
          <string>-runMode</string>
          <string>ifneeded</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>3523</integer>
        <key>StandardErrorPath</key>
        <string>/dev/null</string>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
        </dict>
        </plist>
    Contents of Library/LaunchAgents/com.spotify.webhelper.plist
        - mod date: Apr 11 01:30:32 2015
        - checksum: 3672790637
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
         <key>Label</key>
         <string>com.spotify.webhelper</string>
         <key>KeepAlive</key>
         <dict>
          <key>NetworkState</key>
          <true/>
         </dict>
         <key>RunAtLoad</key>
         <true/>
         <key>Program</key>
         <string>/Users/USER/Library/Application Support/Spotify/SpotifyWebHelper</string>
         <key>SpotifyPath</key>
         <string>/Applications/Spotify.app</string></dict>
        </plist>
    Applications
        /Applications/Utilities/XQuartz.app
        - org.macosforge.xquartz.X11
        /Applications/ps3muxer.app
        - com.clark15b.ps3muxer
        /Library/Application Support/Adobe/ARMDC/Application/Adobe Acrobat Updater.app
        - com.adobe.ARMDC
        /Library/Image Capture/Devices/KODAK AiO Scan Driver.app
        - com.kodak.KodakAiOScanDriver
        /Library/Image Capture/Devices/Kodak AiO2 Scan Driver.app
        - com.kodak.KODAK AiO2 Scan Driver
        /Library/Printers/Kodak/AiO_Printers/AiOFirmwareUpdater.app
        - com.kodak.KODAK AiO Firmware Updater
        /Library/Printers/Kodak/AiO_Printers/KODAK AiO Home Center.app
        - com.kodak.Kodak Home Center
        /Library/Printers/Kodak/AiO_Printers/KODAK AiO Scan.app
        - com.kodak.KODAK AiO Scan
        /Library/Printers/Kodak/AiO_Printers/KODAK AiO Software Updater.app
        - com.kodak.KODAK AiO Software Updater
        /Library/Printers/Kodak/AiO_Printers/KODAK AiO Uninstall.app
        - com.kodak.EasyShareAiOSeriesUninstaller
        /Library/Printers/Kodak/AiO_Printers/Kodak ESP 3 Camera Connection.app
        - com.kodak.AiOPictbridgeMgr
        /Library/Printers/Kodak/AiO_Printers/KodakAiOBonjourAgent.app
        - N/A
        /Library/Printers/Kodak/AiO_Printers/Registration.app
        - com.kodak.Registration
        /Library/Printers/Kodak/AiO_Printers/Tron/AiO2Driver.app
        - com.kodak.aioprinter.cupsfilter
        /Library/Printers/Kodak/AiO_Printers/Tron/Commander.app
        - com.aioprinter.commander
        /Library/Printers/Kodak/AiO_Printers/Utilities/ICA Scan To.app
        - com.kodak.AiOscanning
        /Library/Printers/Kodak/AiO_Printers/Utilities/Twain Scan To.app
        - com.Kodak.AiOscan
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_apdfllckaahabafndbhieahigkjlhalf/Default apdfllckaahabafndbhieahigkjlhalf.app
        - com.google.Chrome.app.Default-apdfllckaahabafndbhieahigkjlhalf-internal
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_blpcfgokakmgnkcojhhkbfbldkacnbeo/Default blpcfgokakmgnkcojhhkbfbldkacnbeo.app
        - com.google.Chrome.app.Default-blpcfgokakmgnkcojhhkbfbldkacnbeo-internal
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_coobgpohoikkiipiblmjeljniedjpjpf/Default coobgpohoikkiipiblmjeljniedjpjpf.app
        - com.google.Chrome.app.Default-coobgpohoikkiipiblmjeljniedjpjpf-internal
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_pjkljhegncpnkpknbcohdijeoejaedia/Default pjkljhegncpnkpknbcohdijeoejaedia.app
        - com.google.Chrome.app.Default-pjkljhegncpnkpknbcohdijeoejaedia-internal
    PrefPane
        /Library/PreferencePanes/Flash Player.prefPane
        - com.adobe.flashplayerpreferences
    Bundles
        /Library/Internet Plug-Ins/AdobePDFViewer.plugin
        - com.adobe.acrobat.pdfviewer
        /Library/Internet Plug-Ins/AdobePDFViewerNPAPI.plugin
        - com.adobe.acrobat.pdfviewerNPAPI
        /Library/Internet Plug-Ins/Flash Player.plugin
        - com.macromedia.Flash Player.plugin
    Library paths
        /Library/Application Support/Adobe/ARMDC/Application/AcrobatUpdateHelperLib.dylib
        /Library/Application Support/Adobe/ARMNext/Application/AcrobatUpdateHelperLib.dylib
        /Users/USER/Library/Application Support/Firefox/Profiles/w4dn7h3y.default/gmp-gmpopenh264/1.3/libgmpopenh264.dy lib
        /Users/USER/Library/Application Support/Google/Chrome/WidevineCDM/1.4.7.796/_platform_specific/mac_x64/libwidev inecdm.dylib
        /opt/X11/lib/libAppleWM.7.dylib
        /opt/X11/lib/libFS.6.dylib
        /opt/X11/lib/libGL.1.dylib
        /opt/X11/lib/libGLU.1.dylib
        /opt/X11/lib/libICE.6.dylib
        /opt/X11/lib/libOSMesa.8.dylib
        /opt/X11/lib/libOpenVG.1.dylib
        /opt/X11/lib/libSM.6.dylib
        /opt/X11/lib/libX11-xcb.1.dylib
        /opt/X11/lib/libX11.6.dylib
        /opt/X11/lib/libXRes.1.dylib
        /opt/X11/lib/libXTrap.6.dylib
        /opt/X11/lib/libXau.6.dylib
        /opt/X11/lib/libXaw3d.8.dylib
        /opt/X11/lib/libXaw6.6.dylib
        /opt/X11/lib/libXaw7.7.dylib
        /opt/X11/lib/libXaw8.8.dylib
        /opt/X11/lib/libXcomposite.1.dylib
        /opt/X11/lib/libXcursor.1.dylib
        /opt/X11/lib/libXdamage.1.dylib
        /opt/X11/lib/libXdmcp.6.dylib
        /opt/X11/lib/libXevie.1.dylib
        /opt/X11/lib/libXext.6.dylib
        /opt/X11/lib/libXfixes.3.dylib
        /opt/X11/lib/libXfont.1.dylib
        /opt/X11/lib/libXfontcache.1.dylib
        /opt/X11/lib/libXft.2.dylib
        /opt/X11/lib/libXi.6.dylib
        /opt/X11/lib/libXinerama.1.dylib
        /opt/X11/lib/libXmu.6.dylib
        /opt/X11/lib/libXmuu.1.dylib
        /opt/X11/lib/libXp.6.dylib
        /opt/X11/lib/libXplugin.1.dylib
        /opt/X11/lib/libXpm.4.dylib
        /opt/X11/lib/libXrandr.2.dylib
        /opt/X11/lib/libXrender.1.dylib
        /opt/X11/lib/libXss.1.dylib
        /opt/X11/lib/libXt.6.dylib
        /opt/X11/lib/libXtst.6.dylib
        /opt/X11/lib/libXv.1.dylib
        /opt/X11/lib/libXvMC.1.dylib

    Here is the latest kernel panic:
    Mon Apr 13 09:05:08 2015
    *** Panic Report ***
    panic(cpu 2 caller 0xffffff800e217cc2): Kernel trap at 0xffffff800e659c54, type 14=page fault, registers:
    CR0: 0x000000008001003b, CR2: 0x0000000000000080, CR3: 0x00000000110e4000, CR4: 0x00000000001626e0
    RAX: 0x0000000000000000, RBX: 0xffffff7f8efb79b0, RCX: 0xffffff7f8efb79b0, RDX: 0xffffff810f7d5088
    RSP: 0xffffff81188ebce0, RBP: 0xffffff81188ebcf0, RSI: 0xffffff7f8efb79b0, RDI: 0x0000000000000080
    R8:  0x0000000000989000, R9:  0xffffff810f7d5068, R10: 0x000003aac833c38b, R11: 0x000003aac79b338b
    R12: 0xffffff80dee94000, R13: 0xffffff7f8efb79b0, R14: 0x0000000000000080, R15: 0xffffff80dee94000
    RFL: 0x0000000000010202, RIP: 0xffffff800e659c54, CS:  0x0000000000000008, SS:  0x0000000000000010
    Fault CR2: 0x0000000000000080, Error code: 0x0000000000000000, Fault CPU: 0x2
    Backtrace (CPU 2), Frame : Return Address
    0xffffff81188eb990 : 0xffffff800e12bda1
    0xffffff81188eba10 : 0xffffff800e217cc2
    0xffffff81188ebbd0 : 0xffffff800e234b73
    0xffffff81188ebbf0 : 0xffffff800e659c54
    0xffffff81188ebcf0 : 0xffffff7f8efad920
    0xffffff81188ebd40 : 0xffffff800e6d6d0e
    0xffffff81188ebda0 : 0xffffff7f8ef83e86
    0xffffff81188ebe00 : 0xffffff7f8ef82809
    0xffffff81188ebe50 : 0xffffff800e6c42b3
    0xffffff81188ebee0 : 0xffffff800e6bcce7
    0xffffff81188ebf00 : 0xffffff800e15e759
    0xffffff81188ebfb0 : 0xffffff800e2125b7
          Kernel Extensions in backtrace:
             com.apple.driver.AppleUSBEHCI(705.4.14)[376DD4D7-6DAD-3199-8A03-B9D57C4B9315]@0 xffffff7f8ef9f000->0xffffff7f8efb7fff
                dependency: com.apple.iokit.IOUSBFamily(720.4.4)[0D6EABE6-1CC7-348C-8BE2-AF04F66722BF]@0xff ffff7f8ed40000
                dependency: com.apple.iokit.IOPCIFamily(2.9)[52E715FC-521D-3869-B2EA-5228FA4BEA34]@0xffffff 7f8e924000
             com.apple.driver.AppleUSBHub(705.4.2)[461E6324-E42F-3AEB-90B2-A20BBC878569]@0xf fffff7f8ef7c000->0xffffff7f8ef97fff
                dependency: com.apple.iokit.IOUSBFamily(720.4.4)[0D6EABE6-1CC7-348C-8BE2-AF04F66722BF]@0xff ffff7f8ed40000
    BSD process name corresponding to current thread: kernel_task
    Mac OS version:
    14D131
    Kernel version:
    Darwin Kernel Version 14.3.0: Mon Mar 23 11:59:05 PDT 2015; root:xnu-2782.20.48~5/RELEASE_X86_64
    Kernel UUID: 4B3A11F4-77AA-3D27-A22D-81A1BC5B504D
    Kernel slide:     0x000000000de00000
    Kernel text base: 0xffffff800e000000
    __HIB  text base: 0xffffff800df00000
    System model name: MacBookPro9,2 (Mac-6F01561E16C75D06)
    System uptime in nanoseconds: 4032028351202
    last loaded kext at 50908939563: com.apple.driver.AudioAUUC 1.70 (addr 0xffffff7f8ffe1000, size 32768)
    last unloaded kext at 191641182121: com.apple.driver.AirPort.Brcm4331 800.20.24 (addr 0xffffff7f8fbe3000, size 2043904)
    loaded kexts:
    com.apple.driver.AudioAUUC 1.70
    com.apple.driver.AGPM 110.19.5
    com.apple.driver.X86PlatformShim 1.0.0
    com.apple.filesystems.autofs 3.0
    com.apple.iokit.IOBluetoothSerialManager 4.3.4f4
    com.apple.driver.AppleOSXWatchdog 1
    com.apple.driver.AppleMikeyHIDDriver 124
    com.apple.driver.AppleHDA 272.18
    com.apple.driver.AppleUpstreamUserClient 3.6.1
    com.apple.driver.AppleMikeyDriver 272.18
    com.apple.iokit.IOUserEthernet 1.0.1
    com.apple.Dont_Steal_Mac_OS_X 7.0.0
    com.apple.driver.AppleHWAccess 1
    com.apple.driver.AppleHV 1
    com.apple.driver.AppleThunderboltIP 2.0.2
    com.apple.iokit.BroadcomBluetoothHostControllerUSBTransport 4.3.4f4
    com.apple.driver.AppleLPC 1.7.3
    com.apple.driver.AppleSMCPDRC 1.0.0
    com.apple.driver.AppleSMCLMU 2.0.7d0
    com.apple.driver.AppleIntelSlowAdaptiveClocking 4.0.0
    com.apple.driver.AppleIntelHD4000Graphics 10.0.6
    com.apple.driver.AppleIntelFramebufferCapri 10.0.6
    com.apple.driver.SMCMotionSensor 3.0.4d1
    com.apple.driver.AppleBacklight 170.7.4
    com.apple.driver.AppleMCCSControl 1.2.11
    com.apple.driver.AppleUSBTCButtons 240.2
    com.apple.driver.AppleUSBTCKeyboard 240.2
    com.apple.driver.AppleIRController 327.5
    com.apple.AppleFSCompression.AppleFSCompressionTypeDataless 1.0.0d1
    com.apple.AppleFSCompression.AppleFSCompressionTypeZlib 1.0.0d1
    com.apple.BootCache 36
    com.apple.iokit.SCSITaskUserClient 3.7.5
    com.apple.driver.XsanFilter 404
    com.apple.iokit.IOAHCIBlockStorage 2.7.1
    com.apple.iokit.AppleBCM5701Ethernet 10.1.3
    com.apple.driver.AirPort.Brcm4360 930.37.3
    com.apple.driver.AppleSDXC 1.6.5
    com.apple.driver.AppleUSBHub 705.4.2
    com.apple.driver.AppleFWOHCI 5.5.2
    com.apple.driver.AppleUSBEHCI 705.4.14
    com.apple.driver.AppleAHCIPort 3.1.2
    com.apple.driver.AppleUSBXHCI 710.4.11
    com.apple.driver.AppleSmartBatteryManager 161.0.0
    com.apple.driver.AppleACPIButtons 3.1
    com.apple.driver.AppleRTC 2.0
    com.apple.driver.AppleHPET 1.8
    com.apple.driver.AppleSMBIOS 2.1
    com.apple.driver.AppleACPIEC 3.1
    com.apple.driver.AppleAPIC 1.7
    com.apple.driver.AppleIntelCPUPowerManagementClient 218.0.0
    com.apple.nke.applicationfirewall 161
    com.apple.security.quarantine 3
    com.apple.security.TMSafetyNet 8
    com.apple.driver.AppleIntelCPUPowerManagement 218.0.0
    com.apple.kext.triggers 1.0
    com.apple.iokit.IOSerialFamily 11
    com.apple.driver.DspFuncLib 272.18
    com.apple.kext.OSvKernDSPLib 1.15
    com.apple.driver.AppleHDAController 272.18
    com.apple.iokit.IOHDAFamily 272.18
    com.apple.iokit.IOAudioFamily 203.3
    com.apple.vecLib.kext 1.2.0
    com.apple.driver.AppleSMBusPCI 1.0.12d1
    com.apple.iokit.IOBluetoothHostControllerUSBTransport 4.3.4f4
    com.apple.iokit.IOBluetoothFamily 4.3.4f4
    com.apple.driver.X86PlatformPlugin 1.0.0
    com.apple.driver.IOPlatformPluginFamily 5.9.1d7
    com.apple.iokit.IOUSBUserClient 705.4.0
    com.apple.iokit.IOFireWireIP 2.2.6
    com.apple.iokit.IOSlowAdaptiveClockingFamily 1.0.0
    com.apple.iokit.IOSurface 97.4
    com.apple.iokit.IOAcceleratorFamily2 156.14
    com.apple.AppleGraphicsDeviceControl 3.10.22
    com.apple.driver.AppleBacklightExpert 1.1.0
    com.apple.driver.AppleSMC 3.1.9
    com.apple.iokit.IONDRVSupport 2.4.1
    com.apple.driver.AppleSMBusController 1.0.13d1
    com.apple.iokit.IOGraphicsFamily 2.4.1
    com.apple.driver.AppleUSBMultitouch 245.2
    com.apple.iokit.IOUSBHIDDriver 705.4.0
    com.apple.driver.AppleUSBMergeNub 705.4.0
    com.apple.driver.AppleUSBComposite 705.4.9
    com.apple.iokit.IOSCSIMultimediaCommandsDevice 3.7.5
    com.apple.iokit.IOBDStorageFamily 1.7
    com.apple.iokit.IODVDStorageFamily 1.7.1
    com.apple.iokit.IOCDStorageFamily 1.7.1
    com.apple.driver.AppleThunderboltDPInAdapter 4.0.6
    com.apple.driver.AppleThunderboltDPAdapterFamily 4.0.6
    com.apple.driver.AppleThunderboltPCIDownAdapter 2.0.2
    com.apple.iokit.IOAHCISerialATAPI 2.6.1
    com.apple.iokit.IOSCSIArchitectureModelFamily 3.7.5
    com.apple.iokit.IOEthernetAVBController 1.0.3b3
    com.apple.iokit.IO80211Family 730.60
    com.apple.driver.mDNSOffloadUserClient 1.0.1b8
    com.apple.iokit.IONetworkingFamily 3.2
    com.apple.driver.AppleThunderboltNHI 3.1.7
    com.apple.iokit.IOThunderboltFamily 4.2.2
    com.apple.iokit.IOFireWireFamily 4.5.6
    com.apple.iokit.IOAHCIFamily 2.7.5
    com.apple.iokit.IOUSBFamily 720.4.4
    com.apple.driver.AppleEFINVRAM 2.0
    com.apple.driver.AppleEFIRuntime 2.0
    com.apple.iokit.IOHIDFamily 2.0.0
    com.apple.iokit.IOSMBusFamily 1.1
    com.apple.security.sandbox 300.0
    com.apple.kext.AppleMatch 1.0.0d1
    com.apple.driver.AppleKeyStore 2
    com.apple.driver.AppleMobileFileIntegrity 1.0.5
    com.apple.driver.AppleCredentialManager 1.0
    com.apple.driver.DiskImages 396
    com.apple.iokit.IOStorageFamily 2.0
    com.apple.iokit.IOReportFamily 31
    com.apple.driver.AppleFDEKeyStore 28.30
    com.apple.driver.AppleACPIPlatform 3.1
    com.apple.iokit.IOPCIFamily 2.9
    com.apple.iokit.IOACPIFamily 1.4
    com.apple.kec.corecrypto 1.0
    com.apple.kec.Libm 1
    com.apple.kec.pthread 1
    System Profile:
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xF5), Broadcom BCM43xx 1.0 (7.15.166.24.3)
    Bluetooth: Version 4.3.4f4 15601, 3 services, 18 devices, 1 incoming serial ports
    Thunderbolt Bus: MacBook Pro, Apple Inc., 25.1
    Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80CE, 0x4D34373142353237334448302D434B302020
    Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1600 MHz, 0x80CE, 0x4D34373142353237334448302D434B302020
    USB Device: Hub
    USB Device: FaceTime HD Camera (Built-in)
    USB Device: Hub
    USB Device: Hub
    USB Device: BRCM20702 Hub
    USB Device: Bluetooth USB Host Controller
    USB Device: Apple Internal Keyboard / Trackpad
    USB Device: IR Receiver
    Serial ATA Device: APPLE HDD HTS541075A9E662, 750.16 GB
    Serial ATA Device: MATSHITADVD-R   UJ-8A8
    Model: MacBookPro9,2, BootROM MBP91.00D3.B08, 2 processors, Intel Core i7, 2.9 GHz, 8 GB, SMC 2.2f44
    Network Service: Wi-Fi, AirPort, en1
    Graphics: Intel HD Graphics 4000, Intel HD Graphics 4000, Built-In
    There are also several other error logs in there too, such as "networkd" errors, "com.apple.WebKit.WebContent" errors (experiencing these a lot with Safari), so please let me know if you'd like me to post some of these too.
    Thanks for your time.

  • My MacBook Pro is running painfully slow all of a sudden. I am trying to clean up my iPhoto library and it's all of a sudden running really slow. I've uninstalled and disabled as many unnecessary apps as possible as far as I can tell.

    Here is the etrecheck info. Please advise... thank you!
    Problem description:
    iPhoto is running painfully slow. My library is on an external hard drive. It was runing just fine yesterday. i disabled Dropbox and a few other applications, to no avail.
    EtreCheck version: 2.1.5 (108)
    Report generated January 7, 2015 at 12:40:17 PM EST
    Click the [Support] links for help with non-Apple products.
    Click the [Details] links for more information about that line.
    Click the [Adware] links for help removing adware.
    Hardware Information: ℹ️
      MacBook Pro (15-inch, Mid 2010) (Verified)
      MacBook Pro - model: MacBookPro6,2
      1 2.4 GHz Intel Core i5 CPU: 2-core
      8 GB RAM Upgradeable
      BANK 0/DIMM0
      4 GB DDR3 1067 MHz ok
      BANK 1/DIMM0
      4 GB DDR3 1067 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics - VRAM: 288 MB
      NVIDIA GeForce GT 330M - VRAM: 256 MB
      Color LCD 1440 x 900
    System Software: ℹ️
      OS X 10.10 (14A389) - Uptime: 0:55:4
    Disk Information: ℹ️
      Hitachi HTS545032B9SA02 disk0 : (320.07 GB)
      EFI (disk0s1) <not mounted> : 210 MB
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      Macintosh HD (disk1) / : 318.84 GB (54.79 GB free)
      Encrypted AES-XTS Unlocked
      Core Storage: disk0s2 319.21 GB Online
      MATSHITADVD-R   UJ-898 
    USB Information: ℹ️
      Seagate Backup+ Desk 4 TB
      disk2s1 (disk2s1) <not mounted> : 262 KB
      Seagate Backup Plus Drive (disk2s3) /Volumes/Seagate Backup Plus Drive : 4.00 TB (2.73 TB free)
      Apple Internal Memory Card Reader
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Logitech USB Receiver
      Apple Inc. Built-in iSight
      Apple Computer, Inc. IR Receiver
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /System/Library/Extensions
      [loaded] com.logmein.driver.LogMeInSoundDriver (4.1.46f67) [Support]
      [not loaded] com.seagate.driver.PowSecDriverCore (5.2.3 - SDK 10.4) [Support]
      /System/Library/Extensions/Seagate Storage Driver.kext/Contents/PlugIns
      [not loaded] com.seagate.driver.PowSecLeafDriver_10_4 (5.2.3 - SDK 10.4) [Support]
      [not loaded] com.seagate.driver.PowSecLeafDriver_10_5 (5.2.3 - SDK 10.5) [Support]
      [not loaded] com.seagate.driver.SeagateDriveIcons (5.2.3 - SDK 10.4) [Support]
    Startup Items: ℹ️
      ProTec6b: Path: /Library/StartupItems/ProTec6b
      Startup items are obsolete in OS X Yosemite
    Launch Agents: ℹ️
      [loaded] com.citrix.AuthManager_Mac.plist [Support]
      [running] com.citrix.ReceiverHelper.plist [Support]
      [running] com.citrix.ServiceRecords.plist [Support]
      [invalid?] com.logmein.LMILaunchAgentFixer.plist [Support]
      [not loaded] com.logmein.logmeingui.plist [Support]
      [not loaded] com.logmein.logmeinguiagent.plist [Support]
      [not loaded] com.logmein.logmeinguiagentatlogin.plist [Support]
      [invalid?] com.oracle.java.Java-Updater.plist [Support]
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist [Support]
      [not loaded] com.gopro.stereomodestatus.plist [Support]
      [not loaded] com.logmein.logmeinserver.plist [Support]
      [invalid?] com.logmein.raupdate.plist [Support]
      [loaded] com.macpaw.CleanMyMac2.Agent.plist [Support]
      [invalid?] com.oracle.java.Helper-Tool.plist [Support]
      [loaded] com.sharpcast.xfsmond.plist [Support]
    User Launch Agents: ℹ️
      [loaded] com.adobe.ARM.[...].plist [Support]
      [loaded] com.google.keystone.agent.plist [Support]
    User Login Items: ℹ️
      Garmin Express Service Application (/Applications/Garmin Express.app/Contents/Library/LoginItems/Garmin Express Service.app)
      Dropbox Application (/Applications/Dropbox.app)
      Google Chrome ApplicationHidden (/Applications/Google Chrome.app)
      ThisLife Uploader ApplicationHidden (/Applications/ThisLife Uploader.app)
      WDQuickView Application (/Library/Application Support/WDSmartWare/WDQuickView.app)
    Internet Plug-ins: ℹ️
      LogMeInSafari64: Version: 1.0.586 [Support]
      Default Browser: Version: 600 - SDK 10.10
      AdobePDFViewerNPAPI: Version: 11.0.09 - SDK 10.6 [Support]
      FlashPlayer-10.6: Version: 15.0.0.246 - SDK 10.6 [Support]
      LogMeIn: Version: 1.0.586 [Support]
      Silverlight: Version: 4.0.60831.0 [Support]
      Flash Player: Version: 15.0.0.246 - SDK 10.6 Mismatch! Adobe recommends 16.0.0.235
      LogMeInSafari32: Version: 1.0.586 [Support]
      CitrixICAClientPlugIn: Version: 11.8.0 - SDK 10.7 [Support]
      QuickTime Plugin: Version: 7.7.3
      AdobePDFViewer: Version: 11.0.09 - SDK 10.6 [Support]
      GarminGpsControl: Version: 4.2.0.0 - SDK 10.8 [Support]
      iPhotoPhotocast: Version: 7.0 - SDK 10.8
    User internet Plug-ins: ℹ️
      Picasa: Version: 1.0 [Support]
    Safari Extensions: ℹ️
      Evernote Web Clipper [Installed]
    3rd Party Preference Panes: ℹ️
      Flash Player  [Support]
      GoPro  [Support]
    Time Machine: ℹ️
      Mobile backups: OFF
      Auto backup: NO - Auto backup turned off
      Volumes being backed up:
      Macintosh HD: Disk size: 318.84 GB Disk used: 264.06 GB
      Destinations:
      Seagate Backup Plus Drive [Local]
      Total size: 0 B
      Total number of backups: 0
      Oldest backup: -
      Last backup: -
      Size of backup disk: Too small
      Backup size 0 B < (Disk used 264.06 GB X 3)
    Top Processes by CPU: ℹ️
          8% WindowServer
          2% Safari
          1% mds
          1% loginwindow
          0% AppleSpell
    Top Processes by Memory: ℹ️
      2.13 GB iPhoto
      610 MB Image Capture Extension
      155 MB mds_stores
      129 MB Safari
      129 MB Finder
    Virtual Memory Information: ℹ️
      48 MB Free RAM
      3.71 GB Active RAM
      3.68 GB Inactive RAM
      1.04 GB Wired RAM
      6.89 GB Page-ins
      293 MB Page-outs
    Diagnostics Information: ℹ️
      Jan 7, 2015, 12:28:48 PM /Library/Logs/DiagnosticReports/iPhoto_2015-01-07-122848_[redacted].cpu_resourc e.diag [Details]
      Jan 7, 2015, 12:13:08 PM /Library/Logs/DiagnosticReports/iPhoto_2015-01-07-121308_[redacted].hang
      Jan 7, 2015, 12:07:39 PM /Library/Logs/DiagnosticReports/iPhoto_2015-01-07-120739_[redacted].cpu_resourc e.diag [Details]
      Jan 7, 2015, 12:02:48 PM /Library/Logs/DiagnosticReports/iPhoto_2015-01-07-120248_[redacted].hang
      Jan 7, 2015, 11:51:45 AM /Library/Logs/DiagnosticReports/iPhoto_2015-01-07-115145_[redacted].cpu_resourc e.diag [Details]
      Jan 7, 2015, 11:45:54 AM Self test - passed
      Jan 6, 2015, 05:01:58 PM /Users/[redacted]/Library/Logs/DiagnosticReports/garcon_2015-01-06-170158_[reda cted].crash
      Jan 5, 2015, 02:12:40 PM /Library/Logs/DiagnosticReports/iPhoto_2015-01-05-141240_[redacted].cpu_resourc e.diag [Details]
      Jan 5, 2015, 10:04:15 AM /Library/Logs/DiagnosticReports/com.apple.MediaLibraryService_2015-01-05-100415 _[redacted].cpu_resource.diag [Details]
      Jan 4, 2015, 05:28:20 PM /Users/[redacted]/Library/Logs/DiagnosticReports/HandBrake_2015-01-04-172820_[r edacted].crash
      Jan 4, 2015, 05:28:04 PM /Users/[redacted]/Library/Logs/DiagnosticReports/garcon_2015-01-04-172804_[reda cted].crash
      Jan 4, 2015, 03:09:50 PM /Users/[redacted]/Library/Logs/DiagnosticReports/Finder_2015-01-04-150950_[reda cted].crash
      Jan 4, 2015, 03:09:15 PM /Users/[redacted]/Library/Logs/DiagnosticReports/garcon_2015-01-04-150915_[reda cted].crash

    Start time: 15:08:00 01/08/15
    Model Identifier: MacBookPro6,2
    System Version: OS X 10.10 (14A389)
    Kernel Version: Darwin 14.0.0
    Time since boot: 1 day3:22
    Memory
        BANK 0/DIMM0:
          Size: 4 GB
          Speed: 1067 MHz
          Status: OK
          Manufacturer: 0x859B
        BANK 1/DIMM0:
          Size: 4 GB
          Speed: 1067 MHz
          Status: OK
          Manufacturer: 0x859B
    SerialATA
       Hitachi HTS545032B9SA02                
    USB
       Backup+ Desk (Seagate LLC)
       USB Receiver (Logitech Inc.)
    FileVault: On
    Diagnostic reports
       2014-12-17 Safari crash
       2014-12-17 com.apple.appkit.xpc.openAndSavePanelService crash
       2014-12-17 garcon crash x4
       2014-12-27 Finder crash
       2014-12-27 ThisLife Uploader crash
       2014-12-27 garcon crash x2
       2014-12-28 Finder crash
       2014-12-28 garcon crash x3
       2014-12-31 com.apple.appkit.xpc.openAndSavePanelService crash
       2014-12-31 garcon crash
       2015-01-02 Finder crash
       2015-01-02 garcon crash
       2015-01-05 Finder crash
       2015-01-05 HandBrake crash
       2015-01-05 garcon crash x2
       2015-01-07 garcon crash
       2015-01-08 iPhoto hang x2
    Log
       Jan  7 11:47:39 com.apple.xpc.launchd.domain.user.55: Failed to bootstrap path: path = /Library/LaunchAgents/com.oracle.java.Java-Updater.plist, error = 2: No such file or directory
       Jan  7 11:47:43 com.apple.xpc.launchd.domain.user.202: Could not read path: path = /Library/LaunchAgents/com.oracle.java.Java-Updater.plist, error = 2: No such file or directory
       Jan  7 11:47:43 com.apple.xpc.launchd.domain.user.202: Failed to bootstrap path: path = /Library/LaunchAgents/com.oracle.java.Java-Updater.plist, error = 2: No such file or directory
       Jan  7 11:47:58 com.apple.xpc.launchd.domain.user.89: Could not read path: path = /Library/LaunchAgents/com.oracle.java.Java-Updater.plist, error = 2: No such file or directory
       Jan  7 11:47:58 com.apple.xpc.launchd.domain.user.89: Failed to bootstrap path: path = /Library/LaunchAgents/com.oracle.java.Java-Updater.plist, error = 2: No such file or directory
       Jan  7 11:48:38 jnl: disk2s3: replay_journal: from: 50180096 to: 50778112 (joffset 0x3a3c000)
       Jan  7 11:48:39 jnl: disk2s3: journal replay done.
       Jan  7 11:49:37 com.logmein.LMILaunchAgentFixer: Service setup event to handle failure and will not launch until it fires.
       Jan  7 11:49:39 com.apple.xpc.launchd.domain.pid.om.apple.photostream-agent.319: Path not allowed in target domain: type = pid, path = /Applications/iPhoto.app/Contents/Frameworks/PhotoFoundation.framework/Versions /A/XPCServices/com.apple.PhotoApps.DevicePropertyReader.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /Applications/iPhoto.app/Contents/Library/LoginItems/PhotoStreamAgent.app
       Jan  7 11:49:39 com.apple.xpc.launchd.domain.pid.om.apple.photostream-agent.319: Path not allowed in target domain: type = pid, path = /Applications/iPhoto.app/Contents/Frameworks/PhotoFoundation.framework/Versions /A/XPCServices/com.apple.PhotoApps.DevicePropertyReader.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /Applications/iPhoto.app/Contents/Library/LoginItems/PhotoStreamAgent.app
       Jan  7 11:49:39 com.citrix.ServiceRecords: Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.citrix.Beacons
       Jan  7 11:51:29 process iPhoto[248] thread 2450 caught burning CPU! It used more than 50% CPU (Actual recent usage: 52%) over 180 seconds. thread lifetime cpu usage 90.109268 seconds, (87.476202 user, 2.633066 system) ledger info: balance: 90008641218 credit: 90014455352 debit: 5814134 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 172082865204
       Jan  7 11:52:49 com.apple.xpc.launchd.domain.user.99: Could not read path: path = /Library/LaunchAgents/com.oracle.java.Java-Updater.plist, error = 2: No such file or directory
       Jan  7 11:52:49 com.apple.xpc.launchd.domain.user.99: Failed to bootstrap path: path = /Library/LaunchAgents/com.oracle.java.Java-Updater.plist, error = 2: No such file or directory
       Jan  7 12:07:36 process iPhoto[490] thread 12067 caught burning CPU! It used more than 50% CPU (Actual recent usage: 93%) over 180 seconds. thread lifetime cpu usage 90.200179 seconds, (88.682346 user, 1.517833 system) ledger info: balance: 90012025000 credit: 90016246356 debit: 4221356 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 96436947650
       Jan  7 12:19:32 com.apple.xpc.launchd.domain.pid.quicklookd.536: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/quicklookd. app
       Jan  7 12:21:38 process WindowServer[134] caught causing excessive wakeups. Observed wakeups rate (per sec): 174; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 130324
       Jan  7 12:24:23 process Image Capture Ex[494] caught causing excessive wakeups. Observed wakeups rate (per sec): 1570; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 45166
       Jan  7 12:28:45 process iPhoto[643] thread 21591 caught burning CPU! It used more than 50% CPU (Actual recent usage: 90%) over 180 seconds. thread lifetime cpu usage 90.114637 seconds, (88.373536 user, 1.741101 system) ledger info: balance: 90002127665 credit: 90005648813 debit: 3521148 limit: 90000000000 (50%) period: 180000000000 time since last refill (ns): 99086317519
       Jan  7 12:30:17 com.apple.xpc.launchd.domain.pid.om.apple.photostream-agent.655: Path not allowed in target domain: type = pid, path = /Applications/iPhoto.app/Contents/Frameworks/PhotoFoundation.framework/Versions /A/XPCServices/com.apple.PhotoApps.DevicePropertyReader.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /Applications/iPhoto.app/Contents/Library/LoginItems/PhotoStreamAgent.app
       Jan  7 12:30:17 com.apple.xpc.launchd.domain.pid.om.apple.photostream-agent.655: Path not allowed in target domain: type = pid, path = /Applications/iPhoto.app/Contents/Frameworks/PhotoFoundation.framework/Versions /A/XPCServices/com.apple.PhotoApps.DevicePropertyReader.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /Applications/iPhoto.app/Contents/Library/LoginItems/PhotoStreamAgent.app
       Jan  7 13:13:15 process com.apple.WebKit[827] caught causing excessive wakeups. Observed wakeups rate (per sec): 560; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 55866
       Jan  7 20:09:33 process iPhoto[643] caught causing excessive wakeups. Observed wakeups rate (per sec): 198; Maximum permitted wakeups rate (per sec): 150; Observation period: 300 seconds; Task lifetime number of wakeups: 269536
       Jan  8 01:12:04 AppleUSBMultitouchDriver::validateChecksum - 512-byte packet checksum is incorrect (expected 0xf60c, checksum bytes were 0xdead)
       Jan  8 15:06:18 com.apple.xpc.launchd.domain.pid.quicklookd.1302: Path not allowed in target domain: type = pid, path = /Library/Frameworks/iTunesLibrary.framework/Versions/A/XPCServices/com.apple.iT unesLibraryService.xpc error = 147: The specified service did not ship in the requestor's bundle, origin = /System/Library/Frameworks/QuickLook.framework/Versions/A/Resources/quicklookd. app
    Memory: iPhoto (UID 501) is using 2093 MB
    kexts
       com.logmein.driver.LogMeInSoundDriver (4.1.46f67)
    Daemons
       com.adobe.fpsaud
       com.apple.installer.osmessagetracing
       com.logmein.raupdate
       com.macpaw.CleanMyMac2.Agent
       com.sharpcast.xfsmond
    Agents
       com.adobe.ARM.UUID
       com.apple.AirPortBaseStationAgent
       com.apple.photostream-agent
       com.citrix.AuthManager_Mac
       com.citrix.ReceiverHelper
       com.citrix.ServiceRecords
       com.google.keystone.user.agent
       com.logmein.LMILaunchAgentFixer
    Startup items
       /Library/StartupItems/ProTec6b/DemoOver
       /Library/StartupItems/ProTec6b/Nalpeirond6b
       /Library/StartupItems/ProTec6b/ProTec6b
       /Library/StartupItems/ProTec6b/StartupParameters.plist
    dylibs
       /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/WebKit.dylib
       /Users/USER/Library/Application Support/Google/Chrome/WidevineCDM/1.4.6.703/_platform_specific/mac_x64/libwidev inecdm.dylib
       /usr/lib/HDREfexProFC.dylib
    App extensions
       com.getdropbox.dropbox.garcon
    Contents of /Library/LaunchAgents/com.citrix.AuthManager_Mac.plist
       - mod date: Jun  7 11:58:25 2013
       - checksum: 1591517921
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>ServiceIPC</key>
        <true/>
        <key>MachServices</key>
        <dict>
        <key>com.citrix.AuthManager_Mac</key>
        <true/>
        </dict>
        <key>Label</key>
        <string>com.citrix.AuthManager_Mac</string>
        <key>WaitForDebugger</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/local/libexec/AuthManager_Mac.app/Contents/MacOS/AuthManager_Mac</ string>
        </array>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>Disabled</key>
        <false/>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.citrix.ReceiverHelper.plist
       - mod date: Jun  7 11:58:25 2013
       - checksum: 676087606
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.citrix.ReceiverHelper</string>
        <key>RunAtLoad</key>
        <true/>
        <key>KeepAlive</key>
        <dict>
        <key>SuccessfulExit</key>
        <false/>
        </dict>
        <key>WaitForDebugger</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/local/libexec/ReceiverHelper.app/Contents/MacOS/ReceiverHelper</st ring>
        </array>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>Disabled</key>
        <false/>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.citrix.ServiceRecords.plist
       - mod date: Jun  7 11:58:25 2013
       - checksum: 1445213025
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>ServiceIPC</key>
        <true/>
        <key>MachServices</key>
        <dict>
        <key>com.citrix.Beacons</key>
        <true/>
        <key>com.citrix.ServiceRecords</key>
        <true/>
        </dict>
        <key>Label</key>
        <string>com.citrix.ServiceRecords</string>
        <key>RunAtLoad</key>
        <true/>
        <key>KeepAlive</key>
        <true/>
        <key>WaitForDebugger</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/usr/local/libexec/ServiceRecords.app/Contents/MacOS/ServiceRecords</st ring>
        </array>
       ...and 8 more line(s)
    Contents of /Library/LaunchAgents/com.logmein.LMILaunchAgentFixer.plist
       - mod date: Nov 10 20:47:41 2014
       - checksum: 94065829
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Debug</key>
        <true/>
        <key>Label</key>
        <string>com.logmein.LMILaunchAgentFixer</string>
        <key>OnDemand</key>
        <true/>
        <key>ThrottleInterval</key>
        <integer>1</integer>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/LogMeIn/bin/LMILaunchAgentFixer.app/Contents/MacOS/LMILaunchAgentFixer< /string>
        <string>fromlaunchagent</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.logmein.logmeingui.plist
       - mod date: Jan  7 12:05:30 2015
       - checksum: 849719711
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Debug</key>
        <true/>
        <key>Disabled</key>
        <true/>
        <key>Label</key>
        <string>com.logmein.logmeingui</string>
        <key>LimitLoadToSessionType</key>
        <array>
        <string>Aqua</string>
        </array>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/LogMeIn/bin/LogMeInGUI.app/Contents/MacOS/LogMeInGUI</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.logmein.logmeinguiagent.plist
       - mod date: Jan  7 12:05:30 2015
       - checksum: 1227007658
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Debug</key>
        <true/>
        <key>Disabled</key>
        <true/>
        <key>Label</key>
        <string>com.logmein.logmeinguiagent</string>
        <key>LimitLoadToSessionType</key>
        <array>
        <string>Aqua</string>
        </array>
        <key>OnDemand</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/LogMeIn/bin/LogMeIn.app/Contents/Helpers/LMIGUIAgent.app/Contents/MacOS /LMIGUIAgent</string>
        </array>
        <key>RunAtLoad</key>
        <false/>
        <key>Sockets</key>
        <dict>
        <key>Listeners</key>
       ...and 19 more line(s)
    Contents of /Library/LaunchAgents/com.logmein.logmeinguiagentatlogin.plist
       - mod date: Jan  7 12:05:30 2015
       - checksum: 3390435066
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Debug</key>
        <true/>
        <key>Disabled</key>
        <true/>
        <key>Label</key>
        <string>com.logmein.logmeinguiagentatlogin</string>
        <key>LimitLoadToSessionType</key>
        <array>
        <string>LoginWindow</string>
        </array>
        <key>OnDemand</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/LogMeIn/bin/LogMeIn.app/Contents/Helpers/LMIGUIAgent.app/Contents/MacOS /LMIGUIAgent</string>
        </array>
        <key>RunAtLoad</key>
        <false/>
        <key>Sockets</key>
        <dict>
        <key>Listeners</key>
       ...and 19 more line(s)
    Contents of /Library/LaunchDaemons/com.gopro.stereomodestatus.plist
       - mod date: Jan 29 17:22:17 2014
       - checksum: 2319101607
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.gopro.stereomodestatus</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>RunAtLoad</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/GoPro/Tools/StereoModeStatus.app/Contents/MacOS/StereoMod eStatus</string>
        </array>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.logmein.logmeinserver.plist
       - mod date: Jan  7 12:05:30 2015
       - checksum: 1427099528
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Debug</key>
        <true/>
        <key>Disabled</key>
        <true/>
        <key>Label</key>
        <string>com.logmein.logmeinserver</string>
        <key>LegacyTimers</key>
        <true/>
        <key>OnDemand</key>
        <false/>
        <key>ProcessType</key>
        <string>Interactive</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/LogMeIn/bin/LogMeIn.app/Contents/MacOS/LogMeIn</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StandardErrorPath</key>
        <string>/Library/Logs/LogMeIn/stderr.log</string>
        <key>StandardOutPath</key>
       ...and 7 more line(s)
    Contents of /Library/LaunchDaemons/com.logmein.raupdate.plist
       - mod date: Nov 10 20:46:56 2014
       - checksum: 3493110929
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.logmein.raupdate</string>
        <key>OnDemand</key>
        <true/>
        <key>RunAtLoad</key>
        <false/>
        <key>KeepAlive</key>
        <false/>
        <key>LaunchOnlyOnce</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/LogMeIn/update/raupdate</string>
        <string>/s</string>
        </array>
        <key>StandardErrorPath</key>
        <string>/Library/Logs/LogMeIn/stderr.log</string>
        <key>StandardOutPath</key>
        <string>/Library/Logs/LogMeIn/stdout.log</string>
        <key>WorkingDirectory</key>
        <string>/Library/Application Support/LogMeIn/bin/</string>
       ...and 2 more line(s)
    Contents of /Library/LaunchDaemons/com.macpaw.CleanMyMac2.Agent.plist
       - mod date: Sep  1 15:15:35 2014
       - checksum: 2214847194
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.macpaw.CleanMyMac2.Agent</string>
        <key>MachServices</key>
        <dict>
        <key>com.macpaw.CleanMyMac2.Agent</key>
        <true/>
        </dict>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PrivilegedHelperTools/com.macpaw.CleanMyMac2.Agent</string>
        </array>
        <key>ServiceIPC</key>
        <true/>
        <key>Sockets</key>
        <dict>
        <key>MasterSocket</key>
        <dict>
        <key>SockFamily</key>
        <string>Unix</string>
        <key>SockPathMode</key>
        <integer>438</integer>
       ...and 8 more line(s)
    Contents of /Library/LaunchDaemons/com.sharpcast.xfsmond.plist
       - mod date: May  4 20:28:27 2013
       - checksum: 3377386094
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//ENhttp://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <!-- SugarSync version 1.9.96.111090.20130403 -->
       <plist version="1.0">
       <dict>
        <key>Disabled</key>
        <false/>
        <key>Label</key>
        <string>com.sharpcast.xfsmond</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/SugarSync/scxfsmond</string>
        <string>-log</string>
        <string>error</string>
        <string>-launchd</string>
        </array>
        <key>Sockets</key>
        <dict>
        <key>Listeners</key>
        <dict>
        <key>SockFamily</key>
        <string>Unix</string>
        <key>SockPathMode</key>
        <integer>438</integer>
        <key>SockPathName</key>
       ...and 14 more line(s)
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
       - mod date: Jul 24 11:11:09 2013
       - checksum: 394026997
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        <string>semi-auto</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.google.keystone.agent.plist
       - mod date: Nov 30 14:26:35 2014
       - checksum: 4084537214
       <?xml version="1.0" encoding="UTF-8"?>
       <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
       <plist version="1.0">
       <dict>
        <key>Label</key>
        <string>com.google.keystone.user.agent</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>ProgramArguments</key>
        <array>
         <string>/Users/USER/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bu ndle/Contents/Resources/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftw areUpdateAgent</string>
         <string>-runMode</string>
         <string>ifneeded</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>3523</integer>
        <key>StandardErrorPath</key>
        <string>/dev/null</string>
        <key>StandardOutPath</key>
        <string>/dev/null</string>
       </dict>
       </plist>
    Listeners
       cupsd: ipp
    User login items
       Garmin Express Service
       - /Applications/Garmin Express.app/Contents/Library/LoginItems/Garmin Express Service.app
       Dropbox
       - /Applications/Dropbox.app
       Google Chrome
       - /Applications/Google Chrome.app
       ThisLife Uploader
       - /Applications/ThisLife Uploader.app
       WDQuickView
       - /Library/Application Support/WDSmartWare/WDQuickView.app
    Safari extensions
       Evernote Web Clipper
       - com.evernote.safari.clipper
    Widgets
       iCal
       Earth
    Restricted files: 339
    Lockfiles: 101
    Elapsed time (s): 844
    Wow, that's a lot of data for you to sift through, but I suppose you know what you are looking to find. I bet you earned every one of those points. Thanks, Linc. All the folks in the world waiting for me to share their photos with them thank you as well : )  Cathleen

Maybe you are looking for

  • Logo in Smartform.

    Hello Everybody, I am supposed to load the logo into the form based on the input given by the user.i,e. i should the take the name of the logo to be put in the SMARTFORM from the text box in the selection screeen.Could some one tell me as to how this

  • How to add more disk space into /   root file system

    Hi All, Linux  2.6.18-128 can anyone please let us know how to add more disk space into "/" root file system. i have added new hard disk with space of 20GB,  [root@rac2 shm]# df -h Filesystem            Size  Used Avail Use% Mounted on /dev/hda1     

  • Slow internet on G5 help!

    I am experiencing REAL slow internet problems with my G5 below are the specs. I turned off IPn6 (or something like that) to see if it would help. didn't help that much. 1.6 Ghz PowerPC G5 2 GB DDR SDRAM Mac OS X version 10.5.7 Model Name: iMac G5 Mod

  • Hana Studio "The system is locked; the license is invalid or has expired"

    Hello, I am using HANA Studio 1.0.48 with HANA One AWS-instance successfully since 4 month. Since one week my HANA Studio Ver. 1.0.48 can't connect with the HANA-DB. Following errors appear during connecting: "The system is locked; the license is inv

  • Sqlldr Loading more rows than expected

    We are trying to load a child table that has the referential integrity constraint with its parent and some triggers on it that is used to change the case of data. We are using the bcp to create a text file that is having the 5 records. The text file