Recurce directories is too slow

Hi, I wrote a function that recurcively goes through directories, but it is very slow. Where is the problem?
private void getDirectory(String dirName)
File file = new File(dirName);
list.add(dirName);
if(file.isDirectory()) file.listFiles()
for(int i=0; i<file.listFiles().length; i++)
getDirectory(file.listFiles().getAbsolutePath());

for(int i=0; i<file.listFiles().length; i++)
getDirectory(file.listFiles().getAbsolutePath());
Oh, man. That's your problem: you're calling file.listFiles() over and over and over, and each time it goes and does the equivalent of a call to "ls".
Why can't you just:File[] files = file.listFiles();
for (int i = 0; i < files.length; i++) {
getDirectory(files.getAbsolutePath());
Betcha that'll run a hundred times faster.

Similar Messages

  • Director 12 is too slow making clones from 3D models

    Why is Director 12 so slow making clones from 3D models? 
    It takes 2 minutes to make 1200 clones from 10 very simple 3D models.  And that's only part of the game initialization time. 
    The complete game initialization takes 3.5 minutes, including the above 1200 clones, plus other 3D cloning, and other data init.
    Users won't wait that long for a game to start.
    Please help me out with this.
    Here's the Lingo clone initialization code:
    <pre>
    on initItem nameModel, numModels
      -- every clone has the same shader
      nameShader = "Shader"
      -- init this base model
      -- gObj global points to the source 3d-model cast member
      iModel  = gObj.model(nameModel)
      iShader = gObj.shader(nameShader)
      iModel.transform.rotation = vector(0,0,0)
      iModel.transform.scale    = vector(1,1,1)
      iModel.visibility = #none
      iModel.shaderList[1] = iShader
      iShader.diffuse  = rgb( 0, 0, 0 ) 
      iShader.emissive = rgb( 0, 255, 0 )
      iShader.transparent = FALSE
      iShader.flat = TRUE
      gObj.modelResource(nameModel).lod.bias = 50.0
      -- create a list of clone models -
      if( numModels > 0 ) then
        cloneList = []
        repeat with i = 1 to numModels
          ranStr = getRandomString( nameModel )
          iClone = iModel.clone( ranStr )
          -- add and set available flag to clone
          iClone.userData.addProp( #available, TRUE )
          cloneList.append( iClone )
          -- make clone a child of the rendering group: gGroup
          gGroup.addChild( iClone, #preserveWorld )
        end repeat
        -- add to the model the #clones property and the clone list
        iModel.userData.addProp( #clones, cloneList )
      end if
    end initItem
    </pre>

    @necromanthus,
    I use clones for things like non-player-actor models, missiles, and bullets, all of which must be memory-resident in real-time.
    When clones are needed, I pull them from the free pool, make them visible, and transform them as required. 
    When done with the clones, I make them invisible and return them to the free pool.
    In my testing of Director 12, making clones in real-time when they are needed is much too slow for an action game, like a shooter.
    The total init time I gave earlier includes many other things besides making clones, but clone making is 40% to 50% of my total init time.
    Here's my cloning code after the optimizations -- Note: shader init was removed from initItem(), and the inner loop is now minimal:
    on initItem nameModel, numModels
      -- gObj is global pointer to 3D cast member
      -- gGroup is global pointer to rendering group
      iModel = gObj.model(nameModel)
      iModel.transform.rotation = vector(0,0,0)
      iModel.transform.scale    = vector(1,1,1)
      iModel.visibility = #none
      iModel.userData.addProp( #available, TRUE )
      iModel.shaderList[1] = gObj.shader("ModelShader")
      gObj.modelResource(nameModel).lod.auto = TRUE
      gObj.modelResource(nameModel).lod.bias = 10
      gGroup.addChild( iModel, #preserveWorld )
      if( numModels > 0 ) then
        cloneList = []
        repeat with i = 1 to numModels
          iClone = iModel.clone( nameModel & i )
          cloneList.append( iClone )
        end repeat
        iModel.userData.addProp( #clones, cloneList )
      end if
    end initItem

  • File.length() too slow?

    I'm working on an application that needs to process directory listings on network fileserver, looking for files and directories, and getting basic info about files found (size, last modified date).
    I'm trying to use java.io.File.list(java.io.FileFilter) with java.io.FileFilter returning file.isDirectory() or file.isFile() to get a list of just files or directories, and try to get the rest of file information later for each of the returned Files. However, when it gets to a directory with a lot of files (13000+), it seem to be unacceptably slow. I have tracked it down to File.length(), taking up to 80ms per file (!), which amounts to only about 13 files per second.
    It's not a problem of the platform (Win XP), directory listing contianing all information I need takes less than 3 seconds for this big directory, while getting the same through Java APIs (calling isDirectory(), isFile(), length() and lastModified() within the FileFilter callback ) takes ages.
    Is there a better way to get a directory listing, without being orders of magnitude slower than necessary? I can think of calling native dir command and parsing the output, but that is a mess...

    I have tracked this down to native implementation of File.length() - VC++ runtime function _stati64 which they use to get file length is too slow.
    Why dont they use Windows API? I have tested that getting file size using GetFileAttributesEx() is at least 50x faster than _stati64 for my file!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Application running too slow on sun T5440 but run normal on sun M3000

    Hi all,
    I have application running on sun server T5440 4x8x1.4 GHz, 64 GB RAM, application running very slow though load average too low. when I install my application on another server SUN M3000 (One CPU 1x8x2.5GHz, 8GB RAM), application run smoothly.
    Here is my server T5440 info:
    Code:
    bash-3.00# uname -a
    SunOS 5.10 Generic_142909-17 sun4v sparc SUNW,T5440
    Psrinfo -pv
    Code:
    bash-3.00# psrinfo -pv
    The physical processor has 64 virtual processors (0-63)
    UltraSPARC-T2+ (chipid 0, clock 1414 MHz)
    The physical processor has 64 virtual processors (64-127)
    UltraSPARC-T2+ (chipid 1, clock 1414 MHz)
    The physical processor has 64 virtual processors (128-191)
    UltraSPARC-T2+ (chipid 2, clock 1414 MHz)
    The physical processor has 64 virtual processors (192-255)
    UltraSPARC-T2+ (chipid 3, clock 1414 MHz)
    /etc/system
    Code:
    set semsys:seminfo_semopm=10000
    set semsys:seminfo_semmsl=10000
    set semsys:seminfo_semmni=1024
    set max_nprocs=50000
    set msgsys:msginfo_msgmnb=2097152
    set msgsys:msginfo_msgmni=2560
    set msgsys:msginfo_msgtql=2560
    set shmsys:shminfo_shmmax=1073741824
    set shmsys:shminfo_shmmni=1000
    set rlim_fd_cur=10000
    Ipcs
    Code:
    bash-3.00# ipcs -a
    IPC status from as of Wed Jun 13 12:31:01 ICT 2012
    T ID KEY MODE OWNER GROUP CREATOR CGROUP CBYTES QNUM QBYTES LSPID LRPID STIME RTIME CTIME
    Message Queues:
    q 62 0x1388 --rw-rw-rw- topx topx topx topx 0 0 2097152 0 0 no-entry no-entry 8:36:22
    q 61 0x1387 --rw-rw-rw- topx topx topx topx 0 0 2097152 0 0 no-entry no-entry 8:36:22
    q 60 0x1318 --rw-rw-rw- topx topx topx topx 0 0 2097152 0 0 no-entry no-entry 8:36:22
    q 59 0x12a9 --rw-rw-rw- topx topx topx topx 0 0 2097152 9069 9071 10:25:38 10:25:38 8:36:22
    q 58 0x100f --rw-rw-rw- topx topx topx topx 0 0 2097152 9069 9070 10:06:16 10:06:16 8:36:22
    q 57 0xfa0 -Rrw-rw-rw- topx topx topx topx 0 0 2097152 9071 9069 10:25:38 10:25:38 8:36:22
    q 56 0xf30 --rw-rw-rw- topx topx topx topx 0 0 2097152 0 0 no-entry no-entry 8:36:20
    q 55 0xc27 -Rrw-rw-rw- topx topx topx topx 0 0 2097152 0 0 no-entry no-entry 8:28:14
    q 54 0xbb8 -Rrw-rw-rw- topx topx topx topx 0 0 2097152 172 9066 10:47:08 10:47:08 8:28:14
    T ID KEY MODE OWNER GROUP CREATOR CGROUP NATTCH SEGSZ CPID LPID ATIME DTIME CTIME
    Shared Memory:
    T ID KEY MODE OWNER GROUP CREATOR CGROUP NSEMS OTIME CTIME
    Semaphores:
    s 104 0x9c4 --ra-ra-ra- topx topx topx topx 3 12:31:00 8:36:20
    s 103 0xa8c --ra-ra-ra- topx topx topx topx 1 8:36:20 8:36:20
    s 102 0xd48 --ra-ra-ra- topx topx topx topx 1 8:36:20 8:36:20
    s 101 0xce4 --ra-ra-ra- topx topx topx topx 1 8:36:20 8:36:20
    s 100 0x26de --ra-ra-ra- topx topx topx topx 8 10:19:34 8:28:14
    s 99 0xc1c --ra-ra-ra- topx topx topx topx 1 8:36:20 8:28:14
    s 98 0xbb8 --ra-ra-ra- topx topx topx topx 1 8:43:50 8:28:14
    s 97 0xaf0 --ra-ra-ra- topx topx topx topx 500 8:36:20 8:28:14
    s 96 0xa28 --ra-ra-ra- topx topx topx topx 500 8:36:20 8:28:14
    s 95 0x7ee --ra-ra-ra- topx topx topx topx 1 8:36:20 8:28:14
    s 94 0x7e4 --ra-ra-ra- topx topx topx topx 1001 8:36:20 8:28:14
    s 93 0x7da --ra-ra-ra- topx topx topx topx 220 8:36:20 8:28:14
    s 92 0x7d5 --ra-ra-ra- topx topx topx topx 200 12:05:15 8:28:14
    s 91 0x7d0 --ra-ra-ra- topx topx topx topx 200 8:56:42 8:28:14
    s 90 0xc80 --ra-ra-ra- topx topx topx topx 2 12:31:01 8:27:52 –a
    Prstat
    Code:
    PID USERNAME SIZE RSS STATE PRI NICE TIME CPU PROCESS/NLWP
    9202 topx 1460M 893M sleep 59 0 0:16:37 0.2% integrity_check/1
    12455 root 3880K 3600K cpu65 59 0 0:00:00 0.0% prstat/1
    9080 topx 142M 130M sleep 59 0 0:00:52 0.0% intf_resp_low/1
    9125 topx 102M 78M sleep 59 0 0:00:36 0.0% interface_vsc/1
    9121 topx 88M 80M sleep 59 0 0:00:32 0.0% interface_tcu/1
    9120 topx 89M 80M sleep 59 0 0:00:29 0.0% interface_rcm/1
    9124 topx 87M 78M sleep 59 0 0:00:29 0.0% baplie_merge_v2/1
    9122 topx 86M 78M sleep 59 0 0:00:28 0.0% interface_eih/1
    9115 topx 88M 77M sleep 59 0 0:00:33 0.0% intf_batch_even/1
    9114 topx 88M 77M sleep 59 0 0:00:39 0.0% intf_event/1
    9117 topx 87M 78M sleep 59 0 0:00:32 0.0% interface_bxy/1
    9118 topx 86M 78M sleep 59 0 0:00:29 0.0% interface_ppm/1
    NPROC USERNAME SWAP RSS MEMORY TIME CPU
    41 topx 334M 2237M 3.4% 0:30:17 0.3%
    43 root 186M 195M 0.3% 0:14:45 0.0%
    1 noaccess 152M 136M 0.2% 0:04:00 0.0%
    1 smmsp 3688K 11M 0.0% 0:00:04 0.0%
    1 lp 1208K 3880K 0.0% 0:00:00 0.0%
    6 daemon 7264K 9944K 0.0% 0:00:26 0.0%
    Total: 93 processes, 259 lwps, load averages: 0.40, 0.39, 0.39
    Prstat –mL
    Code:
    bash-3.00# prstat -mL
    PID USERNAME USR SYS TRP TFL DFL LCK SLP LAT VCX ICX SCL SIG PROCESS/LWPID
    9202 topx 0.9 0.0 0.0 0.0 0.0 0.0 99 0.0 2 0 5 0 integrity_ch/1
    9080 topx 0.4 0.0 0.0 0.0 0.0 0.0 100 0.0 5 0 20 0 intf_resp_lo/1
    9114 topx 0.2 0.0 0.0 0.0 0.0 0.0 100 0.0 13 0 66 0 intf_event/1
    17282 root 0.1 0.2 0.0 0.0 0.0 0.0 100 0.0 20 1 324 0 prstat/1
    9117 topx 0.2 0.0 0.0 0.0 0.0 0.0 100 0.0 10 1 70 0 interface_bx/1
    9118 topx 0.2 0.0 0.0 0.0 0.0 0.0 100 0.0 10 1 70 0 interface_pp/1
    9115 topx 0.2 0.0 0.0 0.0 0.0 0.0 100 0.0 15 0 80 0 intf_batch_e/1
    9121 topx 0.2 0.0 0.0 0.0 0.0 0.0 100 0.0 10 0 70 0 interface_tc/1
    9125 topx 0.2 0.0 0.0 0.0 0.0 0.0 100 0.0 10 0 70 0 interface_vs/1
    9120 topx 0.2 0.0 0.0 0.0 0.0 0.0 100 0.0 10 0 70 0 interface_rc/1
    9123 topx 0.2 0.0 0.0 0.0 0.0 0.0 100 0.0 10 0 70 0 interface_vs/1
    9124 topx 0.2 0.0 0.0 0.0 0.0 0.0 100 0.0 10 1 70 0 baplie_merge/1
    9122 topx 0.1 0.0 0.0 0.0 0.0 0.0 100 0.0 8 0 56 0 interface_ei/1
    9119 topx 0.1 0.0 0.0 0.0 0.0 0.0 100 0.0 8 0 56 0 interface_cp/1
    9204 topx 0.1 0.0 0.0 0.0 0.0 0.0 100 0.0 15 1 1K 0 sys_check/1
    259 root 0.0 0.0 0.0 0.0 0.0 0.0 100 0.0 13 2 98 7 in.mpathd/1
    1 root 0.0 0.0 0.0 0.0 0.0 0.0 100 0.0 3 0 99 3 init/1
    1337 noaccess 0.0 0.0 0.0 0.0 0.0 0.0 100 0.0 100 0 100 0 java/14
    140 root 0.0 0.0 0.0 0.0 0.0 0.0 100 0.0 19 0 114 0 nscd/851
    Total: 90 processes, 256 lwps, load averages: 0.40, 0.40, 0.39
    Vmstat
    Code:
    bash-3.00# vmstat 1 10
    kthr memory page disk faults cpu
    r b w swap free re mf pi po fr de sr m0 m1 m2 m3 in sy cs us sy id
    0 0 0 87720712 60562856 173 645 199 44 44 0 0 0 0 0 0 886 2819 525 0 1 99
    1 0 0 87563976 59743040 73 327 0 15 15 0 0 0 0 0 0 747 2831 439 0 1 99
    0 0 0 87563656 59742808 61 306 0 15 15 0 0 0 0 0 0 770 2684 427 0 1 99
    1 0 0 87563656 59742824 0 0 0 0 0 0 0 0 0 0 0 886 1302 525 0 1 99
    1 0 0 87563656 59742816 62 305 0 15 15 0 0 0 0 0 0 722 2652 420 3 1 96
    1 0 0 87563656 59742840 554 2777 0 139 139 0 0 0 0 0 0 959 9736 749 1 1 97
    0 0 0 87563456 59742672 1155 5735 0 292 292 0 0 0 0 0 0 1113 17489 1145 1 3 96
    1 0 0 87563656 59742840 0 0 0 0 0 0 0 0 0 0 0 845 1613 654 0 1 99
    0 0 0 87563656 59742856 62 305 0 15 15 0 0 0 0 0 0 900 2647 526 0 1 99
    0 0 0 87563656 59742856 62 304 0 15 15 0 0 0 0 0 0 683 2661 396 0 1 99
    Mpstat
    Code:
    CPU minf mjf xcal intr ithr csw icsw migr smtx srw syscl usr sys wt idl
    0 0 0 130 261 1 121 0 13 1 0 0 0 1 0 99
    1 0 0 35 133 2 143 0 9 6 0 64 0 0 0 100
    2 0 0 5 20 2 17 0 3 0 0 29 1 0 0 99
    3 0 0 0 3 0 2 0 0 0 0 0 0 0 0 100
    4 0 0 3 14 0 15 0 2 2 0 13 0 0 0 100
    73 0 0 474330 77 3 0 7 0 2 0 2596 67 33 0 0
    73 0 0 487701 37 0 0 7 0 8 0 2670 66 34 0 0
    73 0 0 476377 14 0 0 8 0 1 0 2610 66 34 0 0
    78 0 0 473950 11 1 0 7 0 13 0 2593 67 33 0 0
    78 0 0 480562 9 0 0 7 0 4 0 2630 66 34 0 0
    79 0 0 320989 14 1 0 8 0 0 0 1766 77 23 0 0
    79 0 0 479148 9 0 0 7 0 8 0 2622 66 34 0 0
    79 0 0 479426 13 0 0 7 0 2 0 2622 67 33 0 0
    79 0 0 488949 9 0 0 8 0 13 0 2678 66 34 0 0
    64 0 0 482229 15 2 0 8 0 7 0 2638 65 35 0 0
    77 0 0 475571 14 1 0 7 0 8 0 2602 67 33 0 0
    69 0 0 467795 22 1 0 7 0 40 0 2563 66 34 0 0
    69 0 0 318623 9 1 0 7 0 8 0 1751 77 23 0 0
    66 0 0 465179 92 1 2 8 0 62 0 2545 66 34 0 0
    When my application running, some of CPU have IDLE state = 0 and hold the CPU while another CPU have IDLE state 100. I think this is my bottleneck but I cannot find any solution for solve that.
    Netstat
    Code:
    bash-3.00# netstat -i
    Name Mtu Net/Dest Address Ipkts Ierrs Opkts Oerrs Collis Queue
    lo0 8232 loopback localhost 244022 0 244022 0 0 0
    nxge0 1500 TOPX-01-DUMMY1 TOPX-01-DUMMY1 3594863 0 5801650 0 0 0
    nxge1 1500 TOPX-01-DUMMY2 TOPX-01-DUMMY2 160954 0 151230 0 0 0
    iostat
    Code:
    bash-3.00# iostat -xn
    extended device statistics
    r/s w/s kr/s kw/s wait actv wsvc_t asvc_t %w %b device
    0.1 0.1 1.5 30.8 0.0 0.0 1.8 9.0 0 0 md/d0
    0.0 0.1 0.8 30.8 0.0 0.0 0.0 9.9 0 0 md/d1
    0.0 0.1 0.8 30.8 0.0 0.0 0.0 9.8 0 0 md/d2
    0.0 0.0 0.0 0.0 0.0 0.0 0.0 15.2 0 0 md/d3
    0.0 0.0 0.0 0.0 0.0 0.0 0.0 10.9 0 0 md/d4
    0.0 0.0 0.0 0.0 0.0 0.0 0.0 19.4 0 0 md/d5
    0.0 0.0 2.2 1.5 0.0 0.0 0.8 7.4 0 0 md/d6
    0.0 0.0 1.1 0.7 0.0 0.0 0.0 8.5 0 0 md/d7
    0.0 0.0 1.1 0.8 0.0 0.0 0.0 8.2 0 0 md/d8
    0.0 0.1 0.4 0.6 0.0 0.0 7.6 10.0 0 0 md/d9
    0.0 0.1 0.2 0.6 0.0 0.0 0.0 9.1 0 0 md/d10
    0.0 0.1 0.2 0.6 0.0 0.0 0.0 7.8 0 0 md/d11
    0.0 0.0 0.0 0.0 0.0 0.0 0.1 10.4 0 0 md/d12
    0.0 0.0 0.0 0.0 0.0 0.0 0.0 8.5 0 0 md/d13
    0.0 0.0 0.0 0.0 0.0 0.0 0.0 8.4 0 0 md/d14
    0.1 0.5 2.1 32.3 0.0 0.0 0.0 9.9 0 0 c0t0d0
    0.1 0.5 2.1 32.3 0.0 0.0 0.0 9.8 0 0 c0t1d0
    0.0 0.0 0.0 0.0 0.0 0.0 0.0 0.0 0 0 c1t0d0
    0.9 0.9 125.3 123.1 0.0 0.1 0.0 34.2 0 2 c4t600144F0CC00C29A00004D1E456F0003d0
    0.3 0.7 20.7 53.9 0.0 0.0 0.2 8.2 0 0 c4t600144F0CC00C29A00004D1E43880001d0
    0.1 0.2 50.7 111.5 0.0 0.0 0.0 59.1 0 1 c4t600144F0CC00C29A00004D1E453E0002d0
    Please help me find the bottleneck of my T5440 server?Thanks so much for all your help.

    Moderator Comment and Action:
    @ O.P.,
    You cross-posted this to at least two other forum web sites:
    http://www.linuxquestions.org/questions/solaris-opensolaris-20/application-running-too-slow-on-sun-sparc-t5440-but-run-normal-on-sun-m3000-4175411155/
    http://www.unix.com/solaris/189945-application-running-too-slow-sun-sparc-t5440-but-run-normal-sun-m3000.html
    ... and didn't think that was important enough to simply mention the fact.
    Timestamps suggest that OTN was the last place you posted to.
    Poor forum etiquette.
    Why would anyone spend the time to try to give help that you have already received elsewhere? That's a waste of their time.
    (Yes, you already received the suggestion to use Dtrace in one of those other sites.)
    This thread is locked as irrelevant.

  • Java web start application runs too slow...

    Hello,
    I am new to Java Web Start. I have created a java web start application and when i enable web start from local Execution, then it works perfectly well. But when i upload it on server and then download the application, then it is too too slow...i mean it takes minutes to get the output on clicking some button....my jnlp file is as under:
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
    <jnlp codebase="http://(web server code base)" href="launch.jnlp" spec="1.0+">
    <information>
    <title>ERD</title>
    <vendor>Deepika Gohil</vendor>
    <homepage href="http://appframework.dev.java.net"/>
    <description>A simple java desktop application based on Swing Application Framework</description>
    <description kind="short">ER Deign Tools</description>
    </information>
    <update check="always"/>
    <security>
    <all-permissions/>
    </security>
    <resources>
    <j2se version="1.5+"/>
    <jar href="ERD_1_2.jar" main="true"/>
    <jar href="lib/appframework-1.0.3.jar"/>
    <jar href="lib/swing-worker-1.1.jar"/>
    <jar href="lib/jaxb-impl.jar"/>
    <jar href="lib/jaxb-xjc.jar"/>
    <jar href="lib/jaxb1-impl.jar"/>
    <jar href="lib/activation.jar"/>
    <jar href="lib/jaxb-api.jar"/>
    <jar href="lib/jsr173_api.jar"/>
    <jar href="lib/ant-contrib-1.0b3.jar"/>
    <jar href="lib/jaxb-impl.jar"/>
    <jar href="lib/jaxb-xjc.jar"/>
    <jar href="lib/FastInfoset.jar"/>
    <jar href="lib/gmbal-api-only.jar"/>
    <jar href="lib/http.jar"/>
    <jar href="lib/jaxws-rt.jar"/>
    <jar href="lib/jaxws-tools.jar"/>
    <jar href="lib/management-api.jar"/>
    <jar href="lib/mimepull.jar"/>
    <jar href="lib/policy.jar"/>
    <jar href="lib/saaj-impl.jar"/>
    <jar href="lib/stax-ex.jar"/>
    <jar href="lib/streambuffer.jar"/>
    <jar href="lib/woodstox.jar"/>
    <jar href="lib/jaxws-api.jar"/>
    <jar href="lib/jsr181-api.jar"/>
    <jar href="lib/jsr250-api.jar"/>
    <jar href="lib/saaj-api.jar"/>
    <jar href="lib/activation.jar"/>
    <jar href="lib/jaxb-api.jar"/>
    <jar href="lib/jsr173_api.jar"/>
    </resources>
    <application-desc main-class="erd.screen1">
    </application-desc>
    </jnlp>
    I dont understand the reason. Could you please help me out.
    Thank you,
    Deepika Gohil.

    Check your web server's access logs to see how many requests web start is sending for each jar. After you've loaded the application the first time, for each subsequent launch, if you've got everything configured right, you should only see requests for the JNLP file and maybe some gifs because web start should load everything else out of the cache (if you're using the version-based download protocol). Or if you're using the basic download protocol, then you might see requests for each jar file, but even in this case, if your web server is prepared to evaluate the last-updated attribute for each jar request and for jars that have not changed, respond with no actual payload and a header value of Not-Modified, then that should run almost as fast.
    You might also want to consider changing the "check" attribute of the "update" element from "always" to "background" for a couple of reasons. It should allow your app to start sooner (but this means that you might have to launch once or twice after an update is applied to the web server before the update shows up on the workstation). Also, my impression is that "always" is broken and prevents web start from ever checking to see if your jnlp file has been updated if you launch your app from a web start shortcut - launching from a browser is less likely to have this problem, depending on how often your browser is configured to check for updated resources.

  • Please Help! All Sounds in Classic are too slow now!

    Something dreadful happened (wish I knew what) and now every sound that is played back by any Classic application is about 70% too slow.
    No matter if it is a Classic game like Unreal (I), Deus Ex, AvP for OS9 (the OSX version works fine), or Quicktime 6, or any other given Classic application. The only sounds that appear normal are the Platinum system sounds.
    I don't know which files affect Classic sound playback or where they are located. Can't imagine what could cause that particular problem.
    Hope someone could help...
    Many thanks in advance
    M:A:
    PowerMac G5 2x2 GHz Mac OS X (10.4.6) 1.5 GB RAM, standard sound card (TI-TAS3004)
    PowerMac G5 2x2

    Sorry, didnt get an email notification, so I just checked the thread.
    Starting and quitting Garage Band actually helped!
    (Imagine listening to the meaningful dialogues in "Deus Ex" spoken with Sesame Street's Cookie Monster voice. Aaaaannnd reeealllly sllloowwww. Doesn't quite capture the mood...)
    Do you have an explanation why Garage Band should affect Classic sound output?
    Thanks a lot,
    Martin

  • New iMac running 10.10.1 frequently pauses, way too slow

    I recently bought a 27 inch iMac, installed Yosemite, and migrated my files by time machine from a 5 year old macbook Pro running Snow Leopard. Since updating to 10.10.1, I frequently get the spinning beachball while I wait to continue, and everything seems much slower than it should. Safari downloads take forever, compared to Firefox. I ran an EtreCheck report pasted below. I tried some easy fixes like removing desktop clutter, reducing transparency, but that doesn't affect the overall slowness. Any solutions welcome!
    Problem description:
    Installed Yosemite on new iMac, migrating from snow leopard on an older macbook pro.  Instead of being fast, processes frequently pause for bit while the beachball spins, then resume. Way too slow, much slower than my old macbook pro.
    EtreCheck version: 2.0.11 (98)
    Report generated November 24, 2014 at 5:06:30 PM EST
    Hardware Information: ℹ️
      iMac (27-inch, Late 2013) (Verified)
      iMac - model: iMac14,2
      1 3.2 GHz Intel Core i5 CPU: 4-core
      8 GB RAM Upgradeable
      BANK 0/DIMM0
      4 GB DDR3 1600 MHz ok
      BANK 1/DIMM0
      4 GB DDR3 1600 MHz ok
      BANK 0/DIMM1
      empty empty empty empty
      BANK 1/DIMM1
      empty empty empty empty
      Bluetooth: Good - Handoff/Airdrop2 supported
      Wireless:  en1: 802.11 a/b/g/n/ac
    Video Information: ℹ️
      NVIDIA GeForce GT 755M - VRAM: 1024 MB
      iMac 2560 x 1440
    System Software: ℹ️
      OS X 10.10.1 (14B25) - Uptime: 2:7:57
    Disk Information: ℹ️
      APPLE HDD ST1000DM003 disk0 : (1 TB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) /  [Startup]: 999.35 GB (749.24 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. BRCM20702 Hub
      Apple Inc. Bluetooth USB Host Controller
      Western Digital Ext HDD 1021 2 TB
      S.M.A.R.T. Status: Verified
      EFI (disk2s1) <not mounted> : 210 MB
      Time Machine New (disk2s2) /Volumes/Time Machine New : 2.00 TB (193.57 GB free)
      Seagate Expansion Desk 2 TB
      S.M.A.R.T. Status: Verified
      NewArchive (disk3s1) /Volumes/ NewArchive : 2.00 TB (11.39 GB free)
      Western Digital Ext HDD 1021 1 TB
      S.M.A.R.T. Status: Verified
      EFI (disk1s1) <not mounted> : 210 MB
      Bootable Backup New (disk1s2) /Volumes/Bootable Backup New : 500.10 GB (254.99 GB free)
      Storage New (disk1s3) /Volumes/Storage New : 499.62 GB (480.72 GB free)
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /System/Library/Extensions
      [loaded] com.Cycling74.driver.Soundflower (1.5.1) Support
      [not loaded] com.Logitech.Control Center.HID Driver (3.6.0 - SDK 10.6) Support
      [not loaded] com.Logitech.Unifying.HID Driver (1.2.0 - SDK 10.6) Support
      [loaded] com.avira.kext.FileAccessControl (1.0.0d1 - SDK 10.9) Support
      [not loaded] com.beceem.BeceemAppleWiMAXAdapter (5.2.56d13) Support
      [not loaded] com.fklt.driver (1.8.0) Support
      [not loaded] com.flipvideo.IOUSBCameraMassStorage (1.0.1) Support
      [not loaded] com.novatelwireless.driver.3G (2.2.8) Support
      [not loaded] com.novatelwireless.driver.DisableAutoInstall (1.2) Support
      [not loaded] com.rogueamoeba.InstantOn (6.0.3 - SDK 10.6) Support
      [not loaded] com.sierrawireless.driver.SierraDevSupport (2.0.2) Support
      [not loaded] com.sierrawireless.driver.SierraFSCSupport (2.0.2) Support
      [not loaded] com.sierrawireless.driver.SierraFSRSupport (2.0.2) Support
      [not loaded] com.sierrawireless.driver.SierraHSRSupport (2.0.2) Support
      /System/Library/Extensions/InstantOn.kext/Contents/PlugIns
      [not loaded] com.rogueamoeba.InstantOnCore (6.0.3 - SDK 10.6) Support
      /System/Library/Extensions/NovatelWireless3G.kext/Contents/PlugIns
      [not loaded] com.novatelwireless.driver.3GData (2.2.8) Support
      /Volumes/Bootable Backup New/Applications/ CD burn & label ƒ/Toast 8.0.5 Titanium ƒ/Toast Titanium.app
      [not loaded] com.roxio.BluRaySupport (1.1.6) Support
      [not loaded] com.roxio.TDIXController (1.7) Support
      /Volumes/Bootable Backup New/Applications/ Multimedia ƒ/TuneClone ƒ/TuneClone.app
      [not loaded] com.tuneclone.driver.TuneClone_Virtual_CDWriter (1.0.0d1) Support
      /Volumes/Bootable Backup New/Applications/ My Utilities ƒ/Little Snitch 2.2 ƒ/Little Snitch Installer.app
      [not loaded] at.obdev.nke.LittleSnitch (2.2.05) Support
      /Volumes/Bootable Backup New/Applications/Cloak.app
      [not loaded] com.bourgeoisbits.cloak.tun (1.0.1) Support
      /Volumes/Bootable Backup New/Applications/Utilities/DiskWarrior ƒ/DiskWarrior.app
      [not loaded] com.alsoft.Preview (4.2) Support
    Startup Items: ℹ️
      NoteburnerService: Path: /System/Library/StartupItems/NoteburnerService
      M-Audio FireWire Audio Helper: Path: /Library/StartupItems/M-Audio FireWire Audio Helper
      Startup items are obsolete and will not work in future versions of OS X
    Launch Agents: ℹ️
      [loaded] com.avira.antivirus.general.agent.plist Support
      [loaded] com.avira.antivirus.ipm.ui.plist Support
      [failed] com.avira.antivirus.notifications.agent.plist Support
      [loaded] com.avira.antivirus.odscan.default.plist Support
      [loaded] com.avira.antivirus.scheduler.agent.plist Support
      [running] com.avira.antivirus.systray.plist Support
      [loaded] com.avira.antivirus.telemetry.agent.plist Support
      [loaded] com.avira.antivirus.update.default.plist Support
      [running] com.flipvideo.FlipShare.AutoRun.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [running] com.Logitech.Control Center.Daemon.plist Support
      [loaded] com.smithmicro.cleaning.quickbackupcheck.plist Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [not loaded] com.atomicbird.macaroni.launchd.plist Support
      [failed] com.avira.antivirus.dbcleaner.plist Support
      [loaded] com.avira.antivirus.ipm.loader.plist Support
      [running] com.avira.helper.watchdox.plist Support
      [loaded] com.barebones.bbedit.plist Support
      [loaded] com.bombich.ccc.plist Support
      [invalid?] com.bombich.ccc.scheduledtask.EE7EE552-88D4-41A7-BB96-B7F2F891EA0D.plist Support
      [running] com.bombich.ccchelper.plist Support
      [running] com.flipvideo.FlipShareServer.launchd.plist Support
      [loaded] com.google.keystone.daemon.plist Support
      [running] com.m-audio.firewire.helper.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
      [loaded] com.sibelius.sari.plist Support
      [invalid?] com.sierrawireless.SierraReset.plist Support
      [running] com.sierrawireless.SWoCMon.plist Support
      [running] com.smithmicro.schedulerdaemon.plist Support
    User Launch Agents: ℹ️
      [loaded] com.adobe.ARM.[...].plist Support
      [invalid?] com.bombich.ccc-user-agent.plist Support
      [running] com.c-command.SpamSieve.LaunchAgent.plist Support
      [running] com.smithmicro.cleaning.schedulermailer.plist Support
      [running] com.spotify.webhelper.plist Support
      [running] ws.agile.1PasswordAgent.plist Support
    User Login Items: ℹ️
      Garmin Express Service Application (/Applications/Garmin Express.app/Contents/Library/LoginItems/Garmin Express Service.app)
      GrowlMenu Application (/Library/PreferencePanes/Growl.prefPane/Contents/Resources/GrowlMenu.app)
      Dropbox Application (/Applications/Dropbox ƒ/Dropbox.app)
    Internet Plug-ins: ℹ️
      AdobePDFViewerNPAPI: Version: 11.0.09 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.223 - SDK 10.6 Support
      AdobePDFViewer: Version: 11.0.09 - SDK 10.6 Support
      Scorch: Version: (null) - SDK 10.2 Support
      SpeedDownload Browser Plugin: Version: 2.1.5 - SDK 10.6 Support
      iPhotoPhotocast: Version: 7.0 - SDK 10.7
      Myriad Music Plugin: Version: 5.6.2 Support
      RealPlayer Plugin: Version: (null) Support
      DirectorShockwave: Version: 11.5.0r596 Support
      QuickTime Plugin: Version: 7.7.3
      FlashPlayer-10.6: Version: 15.0.0.223 - SDK 10.6 Support
      GarminGpsControl: Version: 4.0.4.0 Release - SDK 10.6 Support
      AmazonMP3DownloaderPlugin: Version: AmazonMP3DownloaderPlugin 1.0.17 - SDK 10.4 Support
      AmazonMP3DownloaderPlugin1017277: Version: AmazonMP3DownloaderPlugin 1.0.17 - SDK 10.4 Support
      DivXBrowserPlugin: Version: 2.1 Support
      CouponPrinter-FireFox: Version: Version 1.1.5
      CANONiMAGEGATEWAYDL: Version: 3.1.0.2 Support
      OVSHelper: Version: 1.1 Support
      Google Earth Web Plug-in: Version: 7.1 Support
      AmazonMP3DownloaderPlugin101750: Version: AmazonMP3DownloaderPlugin 1.0.17 - SDK 10.4 Support
      Default Browser: Version: 600 - SDK 10.10
      Flip4Mac WMV Plugin: Version: 2.4.4.2 Support
      SharePointBrowserPlugin: Version: 14.4.6 - SDK 10.6 Support
      Silverlight: Version: 5.1.30214.0 - SDK 10.6 Support
      JavaAppletPlugin: Version: 15.0.0 - SDK 10.10 Check version
      OfficeLiveBrowserPlugin: Version: 12.2.7 Support
    Safari Extensions: ℹ️
      Videobox
      DivX Plus Web Player HTML5 <video>
      PriceBlink-1
      Speed Download
      Add To Amazon Wish List
      Exposer
      Discount Search for Amazon
      StumbleUpon
      WOT-1
      1Password
      YouTube Downloader
      Rotten Tomatoes
      Compass
    3rd Party Preference Panes: ℹ️
      3ivx MPEG-4  Support
      A Better Finder Preferences  Support
      RCDefaultApp
      DivX  Support
      Flash Player  Support
      Flip4Mac WMV  Support
      Growl  Support
      PreferencesPane  Support
      Macaroni  Support
      Perian  Support
    Time Machine: ℹ️
      Skip System Files: NO
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 999.35 GB Disk used: 250.11 GB
      Destinations:
      Time Machine New [Local]
      Total size: 2.00 TB
      Total number of backups: 33
      Oldest backup: 2014-11-13 07:38:50 +0000
      Last backup: 2014-11-24 21:19:47 +0000
      Size of backup disk: Adequate
      Backup size 2.00 TB > (Disk used 250.11 GB X 3)
    Top Processes by CPU: ℹ️
          3% WindowServer
          1% avlogwriter
          1% loginwindow
          1% avguard-ondemand-mgmt
          0% fontd
    Top Processes by Memory: ℹ️
      601 MB savapi
      352 MB mds_stores
      309 MB avguard.bin
      301 MB loginwindow
      206 MB Mail
    Virtual Memory Information: ℹ️
      2.80 GB Free RAM
      3.83 GB Active RAM
      978 MB Inactive RAM
      974 MB Wired RAM
      5.87 GB Page-ins
      0 B Page-outs

    Start time: 10:22:44 01/10/15
    Model Identifier: iMac11,1
    System Version: OS X 10.10.1 (14B25)
    Kernel Version: Darwin 14.0.0
    Time since boot: 20:24
    SATA
       Hitachi HDS722020ALA330                
    USB
       Hub (NEC Corporation)
       Backup+ Desk (Seagate LLC)
       Backup+  Desk (Seagate LLC)
       Backup+  Desk (Seagate LLC)
       Backup+  Desk (Seagate LLC)
       Backup+  Desk (Seagate LLC)
       Backup+  Desk (Seagate LLC)
       Backup+  Desk (Seagate LLC)
       My Book 1110 (Western Digital Technologies, Inc.)
       Backup+  Desk (Seagate LLC)
       Hub (NEC Corporation)
       Backup+ Desk (Seagate LLC)
       My Book 1110 (Western Digital Technologies, Inc.)
       Backup+  Desk (Seagate LLC)
       hp LaserJet 3380 (Hewlett Packard)
       Officejet Pro 8600 (Hewlett Packard)
    Diagnostic reports
       2014-12-19 DashlaneAgent crash
       2014-12-21 QuickLookSatellite crash
       2014-12-22 DashlaneAgent crash
       2014-12-27 DashlaneAgent crash
       2014-12-28 HelpViewer crash
       2014-12-30 DashlaneAgent crash
       2015-01-05 Microsoft Word hang
    Log
       Jan 10 10:19:18 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:19:28 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:19:38 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:19:48 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:19:59 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:20:09 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:20:19 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:20:29 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:20:39 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:20:49 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:20:59 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:21:09 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:21:19 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:21:29 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:21:39 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:21:49 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:21:59 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:22:09 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:22:19 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:22:29 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:22:39 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:22:49 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:22:59 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:23:09 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
       Jan 10 10:23:19 com.carbonite.daemon: Service could not initialize: Unable to set current working directory. error=2, path=/Library/Application Support/Carbonite: 14B25: xpcproxy + 12907 [1227][UUID]: 0x2
    Memory: kernel_task (UID 0) is using 1332 MB
    kexts
       com.seagate.driver.PowSecDriverCore (5.2.6)
       com.seagate.driver.PowSecLeafDriver_10_5 (5.2.6)
       com.vmware.kext.vmci (90.5.7)
       com.vmware.kext.vsockets (90.5.7)
       com.vmware.kext.vmnet (0188.79.83)
       com.vmware.kext.vmx86 (0188.79.83)
       com.vmware.kext.vmioplug.12.1.17 (12.1.17)
    Daemons
       com.carbonite.daemon
       com.apple.installer.osmessagetracing
       com.microsoft.office.licensing.helper
       com.oracle.java.Helper-Tool
       com.apple.aelwriter
       com.adobe.fpsaud
       com.bombich.ccchelper
       com.seagate.TBDecorator.plist
       com.bombich.ccc
    Agents
       com.sony.PMBPortable.AutoRun
       com.bombich.ccc-user-agent
       com.google.Chrome.framework.service_process/Users/USER/Library/Application_Supp ort/Google/Chrome
       com.leadertech.PowerRegister.SEA1.UUID
       com.adobe.AdobeCreativeCloud
       com.carbonite.carbonitestatus
       com.adobe.PDApp.AAMUpdatesNotifier.96592.UUID
       com.apple.MassStorageCamera.315272.UUID
       com.adobe.ARM.UUID
       com.bombich.cccuseragent
       com.seagate.dashboard
       com.adobe.CS5ServiceManager
       com.oracle.java.Java-Updater
       com.citrixonline.GoToMeeting.G2MUpdate
       com.adobe.ARM.UUID
       com.google.keystone.user.agent
       com.apple.AirPortBaseStationAgent
       com.hp.scanModule3.64216.UUID
       com.carbonite.carbonitealerts
    Startup items
       /Library/StartupItems/HP IO/HP IO
       /Library/StartupItems/HP IO/StartupParameters.plist
       /Library/StartupItems/HP USB EWS Gateway/HP USB EWS Gateway
       /Library/StartupItems/HP USB EWS Gateway/StartupParameters.plist
       /Library/StartupItems/HPlaserjet Trap Monitor/HPlaserjet Trap Monitor
       /Library/StartupItems/HPlaserjet Trap Monitor/StartupParameters.plist
       /Library/StartupItems/VirtualBox/StartupParameters.plist
       /Library/StartupItems/VirtualBox/VirtualBox
    Bundles
       /System/Library/Extensions/JMicronATA.kext
       - com.jmicron.JMicronATA
       /System/Library/Extensions/MicrosoftMouse.kext
       - com.microsoft.driver.MicrosoftMouse
       /System/Library/Extensions/Seagate Storage Driver.kext
       - com.seagate.driver.PowSecDriverCore
       /Library/Extensions/VBoxDrv.kext
       - org.virtualbox.kext.VBoxDrv
       /Library/Extensions/VBoxNetAdp.kext
       - org.virtualbox.kext.VBoxNetAdp
       /Library/Extensions/VBoxNetFlt.kext
       - org.virtualbox.kext.VBoxNetFlt
       /Library/Extensions/VBoxUSB.kext
       - org.virtualbox.kext.VBoxUSB
       /Library/Internet Plug-Ins/AdobeAAMDetect.plugin
       - com.AdobeAAMDetectLib.AdobeAAMDetect
       /Library/Internet Plug-Ins/AdobeExManDetect.plugin
       - com.AdobeExManDetectLib.AdobeExManDetect
       /Library/Internet Plug-Ins/AdobePDFViewer.plugin
       - com.adobe.acrobat.pdfviewer
       /Library/Internet Plug-Ins/AdobePDFViewerNPAPI.plugin
       - com.adobe.acrobat.pdfviewerNPAPI
       /Library/Internet Plug-Ins/EPPEX Plugin.plugin
       - N/A
       /Library/Internet Plug-Ins/Flash Player.plugin
       - N/A
       /Library/Internet Plug-Ins/JavaAppletPlugin.plugin
       - com.oracle.java.JavaAppletPlugin
       /Library/Internet Plug-Ins/SharePointBrowserPlugin.plugin
       - com.microsoft.sharepoint.browserplugin
       /Library/Internet Plug-Ins/SharePointWebKitPlugin.webplugin
       - com.microsoft.sharepoint.webkitplugin
       /Library/Internet Plug-Ins/Silverlight.plugin
       - com.microsoft.SilverlightPlugin
       /Library/PreferencePanes/Carbonite.prefPane
       - com.carbonite.prefpanel
       /Library/PreferencePanes/DashboardPreferences.prefPane
       - com.seagate.dashboard.preferences
       /Library/PreferencePanes/Flash Player.prefPane
       - com.adobe.flashplayerpreferences
       /Library/PreferencePanes/Growl.prefPane
       - com.growl.prefpanel
       /Library/PreferencePanes/JavaControlPanel.prefPane
       - com.oracle.java.JavaControlPanel
       /Library/PreferencePanes/Microsoft Mouse.prefPane
       - com.microsoft.microsoftmouse
       /Library/ScriptingAdditions/Adobe Unit Types.osax
       - N/A
       Library/Address Book Plug-Ins/SkypeABDialer.bundle
       - com.skype.skypeabdialer
       Library/Address Book Plug-Ins/SkypeABSMS.bundle
       - com.skype.skypeabsms
       Library/Caches/com.apple.Safari/Extensions/Dashlane-2.safariextension
       - com.dashlane.dashlanesafari
       Library/Internet Plug-Ins/CitrixOnlineWebDeploymentPlugin.plugin
       - com.citrixonline.mac.WebDeploymentPlugin
       Library/Internet Plug-Ins/Dashlane.plugin
       - com.DashlaneLib.Dashlane
       Library/Internet Plug-Ins/Google Earth Web Plug-in.plugin
       - com.Google.GoogleEarthPlugin.plugin
       Library/Widgets/HP Ink Widget.wdgt
       - com.hp.widget.inkwidget
    Apps
       /Volumes/iMac27 Desktop Clone/Applications/Google Drive.app
       /Volumes/iMac27 Desktop Clone/Applications/Google Drive 2.app
       /Applications/Google Drive.app
       /Applications/Google Drive 2.app
    Contents of /System/Library/LaunchDaemons/com.seagate.TBDecorator.plist (checksum 3070240373)
       <?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">
       <!--
          com.seagate.TBDecorator.plist
          SeagateDiagnostics
          Created by John Brisbin on 3/10/10.
          Copyright 2010 Seagate Technologies LLC.. All rights reserved.
       -->
       <plist version="1.0">
       <dict>
        <key>KeepAlive</key>
        <true/>
        <key>Label</key>
        <string>com.seagate.TBDecorator.plist</string>
        <key>RunAtLoad</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/Seagate/TBLoopDriveParams</string>
        </array>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.carbonite.launchd.carbonitealerts.plist (checksum 3096452879)
       <?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.carbonite.carbonitealerts</string>
        <key>OnDemand</key>
        <true/>
        <key>RunAtLoad</key>
        <false/>
        <key>WatchPaths</key>
        <array>
        <string>/Library/Application Support/Carbonite/CarboniteAlerts.app/Contents/Resources/</string>
        </array>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/Carbonite/CarboniteAlerts.app/Contents/MacOS/CarboniteAlerts</string>
        </array>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.carbonite.launchd.carbonitestatus.plist (checksum 2411194237)
       <?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.carbonite.carbonitestatus</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/Carbonite/CarboniteStatus.app/Contents/MacOS/CarboniteStatus</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>OnDemand</key>
        <false/>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.oracle.java.Java-Updater.plist (checksum 1821332316)
       <?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>16</integer>
        <key>Minute</key>
        <integer>33</integer>
        <key>Weekday</key>
        <integer>4</integer>
        </dict>
       </dict>
       ...and 1 more line(s)
    Contents of /Library/LaunchAgents/com.sony.PMBPortable.AutoRun.plist (checksum 2288250257)
       <?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>
        <false/>
        <key>Label</key>
        <string>com.sony.PMBPortable.AutoRun</string>
        <key>OnDemand</key>
        <true/>
        <key>Program</key>
        <string>/Library/Application Support/Sony/PMBPortableAutoRun.app/Contents/MacOS/PMBPortableAutoRun</string>
        <key>RunAtLoad</key>
        <true/>
       </dict>
       </plist>
    Contents of /Library/LaunchAgents/com.teamviewer.teamviewer.plist (checksum 2593636600)
       <?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.teamviewer.teamviewer</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/TeamViewer 8/TeamViewer.app/Contents/MacOS/TeamViewer</string>
        <string>-RunAsAgent</string>
        <string>YES</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>WorkingDirectory</key>
        <string>/Applications/TeamViewer 8/TeamViewer.app/Contents/MacOS</string>
       </dict>
       ...and 1 more line(s)
    Contents of /Library/LaunchAgents/com.teamviewer.teamviewer_desktop.plist (checksum 2362964135)
       <?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.teamviewer.desktop</string>
        <key>LimitLoadToSessionType</key>
        <array>
        <string>LoginWindow</string>
        <string>Aqua</string>
        </array>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/TeamViewer 8/TeamViewer.app/Contents/Resources/TeamViewer_Desktop</string>
        <string>-RunAsAgent</string>
        <string>YES</string>
        <string>-Module</string>
        <string>Full</string>
        </array>
       ...and 6 more line(s)
    Contents of /Library/LaunchDaemons/com.bombich.ccc.plist (checksum 3730953884)
       <?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>com.bombich.ccc</string>
        <key>OnDemand</key>
        <true/>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PrivilegedHelperTools/com.bombich.ccc</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>
        <key>SockPathName</key>
       ...and 7 more line(s)
    Contents of /Library/LaunchDaemons/com.bombich.ccc.scheduledtask.UUID.plist (checksum 1847580806)
       <?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>com.bombich.ccc.scheduledtask.UUID</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Users/USER/Downloads/Carbon Copy Cloner.app/Contents/MacOS/ccchelper.app/Contents/MacOS/ccchelper</string>
        <string>UUID</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>ServiceDescription</key>
        <string>CCC will copy the selected items from "Media Disk" to "Music". If you have backed up to this destination in the past, only items that have been modified since the last backup task will be copied.
       • Files and folders unique to the destination will be left alone.
       • Files on the destination will be updated only if they are newer on the source.
       • Older versions of updated files will be archived.
       • CCC will not prune archive content.</string>
        <key>StandardErrorPath</key>
        <string>/Library/Logs/CCC.log</string>
       ...and 229 more line(s)
    Contents of /Library/LaunchDaemons/com.bombich.ccc.scheduledtask.UUID.plist (checksum 1637450734)
       <?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>com.bombich.ccc.scheduledtask.UUID</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Users/USER/Downloads/Carbon Copy Cloner.app/Contents/MacOS/ccchelper.app/Contents/MacOS/ccchelper</string>
        <string>UUID</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>ServiceDescription</key>
        <string>CCC will copy the selected items from "Pictures" to "Pictures Backup". If you have backed up to this destination in the past, only items that have been modified since the last backup task will be copied.
       • Files and folders unique to the destination will be left alone.
       • Files on the destination will be updated only if they are newer on the source.
       • Older versions of updated files will be archived.
       • CCC will not prune archive content.</string>
        <key>StandardErrorPath</key>
        <string>/Library/Logs/CCC.log</string>
       ...and 207 more line(s)
    Contents of /Library/LaunchDaemons/com.bombich.ccc.scheduledtask.UUID.plist (checksum 1138618051)
       <?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>com.bombich.ccc.scheduledtask.UUID</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Users/USER/Downloads/Carbon Copy Cloner.app/Contents/MacOS/ccchelper.app/Contents/MacOS/ccchelper</string>
        <string>UUID</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>ServiceDescription</key>
        <string>CCC will copy the selected items from "Aperture Library" to "Aperture Library Backup". If you have backed up to this destination in the past, only items that have been modified since the last backup task will be copied.
       • Files and folders unique to the destination will be left alone.
       • Files on the destination will be updated only if they are newer on the source.
       • Older versions of updated files will be archived.
       • CCC will not prune archive content.</string>
        <key>StandardErrorPath</key>
        <string>/Library/Logs/CCC.log</string>
       ...and 233 more line(s)
    Contents of /Library/LaunchDaemons/com.bombich.ccc.scheduledtask.UUID.plist (checksum 3444763627)
       <?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>com.bombich.ccc.scheduledtask.UUID</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Users/USER/Downloads/Carbon Copy Cloner.app/Contents/MacOS/ccchelper.app/Contents/MacOS/ccchelper</string>
        <string>UUID</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>ServiceDescription</key>
        <string>CCC will copy the selected items from "MacHD" to "iMac27 Desktop Clone". If you have backed up to this destination in the past, only items that have been modified since the last backup task will be copied.
       • Files and folders unique to the destination will be permanently deleted.
       • Files on the destination will be updated if the size or modification date differs.
       • Older versions of updated files will not be archived.
       </string>
        <key>StandardErrorPath</key>
        <string>/Library/Logs/CCC.log</string>
       ...and 209 more line(s)
    Contents of /Library/LaunchDaemons/com.bombich.ccchelper.plist (checksum 495358405)
       <?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.bombich.ccchelper</string>
        <key>MachServices</key>
        <dict>
        <key>com.bombich.ccchelper</key>
        <true/>
        </dict>
        <key>Program</key>
        <string>/Library/PrivilegedHelperTools/com.bombich.ccchelper</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/PrivilegedHelperTools/com.bombich.ccchelper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.carbonite.launchd.carbonitedaemon.plist (checksum 2948711974)
       <?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.carbonite.daemon</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Library/Application Support/Carbonite/CarboniteDaemon.app/Contents/MacOS/CarboniteDaemon</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>OnDemand</key>
        <false/>
        <key>WorkingDirectory</key>
        <string>/Library/Application Support/Carbonite</string>
        <key>StandardOutPath</key>
        <string>/Library/Logs/Carbonite1.log</string>
        <key>StandardErrorPath</key>
        <string>/Library/Logs/Carbonite2.log</string>
       </dict>
       </plist>
    Contents of /Library/LaunchDaemons/com.teamviewer.teamviewer_service.plist (checksum 13465011)
       <?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.teamviewer.service</string>
        <key>OnDemand</key>
        <false/>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/TeamViewer 8/TeamViewer.app/Contents/Resources/TeamViewer_Service</string>
        <string>-Module</string>
        <string>Full</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>WorkingDirectory</key>
        <string>/Applications/TeamViewer 8/TeamViewer.app/Contents/Resources</string>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist (checksum 578238223)
       <?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 Pro.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.adobe.ARM.UUID.plist (checksum 926752576)
       <?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 X Pro/Adobe Acrobat Pro.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.bombich.ccc-user-agent.plist (checksum 1605626007)
       <?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>KeepAlive</key>
        <true/>
        <key>Label</key>
        <string>com.bombich.ccc-user-agent</string>
        <key>Program</key>
        <string>/Users/USER/Downloads/Carbon Copy Cloner.app/Contents/MacOS/CCC User Agent.app/Contents/MacOS/CCC User Agent</string>
        <key>StandardErrorPath</key>
        <string>/Users/USER/Library/Logs/CCC.log</string>
        <key>StandardOutPath</key>
        <string>/Users/USER/Library/Logs/CCC.log</string>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.google.Chrome.framework.plist (checksum 2813695882)
       <?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.google.Chrome.framework.service_process/Users/USER/Library/Applicat ion_Support/Google/Chrome</string>
        <key>LimitLoadToSessionType</key>
        <string>Aqua</string>
        <key>Program</key>
        <string>/Applications/Google Chrome.app/Contents/Versions/25.0.1364.152/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Google Chrome.app/Contents/Versions/25.0.1364.152/Google Chrome Helper.app/Contents/MacOS/Google Chrome Helper</string>
        <string>--type=service</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>Sockets</key>
        <dict>
        <key>ServiceProcessSocket</key>
       ...and 7 more line(s)
    Contents of Library/LaunchAgents/com.google.keystone.agent.plist (checksum 4195197102)
       <?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.leadertech.PowerRegister.SEA1.UUID.plist (checksum 2799483814)
       <?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.leadertech.PowerRegister.SEA1.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Seagate Dashboard.app/Contents/Resources/Seagate.app/Contents/Resources/SeagateRegRemin der.app/Contents/MacOS/SeagateRegReminder</string>
        </array>
        <key>StartInterval</key>
        <integer>3600</integer>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/com.seagate.dashboard.plist (checksum 1981328959)
       <?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.seagate.dashboard</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Seagate Dashboard.app/Contents/MacOS/Seagate Dashboard</string>
        <string>-runMode</string>
        <string>autoLaunched</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
       </dict>
       </plist>
    Contents of Library/LaunchAgents/org.virtualbox.vboxwebsrv.plist (checksum 3654809970)
       <?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>KeepAlive</key>
         <false/>
         <key>Label</key>
         <string>org.virtualbox.vboxwebsvc</string>
         <key>Program</key>
         <string>/Applications/VirtualBox.app/Contents/MacOS/vboxwebsrv</string>
         <key>Sockets</key>
           <dict>
           <key>Listeners</key>
           <dict>
             <key>SockServiceName</key>
             <string>18083</string>
             <key>SockType</key>
             <string>stream</string>
             <key>SockFamily</key>
             <string>IPv4</string>
           </dict>
         </dict>
       </dict>
       ...and 1 more line(s)
    Global login items
       /Applications/HP LaserJet Software/HP Setup Assistant.app
       /Library/Application Support/hp/laserjet/Trap Monitor/HPEventHandler.app
    Firewall: On
    DNS: 216.40.77.126
    Listeners
       cupsd: ipp
       kdc: kerberos
       launchd: afpovertcp
       launchd: microsoft-ds
    User login items
       iTunesHelper
       - /Applications/iTunes.app/Contents/MacOS/iTunesHelper.app
       VMware Fusion Start Menu
       - /Applications/VMware Fusion.app/Contents/Library/VMware Fusion Start Menu.app
       Google Drive
       - /Applications/Google Drive.app
       Canon IJ Network Scanner Selector2
       - /Library/Printers/Canon/IJScanner/Utilities/Canon IJ Network Scanner Selector2.app
       Android File Transfer Agent
       - /Users/USER/Library/Application Support/Google/Android File Transfer/Android File Transfer Agent.app
       AdobeResourceSynchronizer
       - /Applications/Adobe Acrobat X Pro/Adobe Acrobat Pro.app/Contents/Support/AdobeResourceSynchronizer.app
       Eye-Fi Helper
       - /Applications/Eye-Fi/Eye-Fi Helper.app
       Google Chrome
       - /Applications/Google Chrome.app
       Launch Nikon Message Center 2
       - /Applications/Nikon Software/Nikon Message Center 2/Nikon Message Center 2.app/Contents/SharedSupport/Launch Nikon Message Center 2.app
    Safari extensions
       Dashlane
    Restricted files: 513
    Lockfiles: 4
    High file counts
       Desktop: 125
    Elapsed time (s): 584

  • I just brought a brand new Macbook pro retina display, when i connect it to my apple tv through airplay its too slow and when it try to play a movie apply tv is always a minute or 2 behind. How can i fix this?

    I just brought a brand new Macbook pro retina display, when i connect it to my apple tv through airplay its too slow and when it try to play a movie apply tv is always a minute or 2 behind. How can i fix this?

    Hello HanaAmer1,
    We've an article which provides troubleshooting steps that can help get AirPlay workign correctly.
    iTunes: Troubleshooting AirPlay and AirPlay Mirroring
    http://support.apple.com/kb/TS5209
    Cheers,
    Allen

  • No Audio Playback due to Error Message "Disk is too slow. (Prepare) (-10001)"

    Out of the blue, no audio playback.  Was working just fine earlier today.
    I repeatedly get the error message:
    Disk is too slow. (Prepare)
    (-10001)
    NOTE: I have more than enough disc space.  That is NOT the issue.
    I also just got a second error message:
    Part of the Project was not played
    This project has too many real instrument tracks to be played in real-time. To optimize performance, see the 'Optimizing GarageBand performance' page in GarageBand Help.
    NOTE: Odd as I have only 2 tracks in the GarageBand file.
    Any others experience this?  Suggestions?

    Have a look into the Preferences folder (YourUserFolder/Libraries/Preferences/) and trash all Logic preferences.
    You'll have to setup the program again.
    cheers
    rob

  • Built In application "YouTube" Is Way too slow!

    Hey guys, I'm new here btw, so hi to all.
    When i watch videos on youtube built in app IT TAKES FOREVER! to buffer the videos, I'm using WI-FI and my net connection is 20mb, I would love to use it but it just takes toooooo long to buffer it would take me 4-5 minute to watch a one minute clip, Any help you'll be my new idol!
    The strange this is though, on my computer they load in literally seconds if not instantly are are completely buffered in under 5 seconds for almost any video, yet i could hardly watch a 2 minute youtube video, it buffers then 20 seconds later it stops and it won't supering buffer, i press play nothing happens, it just like it either WAYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYYY too slow or it stops buffering completely, all i know is with youtube being such a big feature, it is almost useless by the terrible coding, or what ever the problem is to make it soo slow, i hear so much people talking about youtube and there iphone but mine is just too painfully slow to watch(and no 100% not my connection)

    Is there any youtube settings??? Can any setting be changed which relate to youtube? And is it possible to watch youtube through safari and not through the standard application?
    NO, there are no settings. Flash will not play in Safari yet, but there is a workaround using VideoHamster.
    Here are a couple of Flash YouTube videos on my server that I converted to QT with CosmoPod. How do they load for you? I have a 1M up cable connection. They should start loading and playing after a few seconds. YouTube videos start playing after about 5 seconds on mine.
    http://bmer.servemp3.com/test/
    Dave M.
    MacOSG Founder/Ambassador  An Apple User Group  iTunes: MacOSG Podcast
    Creator of 'Mac611 - Mobile Mac Support' (designed exclusively for an iPhone/iPod touch)

  • Select Data from aufm too slow

    Hi experts,
    I have a query in my report but its performance too slow.
    is there any proper way or any way to improve the performance of below query.
    SELECT  * FROM  aufm     into table i_aufm          " collecting input material document numbers
             WHERE mblnr GE '4900000000'
               AND mjahr GE '2008'
               AND zeile GT '0'
               AND matnr EQ matnr_101-matnr
               AND werks IN p_werks
               AND charg EQ matnr_101-charg
               AND bwart = '101'.

    Hi,
    1 .Dont use * from any table.
    2. Create  a internal table  that u want to retrieve the data from that table. (Structure).
    Eg:
    types : begin of str_ekko,
               ebeln type ekko-ebeln,
               bsart type ekko-bsart,
               aedat type ekko-aedat,
               endof str_ekko.
    data : itab type table of str_ekko,
            wa_itab type str_ekko.
    In the above u want to take care that while creating the structure u want to look the sequence of fields in the table. in the same sequence u want to create the structure.
    3 . The Select-options fields also wants be in the same field sequence of the table.
    eg : select ebeln bsart aedat from ekko into table itab where ebeln in so_ebeln and                                                                               
    bsart in so_bsart and
                                                                                    aedat in so_aedat.
    4.  If the above things are not working just look the indexes of that table. Just create a secondary index with ur requirement.

  • Bumblebee performance is too slow

    Hi everyone,
    This is my second post in this forum and it has been only 2 days that I met Arch. Before, I was using Ubuntu for 3 years, but due to low performance in my PC, unfortunately, I decided to say good bye which was hard to say.
    Now, I am trying to have the same setup as my previous laptop and Bumblebee was one of them. I followed the instructions here: https://wiki.archlinux.org/index.php/Bumblebee.
    It seems that bumblebee is installed and working, however, the FPS is too slow:
    $ optirun glxspheres64 -info
    Polygons in scene: 62464
    Visual ID of window: 0x20
    Context is Direct
    OpenGL Renderer: GeForce GT 520MX/PCIe/SSE2
    0.023848 frames/sec - 0.021114 Mpixels/sec
    Without optirun I get:
    $ glxspheres64 -info
    Polygons in scene: 62464
    Visual ID of window: 0x20
    Context is Direct
    OpenGL Renderer: Mesa DRI Intel(R) Sandybridge Mobile
    0.033237 frames/sec - 0.029426 Mpixels/sec
    0.029968 frames/sec - 0.026533 Mpixels/sec
    This is impossible as I was getting very good results before.
    I am wondering if I did something wrong, or missed anything.
    Just for information, system specs:
    Intel i7 2670QM 2.2 GHZ
    4 GB RAM
    1 GB GeForce GT 520MX
    512 MB Intel Graphics
    I played 0ad with and without optirun and the performance was good in both of them, but not sure if it switches the video cards itself.
    I also have bbswitch installed.
    Any help would be appreciated. Thank you.
    Last edited by wakeup12 (2014-09-27 14:29:19)

    Hello,
    Can you please explain in a little more detail the scenario you testing? Are you comparing a SQL Database in Europe against a SQL Database in India? Or a SQL Database with a local, on-premise SQL Server installation?
    In case of the first scenario, the roundtrip latency for the connection to the datacenter might play a role. 
    If you are comparing to a local installation, please note that you might be running against completely different hardware specifications and without network delay, resulting in very different results.
    In both cases you can use the below blog post to assess the resource utilization of the SQL Database during the operation:
    http://azure.microsoft.com/blog/2014/09/11/azure-sql-database-introduces-new-near-real-time-performance-metrics/
    If the DB utilizes up to 100% you might have to consider to upgrade to a higher performance level to achieve the throughput you are looking for.
    Thanks,
    Jan 

  • Performance is too slow on SQL Azure box

    Hi,
    Performance is too slow on SQL Azure box (Located in Europe)
    Below query returns 500,000 rows in 18 Min. on SQL Azure box (connected via SSMS, located in India)
    SELECT * FROM TABLE_1
    Whereas, on local server it returns 500,000 rows in (30 sec.)
    SQL Azure configuration:
    Service Tier/Performance Level : Premium/P1
    DTU       : 100
    MAX DB Size : 500GB     
    Max Worker Threads : 200          
    Max Sessions     : 2400
    Benchmark Transaction Rate      : 105 transactions per second
    Predictability : Best
    Any suggestion would be highly appreciated.
    Thanks,

    Hello,
    Can you please explain in a little more detail the scenario you testing? Are you comparing a SQL Database in Europe against a SQL Database in India? Or a SQL Database with a local, on-premise SQL Server installation?
    In case of the first scenario, the roundtrip latency for the connection to the datacenter might play a role. 
    If you are comparing to a local installation, please note that you might be running against completely different hardware specifications and without network delay, resulting in very different results.
    In both cases you can use the below blog post to assess the resource utilization of the SQL Database during the operation:
    http://azure.microsoft.com/blog/2014/09/11/azure-sql-database-introduces-new-near-real-time-performance-metrics/
    If the DB utilizes up to 100% you might have to consider to upgrade to a higher performance level to achieve the throughput you are looking for.
    Thanks,
    Jan 

  • Animated Gif's Playing too slow

    Lately since I installed leopard animated gif's are showing up on safari too slow and its not on one site its everywhere! And I need to see the real speed of what the gif is or else I won't know if its wrong or not. So what do I do?

    Same problem here, very frustrating. The same thing also happens on my MacBook with Tiger. The longer the animated GIF is, the more it slows down. Here's a good example, fine in Firefox but not Safari: http://content.ytmnd.com/content/6/a/0/6a0e42120c9f9e24dfc3bfa353ccd114.gif
    I submitted this as a Safari bug a while ago, I hope all of you will too.

  • Why am I getting this error message, "Disk is too slow. (Prepare) (-10001)"

    Hello all!  I've been using GarageBand for a while now and I've accumulated quite a few files.  Along with all of my movies and iTunes library, my internal hard drive filled up rapidly and I didn't catch it.  I received a warning message on my screen one day saying that my hard drive was nearly full and I only had a few MB available.  I'm using a 150 GB Solid State Hard Disk on my 2009 MacBook Pro (2.6 GHz Intel Cre 2 Duo, 4 GB of RAM).  I remembered reading a while back that it's better to use an external hard drive for pretty much everything when using Garageband, so I bought one.  I now have a seagate 500 GB, 5400 rpm external (USB 2.0) and I moved ALL of my movies and music over to it.  I freed up around 60 GB of space on my internal hard drive in doing so. 
    So now that I've given you a little background, let me explain the issue I'm having.  Before I noticed that my hard drive was full, I started receiving this error message:
    Disk is too slow. (Prepare)
    (-10001)
    Upon receiving this message, I was unable to do pretty much anything in GarageBand.  I couldn't listen to tracks, export to iTunes, or do anything!  All I'm using GarageBand for is editing.  My band and I do all our recording (and mixing) offsite at a separate studio and i just deliver a 2 track stereo signal (L/R) to my MacBook.  From there, I just cut the individual tracks from a block of 30-45 minutes of recording because we just record our entire studio session and mix everything there.  I pretty much never have more than two tracks and a few effects going at the same time.
    After I realized that my disk was nearly full, I consulted my brother-in-law.  He's head of the IT Deartpment at a major hospital here in West L.A. and he told me that I may have created a problem with the cache by filling up my internal hard drive and that I may still have issues with performance even after I free up space.  He then told me that I may need to reboot my MacBook a few time to "free up the cache" (or something close to that, sorry guys I'm not that tech-savvy).  It seems he may have been right, as I'm still experiencing the same issue.  I rebooted around 10 times overall to no avail.  I'm still using my internal hard drive to store the files that I'm working on (temporarily) because USB 2.0 is way too slow for my liking, when using GarageBand.
    I've read quite a few articles on this offering solutions such as:
    1.  Do a complete Uninstall and Reinstall of GarageBand
    2.  Clone my hard drive to my external, format it, and reinstall everything back on it
    3.  Get a hard drive that supports Firewire 800 (The HDD I bought is USB 2.0, but it has two USB cables to increase speed, but I only have 1 port and I tried      a powered USB Hub, but this HDD won't work with it for some reason).
    4.  Use different editing software.
    5.  Take it to Apple!
    Will any of these things fix my problem?  Are some better than others?  Before I do anything, I wanted to ask this question on the furum to see if anybody had an easier (or cheaper!) solution.  Any suggestions, tips, or advice would be much appreciated, as my band is starting to get on my case about finishing our CD!  Thanks...  

    Have a look into the Preferences folder (YourUserFolder/Libraries/Preferences/) and trash all Logic preferences.
    You'll have to setup the program again.
    cheers
    rob

Maybe you are looking for

  • Print in Report

    Hi, I´m trying to print a preview in report but the following sign appears "failed while printing", Anyone have any idea why I´m having this problem? Thanks Verónica

  • What's wrong with this formula?

    What's wrong with this formula?  Why am I getting 0?

  • How can I unlock my iphone after it was wipe by the cloud

    My phone was wipe remotely by the icloud.  How can I reset it to be used without the persons Apple id and password.

  • Regarding Billing due list VF04

    Dear All, This is regarding Billing due list requirement. we have third party scnerio slightly different from standard. That is billing relavance is order related billing instead of order related billing-status according to invoice qty. And in copy c

  • Trying to Upgrade to SCOM 2012

    Hello, I am running SCOM 2007 R2 CU7 on a Windows Server 2008 R2 SP1 server with SQL Server 2008 R2 SP2.  It was a secondary MS that I promoted to an RMS.  I ran all the requirements prior to the upgrade and I keep getting the error that I have to up