Feeding dynamic data into formula is causing slow execution and weird results

I am gathering 11 channels of analog input voltage, then performing a series of (different, editable) calculations on each channel of voltage to convert each to sensor temperature.
My first stage of calculations (using multiply, subtract, and divide blocks) works fine.
My second stage of calculations (which includes a natural log "ln") is being performed with the formula block. However, the formula block has three red arrows where the input constants are, and the results of the formula block are intermittent and incorrect (if plotted, the plot just flashes what looks like a value of 1 intermittently... if saved to a csv file, the results show a bunch of zeros and then a row of values, then more zeroes).
I'm not sure if I need to be converting my dynamic data to an array before feeding into the formula, or if there's some other way applying a complex formula to dynamic data, or...? I'd like to stick with dynamic data because it makes plotting things easier, but I'm open to other suggestions.
Solved!
Go to Solution.
Attachments:
Capture1.PNG ‏53 KB
Capture2.PNG ‏20 KB

Converting from a waveform to a double array makes you lose time information.
Index Array can be expanded to index out as many items as you need.
He meant Coercion Dots.  The spellcheck probably went to cocoon.
There are only two ways to tell somebody thanks: Kudos and Marked Solutions
Unofficial Forum Rules and Guidelines

Similar Messages

  • How to download the Dynamic data into PPT format

    Hi Friends,
    I have one doubt on WDJ. How to download the Dynamic data into PPT format. For Example Some Dynamic data is available in to View in that One Download Link or button available. Click on Download link or button download that data into PPT Format
    Is it possible for WDJ. If possible please tell me.
    Or
    How to create Business Graphics in Web Dynpro Applications depening up on Excel Data and finally we can download the  Business Graphics  into powerpoint presentation.
    Thank you,
    Regards
    Vijay Kalluri
    Edited by: KalluriVijay on Mar 11, 2011 6:34 AM

    Hi Govindu,
    1. I have one doubt on WDJ. Click on either Submit Buttion or LinkToURL UI we can download the file that file having ppt formate(Text.PPT).
    I am using NWDS Version: 7.0.09 and Java Version: JDK 1.6
    2. is it possible to download the business Graphics in to the PPT by using Java DynPro
    Regards
    VijayK

  • How can I change a dynamic data into an integer representation I32?

    The result of formula box is a dynamic data. I need to change the representation into an integer representation I32. How can I do this?

    The I32 conversion icon is in Functions Palette -> Numeric -> Conversion -> To Long Integer. Wire the formula output to the I32 input. The output will be of I32 type.
    - tbob
    Inventor of the WORM Global

  • Break dynamic data into sections in a table

    I have some data that is being dynamically output into a table. I have multiple line items for each ECO Number on their own rows. For instance:
    ECO
    Part Number
    Revision
    1
    C4520
    A
    1
    C5680
    B
    1
    C8902
    A
    2
    C5000
    B
    2
    C5050
    C
    2
    C4950
    A
    How can I put in a blank line between the ECO sections of data. For instance, after the third line of ECO 1, there should be a blank line so I can break each section apart of ECO's. It should look like this:
    Header 1
    Header 2
    Header 3
    1
    C4520
    A
    1
    C5680
    B
    1
    C8902
    A
    2
    C5000
    B
    2
    C5050
    C
    2
    C4950
    A
    I have tried putting another row in the table, but it just puts a row after all this dynamic info. I've tried breaks everywhere too. So how do I keep the sections together and then break each section apart?
    Andy

    I have a cfloop query though, and not an output query. Will the group fuction work with cfloops? It seems not to since it gives me error on the page.  It says the tag does not allow the attribute group.
    Here's what I have:
    <cfloop query="PNRBOMSearch">
    <tr>
    <td align="center">
    <cfif ECID is not "">
    <!--- <a href="item_display.cfm?ECID=#ECID#">#ECID#</a> --->
    #ECID#
    <cfelse>
     </cfif>
    </td>
    <td width="auto">
    <cfif Part_Number Is Not "">
    #Part_Number#
    <cfelse>
     </cfif>
    </td>
    <td align="center">
    <cfif PNR_Initials Is Not "" and PNR_Initials EQ cookie.UserInitials>
    #cookie.UserInitials#
    <cfelse>
    </cfif>
    </td>
    <td>
    <cfif PNR_Initials Is Not "" and PNR_Initials EQ cookie.UserInitials>
    <input type="text" name="PNR_Rev" value="#Trim(PNR_Rev)#" size="4">
    <cfelse>
    </cfif>
    </td>
    <td align="center">
    <cfif BOM_Initials Is Not "" and BOM_Initials EQ cookie.UserInitials>
    #cookie.UserInitials#
    <cfelse>
    </cfif>
    </td>
    <td>
    <cfif BOM_Initials Is Not "" and BOM_Initials EQ cookie.UserInitials>
    <input type="text" name="BOM_Rev" value="#Trim(BOM_Rev)#" size="4">
    <cfelse>
    </cfif>
    </td>
    <td>
      <input type="radio" name="PNR_Queue_TM" value="1"
      <cfif PNR_Queue_TM EQ 1>checked</cfif>>Yes  
      <input type="radio" name="PNR_Queue_TM" value="0"
      <cfif PNR_Queue_TM EQ 0>checked</cfif>>No
    </td>
    </tr>
    <cfelse>
    </cfif>
    </cfloop>
    Thanks.
    Andy

  • Example: OO Dynamic data into table2 from corresponding fields in table1

    <b>*Parameter definition (copied from public section!)</b>
      class-methods TAB1_TO_TAB2
        importing
          !TAB1 type ANY TABLE
          !METH type BOOLEAN default 'C'
          !REF2 type BOOLEAN default 'X'
        exporting
          !TAB2 type ANY TABLE .
    <b>*Method definition</b>
    METHOD tab1_to_tab2 .
      FIELD-SYMBOLS: <fs1> TYPE ANY.
      FIELD-SYMBOLS: <fs2> TYPE ANY.
      DATA: lineref  TYPE REF TO data.
      CREATE DATA lineref LIKE LINE OF tab2.
      ASSIGN lineref->* TO <fs2>.
    *Refresh if needed
      IF ref2 = 'X'. REFRESH tab2. ENDIF.
    *Build Table 2 from table 1
      LOOP AT tab1 ASSIGNING <fs1>.
        MOVE-CORRESPONDING <fs1> TO <fs2>.
        CASE meth.
          WHEN 'C'. COLLECT <fs2> INTO tab2.
          WHEN 'I'. INSERT  <fs2> INTO TABLE tab2.
        ENDCASE.
      ENDLOOP.
    ENDMETHOD.
    <b>*Example call pgm</b>
    REPORT  zrgmtest6                               .
    DATA:
    vbap_t1 TYPE TABLE OF vbap,
    vbak_t1 TYPE TABLE OF vbak.
    START-OF-SELECTION.
      SELECT * FROM vbap INTO TABLE vbap_t1.
      z_gen1=>tab1_to_tab2( EXPORTING tab1 = vbap_t1 IMPORTING tab2 = vbak_t1 ).

    Yes, aRs - thanks.
    Someone in the shop here had an example that I coded from, and it's like yours:
    REPORT  ZFOO.
    TABLES:
      /sapapo/trprod,
      /sapapo/matkey.
    TYPES:
      BEGIN OF tx_trprod_new,
        MATID                TYPE /SAPAPO/MATID,     
        matnr               TYPE /sapapo/matnr,
      END   OF tx_trprod_new.
    DATA:
      it_trprod_new          TYPE STANDARD TABLE OF tx_trprod_new,
      v_num          TYPE i.
      SELECT /sapapo/trprod~matid
             /sapapo/matkey~matnr
        FROM /sapapo/trprod
             JOIN /sapapo/matkey ON /sapapo/trprod~matid = /sapapo/matkey~matid
        INTO
       TABLE it_trprod_new
       WHERE /sapapo/trprod~matid LIKE 'H%'.

  • Wordpress dynamic data into Edge Animate

    Hello. I want to know hoy to create a "recent posts" in a Edge animate slider, out of a wordpress blog. Thank you.

    Try the following updated code in the sample: (I've also uploaded the updated sample @ https://www.dropbox.com/s/fqip7qbm3wkvu60/widgets1.zip). Hope this is what you are looking for.
    fbCode += '<div class="fb-like-box" data-href="www.facebook.com/EBcoffeeandpub" \
      data-width="300" data-height="400" \
      data-colorscheme="light" \
      data-show-faces="false" \
      data-header="true" \
      data-stream="true" \
      data-show-border="true"></div>';
    I have never used an activity widget, but as per the documentation it displays the most interesting, recent activity taking place on your site, using actions (such as likes) by your friends and other people. You may need to set the following attributes for your case:
        class="fb-activity"
        data-site="developers.facebook.com"
        data-filter="EBCofeeandpub"
        data-action="likes, recommends"
    -Dharmendra

  • Reading Data into a PDF form with cfpdfform and cfpdfformparam

    I have been trying to read data from a query into a PDF form. I have the application setup to generate a new pdf file for every record in the database table which is working perfectly, but when I try to have the application pre-populate the form fields in the pdf form they remain empty. I have included a snippet of the code that creates the PDF documents. I am using Adobe LiveCycle Designer 8.0 to create the PDF form.
    Snippet Example:
    <cfoutput query="renewals">
    <cfset new_file = "#reportnumber#.pdf" />
    <cfpdfform action = "populate" source = "beta.pdf" destination = "#new_file#">
      <cfpdfformparam name="Legal_Contact_Name" value="#LegalContactName#">
    </cfpdfform>
    <cfpdf action = "write" source = "#new_file#" destination = "#new_file#" flatten = "yes" overwrite  = "yes" />
    </cfoutput>
    All help is greatly appreciated...

    I'm just glad I might be of any help.
    First, make sure the image is embeded as a base64 encoded string in the xml structure you're working with on your form you've built in LiveCycle Designer.
    I do this by reading the image file and outputing its content as a base64 string:
    <cffile action="read" file="#expandPath('Path/to/your/image/file/BC.TIF')#" variable="imgObj" />
    <img>#toBase64(imgObj)#</img>
    Your PDF form should be bound to this 'img' field from your xml structure in LiveCycle Designer.
    This works perfectly and the image from the xml is indeed displayed in the PDF form generated with cfpdf.
    BUT, from the moment you convert the pdf form to static pdf document, the image will be gone - the dynamic text remains.
    Note:  I never further investigated why the image disapears once the pdf form is converted to 'static' pdf.  Thinking about it now, it might have been an incoding issue.  The toBase64() function in ColdFusion has an optional "Encoding" argument, may be by playing with the encoding the image might finally 'survive' the conversion to static pdf.
    Good luck.
    note: this will populate the pdf form from your xml structure in ColdFusion.
    <cfpdfform action="populate" source="/path/to/LiveCycle_generated_templateForm.pdf" xmldata="#your_xml_structure#" destination="/path/to/result.pdf" overwrite="yes" />

  • Dynamic data flow from sales order to delivery and vice-versa

    Hi Experts,
    One of our teams working for a client (transportation industry) on ECC 6.0 is facing an issue in relation to copying of partner data. (Ship-to-party address field changes to be precise)
    Currently, whenever the partner address data changed in a Sale order, though delivery is already created prior to this change, the change done is dynamically getting reflected in delivery too. Further, if the partner data in the delivery is changed, this also is getting updated on the preceding document i.e. sales order.
    We have checked the copy controls under VTLA and didn’t find any specific modifications made in this regard. Our question is:
    Is there any configuration available in standard SAP through which the data updates (like header data viz. partner field data etc.) get dynamically updated forward and backwards in a sales flow(i.e. from sales order to delivery and vice-versa)
    Your help on this will be highly appreciated.
    Regards,
    Jagan

    if the partner data in the delivery is changed, this also is getting updated on the preceding document i.e. sales order.
    The standard functionality is if you change the address of a partner function, the same will get reflected in an existing sale order.  This being the case, can you reconfirm your statement that in delivery, if you change the partner function, the same will get updated in sale order also?
    G. Lakshmipathi

  • Download internal table data into excel sheet with column heading and data

    Hi,
      I am having one internal table with column headings and other table with data.
    i want to download the data with these tables into an excel sheet.
    It should ask the user for file name to save it on their own name. They should give the file name in runtime and it should be downloaded into an excel sheet.
    Can anyone tell what is the right function module for downloading these two internal table data with column heading and data.
    what we have to do for storing the file name in runtime.
    Can anyone help me on this.
    Thanks,
    Rose.

    Hi Camila,
        Try this
    CALL FUNCTION 'GUI_DOWNLOAD'
      EXPORTING
        FILENAME                        = PATH2
       FILETYPE                        = 'XLS'
      TABLES
        DATA_TAB                        = IT_DATA
       FIELDNAMES                      = IT_HEADINGS
    EXCEPTIONS
       FILE_WRITE_ERROR                = 1
       NO_BATCH                        = 2
       GUI_REFUSE_FILETRANSFER         = 3
       INVALID_TYPE                    = 4
       NO_AUTHORITY                    = 5
       UNKNOWN_ERROR                   = 6
       HEADER_NOT_ALLOWED              = 7
       SEPARATOR_NOT_ALLOWED           = 8
       FILESIZE_NOT_ALLOWED            = 9
       HEADER_TOO_LONG                 = 10
       DP_ERROR_CREATE                 = 11
       DP_ERROR_SEND                   = 12
       DP_ERROR_WRITE                  = 13
       UNKNOWN_DP_ERROR                = 14
       ACCESS_DENIED                   = 15
       DP_OUT_OF_MEMORY                = 16
       DISK_FULL                       = 17
       DP_TIMEOUT                      = 18
       FILE_NOT_FOUND                  = 19
       DATAPROVIDER_EXCEPTION          = 20
       CONTROL_FLUSH_ERROR             = 21
       OTHERS                          = 22

  • How to edit/update data into an XML file using Flex and Actionscript

    I can read an external xml file, please see the code below:
    protected function button1_clickHandler(event:MouseEvent):void
    var GrowthChartsDataGrid:XML;
    var loader:URLLoader = new URLLoader();
    var request:URLRequest = new URLRequest("../GrowthChartsDataGrid.xml");
        loader.load(request);
        loader.addEventListener(Event.COMPLETE, onComplete)
    function onComplete (event:Event)
         var loader:URLLoader = URLLoader(event.target);
         GrowthChartsDataGrid = new XML(loader.data);
         GrowthChartsDataGrid.GrowthChartGridView += <Month> {txtMonth.text} <Weight> {txtWeight.text} </Weight> </Month>
         texttesting.text = GrowthChartsDataGrid.toString();
    I can read an XML file and can add an extra node and can display it in a text filed. But I want to update the XML file contents which will come from the txtMonth and txtWeight text boxes.
    Please any suggestions???

    First of all thanks for your quick reply .
    I actually want to add another node inthe xml file. Files is at a local location and i can read the file and add an extra node (but I cant store this extra node in the actual XML file). But I want to save XML with the extra node.
    For exmaple,
    my current xml is:
    <?xml version="1.0" encoding="utf-8"?>
    <GrowthChartGridView>
        <Month> 1
        <Weight>3.5</Weight></Month>
    <Month> 2
        <Weight>3.9</Weight></Month>
    <Month> 3
        <Weight>4.5</Weight></Month>
    </GrowthChartGridView>
    and at run time, I can create a new node using the data from two textboxes at button click event.
         GrowthChartsDataGrid.GrowthChartGridView += <Month> {txtMonth.text} <Weight> {txtWeight.text} </Weight> </Month>
    Now what I want to do is, I want to add this node back in to my XML. Therefore, the result I am looking for is, my local XML should update like this.
    <?xml version="1.0" encoding="utf-8"?>
    <GrowthChartGridView>
        <Month> 1
        <Weight>3.5</Weight></Month>
    <Month> 2
        <Weight>3.9</Weight></Month>
    <Month> 3
        <Weight>4.5</Weight></Month>
    <Month> {txtMonth.text} <Weight> {txtWeight.text} </Weight> </Month>  //I can read data from text boxes so its fine but I can not store this in to                                                                                                          my original XML
    </GrowthChartGridView>
    Thanks

  • Adobe Reader 8.1 causing slow down and crashes

    Despite safely using 7.0 for years, when I updated to 8.1, my computer slowed to a snail's pace and froze frequently, more than hourly. I have definitely traced the problem to Adobe Reader 8.1 (8.1.2?)because the problems disappeared the several times I uninstalled it. I am now using 7.0 without any problems. Does any one have an idea what the problem is? Can I ever safely upgrade to Version 8?

    The link to the Reader forum is at the top of this forum.

  • I am a new Mac owner. I downloaded a document off of Sharepoint but I cannot input data into it.I have Office Mac2011 and I did enable Macros.Thank you for your help.

    I am a new MacBook Pro owner. I have Microsoft Office: Mac2011 I downloaded a document from Sharepoint. I clicked on the document to open it.....I then clicked on Enable Macro and the document opens, but will not allow me to input data. Thank for any help.

    Hey TobynJ:
    Sharepoint will use your network username or password if it is setup that way, but I'm not talking talking about that.  I am talking about permissions to be able to write to the document, you might only have read rights and not write.

  • Mavericks causing slow finder and more

    Since upgrading to Mavericks I am having issues with findder, deleting files that keep deleting forever. WHen trying to open a file through lets say Photoshop it takes 2 minutes for it to see any file in the folder I have browsed to.  Not to mention other issues like my screen freezing up and going all garbley.
    Here is my EtreCheck
    Hardware Information:
              iMac (24-inch, Early 2009)
              iMac - model: iMac9,1
              1 2.66 GHz Intel Core 2 Duo CPU: 2 cores
              8 GB RAM
    Video Information:
              NVIDIA GeForce 9400 - VRAM: 256 MB
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0
              AirPlay: Version: 1.9
              AppleAVBAudio: Version: 2.0.0
              iSightAudio: Version: 7.7.3
    Startup Items:
              MimocoSoundByte - Path: /Library/StartupItems/MimocoSoundByte
              ProTec6 - Path: /Library/StartupItems/ProTec6
              ProTec6b - Path: /Library/StartupItems/ProTec6b
              tap - Path: /Library/StartupItems/tap
              tun - Path: /Library/StartupItems/tun
    System Software:
              OS X 10.9 (13A603) - Uptime: 0 days 3:41:22
    Disk Information:
              WDC WD6400AAKS-40H2B0 disk0 : (640.14 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) /: 639.28 GB (90.36 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              OPTIARC DVD RW AD-5670S 
    USB Information:
              Apple Inc. Built-in iSight
              Apple Computer, Inc. IR Receiver
              Wacom Co.,Ltd. Intuos5 touch M
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
    FireWire Information:
    Thunderbolt Information:
    Kernel Extensions:
              com.metakine.handsoff.driver          (1.0.4)
              com.hzsystems.terminus.driver          (4)
              com.vara.driver.VaraAudio          (1.0.3)
              foo.tap          (1.0)
              foo.tun          (1.0)
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist
              [loaded] com.adobe.SwitchBoard.plist
              [loaded] com.micromat.TechToolProDaemon.plist
              [failed] com.slinkware.slinkDaemon.plist
              [loaded] org.macosforge.xquartz.privileged_startx.plist
    Launch Agents:
              [not loaded] com.adobe.AAM.Updater-1.0.plist
              [loaded] com.brother.LOGINserver.plist
              [loaded] com.micromat.TechToolProAgent.plist
              [loaded] com.wacom.wacomtablet.plist
              [loaded] net.culater.SIMBL.Agent.plist
              [loaded] org.macosforge.xquartz.startx.plist
    User Launch Agents:
              [loaded] com.adobe.AAM.Updater-1.0.plist
              [loaded] com.adobe.ARM.[...].plist
              [loaded] com.adobe.ARM.[...].plist
              [failed] com.apple.SafariBookmarksSyncer.plist
              [loaded] com.divx.agent.postinstall.plist
              [loaded] com.google.keystone.agent.plist
              [loaded] com.vemedio.Snowtape.RadioAgent.plist
              [not loaded] ws.agile.1PasswordAgent.plist
    User Login Items:
              iTunesHelper
              AllBookmarks
              BusyCalAlarm
              Cinch
              TotalFinder
              Divvy
              Fantastical
              SizeUp
              DDAssist
              Alarms
              GoFlex Home Agent
              TextExpander
              TextExpander 3.4.2
              TextExpander
              BambooCore
    3rd Party Preference Panes:
              Flash Player
              Flip4Mac WMV
              Java
              MacFUSE
              Perian
              TechTool Protection
              WacomTablet
    Internet Plug-ins:
              AdobeExManDetect.plugin
              AdobePDFViewer.plugin
              AdobePDFViewerNPAPI.plugin
              Default Browser.plugin
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              Flip4Mac WMV Plugin.plugin
              JavaAppletPlugin.plugin
              QuickTime Plugin.plugin
              RealPlayer Plugin.plugin
              Silverlight.plugin
              WacomNetscape.plugin
              WacomTabletPlugin.plugin
    User Internet Plug-ins:
              CitrixOnlineWebDeploymentPlugin.plugin
              NPRoblox.plugin
    Bad Fonts:
              None
    Time Machine:
              Skip System Files: NO
              Mobile backups: OFF
              Auto backup: NO
              Volumes being backed up:
                        Macintosh HD: Disk size: 639.28 GB Disk used: 548.91 GB
              Destinations:
                        GoFlex Home Backup [Network] (Last used)
                        Total size: Zero KB
                        Total number of backups: (null)
                        Size of backup disk: Too small
                                  Backup size Zero KB < (Disk used 548.91 GB X 3)
    Top Processes by CPU:
                   6%          WindowServer
                   3%          WacomTabletDriver
                   2%          EtreCheck
                   2%          bluetoothaudiod
                   2%          WacomTouchDriver
                   1%          Disk Utility
                   1%          Cinch
                   1%          iTunes
                   0%          powerd
                   0%          coreaudiod
    Top Processes by Memory:
              532 MB             Adobe Photoshop CS6
              254 MB             PluginProcess
              213 MB             com.apple.IconServicesAgent
              164 MB             iTunes
              139 MB             mds_stores
              115 MB             softwareupdated
              106 MB             Safari
              106 MB             WindowServer
              79 MB              com.apple.WebKit.WebContent
              74 MB              installd
    Virtual Memory Statistics:
              2.30 GB            Free RAM
              3.48 GB            Active RAM
              1.19 GB            Inactive RAM
              799 MB             Wired RAM
              796 MB             Page-ins
              0 B                Page-outs

    Try a safe boot (restart, hold down shift until you see the Apple logo). If this eliminates the symptom, then you know the problem is with some third-party software you have installed. Mac OS X: What is Safe Boot, Safe Mode?
    You have a lot of third party stuff added on to your computer which is probably not compatible with Mavericks.
    I bet that a safe boot will show you a speedy mac again.
    A few things I can comment on:
      [loaded] com.micromat.TechToolProDaemon.plist
      [loaded] com.micromat.TechToolProAgent.plist
    Techtool is nice but I wouldn't let it install any of its monitoring software, like this Daemon and its buddy Agent.
              [loaded] com.google.keystone.agent.plist
    Google drive is not compatible with Mavericks.
              [not loaded] ws.agile.1PasswordAgent.plist
    1Password is unnecessary, now that iCloud does keychains, and does it better.
    [loaded] net.culater.SIMBL.Agent.plist
    SIMBL is a chronic offender, GUI changer.
    User Launch Agents:
              [loaded] com.adobe.AAM.Updater-1.0.plist
              [loaded] com.adobe.ARM.[...].plist
              [loaded] com.adobe.ARM.[...].plist
              [failed] com.apple.SafariBookmarksSyncer.plist
              [loaded] com.divx.agent.postinstall.plist
              [loaded] com.google.keystone.agent.plist
              [loaded] com.vemedio.Snowtape.RadioAgent.plist
              [not loaded] ws.agile.1PasswordAgent.plist
    User Login Items:
              iTunesHelper
              AllBookmarks
              BusyCalAlarm
              Cinch
              TotalFinder
              Divvy
              Fantastical
              SizeUp
              DDAssist
              Alarms
              GoFlex Home Agent
              TextExpander
              TextExpander 3.4.2
              TextExpander
              BambooCore
    I think you can see where I'm going with this.
    You have a ton of user login items, launch agents, and user launch agents.
    In some cases you have multiple copies of each. You are a promiscuous downloader!
    I'd go through the list and eliminate what you don't really need, which is proably most of it.
    There's so much extraneous stuff on there, if I were you, I'd backup my documents and erase the HD and do a clean install. And then start over and not install all this stuff that you don't need. You are spending a lot of time with things that change the GUI where it doesn't need changing, and monitor your mac where it doesn't need monitoring (like TechTool), as opposed to actually doing stuff with your mac. All of this extraneous stuff is costly in terms of memory and CPU cycles. But then, that's a personal choice. I try to avoid software like this and just stick to the basics: Logic, iWork, iTunes.
    Just for comparison, if you're interested, here's my Etrecheck report:
    Hardware Information:
              MacBook Pro (15-inch, Early 2011)
              MacBook Pro - model: MacBookPro8,2
              1 2 GHz Intel Core i7 CPU: 4 cores
              8 GB RAM
    Video Information:
              Intel HD Graphics 3000 - VRAM: 512 MB
              AMD Radeon HD 6490M - VRAM: 256 MB
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0
              AirPlay: Version: 1.9
              AppleAVBAudio: Version: 2.0.0
              iSightAudio: Version: 7.7.3
    System Software:
              OS X 10.9 (13A603) - Uptime: 2 days 11:54:16
    Disk Information:
              Samsung SSD 840 PRO Series disk0 : (512.11 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Untitled (disk0s2) /: 499.12 GB (400.89 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
                        eDrive (disk0s4) /Volumes/eDrive: 12 GB (4.65 GB free)
              HL-DT-ST DVDRW  GS31N 
    USB Information:
              Apple Inc. iPhone
              Apple Computer, Inc. IR Receiver
              Apple Inc. FaceTime HD Camera (Built-in)
              Apple Inc. iPhone
              Apple Inc. Apple Internal Keyboard / Trackpad
              Apple Inc. BRCM2070 Hub
                        Apple Inc. Bluetooth USB Host Controller
    FireWire Information:
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Kernel Extensions:
              at.obdev.nke.LittleSnitch          (4052)
    Problem System Launch Daemons:
    Problem System Launch Agents:
    Launch Daemons:
              [loaded] at.obdev.littlesnitchd.plist
              [loaded] com.adobe.fpsaud.plist
              [loaded] com.raynersw.nshctldo.plist
              [loaded] org.cindori.AuthHelper.plist
    Launch Agents:
              [loaded] at.obdev.LittleSnitchUIAgent.plist
    User Launch Agents:
    User Login Items:
              iTunesHelper
              Dropbox
              Caffeine
    3rd Party Preference Panes:
              Flash Player
    Internet Plug-ins:
              Default Browser.plugin
              Flash Player.plugin
              FlashPlayer-10.6.plugin
              QuickTime Plugin.plugin
    User Internet Plug-ins:
    Bad Fonts:
              None
    Time Machine:
              Auto backup: YES
              Volumes being backed up:
                        Untitled: Disk size: 499.12 GB Disk used: 98.23 GB
              Destinations:
                        Fantom [Local] (Last used)
                        Total size: 999.86 GB
                        Total number of backups: 1
                        Oldest backup: 2013-11-03 16:31:36 +0000
                        Last backup: 2013-11-03 16:31:36 +0000
                        Size of backup disk: Adequate
                                  Backup size 999.86 GB > (Disk used 98.23 GB X 3)
    Top Processes by CPU:
                   4%          WindowServer
                   2%          EtreCheck
                   1%          fontd
                   0%          Little Snitch Agent
                   0%          mtmd
                   0%          Little Snitch Network Monitor
                   0%          com.apple.WebKit.Networking
                   0%          Dropbox
                   0%          loginwindow
                   0%          warmd
    Top Processes by Memory:
              197 MB             iTunes
              180 MB             com.apple.IconServicesAgent
              147 MB             softwareupdated
              139 MB             Safari
              123 MB             Finder
              115 MB             Pages
              115 MB             Mail
              98 MB              WindowServer
              82 MB              installd
              74 MB              Dropbox
    Virtual Memory Statistics:
              2.69 GB            Free RAM
              3.07 GB            Active RAM
              1010 MB            Inactive RAM
              1.24 GB            Wired RAM
              1.66 GB            Page-ins
              0 B                Page-outs
    item
    you
    me
    launch agents
    6
    1
    user launch agents
    8
    0
    user login items
    15
    3
    3rd party preference panes
    7
    1
    internet plugins
    13
    4

  • Slow framerates and weird shaders in game

    Inside the game "Sauerbraten" which is a 3D shooter, I get very low framerates and some surfaces with shaders have strange glitches on them.
    I have Mac OS X Leopard 10.5.2, and I have the game and OS up to date.
    To make sure this wasn't just with the game, I booted into Windows and started the game up, and I am getting great framerates, around 150-200FPS, running 1440x900, while on Mac OS X, I get around 8-40.
    To explain the shader thing:
    http://img176.imageshack.us/img176/8897/screenieqa3.jpg
    Thanks,
    Tundra-Conor.

    I just looked up the details of 'Sauerbraten' and it appears to be a PowerPC game.
    You're presumably running an Intel-based MacBook Pro (as you can boot into Windows) so the game will be running under PowerPC emulation. That's probably where the problem lies - it's not emulating very well(!)
    Edit: Actually there does seem to be a Universal Binary/Intel version. Make sure you've got that version not the PPC version.
    Message was edited by: Jim Pomme

  • Keyboard has slow input, and weird output

    My macbook is behaving in very odd manner, as I type It seems to be following keyboard modifications, it sometimes slows down, other times moves the cursor to different areas. Or selects and deletes words, moves along the paragraph, etc, etc. I have no clue what is happening, but it is driving me nuts. Can anyone help?

    Still nothing. I am not ready to admit it is a hardware issue. I know that if I buy a new one and install it, i am going to have the same problem. There is no way that the Software Update and this just 'happened' at the same exact time. Any ideas????

Maybe you are looking for

  • Photoshop Elements 4.0 on macbook pro?

    Hi! Anyone know if it is possible to install Photoshop Elements 4.0 on macbook pro 10.6.4? Cause when I install it, restart computer, open the application then it says that something is invalid, name, licence nr, ... But I know that everything is cor

  • Any existing BAPI that can be wrapped and exposed as a web service ???

    Hi , I am designing PI Collaboration Platform and that all about Monitoring across SAP ECC, SAP PI and Non-SAP applications. BUSINESS CASE: Some clients are  looking for a solution that allows there management some visibility into the end-to-end aspe

  • Withholding tax type FE is not defined for country MY

    When I assign cocd to Fe (Withholding tax type for us-1099 fedral withholding tax) to us and unit 100. i get an error Withholding tax type FE is not defined for country MY.. pls help

  • Resizing Text Containers Based on Size of Adjacent Image Components

    I have a strange problem related to the size of a text component. Basically in my app I have a hbox 1000 pixels wide containing an image component on the left hand side which isn't scaled and it's content is dynamic meaning that upon clicking of cert

  • Is it possible to create a Solaris DVD?

    Does anyone know if it's possible to create a Solaris 9 DVD from the installation cds? I find it rather impossible, I'm just wondering... Maybe a live Solaris cd/dvd?