Can't get CPU bound!

Has anyone have any suggestions for the following set-up:
we have a 4 Processor NT box with 512MB memory, 15GHD.
We're running one instance of Weblogic (256 MB allocated) under Sun's 1.3
Hotspot Server edition JVM. The components are all java, ie we're not
calling any external interface, such as a database, filesystem etc at the
moment (its just for testing).
When we hit the server usings test clients , whatever we do its impossible
to get the CPU processor time above 50 percent, the clients themselves are
not CPU bound either (usings between 50 and 400 clients). Currently we're
getting about 50 http pages/sec, but I feel we could achieve more than this,
as it appears that Weblogic is not using all of the available CPU. I've
tried changing the amount of threads etc, but this does not seem to make any
difference.
The only thing that springs mind it the possibility that we're network
bound, but I find that very hard to believe, as we've never seen this befire
on the network here. Does anyone have any suggestions?
Thanks

It's impossible for us to tell your limiting factor without some more
information.
However, I have run similar benchmarks on NT machines with WLS serving
up web pages and Servlets/JSP. I was able to saturate 4 cpus, but I
used 4 100BaseT cards, and I needed to increase my execute thread count
to ~35.
-- Rob
wayne wrote:
>
Has anyone have any suggestions for the following set-up:
we have a 4 Processor NT box with 512MB memory, 15GHD.
We're running one instance of Weblogic (256 MB allocated) under Sun's 1.3
Hotspot Server edition JVM. The components are all java, ie we're not
calling any external interface, such as a database, filesystem etc at the
moment (its just for testing).
When we hit the server usings test clients , whatever we do its impossible
to get the CPU processor time above 50 percent, the clients themselves are
not CPU bound either (usings between 50 and 400 clients). Currently we're
getting about 50 http pages/sec, but I feel we could achieve more than this,
as it appears that Weblogic is not using all of the available CPU. I've
tried changing the amount of threads etc, but this does not seem to make any
difference.
The only thing that springs mind it the possibility that we're network
bound, but I find that very hard to believe, as we've never seen this befire
on the network here. Does anyone have any suggestions?
Thanks

