First Ajax request really slow with Generator

Doing simple Html panel <-> Generator plugin communication and noticed a strange issue with first Ajax call being much slower than the rest. I.e. in panel javascript the first Ajax call duration is 2000ms+ the first time and then consistently ~5ms every time. On the generator plugin side durations are <2ms every time.
I guess this could be just Chrome initializing some code, but still seems really high. Not the end of the world, but annoying anyhow. Anyone hit similar issues or any other ideas?
Generator code
_server = require("http").createServer(onServerRequest)
_server.listen(8080)
function onServerRequest (request, response) {
var start = new Date().getTime()
console.log("duration=" + (new Date().getTime()-start))
Panel javascript:
window._ajax_start = new Date().getTime()
$.ajax({ url: "http://127.0.0.1:8080/service", async: true })
  .fail(function (jqXHR, msg) { alert("service failed! message=" + msg) })
  .done(function (data) { updateData(data) })
function updateData(data)
alert("duration =" + (new Date().getTime()-window._ajax_start))

Might be Chrome/panel init delay. If you keep Photoshop&panel open and kill & restart Generator, there is no delay. But if Generator is running, closing & opening panel gives the delay every time. In any case panel side seems to be "guilty".

Similar Messages

  • I have iMac and need a good photo editing program to use.  Reviews say aperture runs really slow with Lion, any suggestions?

    I need a program where I can remove objects and touch up dead grass, etc.

    Reviews say Aperture runs really slow with Lion, any suggestions?
    To add on to Corky02 answer:
    The recent Aperture release AP 3.3.x is very efficient, both on Lion and Mountain Lion. But you need a decent hardware to support it. The older Macs will have problems with the storage and CPU requirements. For good performance on large raw images plenty of RAM is important, at least 4GB, but 8GB would be much better, and your library should be on a fast disk, preferably on an internal drive. And don't let the system drive get too full.
    Many reports about Aperture being slow are due to putting the Aperture library onto slow disks or acessing  the original image files over the network, insufficient RAM, or corrupted or  ill-designedAperture databases.
    Aperture excels at all kinds of image processing that can be considered image developement - raw processing and color/lighting adjustments, but does not do compositing. If you are shooting raw and want professional image developement I'd recommend to do this in Aperture and not in iPhoto - you will have much more control over this in Aperture (after a steep learning curve). You can also  repair and retouch the image to correct minor blamishes. For graphics compositing and inpainting you can set up an external editor and send your images from Aperture to this external editor - any of the editors Corky recommended would be o.k. for this.
    To see, if you will want the advanced image processing in Aperture or the easy to use, more basic options in iPhoro will be sufficient to you have a look at the Aperture User manual, or the tutorial on the support page: Aperture Support
    But Aperture is a professional apllication, not "plug and play". You should only consider it, if you are willing to spend some time on learning to use it properly and are willing to work your way through the manual.
    Regards
    Léonie

  • My 3GS on iOS5 seems to be really slow with text messages

    My 3GS on iOS5 seems to be really slow with text messages, any one else have this problem?

    Sometimes I think I don't get told about a message until I unlock my phone and when I do I get a notification and a text tone as I unlock and it can be off a conversation I was having 10/15 minutes ago.

  • Copy of submitted requests really slow to load LOV

    Anyone else have this issue? When trying to copy a previously submitted request it takes forever to load LOV's. I'm not sure if it is the form, FNDRSRUN, or something else. If anyone else has dealt with this please advise.
    Thanks.

    It has worked the whole time it is just really slow the first time you use it in a session and gets faster the more times you do it in the same session. Oracle Applications 12.1.3. How slow when you access it first time?
    What exactly am I looking for on the trace?You need to look for the statement when you click on the Copy button -- Enable trace before you open the form for the first time, reproduce the issue, disable trace and generate the TKPROF file and upload the file here (if possible).
    Thanks,
    Hussein

  • PB Displacement filter really slow with big images

    hello;
         I am trying to make a Pixel bender displacement filter that will handle displacements bigger than 128 pixels, for flash. Right now flash only uses one 8 bit color channel to represent a displacement,  which can not be bigger than 128 pixels. I am trying to make a pixel bender kernel that will take 3 color channels( 24 bit) as a displacement, which should be able to handle displacements as big as 8388608. That is obviously bigger than I need.
         The problem i am finding is that when the image or the displacement maps are too big it runs really slow. With images the size 3072x768,  it runs at 3 frames per second on an intel based mac.
         The question is , does anybody know how to optimise this code?
    the code:
    <languageVersion : 1.0;>
    kernel DisplacementMap
    <
    namespace : "dood";
    vendor : "m0ose";
    version : 1;
    description : "Displacement by bitmap map 16 bit. X and Y are seperate bitmaps  ";
    >
    parameter   float       scale
        <
            minValue        : -10.0;
            maxValue        :  10.0;
            defaultValue    :  1.0;
        >;
    parameter float offsetX
        <
            minValue        : -1000.0;
            maxValue        :  1000.0;
            defaultValue    : 0.0;
        >;
    parameter float offsetY
        <
                minValue        : -1000.0;
            maxValue        :  1000.0;
            defaultValue    : 0.0;
        >;
    parameter float zoom
        <
                minValue        : 0.1;
            maxValue        :  10.0;
            defaultValue    : 1.0;
        >;
    input image4 src;
    input image4 mapX;
    input image4 mapY;
    output pixel4 dst;
    void evaluatePixel()
        float2 pos = outCoord();
        float4 amountX = sampleLinear(mapX , pos);
        float4 amountY = sampleLinear(mapY , pos);
        float x = (amountX.b * 256.0 - 128.0) ; //red
        x = x + (amountX.g * 256.0 - 128.0) * 128.0;//alpha
        x = x * scale;
        x = x + pos.x;
        x = x + offsetX ;
        x = x / zoom;
        float y =  (amountY.b * 256.0 - 128.0) ;
        y = y + (amountY.g * 256.0 - 128.0) * 128.0;
        y = y * scale;
        y = y + pos.y;
        y = y + offsetY ;
        y = y / zoom;
        float2 displacedPos = float2( x , y );
        dst = sampleLinear(src, displacedPos);
    thanx

    I am adding a shader to the filter attribute of a Flex Video Player
    code: something like this
    [Embed(source="displ24test.pbj" , mimeType="application/octet-stream")]
    protected var displacer:Class;
    var shader:Shader;
    public function init():void
    shader = new Shader( new displacer() );
    shader.data.src.input = src;
    shader.data.mapX.input = mapX;
    shader.data.mapY.input = mapY;
    shader.data.scale.value = [ scale ];
    shader.data.offsetX.value = [ offsetX ];
    shader.data.offsetY.value = [ offsetY ];
    shader.data.zoom.value = [ zoom];
    _mov.filters = [ new ShaderFilter( shader) ];
    then in flex:
    <s:VideoPlayer x="10" y="10" source="df_retro5_1k_sound.mov"  id="_mov"  autoPlay="true"/>

  • My macbook is running really slow with most apps crashing

    Hello everyone,
    so recently my MacBook pro (mid 2012) is running incredibly slow, it's been a couple of weeks now and I don't really know what's going on, since it's always been pretty fast I've never had much issues until now.
    Thank you very much!!
    Beth
    EntreCheck report as below:
    EtreCheck version: 2.1.8 (121)
    Report generated 26 febbraio 2015 00:56:59 CET
    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 (13-inch, Mid 2012) (Technical Specifications)
        MacBook Pro - model: MacBookPro9,2
        1 2.5 GHz Intel Core i5 CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                2 GB DDR3 1600 MHz ok
            BANK 1/DIMM0
                2 GB DDR3 1600 MHz ok
        Bluetooth: Good - Handoff/Airdrop2 supported
        Wireless:  en1: 802.11 a/b/g/n
        Battery Health: Normal - Cycle count 783
    Video Information: ℹ️
        Intel HD Graphics 4000
            Color LCD 1280 x 800
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: one day 12:14:46
    Disk Information: ℹ️
        APPLE HDD TOSHIBA MK5065GSXF disk0 : (500,11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            Macintosh HD (disk1) / : 498.88 GB (209.85 GB free)
                Core Storage: disk0s2 499.25 GB Online
        OPTIARC DVD RW AD-5970H 
    USB Information: ℹ️
        Apple Inc. Apple Internal Keyboard / Trackpad
        Apple Inc. BRCM20702 Hub
            Apple Inc. Bluetooth USB Host Controller
        Apple Computer, Inc. IR Receiver
        Apple Inc. FaceTime HD Camera (Built-in)
    Thunderbolt Information: ℹ️
        Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Problem System Launch Agents: ℹ️
        [killed]    com.apple.AirPlayUIAgent.plist
        [killed]    com.apple.CallHistoryPluginHelper.plist
        [killed]    com.apple.CallHistorySyncHelper.plist
        [killed]    com.apple.cloudd.plist
        [killed]    com.apple.cmfsyncagent.plist
        [killed]    com.apple.coreservices.appleid.authentication.plist
        [killed]    com.apple.EscrowSecurityAlert.plist
        [killed]    com.apple.nsurlsessiond.plist
        [killed]    com.apple.SafariNotificationAgent.plist
        [killed]    com.apple.sbd.plist
        [killed]    com.apple.security.cloudkeychainproxy.plist
        [killed]    com.apple.telephonyutilities.callservicesd.plist
        12 processes killed due to memory pressure
    Problem System Launch Daemons: ℹ️
        [killed]    com.apple.AssetCacheLocatorService.plist
        [killed]    com.apple.awdd.plist
        [killed]    com.apple.ctkd.plist
        [killed]    com.apple.emond.aslmanager.plist
        [killed]    com.apple.icloud.findmydeviced.plist
        [killed]    com.apple.ifdreader.plist
        [killed]    com.apple.installd.plist
        [failed]    com.apple.loginwindow.LFVTracer.plist
        [killed]    com.apple.MobileFileIntegrity.plist
        [killed]    com.apple.nehelper.plist
        [killed]    com.apple.nsurlsessiond.plist
        [killed]    com.apple.periodic-daily.plist
        [killed]    com.apple.softwareupdate_download_service.plist
        [killed]    com.apple.tccd.system.plist
        [killed]    com.apple.wdhelper.plist
        [killed]    com.apple.xpc.smd.plist
        15 processes killed due to memory pressure
    Launch Daemons: ℹ️
        [loaded]    com.adobe.fpsaud.plist [Click for support]
        [loaded]    com.microsoft.office.licensing.helper.plist [Click for support]
    User Launch Agents: ℹ️
        [loaded]    com.google.keystone.agent.plist [Click for support]
        [running]    com.spotify.webhelper.plist [Click for support]
    User Login Items: ℹ️
        iTunesHelper    Applicazione  (/Applications/iTunes.app/Contents/MacOS/iTunesHelper.app)
    Internet Plug-ins: ℹ️
        SharePointBrowserPlugin: Version: 14.1.0 [Click for support]
        FlashPlayer-10.6: Version: 16.0.0.305 - 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
        Silverlight: Version: 5.1.20125.0 - SDK 10.6 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
    User internet Plug-ins: ℹ️
        Google Earth Web Plug-in: Version: 7.1 [Click for support]
    3rd Party Preference Panes: ℹ️
        Flash Player  [Click for support]
    Time Machine: ℹ️
        Time Machine not configured!
    Top Processes by CPU: ℹ️
             4%    WindowServer
             3%    Google Chrome
             1%    ReportCrash
             1%    hidd
             1%    node-webkit
    Top Processes by Memory: ℹ️
        180 MB    Google Chrome Helper
        133 MB    mds_stores
        116 MB    Google Chrome
        59 MB    node-webkit Helper
        52 MB    CalNCService
    Virtual Memory Information: ℹ️
        534 MB    Free RAM
        1.25 GB    Active RAM
        1.01 GB    Inactive RAM
        772 MB    Wired RAM
        27.61 GB    Page-ins
        2.42 GB    Page-outs
    Diagnostics Information: ℹ️
        Feb 26, 2015, 12:56:11 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/node-webkit Helper_2015-02-26-005611_[redacted].crash
        Feb 26, 2015, 12:38:30 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/EtreCheck_2015-02-26-003830_[r edacted].crash
        Feb 26, 2015, 12:30:44 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/com.apple.WebKit.WebContent_20 15-02-26-003044_[redacted].crash
        Feb 25, 2015, 10:01:33 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/node-webkit Helper_2015-02-25-220133_[redacted].crash
        Feb 25, 2015, 07:34:04 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/com.apple.WebKit.Networking_20 15-02-25-193404_[redacted].crash
        Feb 25, 2015, 07:21:13 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/node-webkit Helper_2015-02-25-192113_[redacted].crash
        Feb 25, 2015, 07:20:08 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/node-webkit Helper_2015-02-25-192008_[redacted].crash
        Feb 24, 2015, 11:38:37 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/com.apple.WebKit.Plugin.64_201 5-02-24-233837_[redacted].crash
        Feb 24, 2015, 07:21:40 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/node-webkit Helper_2015-02-24-192140_[redacted].crash
        Feb 24, 2015, 02:04:06 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/com.apple.WebKit.Plugin.64_201 5-02-24-140406_[redacted].crash
        Feb 24, 2015, 12:58:03 PM    /Library/Logs/DiagnosticReports/LegacyFileVaultMessageTracer_2015-02-24-125803_ [redacted].crash
        Feb 24, 2015, 12:26:44 PM    Self test - passed
        Feb 24, 2015, 01:04:59 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/node-webkit Helper_2015-02-24-010459_[redacted].crash
        Feb 24, 2015, 12:20:16 AM    /Users/[redacted]/Library/Logs/DiagnosticReports/node-webkit Helper_2015-02-24-002016_[redacted].crash
        Feb 23, 2015, 02:01:43 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/fontd_2015-02-23-140143_[redac ted].crash
        Feb 23, 2015, 02:00:54 PM    /Library/Logs/DiagnosticReports/LegacyFileVaultMessageTracer_2015-02-23-140054_ [redacted].crash
        Feb 23, 2015, 01:55:52 PM    /Users/[redacted]/Library/Logs/DiagnosticReports/node-webkit Helper_2015-02-23-135552_[redacted].crash

    When you see a beachball cursor or the slowness is especially bad, note the exact time: hour, minute, second.  
    These instructions must be carried out as an administrator. If you have only one user account, you are the administrator.
    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad and start typing the name.
    The title of the Console window should be All Messages. If it isn't, select
              SYSTEM LOG QUERIES ▹ All Messages
    from the log list on the left. If you don't see that list, select
              View ▹ Show Log List
    from the menu bar at the top of the screen.
    Each message in the log begins with the date and time when it was entered. Scroll back to the time you noted above.
    Select the messages entered from then until the end of the episode, or until they start to repeat, whichever comes first.
    Copy the messages to the Clipboard by pressing the key combination command-C. Paste into a reply to this message by pressing command-V.
    The log contains a vast amount of information, almost all of it useless for solving any particular problem. When posting a log extract, be selective. A few dozen lines are almost always more than enough.
    Please don't indiscriminately dump thousands of lines from the log into this discussion.
    Please don't post screenshots of log messages—post the text.
    Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Logic 9.1.8 really slow with Mavericks

    I surrendered, after a long time, and upgraded to Mavericks (clean installation!) from Snow Leopard!
    I state that I use my iMac mainly for making music with Logic 9 Studio (actually v9.1.8).
    The problem is that now Logic is too slow, lagging a lot (for example Channel EQ), and cpu meter gets full really easily and quickly.
    Some one can help me solve this problem? With Snow Leopard I didn't had this problems.
    I've heard in some other forums that there are are some issues about "graphics retina settings" or something.
    Thanks in advance.
    Vanni
    I have:
    iMac 21.5 middle 2010
    CPU:  3.06 Ghz Intel Core i3,
    Ram: 4 GB 1333 MHz DDR3
    Graphic: ATI Radeon HD 4670 256 MB
    OS: OS X 10.9.5 (Mavericks)

    Yes you are doing the right thing. I want to upgrade to 16GB of Ram really soon, I wanted anyway, but now I can't really work maybe I go back to Snow Leopard.... **ck! It's 3 days I'm reinstalling everything.... **ck!

  • IMac (late 2009) really slow with all apps

    I just recently have been having a huge problem with the speed of my iMac. It's a Late 2009 machine.
    I am constantly having it freeze, with a spinning rainbow wheel, only to have it catch up with what I was typing, or trying to execute, after a few moments. This even happens when I only have one application running.
    Here is my EtreCheck:
    EtreCheck version: 1.9.15 (52)
    Report generated September 10, 2014 at 10:55:40 AM EDT
    Hardware Information: ?
      iMac (27-inch, Late 2009) (Verified)
      iMac - model: iMac11,1
      1 2.66 GHz Intel Core i5 CPU: 4 cores
      12 GB RAM
    Video Information: ?
      ATI Radeon HD 4850 - VRAM: 512 MB
      iMac 2560 x 1440
    System Software: ?
      OS X 10.9.4 (13E28) - Uptime: 0 days 18:18:20
    Disk Information: ?
      ST31000528ASQ disk0 : (1 TB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted>: 209.7 MB
      Macintosh HD (disk0s2) / [Startup]: 891.63 GB (135.8 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
      BOOTCAMP (disk0s4) /Volumes/BOOTCAMP: 107.71 GB (85.55 GB free)
      OPTIARC DVD RW AD-5680H 
    USB Information: ?
      Seagate GoFlex Desk 3 TB
      S.M.A.R.T. Status: Verified
      disk1s1 (disk1s1) <not mounted>: 209.7 MB
      Extra Space (disk1s2) /Volumes/Extra Space: 3 TB (154.09 GB free)
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Internal Memory Card Reader
      Seagate FA GoFlex Desk 2 TB
      S.M.A.R.T. Status: Verified
      EFI (disk2s1) <not mounted>: 209.7 MB
      2 TB Work Drive (disk2s2) /Volumes/2 TB Work Drive: 2 TB (56.68 GB free)
      Apple, Inc. Keyboard Hub
      Apple, Inc Apple Keyboard
      Apple Computer, Inc. IR Receiver
      Apple Inc. Built-in iSight
    Gatekeeper: ?
      Mac App Store and identified developers
    Kernel Extensions: ?
      [not loaded] com.roxio.BluRaySupport (1.1.6) Support
      [not loaded] com.roxio.TDIXController (2.0) Support
    Launch Daemons: ?
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
      [loaded] com.oracle.java.Helper-Tool.plist Support
      [loaded] com.oracle.java.JavaUpdateHelper.plist Support
    Launch Agents: ?
      [loaded] com.oracle.java.Java-Updater.plist Support
      [failed] jp.co.canon.UFR2.BG.plist Support
    User Launch Agents: ?
      [loaded] com.adobe.ARM.[...].plist Support
      [failed] com.apple.CSConfigDotMacCert-[...]@me.com-SharedServices.Agent.plist
      [failed] com.apple.MobileMeSyncClientAgent.plist
      [failed] com.apple.SafariBookmarksSyncer.plist
      [loaded] com.google.keystone.agent.plist Support
      [running] com.spotify.webhelper.plist Support
      [running] ws.agile.1PasswordAgent.plist Support
    User Login Items: ?
      iTunesHelper
      Security Camera
      Octoshape
      Google Drive
      AdobeResourceSynchronizer
      Dropbox
      Spotify
      TomTomHOMERunner
      Audiogalaxy Helper
    Internet Plug-ins: ?
      Flip4Mac WMV Plugin: Version: 2.4.0.11 Support
      FlashPlayer-10.6: Version: 14.0.0.145 - SDK 10.6 Support
      iPhotoPhotocast: Version: 7.0 - SDK 10.8
      Flash Player: Version: 14.0.0.145 - SDK 10.6 Outdated! Update
      AdobePDFViewer: Version: 10.0.0 Support
      Default Browser: Version: 537 - SDK 10.9
      QuickTime Plugin: Version: 7.7.3
      SharePointBrowserPlugin: Version: 14.0.0 Support
      Silverlight: Version: 5.1.10411.0 - SDK 10.6 Support
      JavaAppletPlugin: Version: Java 7 Update 55 Check version
    Safari Extensions: ?
      1Password
    Audio Plug-ins: ?
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins: ?
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User Internet Plug-ins ?
      CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 Support
      OctoshapeWeb: Version: 1.0 - SDK 10.8 Support
    3rd Party Preference Panes: ?
      Flash Player  Support
      Flip4Mac WMV  Support
      Java  Support
      Perian  Support
      Tuxera NTFS  Support
    Time Machine: ?
      Auto backup: YES
      Volumes being backed up:
      Macintosh HD: Disk size: 830.40 GB Disk used: 703.92 GB
      Destinations:
      2 TB Work Drive [Local] (Last used)
      Total size: 2 TB
      Total number of backups: 11
      Oldest backup: 2014-03-06 20:03:01 +0000
      Last backup: 2014-09-10 14:44:22 +0000
      Size of backup disk: Too small
      Backup size 2 TB < (Disk used 703.92 GB X 3)
      Time Machine details may not be accurate.
      All volumes being backed up may not be listed.
    Top Processes by CPU: ?
          14% mds
          2% WindowServer
          1% Activity Monitor
          0% coreaudiod
          0% sysmond
    Top Processes by Memory: ?
      221 MB Finder
      184 MB ocspd
      172 MB com.apple.IconServicesAgent
      172 MB Safari
      160 MB softwareupdated
    Virtual Memory Information: ?
      3.12 GB Free RAM
      6.09 GB Active RAM
      1.71 GB Inactive RAM
      1.07 GB Wired RAM
      3.41 GB Page-ins
      0 B Page-outs

    Not too many red flags there.
    However, a few of things to try:
    Disable Google Drive and test. In general, off-site backup software can slow the computer, and there are numerous reports here that the Google apps are still not playing well with Mavericks.
    Disable 1Password and test. It's a long shot but it could be contributing.
    The Etrecheck report shows you hard drive passes the SMART test but you may wish to boot into your recovery partition and run Disk Utility from there.
    Historically, TomTom's software has not been as Mac-friendly as Garmin's. That is another "disable and test" version you can do.
    Disabling doesn't remove the software, just lets you test without that component loading.
    You have some user log-in items with which I am not familiar:
    User Login Items: ?
      iTunesHelper
      Security Camera <--------
      Octoshape <-------
      Google Drive
      AdobeResourceSynchronizer
      Dropbox
      Spotify
      TomTomHOMERunner
      Audiogalaxy Helper <--------
    If these are part of some program you are not using, try running without them, especially if they were installed BEFORE you upgraded to Mavericks

  • Phone is really slow with text messages

    hi, im new here and lookin for a little help. iv had the phone for a few months and now my curve freezes when i try to open a text message. also when i press send it freezes up. i dont have to restart it or anything but it takes about 7 seconds to regain itself. this only happens with text messages. emails work fine, facebook notifications work fine. i send and receive quite a bit of texts, emails, and facebook notifications and i have 14 applications. i did the update/ recovery& reboot thing on my computer. i have wifi preferred as my connection preference and tmobile is my mobile network. any tips? or do i have to just live with this?
    EDIT: i searched around on the forum a little bit and resolved the issue. i didnt know that it was only happening when i texted one person because i mostly only text this one person. but i guess i had to go to my phone book and text this person thru that instead of just replying. after that i can open and reply with no problem. sorry for takin up space on the forum. im new lol
    Message Edited by joeyrossmiller12 on 08-30-2009 11:56 PM

    Sometimes I think I don't get told about a message until I unlock my phone and when I do I get a notification and a text tone as I unlock and it can be off a conversation I was having 10/15 minutes ago.

  • Indesign CS4 really slow with CMYK images

    Can anyone help me solve this? InDesign CS4 document with a few pages, and approx 24 images on a page. With CMYK images imported the rendering and re-rending is very sluggish. The Processes shows 99% usage for InDesign. Makes it almost impossible to work on a document.
    Any ideas to fix this?
    I'm using an 27" iMac with 2.8 GHz Intel Core i7 - Memory: 8GB 1067 MHz DDR3

    Doesn't surprise me. I find getting help in Adobe forums/support/community very confusing to find my way around.

  • Ipad 2 is really slow with iOS7 - help?

    I have an ipad 2 64G wifi - 3G. After upgrading to iOS7 it crashes, freezes, gets jittery. Not a good user experience. The last 2 years I never ever had to reset it. I'm now doing it on a daily basis. Unacceptable. I need a solution as this is a business device - and it was working perfectly. I am a small business and don't have the funds to upgrade (nor should I have to) right now.
    Help!

    JimHdk, how does one restore the ios 7 software?

  • Early 2009 Mac Mini slow with Mavericks

    I bought an early 2009 Mac Mini, and it was really slow with Maverick 10.9.1 installed. I proceed to upgrade the ram to 8GB and replaced the Hard Drive with a WD 500GB Blue Drive. The system is still pegging the CPU to 98%. I am posting 2 EtreChecks.
    Hardware Information:
              Mac mini (Early 2009)
              Mac mini - model: Macmini3,1
              1 2 GHz Intel Core 2 Duo CPU: 2 cores
              8 GB RAM
    Video Information:
              NVIDIA GeForce 9400 - VRAM: 256 MB
    System Software:
              OS X 10.9.1 (13B42) - Uptime: 0 days 0:50:29
    Disk Information:
              WDC WD5000BEVT-75ZAT0 disk0 : (500.11 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintiosh HD (disk0s2) /: 499.25 GB (481.17 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              PIONEER DVD-RW  DVRTS08 
    USB Information:
              Generic Flash Card Reader
              JMicron USB to ATA/ATAPI bridge 500.11 GB
                        EFI (disk1s1) <not mounted>: 209.7 MB
                        Time Machine Backups (disk1s2) <not mounted>: 499.76 GB
              American Power Conversion Back-UPS RS 1200 FW:8.g3 .D USB FW:g3 
              Apple Computer, Inc. IR Receiver
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
    FireWire Information:
    Thunderbolt Information:
    Kernel Extensions:
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [System] com.microsoft.office.licensing.helper.plist 3rd-Party support link
              [System] com.torch.update.agent.plist 3rd-Party support link
    Launch Agents:
    User Launch Agents:
    User Login Items:
              iTunesHelper
              Torch
    Internet Plug-ins:
              Default Browser: Version: 537 - SDK 10.9
              QuickTime Plugin: Version: 7.7.3
              SharePointBrowserPlugin: Version: 14.0.0 3rd-Party support link
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 1.9 - SDK 10.9
              AppleAVBAudio: Version: 2.0.0 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    3rd Party Preference Panes:
              None
    Bad Fonts:
              None
    Old Applications:
              None
    Time Machine:
              Time Machine not configured!
    Top Processes by CPU:
                 117%          helpd
                  23%          lssave
                  12%          com.apple.iCloudHelper
                  12%          WindowServer
                  12%          hiutil
    Top Processes by Memory:
              74 MB          installd
              66 MB          Torch
              66 MB          storeagent
              49 MB          mds_stores
              49 MB          helpd
    Virtual Memory Information:
              5.91 GB          Free RAM
              1.03 GB          Active RAM
              150 MB          Inactive RAM
              678 MB          Wired RAM
              229 MB          Page-ins
              0 B          Page-outs
    Hardware Information:
              Mac mini (Early 2009)
              Mac mini - model: Macmini3,1
              1 2 GHz Intel Core 2 Duo CPU: 2 cores
              8 GB RAM
    Video Information:
              NVIDIA GeForce 9400 - VRAM: 256 MB
    System Software:
              OS X 10.9.1 (13B42) - Uptime: 0 days 1:50:32
    Disk Information:
              WDC WD5000BEVT-75ZAT0 disk0 : (500.11 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintiosh HD (disk0s2) /: 499.25 GB (481.11 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              PIONEER DVD-RW  DVRTS08 
    USB Information:
              American Power Conversion Back-UPS RS 1200 FW:8.g3 .D USB FW:g3 
              Generic Flash Card Reader
              Apple Computer, Inc. IR Receiver
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
    FireWire Information:
    Thunderbolt Information:
    Kernel Extensions:
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [System] com.microsoft.office.licensing.helper.plist 3rd-Party support link
              [System] com.torch.update.agent.plist 3rd-Party support link
    Launch Agents:
    User Launch Agents:
    User Login Items:
              iTunesHelper
              Torch
    Internet Plug-ins:
              Default Browser: Version: 537 - SDK 10.9
              QuickTime Plugin: Version: 7.7.3
              SharePointBrowserPlugin: Version: 14.0.0 3rd-Party support link
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 1.9 - SDK 10.9
              AppleAVBAudio: Version: 2.0.0 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    3rd Party Preference Panes:
              None
    Bad Fonts:
              None
    Old Applications:
              None
    Time Machine:
              Time Machine not configured!
    Top Processes by CPU:
                  42%          WindowServer
                  23%          mds
                  20%          AddressBookSourceSync
                  18%          syncdefaultsd
                  18%          hiutil
    Top Processes by Memory:
              123 MB          Safari
              123 MB          helpd
              106 MB          com.apple.WebKit.WebContent
              82 MB          mds_stores
              74 MB          Torch
    Virtual Memory Information:
              5.42 GB          Free RAM
              1.48 GB          Active RAM
              175 MB          Inactive RAM
              692 MB          Wired RAM
              255 MB          Page-ins
              0 B          Page-outs
    What could the issue be?

    here is the console dump for an hour and half.
    2/22/14 9:24:34.675 AM coreaudiod[164]: Enabled automatic stack shots because audio IO is inactive
    2/22/14 9:25:44.599 AM WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "Google Chrome" for over 1.00 seconds. Server has re-enabled them.
    2/22/14 9:25:45.664 AM WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "Google Chrome" after 2.06 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/22/14 9:31:25.360 AM WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "Google Chrome" for over 1.00 seconds. Server has re-enabled them.
    2/22/14 9:31:25.366 AM WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "Google Chrome" after 1.01 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/22/14 9:32:25.255 AM WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "Microsoft Word" for over 1.00 seconds. Server has re-enabled them.
    2/22/14 9:32:33.845 AM WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "Microsoft Word" after 9.59 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/22/14 9:36:47.675 AM WindowServer[78]: CGXSetWindowBackgroundBlurRadius: Invalid window 0xffffffff
    2/22/14 9:36:47.769 AM loginwindow[54]: find_shared_window: WID -1
    2/22/14 9:36:47.769 AM loginwindow[54]: CGSGetWindowTags: Invalid window 0xffffffff
    2/22/14 9:36:47.769 AM loginwindow[54]: find_shared_window: WID -1
    2/22/14 9:36:47.769 AM loginwindow[54]: CGSSetWindowTags: Invalid window 0xffffffff
    2/22/14 9:36:47.998 AM coreservicesd[28]: Application App:"loginwindow" [ 0x0/0x1001]  @ 0x0x7fcf4be2e9f0 tried to be brought forward, but isn't in fPermittedFrontASNs ( ( ASN:0x0-0x5d05d:) ), so denying.
    2/22/14 9:36:47.998 AM WindowServer[78]: [cps/setfront] Failed setting the front application to loginwindow, psn 0x0-0x1001, securitySessionID=0x186a4, err=-13066
    2/22/14 9:39:29.897 AM WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "ScreenSaverEngine" for over 1.00 seconds. Server has re-enabled them.
    2/22/14 9:39:43.897 AM WindowServer[78]: disable_update_likely_unbalanced: UI updates still disabled by application "ScreenSaverEngine" after 15.00 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    2/22/14 9:41:35.181 AM WindowServer[78]: Created shield window 0xd3 for display 0x2b284fd1
    2/22/14 9:41:35.213 AM WindowServer[78]: device_generate_desktop_screenshot: authw 0x7fb403cc92a0(2000), shield 0x7fb403e340b0(2001)
    2/22/14 9:41:36.516 AM WindowServer[78]: device_generate_lock_screen_screenshot: authw 0x7fb403cc92a0(2000), shield 0x7fb403e340b0(2001)
    2/22/14 9:41:40.300 AM WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    2/22/14 9:41:40.301 AM WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "Finder" after 5.09 seconds (server forcibly re-enabled them after 5.09 seconds)
    2/22/14 9:42:01.253 AM WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "ScreenSaverEngine" after 152.36 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/22/14 10:00:07.000 AM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=512[GoogleSoftwareUp] clearing CS_VALID
    2/22/14 10:11:06.929 AM WindowServer[78]: Created shield window 0xd4 for display 0x003f003c
    2/22/14 10:11:06.929 AM WindowServer[78]: handle_will_sleep_auth_and_shield_windows: no lock state data
    2/22/14 10:11:06.935 AM WindowServer[78]: handle_will_sleep_auth_and_shield_windows: no lock state data
    2/22/14 10:11:06.942 AM loginwindow[54]: ERROR | -[LWScreenLock(Private) screenIsLockedTimeExpired:] | No lock state found, use built in check
    2/22/14 10:11:07.864 AM WindowServer[78]: Received display connect changed for display 0x3f003c
    2/22/14 10:11:07.865 AM WindowServer[78]: Received display connect changed for display 0x2b284fd1
    2/22/14 10:11:08.061 AM WindowServer[78]: Created shield window 0xd5 for display 0x2b284fd1
    2/22/14 10:11:08.061 AM WindowServer[78]: handle_will_sleep_auth_and_shield_windows: no lock state data
    2/22/14 10:11:08.145 AM WindowServer[78]: Received display connect changed for display 0x3f003c
    2/22/14 10:11:08.146 AM WindowServer[78]: Received display connect changed for display 0x2b284fd1
    2/22/14 10:11:08.289 AM WindowServer[78]: Created shield window 0xd6 for display 0x2b284fd1
    2/22/14 10:11:08.289 AM WindowServer[78]: handle_will_sleep_auth_and_shield_windows: no lock state data
    2/22/14 10:11:08.563 AM WindowServer[78]: MPServiceForDisplayDevice: Invalid device alias (0)
    2/22/14 10:11:08.563 AM WindowServer[78]: Display 0x2b284fd1: GL mask 0x2; bounds (0, 0)[1920 x 1200], 69 modes available
    Main, Active, on-line, enabled, boot, OpenGL-accel, Vendor 10ac, Model a02a, S/N 31594553, Unit 1, Rotation 0
    UUID 0x000010ac0000a02a3159455300000000, ColorProfile { 3, "DELL 2408WFP"}
    2/22/14 10:11:08.563 AM WindowServer[78]: GLCompositor: GL renderer id 0x0102260e, GL mask 0x00000003, accelerator 0x0000333b, unit 0, caps QEX|QGL|MIPMAP, vram 256 MB
    texture units 8, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    2/22/14 10:11:08.564 AM WindowServer[78]: Display 0x003f003c: GL mask 0x1; bounds (2944, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 0, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003c
    2/22/14 10:11:08.961 AM WindowServer[78]: Created shield window 0xd7 for display 0x2b284fd1
    2/22/14 10:11:08.961 AM WindowServer[78]: Created shield window 0xd8 for display 0x003f003c
    2/22/14 10:11:09.046 AM loginwindow[54]: resume called when there was already a timer
    2/22/14 10:11:09.366 AM WindowServer[78]: Display 0x2b284fd1: MappedDisplay Unit 1: Startup Mode 1920 x 1200, CGSThirtytwoBitColor, Resolution 1, IOMode 0x80001000, IODepth 0x2, IOReturn 0x0
    2/22/14 10:11:09.371 AM WindowServer[78]: Display added
    2/22/14 10:11:09.371 AM WindowServer[78]: Display removed
    2/22/14 10:11:09.396 AM WindowServer[78]: Display 0x2b284fd1: GL mask 0x2; bounds (0, 0)[1920 x 1200], 69 modes available
    Main, Active, on-line, enabled, boot, OpenGL-accel, Vendor 10ac, Model a02a, S/N 31594553, Unit 1, Rotation 0
    UUID 0x000010ac0000a02a3159455300000000, ColorProfile { 3, "DELL 2408WFP"}
    2/22/14 10:11:09.396 AM WindowServer[78]: GLCompositor: GL renderer id 0x0102260e, GL mask 0x00000003, accelerator 0x0000333b, unit 0, caps QEX|QGL|MIPMAP, vram 256 MB
    texture units 8, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    2/22/14 10:11:09.397 AM WindowServer[78]: Display 0x003f003c: GL mask 0x1; bounds (2944, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 0, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003c
    2/22/14 10:11:10.063 AM WindowServer[78]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    2/22/14 10:11:10.292 AM WindowServer[78]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    2/22/14 10:11:11.356 AM WindowServer[78]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    2/22/14 10:11:23.790 AM WindowServer[78]: Display 0x2b284fd1: MappedDisplay Unit 1; ColorProfile { 3, "DELL 2408WFP"}; TransferFormula (1.000000, 1.000000, 1.000000)
    2/22/14 10:11:25.070 AM WindowServer[78]: Display 0x2b284fd1: MappedDisplay Unit 1; ColorProfile { 3, "DELL 2408WFP"}; TransferFormula (1.000000, 1.000000, 1.000000)
    2/22/14 10:11:25.580 AM WindowServer[78]: Display 0x2b284fd1: MappedDisplay Unit 1; ColorProfile { 3, "DELL 2408WFP"}; TransferFormula (1.000000, 1.000000, 1.000000)
    2/22/14 10:11:30.954 AM WindowServer[78]: Display 0x2b284fd1: MappedDisplay Unit 1; ColorProfile { 3, "DELL 2408WFP"}; TransferFormula (1.000000, 1.000000, 1.000000)
    2/22/14 10:11:31.429 AM WindowServer[78]: Display 0x2b284fd1: MappedDisplay Unit 1; ColorProfile { 3, "DELL 2408WFP"}; TransferFormula (1.000000, 1.000000, 1.000000)
    2/22/14 10:11:34.016 AM WindowServer[78]: Display 0x2b284fd1: MappedDisplay Unit 1; ColorProfile { 3, "DELL 2408WFP"}; TransferFormula (1.000000, 1.000000, 1.000000)
    2/22/14 10:12:44.372 AM WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "Google Chrome" for over 1.00 seconds. Server has re-enabled them.
    2/22/14 10:12:46.639 AM WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "Google Chrome" after 3.27 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/22/14 10:13:17.936 AM WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "Microsoft Word" for over 1.00 seconds. Server has re-enabled them.
    2/22/14 10:13:18.105 AM WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "Microsoft Word" after 10.37 seconds (server forcibly re-enabled them after 10.20 seconds)
    2/22/14 10:13:19.403 AM WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "Microsoft Word" for over 1.00 seconds. Server has re-enabled them.
    2/22/14 10:13:23.043 AM WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "Microsoft Word" after 4.64 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/22/14 10:13:24.633 AM WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "Microsoft Word" for over 1.00 seconds. Server has re-enabled them.
    2/22/14 10:13:24.810 AM WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "Microsoft Word" after 1.18 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/22/14 10:13:55.737 AM Dock[168]: no information back from LS about running process
    2/22/14 10:14:08.271 AM WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "Microsoft Word" for over 1.00 seconds. Server has re-enabled them.
    2/22/14 10:14:20.063 AM WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "Microsoft Word" after 12.79 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/22/14 10:14:21.346 AM WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "Microsoft Word" for over 1.00 seconds. Server has re-enabled them.
    2/22/14 10:14:22.661 AM WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "Microsoft Word" after 2.32 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/22/14 10:14:33.366 AM WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "Microsoft AutoUpdate" for over 1.00 seconds. Server has re-enabled them.
    2/22/14 10:14:38.030 AM WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "Microsoft AutoUpdate" after 5.66 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/22/14 10:15:12.817 AM WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "Microsoft AutoUpdate" for over 1.00 seconds. Server has re-enabled them.
    2/22/14 10:15:13.323 AM WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "Microsoft AutoUpdate" after 1.51 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/22/14 10:15:33.378 AM WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "Microsoft Word" for over 1.00 seconds. Server has re-enabled them.
    2/22/14 10:15:33.557 AM WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "Microsoft Word" after 1.18 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/22/14 10:15:42.866 AM WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "Microsoft AutoUpdate" for over 1.00 seconds. Server has re-enabled them.
    2/22/14 10:15:44.503 AM WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "Microsoft AutoUpdate" after 2.64 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/22/14 10:17:06.581 AM Dock[168]: no information back from LS about running process
    2/22/14 10:17:25.185 AM Installer[556]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    2/22/14 10:17:28.009 AM Installer[556]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    2/22/14 10:17:32.827 AM Installer[556]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    2/22/14 10:18:06.003 AM WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "Google Chrome" for over 1.00 seconds. Server has re-enabled them.
    2/22/14 10:18:07.697 AM coreservicesd[28]: Application App:"Google Chrome" [ 0x0/0x24024]  @ 0x0x7fcf4bc954d0 tried to be brought forward, but isn't in fPermittedFrontASNs ( ( ASN:0x0-0x6a06a:) ), so denying.
    2/22/14 10:18:07.710 AM WindowServer[78]: [cps/setfront] Failed setting the front application to Google Chrome, psn 0x0-0x24024, securitySessionID=0x186a4, err=-13066
    2/22/14 10:18:12.703 AM WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "Google Chrome" after 7.70 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/22/14 10:18:22.918 AM mdworker[563]: (Normal) Import: pre-plugin uti:public.data plugin:internalPlainTextImporter exceeded cpu use limits (1) after 20016 milliseconds - find suspect file using: sudo mdutil -t 492783
    2/22/14 10:18:49.948 AM sudo[576]:     root : TTY=unknown ; PWD=/private/tmp/PKInstallSandbox.iEbaHs/tmp ; USER=ericstrauss ; COMMAND=/usr/bin/defaults write com.microsoft.autoupdate2 Applications -dict-add /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app { 'Application ID' = MSau02; LCID = 1033 ; }
    2/22/14 10:18:52.985 AM sudo[579]:     root : TTY=unknown ; PWD=/private/tmp/PKInstallSandbox.iEbaHs/tmp ; USER=ericstrauss ; COMMAND=/usr/bin/defaults write com.microsoft.autoupdate2 Applications -dict-add /Library/Application Support/Microsoft/MERP2.0/Microsoft Error Reporting.app { 'Application ID' = Merp2; LCID = 1033 ; }
    2/22/14 10:19:05.937 AM Installer[556]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    2/22/14 10:19:06.801 AM coreaudiod[164]: Disabled automatic stack shots because audio IO is active
    2/22/14 10:19:07.637 AM coreaudiod[164]: Enabled automatic stack shots because audio IO is inactive
    2/22/14 10:20:00.196 AM WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "Google Chrome" for over 1.00 seconds. Server has re-enabled them.
    2/22/14 10:20:00.278 AM WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "Google Chrome" after 1.08 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/22/14 10:21:23.657 AM loginwindow[54]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    2/22/14 10:21:23.658 AM loginwindow[54]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    2/22/14 10:21:29.634 AM com.apple.launchd.peruser.501[130]: ([0x0-0x24024].com.google.Chrome[289]) Exited: Killed: 9
    2/22/14 10:21:29.773 AM coreservicesd[28]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=100
    2/22/14 10:21:29.789 AM coreservicesd[28]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=134
    2/22/14 10:21:42.513 AM mdworker32[586]: CGSGetDisplayBounds: Invalid display 0x00000000
    2/22/14 10:21:42.829 AM mdworker32[586]: bootstrap_look_up2 failed with 0x44c
    2/22/14 10:21:43.000 AM kernel[0]: Sandbox: sandboxd(587) deny mach-lookup com.apple.coresymbolicationd
    2/22/14 10:21:59.390 AM WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "Microsoft AutoUpdate" for over 1.00 seconds. Server has re-enabled them.
    2/22/14 10:21:59.403 AM WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "Microsoft AutoUpdate" after 1.04 seconds (server forcibly re-enabled them after 1.02 seconds)
    2/22/14 10:22:07.388 AM WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "Microsoft AutoUpdate" for over 1.00 seconds. Server has re-enabled them.
    2/22/14 10:22:09.166 AM WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "Microsoft AutoUpdate" after 2.86 seconds (server forcibly re-enabled them after 1.08 seconds)
    2/22/14 10:23:55.864 AM Dock[168]: no information back from LS about running process
    2/22/14 10:24:29.358 AM Installer[610]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    2/22/14 10:24:38.403 AM find_office[687]: /
    2/22/14 10:24:38.424 AM find_office[687]: 14.0.0.0.0
    2/22/14 10:24:38.438 AM find_office[687]: 14.0.9.999999.999999
    2/22/14 10:24:38.503 AM find_office[687]: CheckPath: "{ENV:RSTargetMount}/Applications/Microsoft Office 2011/Office/MicrosoftComponentPlugin.framework"
    2/22/14 10:24:38.527 AM find_office[687]: CheckPath found the following results:
    2/22/14 10:24:38.618 AM find_office[687]:     /Applications/Microsoft Office 2011/Office/MicrosoftComponentPlugin.framework (14.0.0.100825.0)
    2/22/14 10:25:19.018 AM Installer[610]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    2/22/14 10:25:20.049 AM Installer[610]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    2/22/14 10:25:23.311 AM Installer[610]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    2/22/14 10:25:53.817 AM coreservicesd[28]: Application App:"Installer" [ 0x0/0x74074]  @ 0x0x7fcf4be33870 tried to be brought forward, but isn't in fPermittedFrontASNs ( ( ASN:0x0-0x77077:) ), so denying.
    2/22/14 10:25:53.839 AM WindowServer[78]: [cps/setfront] Failed setting the front application to Installer, psn 0x0-0x74074, securitySessionID=0x186a4, err=-13066
    2/22/14 10:29:49.421 AM Dock[168]: no information back from LS about running process
    2/22/14 10:30:01.000 AM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=984[ksadmin] clearing CS_VALID
    2/22/14 10:31:20.000 AM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=1029[ksadmin] clearing CS_VALID
    2/22/14 10:31:23.180 AM mdworker[983]: (Normal) Import: pre-plugin uti:dyn.ah62d4rv4ge80e2pp plugin:internalPlainTextImporter exceeded cpu use limits (1) after 28765 milliseconds - find suspect file using: sudo mdutil -t 485613
    2/22/14 10:31:38.814 AM mdworker[1035]: (Normal) Import: pre-plugin uti:dyn.ah62d4rv4ge80e2pp plugin:internalPlainTextImporter exceeded cpu use limits (1) after 7351 milliseconds - find suspect file using: sudo mdutil -t 485613
    2/22/14 10:32:30.019 AM mdworker[1047]: (Normal) Import: pre-plugin uti:public.data plugin:internalPlainTextImporter exceeded cpu use limits (1) after 8166 milliseconds - find suspect file using: sudo mdutil -t 502280
    2/22/14 10:32:42.444 AM WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "Google Chrome" for over 1.00 seconds. Server has re-enabled them.
    2/22/14 10:32:45.625 AM WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "Google Chrome" after 4.18 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/22/14 10:33:05.352 AM mdworker[1073]: (Normal) Import: pre-plugin uti:public.data plugin:internalPlainTextImporter exceeded cpu use limits (1) after 7712 milliseconds - find suspect file using: sudo mdutil -t 502280
    2/22/14 10:34:02.014 AM mdworker[1109]: (Normal) Import: pre-plugin uti:public.data plugin:internalPlainTextImporter exceeded cpu use limits (1) after 4056 milliseconds - find suspect file using: sudo mdutil -t 503064
    2/22/14 10:34:21.827 AM mdworker[1130]: (Normal) Import: pre-plugin uti:public.data plugin:internalPlainTextImporter exceeded cpu use limits (1) after 6355 milliseconds - find suspect file using: sudo mdutil -t 503064
    2/22/14 10:34:30.447 AM com.apple.launchd.peruser.501[130]: ([0x0-0x78078].com.google.Chrome[976]) Exited: Killed: 9
    2/22/14 10:34:30.856 AM spindump[1137]: Google Chrome [976] unable to symbolicate
    2/22/14 10:34:51.454 AM WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "Console" for over 1.00 seconds. Server has re-enabled them.
    2/22/14 10:34:51.568 AM WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "Console" after 2.08 seconds (server forcibly re-enabled them after 1.96 seconds)
    2/22/14 10:34:57.244 AM coreservicesd[28]: SendFlattenedData, got error #268435459 (ipc/send) invalid destination port from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=412
    2/22/14 10:36:35.000 AM kernel[0]: Sandbox: xpcd(160) deny ipc-posix-shm-read-data /tmp/com.apple.csseed.28
    2/22/14 10:38:16.556 AM com.apple.launchd.peruser.501[130]: ([0x0-0x8e08e].com.apple.Notes[1332]) Exited: Terminated: 15
    2/22/14 10:38:21.197 AM com.apple.launchd.peruser.501[130]: ([0x0-0x8d08d].com.apple.TextEdit[1255]) Exited: Terminated: 15
    2/22/14 10:39:19.812 AM xpcd[160]: restored permissions (100644 -> 100744) on /Users/ericstrauss/Library/Containers/com.apple.TextEdit/Container.plist
    2/22/14 10:39:20.011 AM xpcd[160]: TextEdit[1255]: registration request failed: (0x10, 0x3) xpc_domain_import() failed with code 0x44e
    2/22/14 10:39:32.097 AM com.apple.security.pboxd[1428]: Bug: 12F45: liblaunch.dylib + 23849 [2F71CAF8-6524-329E-AC56-C506658B4C0C]: 0x25
    2/22/14 10:39:35.993 AM com.apple.security.pboxd[1428]: CGSGetWindowTags: Invalid window 0x15c
    2/22/14 10:39:35.994 AM com.apple.security.pboxd[1428]: kCGErrorFailure: CGSSetHideOnDeact: error getting window tags
    2/22/14 10:39:36.565 AM librariand[1418]: [ERROR] [0.000s] com.apple. framework_client.c:794 IPCSyncingEnabled() failed to contact ubd: -1
    2/22/14 10:39:37.159 AM TextEdit[1372]: RVS:__54-[NSRemoteSavePanel _runOrderingOperationWithContext:]_block_invoke_0319 : Timeout occured while waiting for the window
    2/22/14 10:40:07.035 AM librariand[1418]: MMe quota status changed: under quota
    2/22/14 10:40:08.950 AM librariand[1418]: MMe quota status changed: under quota
    2/22/14 10:40:32.993 AM WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "com.apple.security.pboxd" for over 1.00 seconds. Server has re-enabled them.
    2/22/14 10:40:33.458 AM TextEdit[1372]: RVS:__54-[NSRemoteSavePanel _runOrderingOperationWithContext:]_block_invoke_0319 : Timeout occured while waiting for the window
    2/22/14 10:40:35.621 AM WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "TextEdit" for over 1.00 seconds. Server has re-enabled them.
    2/22/14 10:40:38.706 AM WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "com.apple.security.pboxd" after 6.71 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/22/14 10:40:48.160 AM WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "com.apple.security.pboxd" for over 1.00 seconds. Server has re-enabled them.
    2/22/14 10:40:51.220 AM WindowServer[78]: disable_update_likely_unbalanced: UI updates still disabled by application "TextEdit" after 16.60 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    2/22/14 10:40:58.774 AM librariand[1418]: UBCopyItemListForPath(file://localhost/Users/ericstrauss/Library/Mobile%20Docum ents/.localized) returned nil
    2/22/14 10:40:58.816 AM librariand[1418]: UBCopyItemListForPath(file://localhost/Users/ericstrauss/Library/Mobile%20Docum ents/.localized) returned nil
    2/22/14 10:40:58.860 AM librariand[1418]: UBCopyItemListForPath(file://localhost/Users/ericstrauss/Library/Mobile%20Docum ents/.localized) returned nil
    2/22/14 10:40:59.776 AM ubd[1419]: objc[1419]: Object 0x7feeb0c22f80 of class NSUserDefaults autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    2/22/14 10:40:59.778 AM ubd[1419]: objc[1419]: Object 0x7feeb0c22f80 of class NSUserDefaults autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
    2/22/14 10:41:02.159 AM WindowServer[78]: disable_update_likely_unbalanced: UI updates still disabled by application "com.apple.security.pboxd" after 15.00 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    2/22/14 10:41:04.723 AM librariand[1418]: TODO: unhandled delete of container file://localhost/Users/ericstrauss/Library/Mobile%20Documents/com~apple~shoebox
    2/22/14 10:41:52.142 AM WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "TextEdit" after 77.52 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/22/14 10:41:52.633 AM WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "com.apple.security.pboxd" after 65.48 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/22/14 10:41:52.837 AM com.apple.security.pboxd[1428]: CGSGetWindowTags: Invalid window 0x167
    2/22/14 10:41:52.847 AM com.apple.security.pboxd[1428]: kCGErrorFailure: CGSSetHideOnDeact: error getting window tags
    2/22/14 10:41:54.609 AM WindowServer[78]: CGXDisableUpdate: UI updates were forcibly disabled by application "TextEdit" for over 1.00 seconds. Server has re-enabled them.
    2/22/14 10:42:08.610 AM WindowServer[78]: disable_update_likely_unbalanced: UI updates still disabled by application "TextEdit" after 15.00 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    2/22/14 10:42:22.042 AM WindowServer[78]: reenable_update_for_connection: UI updates were finally reenabled by application "TextEdit" after 28.43 seconds (server forcibly re-enabled them after 1.00 seconds)

  • No application open, running really slow

    I have a macbook bought in 2007 with 10.4.11, 2 Ghz, 1 GB 667 Mhz DDR2 SDRAM. It just started being really slow with everything even scrolling down a page (when one could be opened) and when you click on any application, iphoto, itunes, word, mail etc they bounce for a while then nothing, and if you click on them again after that they bounce once and stop. I have checked in disk utility and verified and repaired the drive as well as permissions. I have started it up in single user mode and checked the file structure of the HDD by enetering "/sbin/fsck -f". I have started it with osx disk (holding down 'c') and checked disk utility that way and done first aid and repairs also. NOTHING!!!!!!!! Any help please.

    Welcome to Apple Support Communities.
    Since you've already verified the relative health of your hard disk, it sounds like you are running extremely short of hard disk space. If you have less than 10% to 15% of your hard disk space free, performance suffers.
    You only have 1Gb system RAM, so if you are running more than one program at a time, it fills up available free  RAM quickly. When you scroll down a web page, the system is trying to write RAM contents to hard disk. Disk access is significantly slower than RAM access, so your system runs more slowly. 
    'Stuck' programs (often printing apps) can also use lots of CPU cycles and slow system performance. But restarting the system should have 'cured' that.

  • After effects & Illustrator really slow on a fast computer :S

    In serious need of a computer genius. I have a computer that should have a great performance although till now it's acting frustratingy slow with the Adobe Programs. I have the legal Adobe Creative Cloud. I mainly use Illustrator and After Effects and that is where I noticed the problems.
    Illustrator: slows down over time. Over a period of half an hour the program gets extremely slow and laggy (happens with every project).
    After Effects: Is really slow with rendering. Also RAM render goes extremely slow even with very very simple projects. (even a shape layer that only moves from the left to the right is RAM rendering frame per frame and takes half a second to render every frame -_-).
    It's not workable. I have tried all kinds of forums and have all the settings of After Effects optimized.
    My windows device Manager and System Information sais that everything is working ok. The RAM is detected by the System and also After Effects detects the RAM.
    I don't know what the f*** is wrong.. Who can help me out?
    This are some specifications of my computer. If you need any more info let me know.
    OS Name Microsoft Windows 7 Home Premium
    Version 6.1.7601 Service Pack 1 Build 7601
    System Model MS-7751
    System Type x64-based PC
    Processor Intel(R) Core(TM) i5-3570K CPU @ 3.40GHz, 3401 Mhz, 4 Core(s), 4 Logical Processor(s)
    Display adapters NVIDIA GeForce GTX 660 Ti
    Disk Drivers Samsung SSD 840 PRO Series ATA Device
      WDC WD20EURS-63S48Y0 ATA Device
    BIOS Version/Date American Megatrends Inc. V10.8, 12/17/2012
    SMBIOS Version 2.7
    Installed Physical Memory (RAM) 32.0 GB
    Total Physical Memory 16.0 GB
    Available Physical Memory 13.6 GB
    Total Virtual Memory 32.0 GB
    Available Virtual Memory 29.7 GB
    Page File Space 16.0 GB

    Hi 421321312,
    Please refer the following help article from the illustrator point.
    http://helpx.adobe.com/illustrator/kb/optimize-performance-illustrator-cs4-cs5.html
    Hope this helps,
    Regards,
    Sumit Singh

  • Start to print and then it prints really slow or stops all together. Desktop computer "Compac"

    My printer is an HP DESKJET3050A ALL-IN-ONE J611 SERIES.  Operating system installed is Windows XP  No i have not made any changes

    It sounds like the printer is not getting enough power or there may be a faulty ink cartridge.
    To confirm if it is isolated to the printer or somewhere else, try copying a page to see if it is printing slow from a copy.
    Is the printer connected to a surge protector?  If so, try connecting the printer directly to a wall outlet.  Did this help?
    The next step is to look at the ink cartridges.  An easy test to see if the cartridges may be at fault is to try printing a text only document with the black ink cartridge removed.  
    Did it still print slow? It will still be slow since it will be mixing the colors to make black, but it should be faster than it was before if a faulty cartridge was at fault.
    If it still print really slow with the black cartridge removed, try putting the black back in and removing the color cartridge.  Did it still print slow?
    Let me know what happens.
    ↙-----------How do I give Kudos?| How do I mark a post as Solved? ----------------↓

Maybe you are looking for