Similar Messages

  • The cisco snmp oids do not work, I can't get cpu or memory data.

    Hello. I want to monitor the cpu and memory usages on my cisco devices using snmp. I found the snmp oids related to cpu in the following page :
    http://www.cisco.com/en/US/tech/tk648/tk362/technologies_tech_note09186a0080094a94.shtml
    I just copy the table here:
    But the oids in the table do not work on my devices. For example, I have a cisco 3550 switch with the ip 192.168.1.211, version 12.2(25)when I want to get the informations about the oids up in the table, I got these results:
    It shows that the oids cisco given up in the table are not existed in my 3550 switch's MIB. More weird is that when i add a number "1" to
    the end of the oid cisco given, I can get some meaningless data for some unkonwn item names like "entreprises.x.x".
    For most mib items, the snmp oids work well on my switch. For example, the following graph shows the interface out rate of the swtich:
    I think the essence is when I executed the following command:
    in all the output results, there's not any item relevant with "cpu" or "memory", but most other items are ok, such as interfaces, as shown below:
    IF-MIB::ifDescr.47 = STRING: FastEthernet0/39
    IF-MIB::ifDescr.48 = STRING: FastEthernet0/40
    IF-MIB::ifDescr.49 = STRING: GigabitEthernet0/1
    IF-MIB::ifDescr.50 = STRING: GigabitEthernet0/2
    IF-MIB::ifDescr.51 = STRING: Null0
    IF-MIB::ifDescr.52 = STRING: Vlan1
    IF-MIB::ifType.1 = INTEGER: ethernetCsmacd(6)
    IF-MIB::ifType.2 = INTEGER: ethernetCsmacd(6)
    IF-MIB::ifType.3 = INTEGER: ethernetCsmacd(6)
    IF-MIB::ifType.4 = INTEGER: ethernetCsmacd(6)
    IF-MIB::ifType.5 = INTEGER: ethernetCsmacd(6)
    So why the cisco given oids won't work on my cisco switch, and how can I get the datas I want? Anyone has some advices? Thanks in advance!
    In case the pictures I inserted missing, I attach my problem in the doc.

    Have you looked at this previous discussion:
    Can't Activate FaceTime

  • Cisco Prime Infrastructure 1.3 - SNMPv3 can´t get CPU, memory info.

    Hi,
    I have a Cisco Prime Infrastructure 1.3 deployment with Catalyst 2960S switches. Switches are running IOS 15.0(2) SE2. All switches have SNMPv2 configured, and all appears to be fine. I'm migrating one switch to SNMPv3, and PI have reachability to the switch, but PI doesn´t receive traps from the switch, and neither poll CPU and memory information (all displays 0.00%).
    Somebody have a sample configuration of SNMPv3 with Cisco Prime (Infrastructure or LMS)? I cannot find a Cisco official (or unofficial) document related to this version, usually all mention SNMPv2.
    Thank you.
    Eduardo

    Hi Eduardo:
    SNMPv3 is indeed supported for general administration.  There's a bug with SWIM using SNMPv3 (CSCud92758), but you should be fine for just monitoring.  Have you deleted the switch, waited until Prime Infrastructure told you it was gone, then readded it as SNMPv3 natively?  Bug CSCug78869 keeps things from working well when changing SNMP versions. 
    If you don't have the new Update-1 patch for Prime Infrastructure 1.3.0.20 installed (filename PI_1.3.0.20_Update_1-12.tar.gz) installed, I'd suggest you get it.  While it's not going to specifically address this issue, there are a lot of really good fixes in it.
    Release Notes for Update 1 for Cisco Prime Infrastructure 1.3.0.20

  • Can't get  rectangular bounds of a Group

    In the program below, I expected the rectangle to be drawn around all the widgets in the testGroup but rectangle is only drawn around Button1. Tried boundsInLocal, boundsInParent, boundsInScene and layoutBounds without success. Any clues?
    import javafx.stage.Stage;
    import javafx.scene.Scene;
    import javafx.scene.shape.Rectangle;
    import javafx.ext.swing.SwingButton;
    import javafx.scene.layout.VBox;
    import javafx.scene.text.Text;
    var testGroup : Group;
    testGroup = Group {
    content: [
    VBox{
    spacing: 10
    content: [
    SwingButton {
    text: "Button1 "
    action: function() {                       
    SwingButton {text: "Button 2"
                        action: function() {
    Text {font: Font {size: 12}
    textOrigin : TextOrigin.TOP
    content: "HelloWorld"
    Stage {
    title: "MyApp"
    scene: Scene {
    width: 500 height: 500
    content: [           
    Rectangle {
    width : testGroup.layoutBounds.width
    height: testGroup.layoutBounds.height
    fill: null;
    stroke: Color.BLACK
    testGroup
    }

    Rectangle {
       width: bind testGroup.layoutBounds.width
       height: bind testGroup.layoutBounds.height
       fill: null;
       stroke: Color.BLACK
    }You need to bind because when the Rectangle is created, the Group doesn't have the correct width and height yet.

  • How to get cpu id in labview

    how can i get cpu id as a string in labview.
    actually i am trying to make my VI computer specific .
    so i need help is getting tthe cpu id in my vi
    regards
    Regards

    thanks for the reply .....
    but i can some one tell me how to get processor ID or mac adderss or hard disk serial number anything whihc i can use to make my vi run to sepcific computer
    regards
    Regards

  • How can i get the max rpm from cpu fan??

    how can i get the max rpm from my cpu cooler regarding that i don't have a speed controller attached to the cpu fan ,,, ??  please make things clear for me
    thanks

    if you have not reduced it by using a speed controller either hardware or software or by the 7v mod its already going as fast as it will at 12 v dc you cannot speed it up only slow it down
    need more air get a different cooler/fan

  • Can I get music back after formating cpu?

    Can I get music back after formating cpu?

    If the music was RIP'd from CD, then the fastest way is to restore from your backup.
    Since it sounds like you did not have a backup, you will need to reRIP them from your CDs. Nothing else you can do.
    iTunes purchases you can redownload. Open iTunes, go to the store, click on Purchases on the right side under Quick links.
    Then tell the tech who formatted it for you without making a backup or making sure teat YOU made a backup that his rear end has a vacancy sign and your foot is looking for a place to rent.
    and you should make a backup right now of your computer and update teh backup after you RIP all the CDs.
    And make it a regualr practice, like weekly, depending on how much you want to lose.

  • How Can I Get The Cpu State With Java?

    are there any method to use??
    what's more,I also wanna to know how can I get
    the current ram that the System is using
    and the threads the System are running?
    Will you please share your knowledge here or
    write to tell me at [email protected]?
    Thanks!!

    if you know how to do this in c++, you can write native methods and use them in java.
    native methods forum:
    http://forum.java.sun.com/forum.jsp?forum=52
    tobias

  • Spatial Queries are CPU bound and show very heavy use of query buffers

    Hi,
    Spatial Queries:
    When using tkprof to analyse spatial queries it is clear that
    there are implicit queries being done by Oracle spatial which
    use vast amounts of buffers, and seem unable to cache basic
    information from query to query - thus resulting in our machine
    being CPU bound when stress testing Oracle Spatial, for example
    the example below shows how information which is fixed for a
    table and not likely to change very often is being retrieved
    inefficiently (note the 26729 query buffers being used to do 6
    executions of what should be immediately available!!!):
    TKPROF: Release 8.1.7.0.0 - Production on Tue Oct 16 09:43:38
    2001
    (c) Copyright 2000 Oracle Corporation. All rights reserved.
    SELECT ATTR_NO, ATTR_NAME, ATTR_TYPE_NAME, ATTR_TYPE_OWNER
    FROM
    ALL_TYPE_ATTRS WHERE OWNER = :1 AND TYPE_NAME = :2 ORDER BY
    ATTR_NO
    call count cpu elapsed disk query rows
    Parse 6 0.00 0.01 0 0 0
    Execute 6 0.00 0.01 0 0 0
    Fetch 6 0.23 0.41 0 26729 5
    total 18 0.23 0.43 0 26729 5
    Misses in library cache during parse: 0
    Optimizer goal: CHOOSE
    Parsing user id: 37 (NAGYE)
    Rows Row Source Operation
    0 SORT ORDER BY
    0 FILTER
    1 NESTED LOOPS
    1 NESTED LOOPS
    290 NESTED LOOPS
    290 NESTED LOOPS
    290 NESTED LOOPS
    290 NESTED LOOPS
    290 TABLE ACCESS FULL ATTRIBUTE$
    578 TABLE ACCESS CLUSTER TYPE$
    578 TABLE ACCESS CLUSTER TYPE$
    578 INDEX UNIQUE SCAN (object id 255)
    578 TABLE ACCESS BY INDEX ROWID OBJ$
    578 INDEX RANGE SCAN (object id 35)
    578 TABLE ACCESS CLUSTER USER$
    578 INDEX UNIQUE SCAN (object id 11)
    289 TABLE ACCESS BY INDEX ROWID OBJ$
    578 INDEX RANGE SCAN (object id 35)
    0 TABLE ACCESS CLUSTER USER$
    0 INDEX UNIQUE SCAN (object id 11)
    0 FIXED TABLE FULL X$KZSPR
    0 NESTED LOOPS
    0 FIXED TABLE FULL X$KZSRO
    0 INDEX RANGE SCAN (object id 101)
    error during parse of EXPLAIN PLAN statement
    ORA-01039: insufficient privileges on underlying objects of the
    view
    and again:
    SELECT diminfo, nvl(srid,0)
    FROM
    ALL_SDO_GEOM_METADATA WHERE OWNER = 'NAGYE' AND TABLE_NAME =
    NLS_UPPER('TILE_MED_LINES_MBR') AND '"'||COLUMN_NAME||'"'
    = '"GEOM"'
    call count cpu elapsed disk query
    current rows
    Parse 20 0.00 0.04 0
    0 0 0
    Execute 20 0.00 0.00 0
    0 0 0
    Fetch 20 0.50 0.50 0 5960
    100 20
    total 60 0.50 0.54 0 5960
    100 20
    Misses in library cache during parse: 0
    Optimizer goal: CHOOSE
    Parsing user id: 37 (NAGYE) (recursive depth: 1)
    Rows Row Source Operation
    1 FILTER
    2 TABLE ACCESS BY INDEX ROWID SDO_GEOM_METADATA_TABLE
    2 INDEX RANGE SCAN (object id 24672)
    1 UNION-ALL
    1 FILTER
    1 NESTED LOOPS
    1 NESTED LOOPS
    1 NESTED LOOPS OUTER
    1 NESTED LOOPS OUTER
    1 NESTED LOOPS OUTER
    1 NESTED LOOPS OUTER
    1 NESTED LOOPS
    1 TABLE ACCESS FULL OBJ$
    1 TABLE ACCESS CLUSTER TAB$
    1 INDEX UNIQUE SCAN (object id 3)
    0 TABLE ACCESS BY INDEX ROWID OBJ$
    1 INDEX UNIQUE SCAN (object id 33)
    0 INDEX UNIQUE SCAN (object id 33)
    0 TABLE ACCESS CLUSTER USER$
    1 INDEX UNIQUE SCAN (object id 11)
    1 TABLE ACCESS CLUSTER SEG$
    1 INDEX UNIQUE SCAN (object id 9)
    1 TABLE ACCESS CLUSTER TS$
    1 INDEX UNIQUE SCAN (object id 7)
    1 TABLE ACCESS CLUSTER USER$
    1 INDEX UNIQUE SCAN (object id 11)
    0 FILTER
    0 NESTED LOOPS
    0 NESTED LOOPS OUTER
    0 NESTED LOOPS
    0 TABLE ACCESS FULL USER$
    0 TABLE ACCESS BY INDEX ROWID OBJ$
    0 INDEX RANGE SCAN (object id 34)
    0 INDEX UNIQUE SCAN (object id 97)
    0 INDEX UNIQUE SCAN (object id 96)
    0 FIXED TABLE FULL X$KZSPR
    0 NESTED LOOPS
    0 FIXED TABLE FULL X$KZSRO
    0 INDEX RANGE SCAN (object id 101)
    0 FIXED TABLE FULL X$KZSPR
    0 NESTED LOOPS
    0 FIXED TABLE FULL X$KZSRO
    0 INDEX RANGE SCAN (object id 101)
    error during parse of EXPLAIN PLAN statement
    ORA-01039: insufficient privileges on underlying objects of the
    view
    Note: The actual query being performed is:
    select a.id, a.geom
    from
    tile_med_lines_mbr a where sdo_relate(a.geom,mdsys.sdo_geometry
    (2003,NULL,
    NULL,mdsys.sdo_elem_info_array
    (1,1003,3),mdsys.sdo_ordinate_array(151.21121,
    -33.86325,151.21132,-33.863136)), 'mask=anyinteract
    querytype=WINDOW') =
    'TRUE'
    call count cpu elapsed disk query
    current rows
    Parse 1 0.00 0.00 0 0 0 0
    Execute 1 0.08 0.08 0 4 0 0
    Fetch 5 1.62 21.70 0 56 0 827
    total 7 1.70 21.78 0 60 0 827
    Misses in library cache during parse: 0
    Optimizer goal: CHOOSE
    Parsing user id: 37 (NAGYE)
    Rows Row Source Operation
    827 TABLE ACCESS BY INDEX ROWID TILE_MED_LINES_MBR
    828 DOMAIN INDEX
    Rows Execution Plan
    0 SELECT STATEMENT GOAL: CHOOSE
    827 TABLE ACCESS GOAL: ANALYZED (BY INDEX ROWID) OF
    'TILE_MED_LINES_MBR'
    828 DOMAIN INDEX OF 'TILE_MLINES_SPIND'
    CPU: none, I/O: none
    call count cpu elapsed disk query
    current rows
    Parse 1 0.00 0.00 0 92
    Execute 1 0.00 0.00 0 22
    Fetch 1 0.00 0.00 38 236
    total 3 0.00 0.00 38 350
    Misses in library cache during parse: 1
    Optimizer goal: CHOOSE
    Parsing user id: 37 (NAGYE)
    Rows Row Source Operation
    12 TABLE ACCESS BY INDEX ROWID ROADELEMENT_MBR
    178 DOMAIN INDEX
    Rows Execution Plan
    0 SELECT STATEMENT GOAL: CHOOSE
    12 TABLE ACCESS GOAL: ANALYZED (BY INDEX ROWID) OF
    'ROADELEMENT_MBR'
    178 DOMAIN INDEX OF 'RE_MBR_SPIND'
    CPU: none, I/O: none
    Can Oracle improve the performance of Oracle spatial by
    improving the implementation so as to perform alternative
    implicit queries so as not to use these vast amounts of memory?
    Cheers
    Alex Eadie

    Hi Ravi,
    Thankyou for your reply.
    Here are some more details for you:
    Yes the queries are cached in that it gets its data from RAM and
    not from disk however the number of buffers used internally by
    Oracle RDBMS/Spatial is rather large and results in significant
    CPU usage (namely > 5000 per query or >40MByte). Which I'm sure
    you'd agree? Those numerous internal queries taking >10ms CPU
    time each, which is culmulative.
    A single real of ours query of will take between 180ms and 580ms
    depending on the number of results returned.
    An example query is:
    select a.id, a.geom
    from tile_med_lines_mbr a where sdo_relate
    (a.geom,mdsys.sdo_geometry
    (2003,NULL, NULL,mdsys.sdo_elem_info_array
    (1,1003,3),mdsys.sdo_ordinate_array(151.21121,
    -33.86325,151.21132,-33.863136)), 'mask=anyinteract
    querytype=WINDOW') = 'TRUE'
    Our 500Mhz PC Server database can only execute 3 processes
    running these queries simultaneously to go to 100% CPU loaded.
    The disk is hardly utilized.
    The data is the main roads in Sydney, Australia.
    The tables, data and indexes were created as shown below:
    1.     Create the Oracle tables:
    create table tile_med_nodes_mbr (
         id     number not null,
         geom     mdsys.sdo_geometry not null,
         xl     number not null,
         yl     number not null,
         xh     number not null,
         yh     number not null);
    create table tile_med_lines_mbr (
         id     number not null,
         fromid     number not null,
         toid     number not null,
         geom     mdsys.sdo_geometry not null,
         xl     number not null,
         yl     number not null,
         xh     number not null,
         yh     number not null);
    2.     Use the sqlldr Oracle loader utility to load the data
    into Oracle.
    % sqlldr userid=csiro_scats/demo control=nodes.ctl
    % sqlldr userid=csiro_scats/demo control=lines.ctl
    3.     Determine the covering spatial extent for the tile
    mosaic and use this to create the geometry metadata.
    % sqlplus
    SQLPLUS>     set numw 12
    SQLPLUS>     select min(xl), min(yl), max(xh), max(yh)
         from (select xl, yl, xh, yh
              from tile_med_nodes_mbr union
              select xl, yl, xh, yh
              from tile_med_lines_mbr);
    insert into USER_SDO_GEOM_METADATA
         (TABLE_NAME, COLUMN_NAME, DIMINFO)
         VALUES ('TILE_MED_NODES_MBR', 'GEOM',
         MDSYS.SDO_DIM_ARRAY
         (MDSYS.SDO_DIM_ELEMENT('X', 151.21093421,
                   151.21205421, 0.000000050),
         MDSYS.SDO_DIM_ELEMENT('Y', -33.86347146,
                   -33.86234146, 0.000000050)));
    insert into USER_SDO_GEOM_METADATA
         (TABLE_NAME, COLUMN_NAME, DIMINFO)
         VALUES ('TILE_MED_LINES_MBR', 'GEOM',
         MDSYS.SDO_DIM_ARRAY
         (MDSYS.SDO_DIM_ELEMENT('X', 151.21093421,
                   151.21205421, 0.000000050),
         MDSYS.SDO_DIM_ELEMENT('Y', -33.86347146,
                   -33.86234146, 0.000000050)));
    4.     Validate the data loaded:
    create table result
    (UNIQ_ID number, result varchar2(10));
    execute sdo_geom.validate_layer
    ('TILE_MED_NODES_MBR','GEOM','ID','RESULT');
    select result, count(result)
    from RESULT
    group by result;
    truncate table result;
    execute sdo_geom.validate_layer
    ('TILE_MED_LINES_MBR','GEOM','ID','RESULT');
    select result, count(result)
    from RESULT
    group by result;
    drop table result;
    5.     Fix any problems reported in the result table.
    6.     Create a spatial index, use the spatial index advisor to
    determine the sdo_level.
    create index tile_mlines_spind on
    tile_med_lines_mbr (geom) indextype is
    mdsys.spatial_index parameters
    ( 'sdo_level=7,initial=1M,next=1M,pctincrease=0');
    7.     Analyse table:
    analyze table TILE_MED_LINES_MBR compute statistics;
    8.     Find the spatial index table name:
    select sdo_index_table, sdo_column_name
    from user_sdo_index_metadata
    where sdo_index_name in
    (select index_name
    from user_indexes
    where ityp_name = 'SPATIAL_INDEX'
    and table_name = 'TILE_MED_LINES_MBR');
    9.     Analyse spatial index table:
    analyze table TILE_MLINES_SPIND_FL7$
    compute statistics;
    I hope this helps.
    Cheers
    Alex Eadie

  • I can't get the photoshop blur filters to work!  Help.

    Hello, I can't get the new photoshop cs6 blur filters to work.  The menu's are all greyed out.  Why?  I purchased my membership to the cloud, downloaded the applications (as I'm a former CS5 user), watched some great video's on some of the new features and now I wanted to try this out but it won't work.  Why not?  You have deducted money from my account.  Please help make this work correctly.

    Hi Steve,
    Here is the info.  I hope this helps.
    Meanwhile Adobe is sending me around and around in circles regarding my log
    in and I can't seem to be able to comment on my own thread even.  This is
    very frustrating.  Any and all help is very much appreciated.  Thank you.
    Megan
    Adobe Photoshop Version: 13.0.1 (13.0.1 20120808.r.519 2012/08/08:21:00:00)
    x64
    Operating System: Mac OS 10.6.8
    System architecture: Intel CPU Family:6, Model:37, Stepping:5 with MMX, SSE
    Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, HyperThreading
    Physical processor count: 2
    Logical processor count: 4
    Processor speed: 3600 MHz
    Built-in memory: 4096 MB
    Free memory: 2398 MB
    Memory available to Photoshop: 3705 MB
    Memory used by Photoshop: 78 %
    Image tile size: 128K
    Image cache levels: 4
    OpenGL Drawing: Enabled.
    OpenGL Drawing Mode: Advanced
    OpenGL Allow Normal Mode: True.
    OpenGL Allow Advanced Mode: True.
    OpenGL Allow Old GPUs: Not Detected.
    OpenGL Version: 2.1 ATI-1.6.36
    OpenCL Version: 1.0 (Dec 23 2010 17:30:26)
    Video Card Vendor: ATI Technologies Inc.
    Video Card Renderer: ATI Radeon HD 5670 OpenGL Engine
    Display: 1
    Main Display
    Display Depth:= 32
    Display Bounds:=  top: 0, left: 0, bottom: 1440, right: 2560
    Video Renderer ID: 16915203
    Video Card Memory: 495 MB
    Video Rect Texture Size: 16384
    Serial number: 90970946280110845652
    Application folder: Macintosh HD:Applications:Adobe Photoshop CS6:
    Photoshop scratch has async I/O enabled
    Scratch volume(s):
      Macintosh HD, 931.2G, 449.1G free
    Required Plug-ins folder: Macintosh HD:Applications:Adobe Photoshop
    CS6:Adobe Photoshop CS6.app:Contents:Required:
    Primary Plug-ins folder: Macintosh HD:Applications:Adobe Photoshop
    CS6:Plug-ins:
    Additional Plug-ins folder: not set
    Installed components:
       adbeape.framework   adbeape   3.3.8.19346   66.1025012
       AdbeScriptUIFlex.framework   AdbeScriptUIFlex   6.2.29.18602   66.490082
       adobe_caps.framework   adobe_caps   6.0.29.0   1.276181
       AdobeACE.framework   AdobeACE   2.19.18.20743   66.507768
       AdobeAGM.framework   AdobeAGM   4.26.20.20743   66.507768
       AdobeAXE8SharedExpat.framework   AdobeAXE8SharedExpat   3.7.101.18636
    66.26830
       AdobeAXEDOMCore.framework   AdobeAXEDOMCore   3.7.101.18636   66.26830
       AdobeBIB.framework   AdobeBIB   1.2.02.20743   66.507768
       AdobeBIBUtils.framework   AdobeBIBUtils   1.1.01   66.507768
       AdobeCoolType.framework   AdobeCoolType   5.10.33.20743   66.507768
       AdobeCrashReporter.framework   AdobeCrashReporter   6.0.20120720
       AdobeExtendScript.framework   AdobeExtendScript   4.2.12.18602
    66.490082
       AdobeJP2K.framework   AdobeJP2K   2.0.0.18562   66.236923
       AdobeLinguistic.framework      17206
       AdobeMPS.framework   AdobeMPS   5.8.0.19463   66.495174
       AdobeOwl.framework   AdobeOwl   4.0.95   66.510504
       AdobePDFL.framework   AdobePDFL   10.0.1.18562   66.419471
       AdobePDFSettings.framework   AdobePDFSettings   1.4
       AdobePIP.framework   AdobePIP   6.0.0.1654
       AdobeScCore.framework   AdobeScCore   4.2.12.18602   66.490082
       AdobeUpdater.framework   AdobeUpdater   6.0.0.1452   "52.338651"
       AdobeXMP.framework   AdobeXMPCore   66.145661   66.145661
       AdobeXMPFiles.framework   AdobeXMPFiles   66.145661   66.145661
       AdobeXMPScript.framework   AdobeXMPScript   66.145661   66.145661
       ahclient.framework   ahclient   1.7.0.56
       aif_core.framework   AdobeAIF   3.0.00   62.490293
       aif_ocl.framework   AdobeAIF   3.0.00   62.490293
       aif_ogl.framework   AdobeAIF   3.0.00   62.490293
       AlignmentLib.framework   xcode   1.0.0.1
       amtlib.framework   amtlib   6.0.0.75
       boost_date_time.framework   boost_date_time   6.0.0.0
       boost_signals.framework   boost_signals   6.0.0.0
       boost_system.framework   boost_system   6.0.0.0
       boost_threads.framework   boost_threads   6.0.0.0
       Cg.framework   NVIDIA Cg
       CIT.framework   CIT   2.0.5.19287   145486
       data_flow.framework   AdobeAIF   3.0.00   62.490293
       dvaaudiodevice.framework   dvaaudiodevice   6.0.0.0
       dvacore.framework   dvacore   6.0.0.0
       dvamarshal.framework   dvamarshal   6.0.0.0
       dvamediatypes.framework   dvamediatypes   6.0.0.0
       dvaplayer.framework   dvaplayer   6.0.0.0
       dvatransport.framework   dvatransport   6.0.0.0
       dvaunittesting.framework   dvaunittesting   6.0.0.0
       dynamiclink.framework   dynamiclink   6.0.0.0
       FileInfo.framework   FileInfo   66.145433   66.145433
       filter_graph.framework   AdobeAIF   3.0.00   62.490293
       hydra_filters.framework   AdobeAIF   3.0.00   62.490293
       ICUConverter.framework   ICUConverter   3.61   "gtlib_3.0" "." "16615"
       ICUData.framework   ICUData   3.61   "gtlib_3.0" "." "16615"
       image_compiler.framework   AdobeAIF   3.0.00   62.490293
       image_flow.framework   AdobeAIF   3.0.00   62.490293
       image_runtime.framework   AdobeAIF   3.0.00   62.490293
       LogSession.framework   LogSession   2.1.2.1652
       mediacoreif.framework   mediacoreif   6.0.0.0
       PlugPlug.framework   PlugPlug   3.0.0.383
       UpdaterNotifications.framework   UpdaterNotifications   6.0.0.24
    "6.0.0.24"
       wrservices.framework
    Required plug-ins:
       3D Studio 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©2006-2012 Adobe
    Systems Incorporated - from the file “U3D.plugin”
       Accented Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated -
    from the file “Filter Gallery.plugin”
       Adaptive Wide Angle 13.0, Copyright © 2012 Adobe Systems Incorporated -
    from the file “Adaptive Wide Angle.plugin”
       ADM 3.10x16, Copyright © 1987-2008 Adobe Systems Inc.  All rights
    reserved. - from the file “AdobeADM.bundle”
       Angled Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated -
    from the file “Filter Gallery.plugin”
       Average 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©1993-2012 Adobe
    Systems Incorporated - from the file “Average.plugin”
       Bas Relief 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from
    the file “Filter Gallery.plugin”
       BMP 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the
    file “Standard Multiplugin.plugin”
       Camera Raw 7.0 (308), Copyright © 2012 Adobe Systems Incorporated - from
    the file “Camera Raw.plugin”
       Chalk & Charcoal 13.0, Copyright © 1991-2012 Adobe Systems Incorporated
    - from the file “Filter Gallery.plugin”
       Charcoal 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from
    the file “Filter Gallery.plugin”
       Chrome 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the
    file “Filter Gallery.plugin”
       Cineon 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©2002-2012 Adobe
    Systems Incorporated - from the file “Cineon.plugin”
       Clouds 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©1993-2012 Adobe
    Systems Incorporated - from the file “Clouds.plugin”
       Collada DAE 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©2006-2012 Adobe
    Systems Incorporated - from the file “U3D.plugin”
       Color Halftone 13.0, Copyright © 2003-2012 Adobe Systems Incorporated -
    from the file “Standard Multiplugin.plugin”
       Colored Pencil 13.0, Copyright © 1991-2012 Adobe Systems Incorporated -
    from the file “Filter Gallery.plugin”
       CompuServe GIF 13.0, Copyright © 2003-2012 Adobe Systems Incorporated -
    from the file “Standard Multiplugin.plugin”
       Conté Crayon 13.0, Copyright © 1991-2012 Adobe Systems Incorporated -
    from the file “Filter Gallery.plugin”
       Craquelure 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from
    the file “Filter Gallery.plugin”
       Crop and Straighten Photos 13.0.1 20120808.r.519 2012/08/08:21:00:00
    ©2003-2012 Adobe Systems Incorporated - from the file
    “CropPhotosAuto.plugin”
       Crop and Straighten Photos Filter 13.0, Copyright © 2003-2012 Adobe
    Systems Incorporated - from the file “Standard Multiplugin.plugin”
       Crosshatch 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from
    the file “Filter Gallery.plugin”
       Crystallize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated -
    from the file “Standard Multiplugin.plugin”
       Cutout 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the
    file “Filter Gallery.plugin”
       Dark Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated -
    from the file “Filter Gallery.plugin”
       De-Interlace 13.0, Copyright © 2003-2012 Adobe Systems Incorporated -
    from the file “Standard Multiplugin.plugin”
       Dicom 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the
    file “dicom.plugin”
       Difference Clouds 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©1993-2012
    Adobe Systems Incorporated - from the file “Clouds.plugin”
       Diffuse Glow 13.0, Copyright © 1991-2012 Adobe Systems Incorporated -
    from the file “Filter Gallery.plugin”
       Displace 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from
    the file “Standard Multiplugin.plugin”
       Dry Brush 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from
    the file “Filter Gallery.plugin”
       Eazel Acquire 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©1997-2012
    Adobe Systems Incorporated - from the file “EazelAcquire.plugin”
       Embed Watermark NO VERSION - from the file “DigiSign.plugin”
       Enable Async I/O 13.0.1 20120808.r.519 2012/08/08:21:00:00  © 2004-2012
    Adobe Systems Incorporated - from the file “Enable Async IO.plugin”
       Entropy 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©2006-2012 Adobe
    Systems Incorporated - from the file “statistics.plugin”
       Extrude 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from
    the file “Standard Multiplugin.plugin”
       FastCore Routines 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©1990-2012
    Adobe Systems Incorporated - from the file “FastCore.plugin”
       Fibers 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the
    file “Standard Multiplugin.plugin”
       Film Grain 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from
    the file “Filter Gallery.plugin”
       Filter Gallery 13.0, Copyright © 1991-2012 Adobe Systems Incorporated -
    from the file “Filter Gallery.plugin”
       Flash 3D 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©2006-2012 Adobe
    Systems Incorporated - from the file “U3D.plugin”
       Fresco 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the
    file “Filter Gallery.plugin”
       Glass 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the
    file “Filter Gallery.plugin”
       Glowing Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated -
    from the file “Filter Gallery.plugin”
       Google Earth 4 KMZ 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©2006-2012
    Adobe Systems Incorporated - from the file “U3D.plugin”
       Grain 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the
    file “Filter Gallery.plugin”
       Graphic Pen 13.0, Copyright © 1991-2012 Adobe Systems Incorporated -
    from the file “Filter Gallery.plugin”
       Halftone Pattern 13.0, Copyright © 1991-2012 Adobe Systems Incorporated
    - from the file “Filter Gallery.plugin”
       HDRMergeUI 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from
    the file “HDRMergeUI.plugin”
       IFF Format 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from
    the file “Standard Multiplugin.plugin”
       Ink Outlines 13.0, Copyright © 1991-2012 Adobe Systems Incorporated -
    from the file “Filter Gallery.plugin”
       JPEG 2000 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©2001-2012 Adobe
    Systems Incorporated - from the file “JPEG2000.plugin”
       Kurtosis 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©2006-2012 Adobe
    Systems Incorporated - from the file “statistics.plugin”
       Lens Blur 13.0, Copyright © 2002-2012 Adobe Systems Incorporated - from
    the file “Lens Blur.plugin”
       Lens Correction 13.0, Copyright © 2002-2012 Adobe Systems Incorporated -
    from the file “Lens Correct.plugin”
       Lens Flare 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from
    the file “Standard Multiplugin.plugin”
       Liquify 13.0, Copyright © 2001-2012 Adobe Systems Incorporated - from
    the file “Liquify.plugin”
       Matlab Operation 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©1993-2012
    Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Maximum 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©2006-2012 Adobe
    Systems Incorporated - from the file “statistics.plugin”
       Mean 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©2006-2012 Adobe Systems
    Incorporated - from the file “statistics.plugin”
       Measurement Core 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©1993-2012
    Adobe Systems Incorporated - from the file “MeasurementCore.plugin”
       Median 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©2006-2012 Adobe
    Systems Incorporated - from the file “statistics.plugin”
       Mezzotint 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from
    the file “Standard Multiplugin.plugin”
       Minimum 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©2006-2012 Adobe
    Systems Incorporated - from the file “statistics.plugin”
       MMXCore Routines 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©1990-2012
    Adobe Systems Incorporated - from the file “MMXCore.plugin”
       Mosaic Tiles 13.0, Copyright © 1991-2012 Adobe Systems Incorporated -
    from the file “Filter Gallery.plugin”
       Multiprocessor Support 13.0.1 20120808.r.519 2012/08/08:21:00:00
    ©1990-2012 Adobe Systems Incorporated - from the file “MultiProcessor
    Support.plugin”
       Neon Glow 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from
    the file “Filter Gallery.plugin”
       Note Paper 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from
    the file “Filter Gallery.plugin”
       NTSC Colors 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©1993-2012 Adobe
    Systems Incorporated - from the file “NTSC Colors.plugin”
       Ocean Ripple 13.0, Copyright © 1991-2012 Adobe Systems Incorporated -
    from the file “Filter Gallery.plugin”
       Oil Paint 13.0, Copyright © 2011 Adobe Systems Incorporated - from the
    file “Oil Paint.plugin”
       OpenEXR 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from
    the file “Standard Multiplugin.plugin”
       Paint Daubs 13.0, Copyright © 1991-2012 Adobe Systems Incorporated -
    from the file “Filter Gallery.plugin”
       Palette Knife 13.0, Copyright © 1991-2012 Adobe Systems Incorporated -
    from the file “Filter Gallery.plugin”
       Patchwork 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from
    the file “Filter Gallery.plugin”
       Paths to Illustrator 13.0, Copyright © 2003-2012 Adobe Systems
    Incorporated - from the file “Standard Multiplugin.plugin”
       PCX 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©1989-2012 Adobe Systems
    Incorporated - from the file “PCX.plugin”
       Photocopy 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from
    the file “Filter Gallery.plugin”
       Photoshop 3D Engine 13.0.1 20120808.r.519 2012/08/08:21:00:00
    ©2006-2012 Adobe Systems Incorporated - from the file
    “Photoshop3DEngine.plugin”
       Picture Package Filter 13.0.1 20120808.r.519 2012/08/08:21:00:00
    ©1993-2012 Adobe Systems Incorporated - from the file “ChannelPort.plugin”
       Pinch 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the
    file “Standard Multiplugin.plugin”
       Pixar 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©1989-2012 Adobe
    Systems Incorporated - from the file “Pixar.plugin”
       Plaster 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from
    the file “Filter Gallery.plugin”
       Plastic Wrap 13.0, Copyright © 1991-2012 Adobe Systems Incorporated -
    from the file “Filter Gallery.plugin”
       PNG 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the
    file “Standard Multiplugin.plugin”
       Pointillize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated -
    from the file “Standard Multiplugin.plugin”
       Polar Coordinates 13.0, Copyright © 2003-2012 Adobe Systems Incorporated
    - from the file “Standard Multiplugin.plugin”
       Portable Bit Map 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©1989-2012
    Adobe Systems Incorporated - from the file “PBM.plugin”
       Poster Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated -
    from the file “Filter Gallery.plugin”
       Radial Blur 13.0, Copyright © 2003-2012 Adobe Systems Incorporated -
    from the file “Standard Multiplugin.plugin”
       Radiance 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©2003-2012 Adobe
    Systems Incorporated - from the file “Radiance.plugin”
       Range 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©2006-2012 Adobe
    Systems Incorporated - from the file “statistics.plugin”
       Read Watermark NO VERSION - from the file “DigiRead.plugin”
       Reticulation 13.0, Copyright © 1991-2012 Adobe Systems Incorporated -
    from the file “Filter Gallery.plugin”
       Ripple 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the
    file “Standard Multiplugin.plugin”
       Rough Pastels 13.0, Copyright © 1991-2012 Adobe Systems Incorporated -
    from the file “Filter Gallery.plugin”
       Save for Web 13.0, Copyright © 1999-2012 Adobe Systems Incorporated -
    from the file “Save for Web.plugin”
       ScriptingSupport 13.0, Copyright © 2012 Adobe Systems Incorporated -
    from the file “ScriptingSupport.plugin”
       Shear 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the
    file “Standard Multiplugin.plugin”
       Skewness 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©2006-2012 Adobe
    Systems Incorporated - from the file “statistics.plugin”
       Smart Blur 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from
    the file “Standard Multiplugin.plugin”
       Smudge Stick 13.0, Copyright © 1991-2012 Adobe Systems Incorporated -
    from the file “Filter Gallery.plugin”
       Solarize 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©1993-2012 Adobe
    Systems Incorporated - from the file “Solarize.plugin”
       Spatter 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from
    the file “Filter Gallery.plugin”
       Spherize 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from
    the file “Standard Multiplugin.plugin”
       Sponge 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the
    file “Filter Gallery.plugin”
       Sprayed Strokes 13.0, Copyright © 1991-2012 Adobe Systems Incorporated -
    from the file “Filter Gallery.plugin”
       Stained Glass 13.0, Copyright © 1991-2012 Adobe Systems Incorporated -
    from the file “Filter Gallery.plugin”
       Stamp 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the
    file “Filter Gallery.plugin”
       Standard Deviation 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©2006-2012
    Adobe Systems Incorporated - from the file “statistics.plugin”
       Sumi-e 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from the
    file “Filter Gallery.plugin”
       Summation 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©2006-2012 Adobe
    Systems Incorporated - from the file “statistics.plugin”
       Targa 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the
    file “Standard Multiplugin.plugin”
       Texturizer 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from
    the file “Filter Gallery.plugin”
       Tiles 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the
    file “Standard Multiplugin.plugin”
       Torn Edges 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from
    the file “Filter Gallery.plugin”
       Twirl 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the
    file “Standard Multiplugin.plugin”
       U3D 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©2006-2012 Adobe Systems
    Incorporated - from the file “U3D.plugin”
       Underpainting 13.0, Copyright © 1991-2012 Adobe Systems Incorporated -
    from the file “Filter Gallery.plugin”
       Vanishing Point 13.0, Copyright © 2003-2012 Adobe Systems Incorporated -
    from the file “VanishingPoint.plugin”
       Variance 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©2006-2012 Adobe
    Systems Incorporated - from the file “statistics.plugin”
       Water Paper 13.0, Copyright © 1991-2012 Adobe Systems Incorporated -
    from the file “Filter Gallery.plugin”
       Watercolor 13.0, Copyright © 1991-2012 Adobe Systems Incorporated - from
    the file “Filter Gallery.plugin”
       Wave 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the
    file “Standard Multiplugin.plugin”
       Wavefront|OBJ 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©2006-2012
    Adobe Systems Incorporated - from the file “U3D.plugin”
       Wind 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the
    file “Standard Multiplugin.plugin”
       Wireless Bitmap 13.0.1 20120808.r.519 2012/08/08:21:00:00  ©1989-2012
    Adobe Systems Incorporated - from the file “WBMP.plugin”
       ZigZag 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from the
    file “Standard Multiplugin.plugin”
    Optional and third party plug-ins:
       Alias PIX 13.0 20120315.r.428 2012/03/15:21:00:00  ©1989-2012 Adobe
    Systems Incorporated - from the file “Alias.plugin”
       ElectricImage 13.0, Copyright © 2003-2012 Adobe Systems Incorporated -
    from the file “Optional Multiplugin.plugin”
       HSB/HSL 13.0, Copyright © 2003-2012 Adobe Systems Incorporated - from
    the file “Optional Multiplugin.plugin”
       SGI RGB 13.0 20120315.r.428 2012/03/15:21:00:00  ©2001-2012 Adobe
    Systems Incorporated - from the file “SGIRGB.plugin”
       SoftImage 13.0 20120315.r.428 2012/03/15:21:00:00  ©2000-2012 Adobe
    Systems Incorporated - from the file “SoftImage.plugin”
       Twain Acquire 13.0 20120315.r.428 2012/03/15:21:00:00  ©1992-2012 Adobe
    Systems Incorporated - from the file “TWAIN.plugin”
       Wavefront RLA 13.0 20120315.r.428 2012/03/15:21:00:00  ©1989-2012 Adobe
    Systems Incorporated - from the file “RLA.plugin”
    Plug-ins that failed to load: NONE
    Flash:
       Mini Bridge
       Kuler
    Installed TWAIN devices:
       Canon MP250 series

  • 15" i7 Macbook Pro from early 2011.takes the mac laptop two or three tries to boot successfully. It would turn on, show gray screen, shut down, turn on again, show gray screen, shutdown, and then turn on, show gray screen, before it can finally get

    Hello All,
    I have a 15" i7 Macbook Pro from early 2011. The past few weeks, it has been getting increasingly difficult to get on my computer. It takes the mac laptop two or three tries to boot successfully. It would turn on, show gray screen, shut down, turn on again, show gray screen, shutdown, and then turn on, show gray screen, before it can finally get to the dark gray log-in screen. Even when I finally get logged in to start working, thinking it would be okay now, it shuts down randomly.
    I've ruled out the possibility of a software problem because I've just done a clean re-install of Mac OS X Mavericks on my computer just yesterday.
    I did upgrade the RAM recently, about a month and a half ago, from 4GB to 16GB, I went to the apple store four days after that upgrade to have them do a hardware test, and clean the inside of my laptop, which helped with previous heat issues. When they did the hardware test, the hardware was all registered as fine from their system.
    I've tried resetting the SMC, PRAM, and doing the internet recovery hardware test, but to no avail. I thought I could at least find out what parts needed to be replaced from the hardware test but it seems that when the hardware test is almost finished, the computer just shuts down, So I am unable to see the results.
    My computer is also having battery issues, under battery condition, it says "replace now," parts have been ordered, waiting for arrival. But if the battery health is low, it should still boot up fine, it would just hold a significantly less charge.
    Could this be a hard drive issue?
    Has anyone had similar symptoms and how was it resolved?
    Does anyone know what I can do to alleviate this issue?
    I haven't had time to take it to Apple because I'm currently taking a 21 credit semester academically. I'm an art and design student so my computer is basically the bane of my existence. Help! Any constructive advice is welcomed!
    Thank you so much for your input!
    -Christina C.

    Problem description:
    The Hard Disk is failing.
    EtreCheck version: 2.0.11 (98)
    Report generated November 4, 2014 at 7:59:28 AM EST
    Hardware Information: ℹ️
      MacBook Pro (15-inch, Early 2011) (Verified)
      MacBook Pro - model: MacBookPro8,2
      1 2.2 GHz Intel Core i7 CPU: 4-core
      16 GB RAM Upgradeable
      BANK 0/DIMM0
      8 GB DDR3 1600 MHz ok
      BANK 1/DIMM0
      8 GB DDR3 1600 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      Intel HD Graphics 3000 - VRAM: 512 MB
      Color LCD 1440 x 900
      AMD Radeon HD 6750M - VRAM: 1024 MB
    System Software: ℹ️
      OS X 10.9.5 (13F34) - Uptime: 0:3:43
    Disk Information: ℹ️
      TOSHIBA MK7559GSXF disk0 : (750.16 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      HDV4 (disk0s2) /  [Startup]: 749.30 GB (712.10 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      MATSHITADVD-R   UJ-898 
    USB Information: ℹ️
      Apple Inc. FaceTime HD Camera (Built-in)
      Apple Inc. BRCM2070 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Inc. Apple Internal Keyboard / Trackpad
      Apple Computer, Inc. IR Receiver
    Thunderbolt Information: ℹ️
      Apple Inc. thunderbolt_bus
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Library/Application Support/Avast/components/fileshield/unsigned
      [loaded] com.avast.AvastFileShield (2.1.0 - SDK 10.9) Support
      /Library/Application Support/Avast/components/proxy/unsigned
      [loaded] com.avast.PacketForwarder (1.4 - SDK 10.9) Support
    Launch Agents: ℹ️
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.avast.userinit.plist Support
    Launch Daemons: ℹ️
      [invalid?] com.adobe.SwitchBoard.plist Support
      [loaded] com.avast.init.plist Support
      [loaded] com.avast.uninstall.plist Support
      [loaded] com.avast.update.plist Support
      [invalid?] com.perion.searchprotectd.plist Support
    User Launch Agents: ℹ️
      [invalid?] com.avast.home.userinit.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [invalid?] com.jdibackup.ZipCloud.autostart.plist Support
    User Login Items: ℹ️
      None
    Internet Plug-ins: ℹ️
      AdobePDFViewer: Version: 10.1.1 Support
      QuickTime Plugin: Version: 7.7.3
      JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Check version
      Default Browser: Version: 537 - SDK 10.9
    User Internet Plug-ins: ℹ️
      TroviNPAPIPlugin: Version: 1.0 - SDK 10.9 Support
      Google Earth Web Plug-in: Version: Unknown
    Safari Extensions: ℹ️
      Avast Online Security
      Trovi Search for Safari
    3rd Party Preference Panes: ℹ️
      None
    Time Machine: ℹ️
      Time Machine not configured!
    Top Processes by CPU: ℹ️
          16% mds
          7% WindowServer
          1% loginwindow
          1% fontd
          1% com.avast.daemon
    Top Processes by Memory: ℹ️
      120 MB com.avast.daemon
      86 MB Google Chrome
      52 MB Finder
      52 MB WindowServer
      41 MB Google Chrome Helper
    Virtual Memory Information: ℹ️
      13.45 GB Free RAM
      1.34 GB Active RAM
      944 MB Inactive RAM
      1.43 GB Wired RAM
      1.11 GB Page-ins
      0 B Page-outs

  • MBP freezes after 10.4.11 and I can't get through to AppleCare

    This is beyond ridiculous. Since applying the 10.4.11 update, my MBP always locks up after waking from sleep. There has been no exception since updating. I kept it turned off for about 24 hours, then used it all afternoon without letting it sleep and didn't have a single freeze. Sure enough, the first time I closed the lid to let it sleep, it locked up within seconds of waking up. This was happening spradically prior to the 10.4.11 update, but now it's rendering my MBP unuseable.
    Yes, I have AppleCare and I tried calling Apple twice last week. Both times, I got cut off. Both times, I could barely understand the Indian trying to help me, and one got snippy with me when I had to keep asking him to repeat himself. Neither time did I actually get to speak with a technician. One of those times I got a recorded message telling me that Apple was closed for the holiday and to call back during normal business hours. Friday wasn't a holiday (at least not in this country) and I was calling during normal business hours for THIS country, but perhaps not for India. I've never experienced any trouble getting AppleCare support via telephone in the past, even on Sundays.
    I've run Apple Hardware Test and TechTool Deluxe, neither of which reports any drive problems. The nearest Apple Store is an hour's drive from here. Apparently, I have one of the Seagate drives recently found to be defective. All I want to know is whether or not I should let Apple replace the drive with one that isn't defective.
    I'm at a loss here. I'm paying for AppleCare, but can't get through to a comprehensible English speaker capable of answering that very simple question. I can't let my MBP sleep because it'll lock up upon waking. I can't find any way to send feedback to Apple about the unacceptable experience trying to get through to support last week. Is no one accountable for anything these days? And to think I bought an iPhone last week too!

    Here is what I think may be the relevant portion of my system.log file. I've had no luck at all finding someone willing to tell me how to parse log files to troubleshoot errors. The freeze happened right about Nov 25 22:00:00. Note the times at the beginning of each line.
    Nov 25 21:01:47 Joe-Heafners-MacBook-Pro loginwindow[2433]: Login Window Started Security Agent
    Nov 25 21:01:53 Joe-Heafners-MacBook-Pro /System/Library/PrivateFrameworks/Apple80211.framework/Resources/airport: Currently connected to network Joe's Network
    Nov 25 21:55:59 Joe-Heafners-MacBook-Pro kernel[0]: AFPSleepWakeHandler: going to sleep
    Nov 25 21:56:02 Joe-Heafners-MacBook-Pro kernel[0]: hibernate image path: /var/vm/sleepimage
    Nov 25 21:56:02 Joe-Heafners-MacBook-Pro kernel[0]: sizeof(IOHibernateImageHeader) == 512
    Nov 25 21:56:02 Joe-Heafners-MacBook-Pro kernel[0]: Opened file /var/vm/sleepimage, size 2147483648, partition base 0xc805000, maxio 400000
    Nov 25 21:56:02 Joe-Heafners-MacBook-Pro kernel[0]: hibernate image major 14, minor 2, blocksize 512, pollers 3
    Nov 25 21:56:02 Joe-Heafners-MacBook-Pro kernel[0]: hibernateallocpages flags 00000000, gobbling 0 pages
    Nov 25 21:56:02 Joe-Heafners-MacBook-Pro launchd: Server 0 in bootstrap 1103 uid 0: "/usr/sbin/lookupd"[191]: exited abnormally: Hangup
    Nov 25 21:56:02 Joe-Heafners-MacBook-Pro configd[78]: posting notification com.apple.system.config.network_change
    Nov 25 21:59:36 Joe-Heafners-MacBook-Pro kernel[0]: System SafeSleep
    Nov 25 21:59:36 Joe-Heafners-MacBook-Pro kernel[0]: hibernatepage_listsetall start
    Nov 25 21:59:36 Joe-Heafners-MacBook-Pro kernel[0]: hibernatepage_listsetall time: 123 ms
    Nov 25 21:59:36 Joe-Heafners-MacBook-Pro kernel[0]: pages 218835, wire 61812, act 19596, inact 27592, zf 13802, could discard act 34743 inact 61290
    Nov 25 21:59:36 Joe-Heafners-MacBook-Pro kernel[0]: hibernatepage_listsetall found pageCount 218835
    Nov 25 21:59:36 Joe-Heafners-MacBook-Pro kernel[0]: IOHibernatePollerOpen, mlget_interruptsenabled 0
    Nov 25 21:59:36 Joe-Heafners-MacBook-Pro kernel[0]: IOHibernatePollerOpen(0)
    Nov 25 21:59:36 Joe-Heafners-MacBook-Pro kernel[0]: writing 218025 pages
    Nov 25 21:59:36 Joe-Heafners-MacBook-Pro kernel[0]: image1Size 96880640
    Nov 25 21:59:36 Joe-Heafners-MacBook-Pro kernel[0]: all time: 6813 ms, comp time: 1050 ms, deco time: 0 ms,
    Nov 25 21:59:36 Joe-Heafners-MacBook-Pro kernel[0]: image 234494976, uncompressed 499679232 (121992), compressed 231104028 (46%), sum1 f89b7fab, sum2 c005b10a
    Nov 25 21:59:36 Joe-Heafners-MacBook-Pro kernel[0]: hibernatewriteimage done(0)
    Nov 25 21:59:36 Joe-Heafners-MacBook-Pro kernel[0]: sleep
    Nov 25 21:59:36 Joe-Heafners-MacBook-Pro kernel[0]: IOUSBWorkLoop::closeGate - interrupt Thread being held offEnabling XMM register save/restore and SSE/SSE2 opcodes
    Nov 25 21:59:36 Joe-Heafners-MacBook-Pro kernel[0]: Started CPU 01
    Nov 25 21:59:36 Joe-Heafners-MacBook-Pro kernel[0]: IOBluetoothHCIController::restartShutdownWL this is a wake from sleep
    Nov 25 21:59:36 Joe-Heafners-MacBook-Pro kernel[0]: System Wake
    Nov 25 22:02:06 localhost kernel[0]: hi mem tramps at 0xffe00000
    Nov 25 22:02:06 localhost kernel[0]: PAE enabled
    Nov 25 22:02:06 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Nov 25 22:02:06 localhost kernel[0]: vmpagebootstrap: 512915 free pages
    Nov 25 22:02:06 localhost kernel[0]: migtable_maxdispl = 71
    Nov 25 22:02:06 localhost kernel[0]: Enabling XMM register save/restore and SSE/SSE2 opcodes
    Nov 25 22:02:06 localhost kernel[0]: 102 prelinked modules
    Nov 25 22:02:06 localhost kernel[0]: ACPI CA 20060421
    Nov 25 22:02:06 localhost kernel[0]: AppleIntelCPUPowerManagement: ready
    Nov 25 22:02:06 localhost kernel[0]: AppleACPICPU: ProcessorApicId=0 LocalApicId=0 Enabled
    Nov 25 22:02:06 localhost kernel[0]: AppleACPICPU: ProcessorApicId=1 LocalApicId=1 Enabled
    Nov 25 22:02:06 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Nov 25 22:02:06 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Nov 25 22:02:06 localhost kernel[0]: using 10485 buffer headers and 4096 cluster IO buffer headers
    Nov 25 22:02:06 localhost kernel[0]: Enabling XMM register save/restore and SSE/SSE2 opcodes
    Nov 25 22:02:06 localhost kernel[0]: Started CPU 01
    Nov 25 22:02:06 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    Nov 25 22:02:06 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Nov 25 22:02:06 localhost kernel[0]: Security auditing service present
    Nov 25 22:02:06 localhost kernel[0]: BSM auditing present
    Nov 25 22:02:06 localhost kernel[0]: disabled
    Nov 25 22:02:06 localhost kernel[0]: rooting via boot-uuid from /chosen: 4DB93950-5225-4DD2-BFC9-CBC701493457
    Nov 25 22:02:06 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Nov 25 22:02:06 localhost kernel[0]: USB caused wake event (EHCI)
    Nov 25 22:02:06 localhost kernel[0]: FireWire (OHCI) TI ID 8025 built-in now active, GUID 0016cbfffe6b3cd4; max speed s800.
    Nov 25 22:02:06 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleAHCI/PRT2 @2/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageDri ver/ST9120821AS Media/IOGUIDPartitionScheme/Customer@2
    Nov 25 22:02:06 localhost kernel[0]: BSD root: disk0s2, major 14, minor 2
    Nov 25 22:02:06 localhost kernel[0]: jnl: replay_journal: from: 3496448 to: 10202624 (joffset 0x37e000)
    Nov 25 22:02:06 localhost kernel[0]: CSRHIDTransitionDriver::probe:
    Nov 25 22:02:06 localhost kernel[0]: CSRHIDTransitionDriver::start before command
    Nov 25 22:02:06 localhost kernel[0]: CSRHIDTransitionDriver::stop
    Nov 25 22:02:06 localhost kernel[0]: IOBluetoothHCIController::start Idle Timer Stopped
    Nov 25 22:02:06 localhost kernel[0]: HFS: Removed 3 orphaned unlinked files
    Nov 25 22:02:06 localhost kernel[0]: Jettisoning kernel linker.
    Nov 25 22:02:06 localhost kernel[0]: Resetting IOCatalogue.
    Nov 25 22:02:06 localhost kernel[0]: display: family specific matching fails
    Nov 25 22:02:06 localhost kernel[0]: Matching service count = 0
    Nov 25 22:02:06 localhost kernel[0]: Matching service count = 20
    Nov 25 22:02:06 localhost kernel[0]: Matching service count = 20
    Nov 25 22:02:06 localhost kernel[0]: Matching service count = 20
    Nov 25 22:02:06 localhost kernel[0]: Matching service count = 20
    Nov 25 22:02:06 localhost kernel[0]: Matching service count = 20
    Nov 25 22:02:06 localhost kernel[0]: Previous Shutdown Cause: 3
    Nov 25 22:02:06 localhost kernel[0]: display: family specific matching fails
    Nov 25 22:02:06 localhost kernel[0]: RBIOKitController: started.
    Nov 25 22:02:06 localhost kernel[0]: display: family specific matching fails
    Nov 25 22:02:06 localhost kernel[0]: ath_attach: devid 0x1c
    Nov 25 22:02:06 localhost kernel[0]: athdescdmasetup: tx dddescpaddr = 0xd09d000, length 0x46500(288000) bytes
    Nov 25 22:02:06 localhost kernel[0]: athdescdmasetup: beacon dddescpaddr = 0xce6c000, length 0x90(144) bytes
    Nov 25 22:02:06 localhost kernel[0]: mac 10.3 phy 6.1 radio 10.2
    Nov 25 22:02:06 localhost kernel[0]: IPv6 packet filtering initialized, default to accept, logging disabled
    Nov 25 22:02:06 localhost mDNSResponder-108.6 (Jul 19 2007 11: 41:28)[37]: starting
    Nov 25 22:02:06 localhost memberd[45]: memberd starting up
    Nov 25 22:02:06 localhost lookupd[46]: lookupd (version 369.6) starting - Sun Nov 25 22:02:06 2007
    Nov 25 22:02:06 localhost DirectoryService[51]: Launched version 2.1 (v353.6)
    Nov 25 22:02:08 localhost diskarbitrationd[44]: disk0s2 hfs ECE1AEDE-FA7B-3D14-849F-78121DFFDFFB Macintosh HD /
    Nov 25 22:02:08 localhost kernel[0]: yukonosx: Ethernet address 00:16:cb:c8:fe:4f
    Nov 25 22:02:08 localhost kernel[0]: AirPort_Athr5424ab: Ethernet address 00:16:cb:ba:e3:19
    Nov 25 22:02:08 localhost kernel[0]: Registering For 802.11 Events
    Nov 25 22:02:08 localhost kernel[0]: [HCIController][setupHardware] AFH Is Supported
    Nov 25 22:02:08 Joe-Heafners-MacBook-Pro configd[42]: setting hostname to "Joe-Heafners-MacBook-Pro.local"
    Nov 25 22:02:08 Joe-Heafners-MacBook-Pro lookupd[68]: lookupd (version 369.6) starting - Sun Nov 25 22:02:08 2007
    Nov 25 22:02:11 Joe-Heafners-MacBook-Pro /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow: Login Window Application Started
    Nov 25 22:02:12 Joe-Heafners-MacBook-Pro configd[42]: executing /System/Library/SystemConfiguration/Kicker.bundle/Contents/Resources/enable-net work
    Nov 25 22:02:12 Joe-Heafners-MacBook-Pro configd[42]: posting notification com.apple.system.config.network_change
    Nov 25 22:02:12 Joe-Heafners-MacBook-Pro lookupd[73]: lookupd (version 369.6) starting - Sun Nov 25 22:02:12 2007
    Nov 25 22:02:12 Joe-Heafners-MacBook-Pro Parallels: Loading Hypervisor module...
    Nov 25 22:02:12 Joe-Heafners-MacBook-Pro loginwindow[71]: Login Window Started Security Agent
    Nov 25 22:02:12 Joe-Heafners-MacBook-Pro kernel[0]: [Parallels] Parallels Hypervisor started.
    Nov 25 22:02:12 Joe-Heafners-MacBook-Pro Parallels: Loading Monitor module...
    Nov 25 22:02:13 Joe-Heafners-MacBook-Pro kernel[0]: [Parallels] Parallels VM observer thread started
    Nov 25 22:02:13 Joe-Heafners-MacBook-Pro Parallels: Loading ConnectUSB module...
    Nov 25 22:02:14 Joe-Heafners-MacBook-Pro configd[42]: target=enable-network: disabled
    Nov 25 22:02:14 Joe-Heafners-MacBook-Pro Parallels: Loading Network module...
    Nov 25 22:02:14 Joe-Heafners-MacBook-Pro Parallels: Loading Virtual Ethernet module...
    Nov 25 22:02:14 Joe-Heafners-MacBook-Pro mDNSResponder: Adding browse domain local.
    Nov 25 22:02:14 Joe-Heafners-MacBook-Pro kernel[0]: comparallels_kextPvsvnic0: Ethernet address 00:1c:42:00:00:00
    Nov 25 22:02:14 Joe-Heafners-MacBook-Pro kernel[0]: comparallels_kextPvsvnic1: Ethernet address 00:1c:42:00:00:01
    Nov 25 22:02:15 Joe-Heafners-MacBook-Pro Parallels: Staring DHCP/NAT daemon...
    Nov 25 22:02:15 Joe-Heafners-MacBook-Pro pvsnatd[228]: en2: DHCP for 10.37.129.2-10.37.129.254 netmask 255.255.255.0
    Nov 25 22:02:15 Joe-Heafners-MacBook-Pro pvsnatd[228]: en3: DHCP/NAT for 10.211.55.2-10.211.55.254 netmask 255.255.255.0
    Nov 25 22:02:16 Joe-Heafners-MacBook-Pro Parallels: Restarting InternetSharing...
    Nov 25 22:02:16 Joe-Heafners-MacBook-Pro Parallels: Restaring CiscoVPN...
    Nov 25 22:02:16 Joe-Heafners-MacBook-Pro Parallels: Initialization complete.
    Nov 25 22:02:19 Joe-Heafners-MacBook-Pro /System/Library/PrivateFrameworks/Apple80211.framework/Resources/airport: Currently connected to network Joe's Network

  • Getting the bounds of a drawn image on a panel

    Hello, I have a problem with getting the bounds of a drawn image on a panel...Since it is drawn as graphics, i tried getClipBounds and since my class extends JPanel i tried to get the bounds from the panel but neither of them worked properly. It only gets the bounds of a jframe that contains the panel.Then i tried to put the panel in a layeredpane and then a container; but this time the image disappeared completely. Hope someone can help or tell me what I am doing wrong. Thanks in advance. Here is the code below:
    By the way what I am trying to do in this code is basically zooming the image in and out by dragging or the mouse wheel. But I need to get the bounds so that I can use this.
    * To change this template, choose Tools | Templates
    * and open the template in the editor.
    * @author Admin
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.Image;
    import java.awt.Point;
    import java.awt.RenderingHints;
    import java.awt.Toolkit;
    import java.awt.event.MouseEvent;
    import java.awt.event.MouseListener;
    import java.awt.event.MouseMotionListener;
    import java.awt.event.MouseWheelEvent;
    import java.awt.event.MouseWheelListener;
    import java.awt.geom.AffineTransform;
    import java.awt.geom.NoninvertibleTransformException;
    import java.awt.geom.Point2D;
    import javax.swing.JFrame;
    import javax.swing.JLayeredPane;
    import javax.swing.JPanel;
    public class ZoomDemo extends JPanel {
    AffineTransform tx = new AffineTransform();
    String imagePath = "D:/Documents and Settings/Admin/Belgelerim/tsrm/resim.jpg";
    Image image = Toolkit.getDefaultToolkit().getImage(imagePath);
    int width = image.getWidth(this);
    int height = image.getHeight(this);
    int scrwidth = Toolkit.getDefaultToolkit().getScreenSize().width;
    int scrheight = Toolkit.getDefaultToolkit().getScreenSize().height;
    double zoomfac = 1.0;
    int xAdj;
    int yAdj;
    int prevY;
    double scale = 1.0;
    Point pt;
    public static int x;
    public static int y;
    public static int w;
    public static int h;
    public ZoomDemo() {
    this.addMouseWheelListener(new ZoomHandler());
    this.addMouseListener(new ZoomHandler());
    this.addMouseMotionListener(new ZoomHandler());
      repaint();
    @Override
    public void paintComponent(Graphics g) {
    super.paintComponent(g);
    Graphics2D g2 = (Graphics2D) g;
    g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
    g2.drawImage(image, tx, this);
    // x =    (int) g2.getClipBounds().getX();
    // y=     (int) g2.getClipBounds().getY();
    // w=     (int) g2.getClipBounds().getWidth();
    // h=     (int) g2.getClipBounds().getHeight();
    // System.out.println(x+" "+y+" "+w+" "+h);
    //  public int getRectx(){
    //    return x;
    //public int getRecty(){
    //    return y;
    //public int getRectw(){
    //    return w;
    //public int getRecth(){
    //    return h;
    private class ZoomHandler implements MouseWheelListener,MouseListener, MouseMotionListener {
    public void mousePressed(MouseEvent e){
        System.out.println("Mouse Pressed");
    xAdj = e.getX();
    yAdj = e.getY();
    prevY = getY();
    public void mouseDragged(MouseEvent e){
           System.out.println("Mouse Dragged");
    boolean zoomed = false;
    if(e.getY()<prevY){
         zoomfac = zoomfac + 0.1;
         prevY = e.getY();
         zoomed = true;
    else if(e.getY()>prevY){
         zoomfac = zoomfac - 0.1;
         prevY = e.getY();
         zoomed = true;
       scale = zoomfac;
    Point2D p1 = new Point((int)xAdj-(width/2),(int)yAdj-(height/2));
    Point2D p2 = null;
    try {
    p2 = tx.inverseTransform(p1, null);
    } catch (NoninvertibleTransformException ex) {
    // should not get here
    ex.printStackTrace();
    return;
    tx.setToIdentity();
    tx.translate(p1.getX(), p1.getY());
    tx.scale(scale, scale);
    tx.translate(-p2.getX(), -p2.getY());
    tx.transform(p1, p2);
    ZoomDemo.this.revalidate();
    ZoomDemo.this.repaint();
    public void mouseWheelMoved(MouseWheelEvent e) {
    if (e.getScrollType() == MouseWheelEvent.WHEEL_UNIT_SCROLL) {
    Point2D p1 = e.getPoint();
    Point2D p2 = null;
    try {
    p2 = tx.inverseTransform(p1, null);
    } catch (NoninvertibleTransformException ex) {
    // should not get here
    ex.printStackTrace();
    return;
    scale -= (0.1 * e.getWheelRotation());
    scale = Math.max(0.1, scale);
    tx.setToIdentity();
    tx.translate(p1.getX(), p1.getY());
    tx.scale(scale, scale);
    tx.translate(-p2.getX(), -p2.getY());
    ZoomDemo.this.revalidate();
    ZoomDemo.this.repaint();
            public void mouseClicked(MouseEvent e) {
                //throw new UnsupportedOperationException("Not supported yet.");
            public void mouseReleased(MouseEvent e) {
                //throw new UnsupportedOperationException("Not supported yet.");
            public void mouseEntered(MouseEvent e) {
               // throw new UnsupportedOperationException("Not supported yet.");
            public void mouseExited(MouseEvent e) {
               // throw new UnsupportedOperationException("Not supported yet.");
            public void mouseMoved(MouseEvent e) {
               // throw new UnsupportedOperationException("Not supported yet.");
    public static void main(String[] args) {
    //SwingUtilities.invokeLater(new ZoomDemo());
    int scrwidth = Toolkit.getDefaultToolkit().getScreenSize().width;
    int scrheight = Toolkit.getDefaultToolkit().getScreenSize().height;
    JFrame f = new JFrame("Zoom");
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    f.setSize(scrwidth , scrheight);
    //JLayeredPane lp = new JLayeredPane();
    //f.add(lp);
    ZoomDemo zd = new ZoomDemo();
    zd.getBounds();
    f.add(zd);
    //int x = (int) zd.getX();
    //int y = (int) zd.getY();
    //int w = (int) zd.getWidth();
    //int h = (int) zd.getHeight();
    //System.out.println(x+" "+y+" "+w+" "+h);
    //zd.setBounds(x ,y ,w ,h );
    //lp.add(zd, JLayeredPane.DEFAULT_LAYER);
    //f.setLocationRelativeTo(null);
    f.setVisible(true);
    //lp.setVisible(true);
    //zd.setVisible(true);
    }Edited by: .mnemonic. on May 26, 2009 11:07 PM
    Edited by: .mnemonic. on May 27, 2009 11:00 AM

    You'll need a stable point in the component to track and orient to the scaling transform(s).
    From this you can construct whatever you need in the way of image location and size.
    Let's try a center&#8211;of&#8211;image tracking point:
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.awt.image.BufferedImage;
    import javax.swing.*;
    import javax.swing.event.MouseInputAdapter;
    public class ZD extends JPanel {
        BufferedImage image;
        Point center;
        AffineTransform at = new AffineTransform();
        Point2D.Double origin = new Point2D.Double(0,0);
        public ZD(BufferedImage image) {
            this.image = image;
            center = new Point(image.getWidth()/2, image.getHeight()/2);
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_INTERPOLATION,
                                RenderingHints.VALUE_INTERPOLATION_BICUBIC);
            g2.drawRenderedImage(image, at);
            g2.setPaint(Color.red);
            g2.fill(new Ellipse2D.Double(origin.x-1.5, origin.y-1.5, 4, 4));
            g2.setPaint(Color.blue);
            g2.fill(new Ellipse2D.Double(center.x-1.5, center.y-1.5, 4, 4));
        private void setTransform(double scale) {
            // keep image centered over Point "center"
            double x = center.x - scale*image.getWidth()/2;
            double y = center.y - scale*image.getHeight()/2;
            origin.setLocation(x, y);
            at.setToTranslation(x, y);
            at.scale(scale, scale);
        public static void main(String[] args) throws java.io.IOException {
            java.net.URL url = ZD.class.getResource("images/hawk.jpg");
            BufferedImage image = javax.imageio.ImageIO.read(url);
            ZD test = new ZD(image);
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.add(test);
            f.setSize(500,500);
            f.setLocation(100,100);
            f.setVisible(true);
            test.addMouseListener(test.mia);
            test.addMouseMotionListener(test.mia);
        /** MouseAdapter okay in j2se 1.6+ */
        private MouseInputAdapter mia = new MouseInputAdapter() {
            final double SCALE_INC = 0.05;
            final int SCALE_STEP = 20;
            double scale = 1.0;
            double lastStep;
            public void mousePressed(MouseEvent e) {
                Point p = e.getPoint();
                center.setLocation(p);
                //System.out.printf("center = [%3d, %3d]%n", p.x, p.y);
                setTransform(scale);
                repaint();
            public void mouseDragged(MouseEvent e) {
                // scale up/down with relative vertical motion
                int step = (e.getY() - center.y)/SCALE_STEP;
                if(step != lastStep) {
                    scale += SCALE_INC*((step < lastStep) ? -1 : 1);
                    //System.out.printf("step = %3d  scale = %.3f%n", step, scale);
                    setTransform(scale);
                    lastStep = step;
                    repaint();
    }

  • G4 has blue screen and I still can't get it to login...HELP!

    I went to the store and when I returned I had a blue screen with my mouse pointer that could move. I read tons of post on here and tried everything such as resetting PRAM, bought a new battery because like threads said, I too would push the power button and it would flicker and not turn on. I would have to unplug the power cord just to be able to get another try. If I didn't, nothing happened. So then I borrowed my Aunt's Leopard CD she had from her iMac and tried booting off it (holding down the C button) and nothing. I get a message stating that I can't boot off of that disc? After letting it sit for a few hours I was finally able to get past the blue screen and access Disk Utility. I tried repairing the disc (i have 3 plus the backup drive) and I get past that. I then select Verify Disk Permissions and get a "FIRST AID FAILED" Message saying Disk Utility stopped repairing permissions on "HD" because the following error was encountered. The underlying task reported failure on exit. So then I run across a thread saying that it could possibly be a admin user or password problem. I remember just before the blue screen that I was indeed researching on how to lock a folder on my desktop as well as my back up drive. So I followed the instructions and powered it on while holding the apple key + S key and typed in mount -uw /
    rm /car/db/.AppleSetupDone
    shutdown -h now
    Now when I turn it on it starts up just like its brand new. However, I can't get past the part where it ask if I want to transfer information from another computer or Hard Drive or do it later with Migration Assistant. I have tried starting it and holding down the C key and nothing happens - I get the gray Apple screen frozen. I have held down the Option Key and restarted and selected both the HD and Start Up Disk which both have a little blue X in the corner if that helps and same results. Before trying to start up using the disc i forgot to mention I tried restarting it pulling each of the RAM drives out and putting them in different locations and that did nothing. And FINALLY! The last restart prior to posting this I have a bunch of lines across the Purple Galaxy Screen that says:
    System Failure: cup=0; code=00000001 (Corrupt Stack).
    Latest crash info for cpu 0:
    Exception state (sv0x29d85280)
    Backtrace terminated - frame not mapped or invalid:
    Any ideas from here?

    Whoah boy, lots of things here and I have to make supper...
    I'll choose a few at a time. "RAM drives"
    RAM drives? Do you mean hard drives? Do you mean RAM chips?
    If hard drives, did you put them back in the same order? Multiple hard drives in one machine often need to be jumpered correctly when you move them about.
    If chips... It's too difficult at this stage to tell if it is hardware or software. If hardware it could be chips, and that error at the end had a vague chip ring to it. One way to test for chips if you have extra chips is to pull all but the minimum required to boot and see if it boots.
    You mention a backup drive. This wouldn't happen to have a clone of the operating system on it would it?
    4 drives... All internal?
    From all you've said it could be hardware or software. Blue screen could be software but failing hardware can corrupt a drive, messing up the software.
    Boot discs. It sounds like you have no boot discs (CD. DVD) for this computer, right?
    What computer are you using right now?

  • How to get the bound object of an external table with OMB

    Hello,
    I try to find it but without success. So may be one of you, know this secret information.
    I want to synchronize with the help of an OMB script my external tables.
    OMBSYNCHRONIZE FLAT_FILE '/MY_PROJECT/MY_FLAT_FILE_MODULE/MY_FLAT_FILE' RECORD 'MY_RECORD' TO EXTERNAL_TABLE 'MY_EXTERNAL_TABLE' \
    USE (RECONCILE_STRATEGY 'REPLACE', MATCHING_STRATEGY 'MATCH_BY_OBJECT_ID')For this purpose, I need to know the bound object. When you synchronize with the help of the GUI, you see it easily.
    Example:
    /MY_PROJECT/MY_FLAT_FILE_MODULE/MY_FLAT_FILE/MY_RECORDI searched in the properties of the external table and I don't see a BOUND OBJECT property.
    OMBDESCRIBE CLASS_DEFINITION 'EXTERNAL_TABLE' GET PROPERTY_DEFINITIONS
    BAD_FILE_LOCATION BAD_FILE_NAME BUSINESS_NAME DATA_FILES DEPLOYABLE DESCRIPTION
    DISCARD_FILE_LOCATION DISCARD_FILE_NAME ENDIAN GENERATE_ERROR_TABLE_ONLY GENERAT
    ION_COMMENTS LOAD_NULLS_WHEN_MISSING_VALUES LOG_FILE_LOCATION LOG_FILE_NAME NLS_
    CHARACTERSET NUMBER_OF_REJECTS_ALLOWED PARALLEL_ACCESS_DRIVERS PARALLEL_ACCESS_M
    ODE REJECTS_ARE_UNLIMITED SHADOW_TABLESPACE SHADOW_TABLE_NAME STRING_SIZES_IN TR
    IM UOIDThen I try the BOUND_OBJECT cached properties of a mapping operator but no luck.
    OMBRETRIEVE EXTERNAL_TABLE 'MY_EXTERNAL_TABLE' GET BOUND_OBJECT
    OMB00001: Encountered BOUND_OBJECT at line: 1, column: 56. Was expecting one of:
    "PROPERTIES" ...
        "REF" ...
        "REFERENCE" ...
        "COLUMN" ...
        "DEFAULT_LOCATION" ...
        "FLAT_FILE" ...
        "RECORD" ...
        "COLUMNS" ...
        "DATA_FILES" ...
        "DATA_RULE_USAGES" ...I have already the file and the record with the FLAT_FILE and RECORD properties
    OMBRETRIEVE EXTERNAL_TABLE  'MY_EXTERNAL_TABLE'  GET FLAT_FILE
    OMBRETRIEVE EXTERNAL_TABLE  'MY_EXTERNAL_TABLE'  GET RECORDBut how can I get the flat file module:
    MY_FLAT_FILE_MODULEDoes anybody know how OWB retrieve this information ?
    Thanks in advance and good day
    Nico
    Edited by: gerardnico on Jan 13, 2010 12:08 PM
    Change get the location by get the flat_file_module

    Yes, Oleg. It's what's worried me.
    The BOUND_OBJECT property of a table operator is not in the API.
    OMBDESCRIBE CLASS_DEFINITION 'TABLE_OPERATOR' GET PROPERTY_DEFINITIONS
    ADVANCED_MATCH_BY_CONSTRAINT AUTOMATIC_HINTS_ENABLED BOUND_NAME BUSINESS_NAME CO
    NFLICT_RESOLUTION DATABASE_FILE_NAME DATABASE_LINK DATA_COLLECTION_FREQUENCY DAT
    A_RULES DB_LOCATION DEBUG_BOUND_NAME DEBUG_DB_LOCATION DESCRIPTION DIRECT ENABLE
    _CONSTRAINTS ERROR_SELECT_FILTER ERROR_SELECT_ROLL_UP ERROR_TABLE_NAME EVALUATE_
    CHECK_CONSTRAINTS EXCEPTIONS_TABLE_NAME EXTRACTION_HINT IS_TEMP_STAGE_TABLE JOIN
    RANK KEYS_READONLY LOADING_HINT LOADING_TYPE MATCH_BY_CONSTRAINT OPTIMIZE_MERGE
    PARTITION_NAME PEL_ENABLED PRIMARY_SOURCE RECORDS_TO_SKIP REPLACE_DATA ROW_COUNT
    ROW_COUNT_ENABLED SCHEMA SINGLEROW SORTED_INDEXES_CLAUSE SUBPARTITION_NAME TARG
    ET_FILTER_FOR_DELETE TARGET_FILTER_FOR_UPDATE TARGET_LOAD_ORDER TEMP_STAGE_TABLE
    _EXTRA_DDL_CLAUSES TEST_DATA_COLUMN_LIST TEST_DATA_WHERE_CLAUSE TRAILING_NULLCOL
    S TRUNCATE_ERROR_TABLE UOID USE_LCR_APIThen I was wondering if anyone knew a little bit the same hidden property but to get the flat file source object of an external table.
    Cheers
    Nico

Maybe you are looking for

  • Trial Version Aperture 1.5

    I down loaded the trial version of aperture 1.5 ages ago and bought the licence key after. Unfortunately my hard drive crashed and I've lost the software but still have the licence key. Would anyone help me in getting aperture 1.5 ( just the software

  • Pictures resolution in InDesign

    So I am not talking about resampling images in InDesign. But I have a question related to the resolution of pictures as InDesign sees it. I have some photos in JPEG format I want to use in InDesign, not scaled, not anything. All same dimension (pixel

  • Glossy Screen Low Down on MacBook Pro!!

    I am reading threads that have people that have the glossy screen option on the MacBook Pros. To those that have them can you please give a really detailed description of this screen with comparisons to the antiglare coating screens and the MB glossy

  • Email Hacked and Comcast wants me to download Norton Anti Virus to run scan

    My email was hacked and I contacted the ISP (Comcast) they said to download Norton Antivirus and run it on my iMAC then go in an change my email password.  I use Microsoft Outlook for my email or I read it on my iPhone 5.  Should I use Norton?  I rea

  • Can't set up my TC - Please help!

    I can't seem to set up my Time Capsule at all since I switched Internet providers to Virgin. Whenever I try to it says that the network password is not correct but I KNOW it is. I've tried it wired via Ethernet with the wireless turned off but still