Add column to finder to show path? (Like PathFinder)

Anyone know how to add another column in finder display to show the path of the file?

Thanks for the quick reply Barney, I have that option enabled but need the column. I'm surprised this isn't available, windows has it and there's an app called Pathfinder that does it perfectly!

Similar Messages

  • Date Columns in Finder not showing hours

    In my Finder the Dare Modified and Date Created fields show the date in these format examples:
    July 20, 2009, :26 PM
    Today, :42 PM
    In other words the hour (and maybe minutes) are missing and only the minutes (or is it seconds) appear after the date.
    Can anyone clue me in on what has happened here?

    Hi Borodin
    Control click or right click on a file that's missing the hour and select Get Info, are the correct Created and Modified times shown on the Info panel?
    I'm not sure if any of these will help, but first try relaunching the Finder, then logging into another Account or restarting the iMac.
    Dennis

  • I have all my music cd's on a hard drive as wav files when I try to add them to I tunes the files get there but no album info I end up with a bunch of track 1's by unknown artists. Is there a way to transfer each album over so it shows up like a normal CD

    I have all my music cd's on a hard drive as wav files when I try to add them to I tunes the files get there but no album info I end up with a bunch of track 1's by unknown artists. Is there a way to transfer each album over so it shows up like a normal CD

    Try posting in a more appropriate forum, as this has noting to do with itunes U - the place where University/college/museums post education material.

  • Downloaded an app and now 'double click to install' is showing up like a ghost in the background of my finder windows?

    I am a photographer and I downloaded order software from Miller's (ROES software). The software would not install correctly and now when I open a finder window the 'double click to install' is showing up like a ghost from their installation window? Any ideas? TIA

    Hi..
    Since it's third party, (non Apple) software, you need to visit the ROES software website for support.

  • What is "owner-pc-vaio". its in my shared column in Finder. would another computer using my wifi show up in the shared column?

    what is "owner-pc-vaio". its in my shared column in Finder. would another computer using my wifi show up in the shared column?

    If you're in a hotel, school, or someplace with public WiFi access, you'll see a list of all other computers on the network. 
    As opposed to the answers above, with or without sharing on, you will see others on the network and they can see you.  As long as you have sharing off, and even then, they'd not have unrestricted acces unless you disabled all password access, they can see you but they can't do anything.
    If you're on your own private network, someone is stealing your bandwidth.  Since it's a piece of junk Windows computer, you can find out how to send them a nasty virus over a LAN. 

  • How can I add a curve with a different sample rate behind another curve to show it like one in the report

    I saved two curves with different sample rates with signal express in waveform.
    Now I want to add the curves behind and show them in a report. 

    Hello MReizner,
    Both the DIAdem VIEW and REPORT panel use the time information from your Waveform channels (make sure they actually have the waveform symbol, not the numeric data channel symbol in the Data Portal) to plot the data in the same axis system.
    In the example below I have two waveforms, one sampled at 5 Hz and one sampled at 1 Hz, both in the same axis with the same time channel. All I did was drag the data from the Data Portal onto the axis. DIAdem automatically takes care of creating the correct time channel and plotting the data with the correct points if the data is stored as a waveform.
    I hope this answers your question, please let us know if further clarification is required ...
    Otmar D. Foehner
    Business Development Manager
    DIAdem and Test Data Management
    National Instruments
    Austin, TX - USA
    "For an optimist the glass is half full, for a pessimist it's half empty, and for an engineer is twice bigger than necessary."

  • Finding the shortest path

    Hey guys,
    Im working on a solution to this problem below is a program to allow a user to draw straight line paths. What i'd like to do is allow the user to select two points on the path he has drawn and find the shortest path among all the interesecting lines.....im going crazy thinking of a solution for this.....im thinking bout steeping down a notch and just try to find just any path first.
    Will really appreciate any help.
    Thnx in advance,
    Vikhyat
    import java.applet.*;*
    *import java.awt.*;
    import java.awt.event.*;*
    *import javax.swing.*;
    import java.awt.geom.*;
    public class Lab11 extends Applet implements MouseListener, MouseMotionListener {
    int x0, y0, x1, y1;
    int mouseRelease=0;
    GeneralPath path = new GeneralPath();
    public Lab11()
    addMouseListener(this);
    addMouseMotionListener(this);
    public void mouseDragged(MouseEvent e)
    x1 = e.getX();
    y1 = e.getY();
    repaint();
    public void mouseMoved(MouseEvent e) { }
    public void mouseClicked(MouseEvent e) { }
    public void mouseEntered(MouseEvent e) { }
    public void mouseExited (MouseEvent e) { }
    public void mousePressed(MouseEvent e) {
    x0 = e.getX();
    y0 = e.getY();
    System.out.println("Mouse pressed at: (" +
    x0 + ", " + y0 + ")" );
    public void mouseReleased(MouseEvent e) {
    x1 = e.getX();
    y1 = e.getY();
    System.out.println("Mouse released at: (" +
    x1 + ", " + y1 + ")" );
    mouseRelease = 1;
    this.repaint();
    public void paint(Graphics g)
    Graphics2D g2 = (Graphics2D)g;
    g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
    RenderingHints.VALUE_ANTIALIAS_ON);
    //just for show not concerned with saving paths
    if(mouseRelease==1)
    path.moveTo(x0,y0);
    path.lineTo(x1,y1);
    mouseRelease = 0;
    g2.setPaint(Color.RED);
    g2.draw(path);
    g.setColor(Color.BLACK);
    g.drawLine(x0, y0, x1, y1);
    public static void main(String[] argv)
    JFrame f = new JFrame("Test");
    f.getContentPane().add(new Lab11());
    f.setSize(600,600);
    f.setVisible(true);
    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }Pictorially this is what im trying to do:
    User draws a path like so and selects two points as shown in blue
    [http://i48.photobucket.com/albums/f236/theforrestgump/select.jpg]
    The program should then proceed to highlighting the shortest path
    [http://i48.photobucket.com/albums/f236/theforrestgump/sp.jpg]
    Edited by: cannonball on Apr 1, 2008 7:58 PM

    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import javax.swing.*;
    public class ShortPath extends JPanel {
        Path2D.Double path;
        Path2D.Double shortPath = new Path2D.Double();
        Point p1 = new Point();
        Point p2 = new Point();
        final double PROXIMITY = 5.0;
        public ShortPath() {
            path = new Path2D.Double();
            path.moveTo(145,80);
            path.lineTo(125,170);
            path.lineTo(190,200);
            path.lineTo(240,340);
            path.lineTo(285,220);
            path.lineTo(145,80);
        protected void paintComponent(Graphics g) {
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            g2.setPaint(Color.blue);
            g2.draw(path);
            g2.setPaint(Color.green);
            g2.setStroke(new BasicStroke(2f));
            g2.draw(shortPath);
            g2.setPaint(Color.red);
            g2.fill(new Ellipse2D.Double(p1.x-2, p1.y-2, 4, 4));
            g2.setPaint(Color.orange);
            g2.fill(new Ellipse2D.Double(p2.x-2, p2.y-2, 4, 4));
        private void findShortPath() {
            if(!isPointOnLine(p1) || !isPointOnLine(p2)) {
                System.out.println("a point is not on the path");
                return;
            double d1 = getDistanceToPoint(p1);
            double d2 = getDistanceToPoint(p2);
            double pathLength = getDistanceToPoint(new Point());
            Point2D.Double start = new Point2D.Double();
            Point2D.Double end   = new Point2D.Double();
            if((d1 < d2 && d2 - d1 < pathLength - d2 + d1) ||
               (d1 > d2 && d1 - d2 > pathLength - d1 + d2)) {
                start.setLocation(p1);
                end.setLocation(p2);
            } else {
                start.setLocation(p2);
                end.setLocation(p1);
            generatePath(start, end);
        //                        145,80
        // leg distance = 92.2    125,170
        // leg distance = 71.6    190,200   163.8
        // leg distance = 148.7   240,340   312.5
        // leg distance = 128.2   285,220   440.7
        // leg distance = 198.0   145,80    638.7
        private double getDistanceToPoint(Point p) {
            PathIterator pit = path.getPathIterator(null);
            double[] coords = new double[2];
            double distance = 0;
            Point2D.Double start = new Point2D.Double();
            Point2D.Double end = new Point2D.Double();
            Line2D.Double line = new Line2D.Double();
            while(!pit.isDone()) {
                int type = pit.currentSegment(coords);
                switch(type) {
                    case PathIterator.SEG_MOVETO:
                        start.setLocation(coords[0], coords[1]);
                        pit.next();
                        continue;
                    case PathIterator.SEG_LINETO:
                        end.setLocation(coords[0], coords[1]);
                line.setLine(start, end);
                boolean onLine = line.ptSegDist(p) < PROXIMITY;
                if(onLine) {  // point is on this line
                    distance += start.distance(p);
                    break;
                } else {
                    distance += start.distance(end);
                start.setLocation(end);
                pit.next();
            return distance;
        private void generatePath(Point2D.Double first, Point2D.Double second) {
            Point2D.Double p = new Point2D.Double(first.x, first.y);
            Point2D.Double start = new Point2D.Double();
            Point2D.Double end = new Point2D.Double();
            Line2D.Double line = new Line2D.Double();
            boolean pathStarted = false;
            for(int j = 0; j < 2; j++) {
                PathIterator pit = path.getPathIterator(null);
                double[] coords = new double[2];
                while(!pit.isDone()) {
                    int type = pit.currentSegment(coords);
                    switch(type) {
                        case PathIterator.SEG_MOVETO:
                            start.setLocation(coords[0], coords[1]);
                            pit.next();
                            continue;
                        case PathIterator.SEG_LINETO:
                            end.setLocation(coords[0], coords[1]);
                            line.setLine(start, end);
                            boolean onLine = line.ptSegDist(p) < PROXIMITY;
                            if(onLine) {            // found point on line
                                Point2D.Double linePt = getClosestPoint(line, p);
                                Line2D.Double segment;
                                if(!pathStarted) {  // found first point
                                                    // both points on line
                                    if(line.ptSegDist(second) < PROXIMITY) {
                                        Point2D.Double secPt =
                                            getClosestPoint(line, second);
                                        segment = new Line2D.Double(linePt, secPt);
                                        shortPath.append(segment, false);
                                        return;
                                    } else {        // first point only
                                        segment = new Line2D.Double(linePt, end);
                                        shortPath.append(segment, false);
                                        p.setLocation(second);
                                        pathStarted = true;
                                } else {            // found second point
                                    segment = new Line2D.Double(start, linePt);
                                    shortPath.append(segment, false);
                                    return;
                            } else if(pathStarted) {
                                                    // add intermediate lines
                                Line2D.Double nextLine =
                                    new Line2D.Double(start, end);
                                shortPath.append(nextLine, false);
                    start.setLocation(end);
                    pit.next();
        private Point2D.Double getClosestPoint(Line2D.Double line,
                                               Point2D.Double p) {
            double minDist = Double.MAX_VALUE;
            Point2D.Double closePt = new Point2D.Double();
            double dy = line.getY2() - line.getY1();
            double dx = line.getX2() - line.getX1();
            double theta = Math.atan2(dy, dx);
            double length = line.getP2().distance(line.getP1());
            int limit = (int)(length+.05);
            for(int j = 0; j < limit; j++) {
                double x = line.getX1() + j*Math.cos(theta);
                double y = line.getY1() + j*Math.sin(theta);
                double distance = p.distance(x, y);
                if(distance < minDist) {
                    minDist = distance;
                    closePt.setLocation(x, y);
            return closePt;
        private boolean isPointOnLine(Point p) {
            Point2D.Double start = new Point2D.Double();
            Point2D.Double end = new Point2D.Double();
            Line2D.Double line = new Line2D.Double();
            PathIterator pit = path.getPathIterator(null);
            double[] coords = new double[2];
            while(!pit.isDone()) {
                int type = pit.currentSegment(coords);
                switch(type) {
                    case PathIterator.SEG_MOVETO:
                        start.setLocation(coords[0], coords[1]);
                        pit.next();
                        continue;
                    case PathIterator.SEG_LINETO:
                        end.setLocation(coords[0], coords[1]);
                        line.setLine(start, end);
                        if(line.ptSegDist(p) < PROXIMITY) {
                            return true;
                start.setLocation(end);
                pit.next();
            return false;
        public static void main(String[] args) {
            ShortPath test = new ShortPath();
            test.addMouseListener(test.ml);
            JFrame f = new JFrame();
            f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            f.add(test);
            f.setSize(400,400);
            f.setLocation(200,200);
            f.setVisible(true);
        private MouseListener ml = new MouseAdapter() {
            boolean oneSet = false;
            public void mousePressed(MouseEvent e) {
                Point p = e.getPoint();
                if(oneSet) {
                    p2 = p;
                    findShortPath();
                } else {
                    p1 = p;
                    shortPath.reset();
                oneSet = !oneSet;
                repaint();
    }

  • Help for a query to add columns

    Hi,
    I need for a query where I should add each TableC value as an additional column.
    Please suggest...
    I have 3 tables (TableA, TableB, TableC). TableB stores TableA Id and TableC stores TableB Id
    Considering Id of TableA.
    Sample data
    TableA     :          
    ID     NAME     TABLENAME     ETYPE
    23     Name1     TABLE NAMEA     Etype A
    TableB     :          
    ID     A_ID     RTYPE     RNAME
    26     23     RTYPEA     RNAMEA
    61     23     RTYPEB     RNAMEB
    TableC     :          
    ID     B_ID     COMPNAME     CONC
    83     26     Comp Name AA     1.5
    46     26     Comp Name BB     2.2
    101     61     Comp Name CC     4.2
    Scenario 1: AS PER ABOVE SAMPLE DATA Put each TableC value as an additional column.
    For an Id in TableA(23) where TableB contains 2 records of A_ID (26, 61) and TableC contains 2 records for 26 and 1 record for 61.
    Output required: Put each TABLEC value as an additional column
    TableA.NAME TableA.ETYPE TableB.RTYPE TableC_1_COMPNAME     TableC_1_CONC TableC_2_COMPNAME     TableC_2_CONC     
    Name1 EtypeA RTypeA Comp Name AA 1.5 Comp Name BB 2.2     so on..
    Name1 EtypeA RTypeB Comp Name CC 4.2 NULL NULL     
    Scenario 2: If Table C contains ONLY 1 row for each Id in TableB, output should be somewhat
    Output:
    TableA.NAME TableA.ETYPE TableB.RTYPE TableC_1_COMPNAME
    TableC_1_CONCvalue     value     value     value               value

    Hi,
    Welcome to the forum!
    Do you want the data from TableC presented
    (1) in one column, or
    (2) in several columns (a different column of results for each row in the original TableC)?
    (1) Is called String Aggregation and is easier than (2).
    The best way to do this is with a user-defined aggregate function (STRAGG) which you can copy from asktom.
    Ignoring TableA for now, you could get what you want by saying
    SELECT    b.rtype
    ,         STRAGG (   c.compname
                     || ' '
                     || c.conc
                     )  AS c_data
    FROM      TableB  b
    JOIN      TableC  c  ON b.id  = c.b_id
    GROUP BY  b.rtype;(2) Presenting N rows of TableC as it they were N columns of the same row is called a pivot. Search for "pivot" or "rows to columns" to find examples of how to do this.
    The number of columns in a result set is hard-coded into the query. If you don't know ahead of time how many rows in TableC will match a row in TableB, you can:
    (a) guess high (for example, hard-code 20 columns and let the ones that never contain a match be NULL) or,
    (b) use Dynamic SQL to write a query for you, which has exactly as many columns as you need.
    The two scripts below contain basic information on pivots.
    This first script is similar to what you would do for case (a):
    --     How to Pivot a Result Set (Display Rows as Columns)
    --     For Oracle 10, and earlier
    --     Actually, this works in any version of Oracle, but the
    --     "SELECT ... PIVOT" feature introduced in Oracle 11
    --     is better.  (See Query 2, below.)
    --     This example uses the scott.emp table.
    --     Given a query that produces three rows for every department,
    --     how can we show the same data in a query that has one row
    --     per department, and three separate columns?
    --     For example, the query below counts the number of employess
    --     in each departent that have one of three given jobs:
    PROMPT     ==========  0. Simple COUNT ... GROUP BY  ==========
    SELECT     deptno
    ,     job
    ,     COUNT (*)     AS cnt
    FROM     scott.emp
    WHERE     job     IN ('ANALYST', 'CLERK', 'MANAGER')
    GROUP BY     deptno
    ,          job;
    Output:
        DEPTNO JOB              CNT
            20 CLERK              2
            20 MANAGER            1
            30 CLERK              1
            30 MANAGER            1
            10 CLERK              1
            10 MANAGER            1
            20 ANALYST            2
    PROMPT     ==========  1. Pivot  ==========
    SELECT     deptno
    ,     COUNT (CASE WHEN job = 'ANALYST' THEN 1 END)     AS analyst_cnt
    ,     COUNT (CASE WHEN job = 'CLERK'   THEN 1 END)     AS clerk_cnt
    ,     COUNT (CASE WHEN job = 'MANAGER' THEN 1 END)     AS manager_cnt
    FROM     scott.emp
    WHERE     job     IN ('ANALYST', 'CLERK', 'MANAGER')
    GROUP BY     deptno;
    --     Output:
        DEPTNO ANALYST_CNT  CLERK_CNT MANAGER_CNT
            30           0          1           1
            20           2          2           1
            10           0          1           1
    --     Explanation
    (1) Decide what you want the output to look like.
         (E.g. "I want a row for each department,
         and columns for deptno, analyst_cnt, clerk_cnt and manager_cnt)
    (2) Get a result set where every row identifies which row
         and which column of the output will be affected.
         In the example above, deptno identifies the row, and
         job identifies the column.
         Both deptno and job happened to be in the original table.
         That is not always the case; sometimes you have to
         compute new columns based on the original data.
    (3) Use aggregate functions and CASE (or DECODE) to produce
         the pivoted columns. 
         The CASE statement will pick
         only the rows of raw data that belong in the column.
         If each cell in the output corresponds to (at most)
         one row of input, then you can use MIN or MAX as the
         aggregate function.
         If many rows of input can be reflected in a single cell
         of output, then use SUM, COUNT, AVG, STRAGG, or some other
         aggregate function.
         GROUP BY the column that identifies rows.
    PROMPT     ==========  2. Oracle 11 PIVOT  ==========
    WITH     e     AS
    (     -- Begin sub-query e to SELECT columns for PIVOT
         SELECT     deptno
         ,     job
         FROM     scott.emp
    )     -- End sub-query e to SELECT columns for PIVOT
    SELECT     *
    FROM     e
    PIVOT     (     COUNT (*)
              FOR     job     IN     ( 'ANALYST'     AS analyst
                             , 'CLERK'     AS clerk
                             , 'MANAGER'     AS manager
    NOTES ON ORACLE 11 PIVOT:
    (1) You must use a sub-query to select the raw columns.
    An in-line view (not shown) is an example of a sub-query.
    (2) GROUP BY is implied for all columns not in the PIVOT clause.
    (3) Column aliases are optional. 
    If "AS analyst" is omitted above, the column will be called 'ANALYST' (single-quotes included).
    {code}
    The second script, below, shows one way of doing a dynamic pivot in SQL*Plus:
    {code}
    How to Pivot a Table with a Dynamic Number of Columns
    This works in any version of Oracle
    The "SELECT ... PIVOT" feature introduced in Oracle 11
    is much better for producing XML output.
    Say you want to make a cross-tab output of
    the scott.emp table.
    Each row will represent a department.
    There will be a separate column for each job.
    Each cell will contain the number of employees in
         a specific department having a specific job.
    The exact same solution must work with any number
    of departments and columns.
    (Within reason: there's no guarantee this will work if you
    want 2000 columns.)
    Case 0 "Basic Pivot" shows how you might hard-code three
    job types, which is exactly what you DON'T want to do.
    Case 1 "Dynamic Pivot" shows how get the right results
    dynamically, using SQL*Plus. 
    (This can be easily adapted to PL/SQL or other tools.)
    PROMPT     ==========  0. Basic Pivot  ==========
    SELECT     deptno
    ,     COUNT (CASE WHEN job = 'ANALYST' THEN 1 END)     AS analyst_cnt
    ,     COUNT (CASE WHEN job = 'CLERK'   THEN 1 END)     AS clerk_cnt
    ,     COUNT (CASE WHEN job = 'MANAGER' THEN 1 END)     AS manager_cnt
    FROM     scott.emp
    WHERE     job     IN ('ANALYST', 'CLERK', 'MANAGER')
    GROUP BY     deptno
    ORDER BY     deptno
    PROMPT     ==========  1. Dynamic Pivot  ==========
    --     *****  Start of dynamic_pivot.sql  *****
    -- Suppress SQL*Plus features that interfere with raw output
    SET     FEEDBACK     OFF
    SET     PAGESIZE     0
    SPOOL     p:\sql\cookbook\dynamic_pivot_subscript.sql
    SELECT     DISTINCT
         ',     COUNT (CASE WHEN job = '''
    ||     job
    ||     ''' '     AS txt1
    ,     'THEN 1 END)     AS '
    ||     job
    ||     '_CNT'     AS txt2
    FROM     scott.emp
    ORDER BY     txt1;
    SPOOL     OFF
    -- Restore SQL*Plus features suppressed earlier
    SET     FEEDBACK     ON
    SET     PAGESIZE     50
    SPOOL     p:\sql\cookbook\dynamic_pivot.lst
    SELECT     deptno
    @@dynamic_pivot_subscript
    FROM     scott.emp
    GROUP BY     deptno
    ORDER BY     deptno
    SPOOL     OFF
    --     *****  End of dynamic_pivot.sql  *****
    EXPLANATION:
    The basic pivot assumes you know the number of distinct jobs,
    and the name of each one.  If you do, then writing a pivot query
    is simply a matter of writing the correct number of ", COUNT ... AS ..."\
    lines, with the name entered in two places on each one.  That is easily
    done by a preliminary query, which uses SPOOL to write a sub-script
    (called dynamic_pivot_subscript.sql in this example).
    The main script invokes this sub-script at the proper point.
    In practice, .SQL scripts usually contain one or more complete
    statements, but there's nothing that says they have to.
    This one contains just a fragment from the middle of a SELECT statement.
    Before creating the sub-script, turn off SQL*Plus features that are
    designed to help humans read the output (such as headings and
    feedback messages like "7 rows selected.", since we do not want these
    to appear in the sub-script.
    Turn these features on again before running the main query.
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Finder not showing Desktop

    Running Mavericks, checked Finder Preferences and 'Desktop' IS checked to show... but it doesn't show the desktop in the left column any longer.  Finder _usually_ shows all my drives including internal, external USB, FW, and NAS.  Prior to Mavericks I _never_ had the problems showing or accessing anything.  Opening files stored on NAS from Apps like Photoshop CS4 sometimes works sometimes doesn't... storing an open file or even a new file on the NAS from PS CS4 almost never works now.  Have to first store to a USB or internal drive, then copy to NAS, then delete file on USB or internal so as not to clog drive with hundreds of client graphics files that I use repeatedly.
    Is Mavericks this buggy or am I doing something wrong?  I'm trying to keep my root HDD at least 1/3rd empty for performance sake. 

    Any chance the show / hide is not selected in your actual finder folder, not the preferences? I just went 'round with this for a half hour until I noticed that somehow the 'show' was clicked to 'hide' for some reason.....

  • Finder not showing files, and relaunch doesn't fix it

    A couple days ago, I opened my account, and found there were no files being shown in my finder. I checked terminal, and it confirmed my beleifs of there being files were finder wasnt showing them. I relaunched Finder like the other problems were saying to do, but after relaunching, the Finder application wasn't responding. I have not installed anything other than things from the app store, so it couldn't be a virus, but I have tryed to do a migration from another computer wich did not complete. That shouldn't have effected it though. I have tryed restarting, but that hasn't worked. Please Help!

    I have been having the same problem intermittently. Restarting the mac seems to help but that isn't getting to the root of the problem (should also note that the mac can't shutdown cleanly any more I have to power it off on the last grey-screen shutdown stage).
    When my Finder got into the "Hung" state I did a process sample below...this is the finder with 1 file window open...
    Sampling process 3915 for 3 seconds with 1 millisecond of run time between samples
    Sampling completed, processing symbols...
    Analysis of sampling Finder (pid 3915) every 1 millisecond
    Process:         Finder [3915]
    Path:            /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
    Load Address:    0x10ab83000
    Identifier:      com.apple.finder
    Version:         10.8.1 (10.8.1)
    Build Info:      Finder_FE-808001006000000~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [244]
    Date/Time:       2012-11-16 09:27:21.598 -0800
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  7
    Call graph:
        2754 Thread_331571   DispatchQueue_1: com.apple.main-thread  (serial)
        + 2754 start  (in libdyld.dylib) + 1  [0x7fff84d047e1]
        +   2754 ???  (in Finder)  load address 0x10ab83000 + 0x5b46  [0x10ab88b46]
        +     2754 NSApplicationMain  (in AppKit) + 869  [0x7fff86160cb6]
        +       2754 -[NSApplication run]  (in AppKit) + 517  [0x7fff861bc283]
        +         2754 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:]  (in AppKit) + 128  [0x7fff861c4ed2]
        +           2754 _DPSNextEvent  (in AppKit) + 685  [0x7fff861c5613]
        +             2754 BlockUntilNextEventMatchingListInMode  (in HIToolbox) + 62  [0x7fff889f2cd3]
        +               2754 ReceiveNextEventCommon  (in HIToolbox) + 356  [0x7fff889f2e42]
        +                 2754 RunCurrentEventLoopInMode  (in HIToolbox) + 209  [0x7fff889f30a4]
        +                   2754 CFRunLoopRunSpecific  (in CoreFoundation) + 290  [0x7fff87b766b2]
        +                     2754 __CFRunLoopRun  (in CoreFoundation) + 1078  [0x7fff87b76ee6]
        +                       2754 __CFRunLoopServiceMachPort  (in CoreFoundation) + 195  [0x7fff87b71803]
        +                         2754 mach_msg  (in libsystem_kernel.dylib) + 70  [0x7fff8b522c42]
        +                           2754 mach_msg_trap  (in libsystem_kernel.dylib) + 10  [0x7fff8b523686]
        2754 Thread_331615   DispatchQueue_2: com.apple.libdispatch-manager  (serial)
        + 2754 _dispatch_mgr_thread  (in libdispatch.dylib) + 54  [0x7fff831d09ee]
        +   2754 _dispatch_mgr_invoke  (in libdispatch.dylib) + 883  [0x7fff831d0dea]
        +     2754 kevent  (in libsystem_kernel.dylib) + 10  [0x7fff8b525d16]
        2754 Thread_331622   DispatchQueue_98: TFSVolumeInfo::GetSyncGCDQueue  (serial)
        + 2754 start_wqthread  (in libsystem_c.dylib) + 13  [0x7fff888c7171]
        +   2754 _pthread_wqthread  (in libsystem_c.dylib) + 404  [0x7fff888dccab]
        +     2754 _dispatch_worker_thread2  (in libdispatch.dylib) + 249  [0x7fff831cf1c3]
        +       2754 _dispatch_queue_invoke  (in libdispatch.dylib) + 52  [0x7fff831cf2f1]
        +         2754 _dispatch_queue_drain  (in libdispatch.dylib) + 235  [0x7fff831cf47f]
        +           2754 _dispatch_client_callout  (in libdispatch.dylib) + 8  [0x7fff831ce0b6]
        +             2754 _dispatch_call_block_and_release  (in libdispatch.dylib) + 15  [0x7fff831d1f01]
        +               2754 __PostNodeTaskRequest_block_invoke_0  (in DesktopServicesPriv) + 91  [0x7fff8f133fe1]
        +                 2754 ExceptionSafeBlock(void ()() block_pointer)  (in DesktopServicesPriv) + 12  [0x7fff8f134040]
        +                   2754 __block_global_1  (in DesktopServicesPriv) + 82  [0x7fff8f1a74e7]
        +                     2754 TNode::HandleNodeRequest(TCountedPtr<TNodeTask> const&, TCountedPtr<TVolumeSyncThread> const&)  (in DesktopServicesPriv) + 431  [0x7fff8f134245]
        +                       2754 TNode::HandleRegisterForNotification(TCountedPtr<TNodeTask> const&, TNodePtr const&)  (in DesktopServicesPriv) + 257  [0x7fff8f13e5e7]
        +                         2754 TNode::PopulateChildren(OpaqueNodeRequest* const&) const  (in DesktopServicesPriv) + 76  [0x7fff8f14222c]
        +                           2754 TNode::HandlePopulate(bool) const  (in DesktopServicesPriv) + 92  [0x7fff8f158c88]
        +                             2754 TNode::HandleSync(unsigned int)  (in DesktopServicesPriv) + 2629  [0x7fff8f1445cd]
        +                               2754 TNode::SynchronizeChildren(unsigned int, TNodeEventPtrSet&)  (in DesktopServicesPriv) + 318  [0x7fff8f14736a]
        +                                 2754 TFSInfoSynchronizer::FetchChildren()  (in DesktopServicesPriv) + 242  [0x7fff8f14b398]
        +                                   2754 TFSIterator::Next(TCountedPtr<TFSInfo>&)  (in DesktopServicesPriv) + 41  [0x7fff8f15990d]
        +                                     2754 TFSIterator::NextRaw(TCountedPtr<TFSInfo>&)  (in DesktopServicesPriv) + 44  [0x7fff8f159a14]
        +                                       2754 _URLEnumeratorGetNextURL  (in CoreServicesInternal) + 114  [0x7fff84d26bb1]
        +                                         2754 _GetDirectoryURLs(_CFURLEnumerator*)  (in CoreServicesInternal) + 894  [0x7fff84d27a54]
        +                                           2754 ftsattr_read$INODE64  (in CoreServicesInternal) + 556  [0x7fff84d2a7f2]
        +                                             2754 ftsattr_build  (in CoreServicesInternal) + 1023  [0x7fff84d2b2af]
        +                                               2754 ftsattr_getattrlist  (in CoreServicesInternal) + 425  [0x7fff84d2ad71]
        +                                                 2754 ftsattr_getattrlistRetry  (in CoreServicesInternal) + 59  [0x7fff84d2bec3]
        +                                                   2754 __getattrlist  (in libsystem_kernel.dylib) + 10  [0x7fff8b524bd2]
        2754 Thread_331623   DispatchQueue_208: TNodeEngine 0x7fceda06f4f0  (serial)
        + 2754 start_wqthread  (in libsystem_c.dylib) + 13  [0x7fff888c7171]
        +   2754 _pthread_wqthread  (in libsystem_c.dylib) + 404  [0x7fff888dccab]
        +     2754 _dispatch_worker_thread2  (in libdispatch.dylib) + 249  [0x7fff831cf1c3]
        +       2754 _dispatch_queue_invoke  (in libdispatch.dylib) + 52  [0x7fff831cf2f1]
        +         2754 _dispatch_queue_drain  (in libdispatch.dylib) + 235  [0x7fff831cf47f]
        +           2754 _dispatch_client_callout  (in libdispatch.dylib) + 8  [0x7fff831ce0b6]
        +             2754 _dispatch_call_block_and_release  (in libdispatch.dylib) + 15  [0x7fff831d1f01]
        +               2754 ???  (in Finder)  load address 0x10ab83000 + 0x14efa  [0x10ab97efa]
        +                 2754 ???  (in Finder)  load address 0x10ab83000 + 0x377d3  [0x10abba7d3]
        +                   2754 ???  (in Finder)  load address 0x10ab83000 + 0x378ba  [0x10abba8ba]
        +                     2754 ???  (in Finder)  load address 0x10ab83000 + 0x1e98ff  [0x10ad6c8ff]
        +                       2754 ???  (in Finder)  load address 0x10ab83000 + 0x37a85  [0x10abbaa85]
        +                         2754 ???  (in Finder)  load address 0x10ab83000 + 0x37de1  [0x10abbade1]
        +                           2754 ???  (in Finder)  load address 0x10ab83000 + 0x37e97  [0x10abbae97]
        +                             2754 ???  (in Finder)  load address 0x10ab83000 + 0x1e99f4  [0x10ad6c9f4]
        +                               2754 ???  (in Finder)  load address 0x10ab83000 + 0x38016  [0x10abbb016]
        +                                 2754 ???  (in Finder)  load address 0x10ab83000 + 0x37ae8  [0x10abbaae8]
        +                                   2748 _pthread_cond_wait  (in libsystem_c.dylib) + 927  [0x7fff888defc3]
        +                                   ! 2748 __psynch_cvwait  (in libsystem_kernel.dylib) + 10  [0x7fff8b5250fa]
        +                                   3 _pthread_cond_wait  (in libsystem_c.dylib) + 1003  [0x7fff888df00f]
        +                                   ! 2 cond_dropwait  (in libsystem_c.dylib) + 266  [0x7fff888df1bd]
        +                                   ! : 2 OSAtomicCompareAndSwap64Barrier$VARIANT$mp  (in libsystem_c.dylib) + 3  [0x7fff888c8c97]
        +                                   ! 1 cond_dropwait  (in libsystem_c.dylib) + 20  [0x7fff888df0c7]
        +                                   2 cerror_nocancel  (in libsystem_kernel.dylib) + 28  [0x7fff8b5264f0]
        +                                   1 cerror_nocancel  (in libsystem_kernel.dylib) + 40  [0x7fff8b5264fc]
        +                                     1 cthread_set_errno_self  (in libsystem_c.dylib) + 93  [0x7fff888e20b8]
        2754 Thread_341257
        + 2754 start_wqthread  (in libsystem_c.dylib) + 13  [0x7fff888c7171]
        +   2754 _pthread_wqthread  (in libsystem_c.dylib) + 412  [0x7fff888dccb3]
        +     2754 _pthread_workq_return  (in libsystem_c.dylib) + 25  [0x7fff888dceec]
        +       2754 __workq_kernreturn  (in libsystem_kernel.dylib) + 10  [0x7fff8b5256d6]
        2754 Thread_341258
          2754 start_wqthread  (in libsystem_c.dylib) + 13  [0x7fff888c7171]
            2754 _pthread_wqthread  (in libsystem_c.dylib) + 412  [0x7fff888dccb3]
              2754 _pthread_workq_return  (in libsystem_c.dylib) + 25  [0x7fff888dceec]
                2754 __workq_kernreturn  (in libsystem_kernel.dylib) + 10  [0x7fff8b5256d6]
    Total number in stack (recursive counted multiple, when >=5):
    Sort by top of stack, same collapsed (when >= 5):
            __workq_kernreturn  (in libsystem_kernel.dylib)        5508
            __getattrlist  (in libsystem_kernel.dylib)        2754
            kevent  (in libsystem_kernel.dylib)        2754
            mach_msg_trap  (in libsystem_kernel.dylib)        2754
            __psynch_cvwait  (in libsystem_kernel.dylib)        2748
    Binary Images:
           0x10ab83000 -        0x10b03dff7  com.apple.finder (10.8.1 - 10.8.1) <E66EA62C-F929-30B3-BB53-5D8685451059> /System/Library/CoreServices/Finder.app/Contents/MacOS/Finder
           0x10b345000 -        0x10b348fff  com.apple.IOAccelerator (19.0.26 - 19.0.26) <9DF4BBA7-14F1-35F9-9C4B-4F732B25836A> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelera tor
           0x10b350000 -        0x10b359fe7  libcldcpuengine.dylib (2.1.19 - compatibility 1.0.0) <50800DA2-7233-32E5-9553-A02171B68399> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
           0x10b718000 -        0x10b72dfff  com.apple.frameworks.preferencepanessupport (12.0 - 12.0) <B2DDBD97-CE08-3632-BFED-43325BCDDD7A> /System/Library/PrivateFrameworks/PreferencePanesSupport.framework/Versions/A/P referencePanesSupport
           0x10bab0000 -        0x10babdff7  libGPUSupportMercury.dylib (??? - ???) <5762E7E4-C76E-3442-8C30-3BA1DDCD8BAE> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupportMercury.dylib
           0x10bac5000 -        0x10baf2fff  GLRendererFloat (??? - ???) <B598274C-3C23-3EBB-A7C5-13C131FAC651> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x10bafb000 -        0x10bafeff7  libCoreFSCache.dylib (??? - ???) <C375CAA0-F91F-3D9F-AF90-DB951BD86983> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x10bb99000 -        0x10bb9aff3 +cl_kernels (??? - ???) <5A0A2043-7785-4A9C-87A7-F9BF77F59CBE> cl_kernels
           0x10d0a1000 -        0x10d258fff  GLEngine (??? - ???) <94C4C4C0-E96C-30B2-8CD7-DE8D82CA74F1> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x10d28f000 -        0x10d3d1fff  libGLProgrammability.dylib (??? - ???) <FC866EA6-6263-3F51-BF7C-EA1A9A4162B4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x10d493000 -        0x10d494ff2 +cl_kernels (??? - ???) <BAFB9679-F080-4F9C-83FD-AAFFE89F20DB> cl_kernels
           0x10d52f000 -        0x10d52fff1 +cl_kernels (??? - ???) <423CC716-C1BB-4714-9742-9C5EA5FA0DCD> cl_kernels
           0x10f49a000 -        0x10f49bff3 +cl_kernels (??? - ???) <0C528305-6507-4715-8D32-268385569DB0> cl_kernels
           0x10f4a9000 -        0x10f74afef  com.apple.AMDRadeonX3000GLDriver (1.0.29 - 1.0.0) <AFF4FFE6-F389-3E65-A224-F7382FB94620> /System/Library/Extensions/AMDRadeonX3000GLDriver.bundle/Contents/MacOS/AMDRade onX3000GLDriver
           0x110f34000 -        0x110fcfff7  unorm8_bgra.dylib (2.1.19 - compatibility 1.0.0) <904EA51D-225A-38AF-B66C-84493C55C065> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x110fee000 -        0x111088fff  unorm8_argb.dylib (2.1.19 - compatibility 1.0.0) <1D561074-BC2D-31A1-97A2-12913DD005AE> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_argb.dylib
        0x7fff6a783000 -     0x7fff6a7b793f  dyld (210.2 - ???) <A40597AA-5529-3337-8C09-D8A014EB1578> /usr/lib/dyld
        0x7fff82ee8000 -     0x7fff82f99fff  com.apple.LaunchServices (539.7 - 539.7) <DA7C602E-5E01-31B8-925D-B45360CA089F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff82f9a000 -     0x7fff8306dff7  com.apple.DiscRecording (7.0 - 7000.2.4) <49FD2D2F-4F2C-39B6-877B-6E3172577D18> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff830c2000 -     0x7fff830cfff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff83131000 -     0x7fff831cbfff  libvMisc.dylib (380.6.0 - compatibility 1.0.0) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff831cc000 -     0x7fff831e1ff7  libdispatch.dylib (228.23.0 - compatibility 1.0.0) <D26996BF-FC57-39EB-8829-F63585561E09> /usr/lib/system/libdispatch.dylib
        0x7fff831e2000 -     0x7fff831f9fff  com.apple.CFOpenDirectory (10.8 - 151.10) <FFBBA538-00B5-334E-BA5B-C8AD6CDCDA14> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff831fa000 -     0x7fff832b7ff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff832b8000 -     0x7fff832c2fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff832c3000 -     0x7fff832c6fff  com.apple.help (1.3.2 - 42) <343904FE-3022-3573-97D6-5FE17F8643BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff832c7000 -     0x7fff83a6ffff  com.apple.CoreAUC (6.16.00 - 6.16.00) <B0B4B5B8-6F8F-3221-9128-313E3B8C695D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff83a70000 -     0x7fff83a72ff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff83a73000 -     0x7fff83ae0fff  com.apple.datadetectorscore (4.0 - 269.1) <C94C372B-3821-3A46-A8C2-091AB1CFF7F4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff83ae1000 -     0x7fff83af0ff7  com.apple.opengl (1.8.6 - 1.8.6) <720CC06C-0D01-37AE-BB3D-D7F0242B262A> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff83bc3000 -     0x7fff83d34ff7  com.apple.QTKit (7.7.1 - 2599.13) <5B24A892-ED69-3C01-8B00-DF3AD81A20D4> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff83d35000 -     0x7fff83d35fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff83d36000 -     0x7fff83d5dfff  com.apple.framework.familycontrols (4.1 - 410) <AE49B2AB-7D2B-3D52-8E21-60EBEA1A38E6> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff83d5e000 -     0x7fff83d95ff7  libssl.0.9.8.dylib (47.0.0 - compatibility 0.9.8) <923945E6-C489-3406-903B-A362410753F8> /usr/lib/libssl.0.9.8.dylib
        0x7fff83d96000 -     0x7fff83dd0fff  com.apple.framework.internetaccounts (2.1 - 210) <0AB62FFA-42C8-3433-9C23-7D1AB411348F> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff83dd2000 -     0x7fff83f16fef  com.apple.MediaControlSender (1.4.5 - 145.3) <3A308EA3-21F7-3213-9157-D3421EB43715> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff83f21000 -     0x7fff83f3efff  com.apple.openscripting (1.3.6 - ???) <33B87CFB-CACC-3EBC-893D-38AECB94FB8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff83f3f000 -     0x7fff83f43fff  libGIF.dylib (??? - ???) <2690CE83-E934-3EF8-A30A-996EDADCE3E4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff83f44000 -     0x7fff84095fff  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8) <833DA682-A3C1-39E7-AEC3-9EDC734DE2A9> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff840b1000 -     0x7fff841aefff  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <ADE9CB98-D77D-300C-A32A-556B7440769F> /usr/lib/libsqlite3.dylib
        0x7fff84984000 -     0x7fff8498dfff  com.apple.CommerceCore (1.0 - 26) <997CD214-BC78-3C61-A1B8-813EA1CB9997> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8498e000 -     0x7fff84a1bff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff84a1c000 -     0x7fff84a76fff  com.apple.print.framework.PrintCore (8.1 - 387.1) <1FA17B75-33E6-35BD-9198-35F92E37B248> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff84a77000 -     0x7fff84a78fff  libDiagnosticMessagesClient.dylib (??? - ???) <8548E0DC-0D2F-30B6-B045-FE8A038E76D8> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff84a79000 -     0x7fff84b0afff  com.apple.CorePDF (2.0 - 2) <EB5660B1-0D79-34F3-B242-B559AE0A5B4A> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff84bcf000 -     0x7fff84cf8ff7  com.apple.avfoundation (2.0 - 361.25) <1F5CACA6-9CF3-3FAB-BDE1-E6CC96A63FF7> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff84d02000 -     0x7fff84d05ff7  libdyld.dylib (210.2.3 - compatibility 1.0.0) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff84d07000 -     0x7fff84d35fff  com.apple.CoreServicesInternal (154.2 - 154.2) <3E6196E6-F3B4-316F-9E1F-13B6B9694C7E> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff84d36000 -     0x7fff84d6afff  com.apple.securityinterface (6.0 - 55024.4) <614C9B8E-2056-3A41-9A01-DAF74C97CC43> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff84e13000 -     0x7fff84e27fff  libGL.dylib (??? - ???) <2E00615F-97F5-34EB-BE07-75A24F3C18D7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff84fb3000 -     0x7fff84fb7ff7  com.apple.TCC (1.0 - 1) <F2F3B753-FC73-3543-8BBE-859FDBB4D6A6> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff84fb8000 -     0x7fff853d5fff  FaceCoreLight (2.4.1 - compatibility 1.0.0) <A34C9575-C4C1-31B1-809B-7751070B4E8B> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff853d6000 -     0x7fff853d7ff7  libSystem.B.dylib (169.3.0 - compatibility 1.0.0) <365477AB-D641-389D-B8F4-A1FAE9657EEE> /usr/lib/libSystem.B.dylib
        0x7fff853d8000 -     0x7fff8542fff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff85430000 -     0x7fff85432fff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff85433000 -     0x7fff85dc3c67  com.apple.CoreGraphics (1.600.0 - ???) <DCC70C6E-AB6D-3457-A823-7569CB29B107> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff85dc4000 -     0x7fff85e92fff  com.apple.Bluetooth (4.0.9 - 4.0.9f33) <3F57E1F3-08E8-3EDF-8DE0-E3855EB4D74B> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff85e93000 -     0x7fff85e94ff7  libsystem_sandbox.dylib (??? - ???) <3C3B03CF-C525-3CB3-8557-62E91B93AC95> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff85e95000 -     0x7fff85ef1ff7  com.apple.Symbolication (1.3 - 93) <F2C7E0B6-B241-3020-B30A-0636D0FA3378> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff85efc000 -     0x7fff85fecff7  com.apple.DiskImagesFramework (10.8 - 344) <3A30B9B5-5099-35E2-9DCD-C96764FA2D26> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff85fed000 -     0x7fff8606ffff  com.apple.Heimdal (3.0 - 2.0) <660A6C64-4912-32C8-A332-B64164032A2D> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff86070000 -     0x7fff86c9dff7  com.apple.AppKit (6.8 - 1187.34) <1FF64844-EB62-3F96-AED7-6525B7CCEC23> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff86c9e000 -     0x7fff86d38fff  com.apple.CoreSymbolication (3.0 - 87) <75F2C0DD-549A-36F6-BD9E-FB40A924344F> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff86d39000 -     0x7fff86d73fff  com.apple.GSS (3.0 - 2.0) <0BDF8090-5EF4-3759-94DE-8521D74188AA> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff86f26000 -     0x7fff86f2bfff  libcache.dylib (57.0.0 - compatibility 1.0.0) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff86f2c000 -     0x7fff86f51ff7  libc++abi.dylib (24.4.0 - compatibility 1.0.0) <E7BD9363-1D25-3551-A68A-2E2FF6ABECD7> /usr/lib/libc++abi.dylib
        0x7fff86f52000 -     0x7fff8706cfff  com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8706d000 -     0x7fff87132ff7  com.apple.coreui (2.0 - 181.1) <83D2C92D-6842-3C9D-9289-39D5B4554C3A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff87133000 -     0x7fff8715efff  libxslt.1.dylib (3.26.0 - compatibility 3.0.0) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff87655000 -     0x7fff87655fff  libOpenScriptingUtil.dylib (??? - ???) <B8061D13-C1B2-38D5-A723-9A98D64E67AC> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff87656000 -     0x7fff87667ff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
        0x7fff87668000 -     0x7fff876e6ff7  com.apple.securityfoundation (6.0 - 55115.4) <C5461971-E455-31A6-99B8-AF80C4BC26DD> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff87725000 -     0x7fff87725fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff87762000 -     0x7fff877d2fff  com.apple.ISSupport (1.9.8 - 56) <23ED7650-2705-355A-9F11-409A9981AC53> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
        0x7fff877d3000 -     0x7fff8782dfff  com.apple.Suggestions (2.0 - 102.1) <05D8D892-9A31-301A-BD24-D8A89B2AC905> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
        0x7fff87884000 -     0x7fff87adfff7  com.apple.QuartzComposer (5.1 - 284) <D9CDC9ED-9F03-30F0-80DF-BA189A054AC9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff87ae0000 -     0x7fff87ae0ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <29E2C990-3617-3FA2-BDD7-DB7DF493E443> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff87ae1000 -     0x7fff87af8fff  com.apple.GenerationalStorage (1.1 - 132.2) <3F5C87BD-D866-3732-8CB9-D23ED9784D6E> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff87afe000 -     0x7fff87b41fff  com.apple.RemoteViewServices (2.0 - 80.5) <F3A897C9-A277-3B56-8FB3-2BC2C10C33BF> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff87b42000 -     0x7fff87d2bfff  com.apple.CoreFoundation (6.8 - 744.12) <EF002794-DAEF-31C6-866C-E3E3AC387A9F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff87d94000 -     0x7fff87d94fff  com.apple.vecLib (3.8 - vecLib 3.8) <794317C7-4E38-338A-A874-5E18001C8503> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff87d95000 -     0x7fff87de0ff7  com.apple.CoreMedia (1.0 - 926.62) <CFBD094F-DA9C-3498-9D50-BC754B56F00A> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff87de1000 -     0x7fff87e01fff  libPng.dylib (??? - ???) <C3CDD2B4-3CB0-3F6D-8411-DAAF267E952B> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff87e02000 -     0x7fff87f1bff7  com.apple.ImageIO.framework (3.2.0 - 845) <553B9828-A7D9-3AE4-A214-1C33417545FD> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff87f1c000 -     0x7fff881ecfff  com.apple.security (7.0 - 55179.1) <639641EF-8156-3190-890C-1053658E044A> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff881ed000 -     0x7fff88214ff7  com.apple.PerformanceAnalysis (1.16 - 16) <E4888388-F41B-313E-9CBB-5807D077BDA9> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff88226000 -     0x7fff8827ffff  com.apple.ImageCaptureCore (5.0.1 - 5.0.1) <2CC27836-1E1E-3633-B15C-A3BA1734D092> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff88285000 -     0x7fff88293ff7  libsystem_network.dylib (??? - ???) <0D99F24E-56FE-380F-B81B-4A4C630EE587> /usr/lib/system/libsystem_network.dylib
        0x7fff88294000 -     0x7fff8829efff  com.apple.DisplayServicesFW (2.6.1 - 353) <0505CB8A-47D9-3539-9A0D-24F09D99E9D8> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8829f000 -     0x7fff8833cff7  com.apple.PDFKit (2.7.2 - 2.7.2) <DE5BE2EF-2570-3792-B1C3-AAD45765F533> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8833d000 -     0x7fff8833eff7  libdnsinfo.dylib (453.18.0 - compatibility 1.0.0) <E7595861-ECF9-336E-9901-BED2620FAA80> /usr/lib/system/libdnsinfo.dylib
        0x7fff8833f000 -     0x7fff88382ff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff88383000 -     0x7fff88455ff7  com.apple.CoreText (260.0 - ???) <5BFC1D67-6A6F-38BC-9D90-9C712684EDAC> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff88456000 -     0x7fff88458fff  libCVMSPluginSupport.dylib (??? - ???) <7EFDA31E-E463-3897-A8DC-7FD266EB713E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff88459000 -     0x7fff884affff  com.apple.HIServices (1.20 - ???) <A1129272-FEC8-350B-BA26-5A97F23C413D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff884b0000 -     0x7fff884edfe7  libGLImage.dylib (??? - ???) <7F31DD61-3110-3541-A9BB-035CD1262E50> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff884ee000 -     0x7fff884f4fff  libmacho.dylib (829.0.0 - compatibility 1.0.0) <BF332AD9-E89F-387E-92A4-6E1AB74BD4D9> /usr/lib/system/libmacho.dylib
        0x7fff88553000 -     0x7fff8886aff7  com.apple.CoreServices.CarbonCore (1037.3 - 1037.3) <DF7CABCA-F2CB-345B-8EFF-F0F4E937B7FF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff888c6000 -     0x7fff88992fe7  libsystem_c.dylib (825.25.0 - compatibility 1.0.0) <8CBCF9B9-EBB7-365E-A3FF-2F3850763C6B> /usr/lib/system/libsystem_c.dylib
        0x7fff88993000 -     0x7fff88cc3ff7  com.apple.HIToolbox (2.0 - ???) <317F75F7-4B0F-35F5-89A7-F20BA60AC944> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff88cc4000 -     0x7fff88cd8fff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <94EDF2AB-809C-3D15-BED5-7AD45B2A7C16> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff88cd9000 -     0x7fff88ddbfff  libcrypto.0.9.8.dylib (47.0.0 - compatibility 0.9.8) <74F165AD-4572-3B26-B0E2-A97477FE59D0> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff88df5000 -     0x7fff88df7fff  com.apple.securityhi (4.0 - 55002) <34E45C60-DC7E-3FCC-A1ED-EBF48B77C559> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff88df8000 -     0x7fff88df8fff  com.apple.AOSMigrate (1.0 - 1) <585B1483-490E-32DD-97DC-B9279E9D3490> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff88df9000 -     0x7fff88e2aff7  com.apple.DictionaryServices (1.2 - 184.4) <054F2D6F-9CFF-3EF1-9778-25C551B616C1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff88e2b000 -     0x7fff88e2efff  libRadiance.dylib (??? - ???) <E8956A35-494E-3014-8B86-362D32576116> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff88e2f000 -     0x7fff88f3afff  libFontParser.dylib (??? - ???) <617A7D30-C7BC-39FC-A1FE-59367B4A5719> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff88f78000 -     0x7fff88f83ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <C12962D5-85FB-349E-AA56-64F4F487F219> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff88fc9000 -     0x7fff89164fef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff89165000 -     0x7fff891b4ff7  libcorecrypto.dylib (??? - ???) <CE0C29A3-C420-339B-ADAA-52F4683233CC> /usr/lib/system/libcorecrypto.dylib
        0x7fff891b5000 -     0x7fff891c7ff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff891c8000 -     0x7fff891c9ff7  libremovefile.dylib (23.1.0 - compatibility 1.0.0) <DBBFAF35-AC78-3856-92F6-6E4FD9DF14A2> /usr/lib/system/libremovefile.dylib
        0x7fff891ca000 -     0x7fff891ccff7  libunc.dylib (25.0.0 - compatibility 1.0.0) <92805328-CD36-34FF-9436-571AB0485072> /usr/lib/system/libunc.dylib
        0x7fff891f5000 -     0x7fff891fafff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff891fb000 -     0x7fff89251ff7  com.apple.opencl (2.1.20 - 2.1.20) <AF142CA4-EA1D-31B0-A48F-AA2B75D4309E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff89252000 -     0x7fff892affff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <B3198BD6-EA1D-3E5E-ADD4-37D8E6B72678> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff892b0000 -     0x7fff892b0fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff892b1000 -     0x7fff892f9fff  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <EBDBF42D-E4A6-3D05-A76B-2817D79D59E2> /usr/lib/libcurl.4.dylib
        0x7fff892fa000 -     0x7fff892fbfff  liblangid.dylib (??? - ???) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff892fc000 -     0x7fff893f9ff7  libxml2.2.dylib (10.8.0 - compatibility 10.0.0) <47B09CB2-C636-3024-8B55-6040F7829B4C> /usr/lib/libxml2.2.dylib
        0x7fff893fa000 -     0x7fff893fafff  com.apple.Accelerate (1.8 - Accelerate 1.8) <6AD48543-0864-3D40-80CE-01F184F24B45> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff893fb000 -     0x7fff89407fff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <2033247A-CABC-3E20-8498-7367A8F44A08> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff89408000 -     0x7fff8940ffff  com.apple.phonenumbers (1.1 - 47) <E6A01FEF-9C6D-3C18-B378-63F4134756E6> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff89410000 -     0x7fff89446fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff89447000 -     0x7fff89482fff  com.apple.LDAPFramework (2.4.28 - 194.5) <0190B746-F684-3F43-B4D0-148EFE386CA4> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff8953c000 -     0x7fff89551fff  com.apple.ImageCapture (8.0 - 8.0) <17A45CE6-7DA3-36A5-B7EF-72BC136981AE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff8a50c000 -     0x7fff8a510fff  libCoreVMClient.dylib (??? - ???) <55F71158-ADEE-3863-92E9-4772DCEA8E31> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8a7a2000 -     0x7fff8a7b0ff7  libkxld.dylib (??? - ???) <7027CE49-007D-3553-8FFA-3E3B428B2316> /usr/lib/system/libkxld.dylib
        0x7fff8a7b1000 -     0x7fff8a7c4ff7  libbsm.0.dylib (??? - ???) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff8a7c5000 -     0x7fff8a7d3fff  libcommonCrypto.dylib (50000.0.0 - compatibility 1.0.0) <2D6537F5-1B5E-305C-A1CF-D1FA80CA3939> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8a886000 -     0x7fff8a906ff7  com.apple.ApplicationServices.ATS (332 - ???) <BD83B039-AB25-3E3E-9975-A67DAE66988B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8a915000 -     0x7fff8aa9bfff  libBLAS.dylib (??? - ???) <C102C0F6-8CB6-3B49-BA6B-2EB61F0B2784> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8aa9c000 -     0x7fff8aaaafff  com.apple.Collaboration (68 - 68) <164D07CA-B00B-36C1-B488-D33329FB8314> /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
        0x7fff8aad4000 -     0x7fff8ad78fff  com.apple.CoreImage (8.2.2 - 1.0.1) <930B0B23-DD84-3B0C-B5A9-C09B7068A6F0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8ad79000 -     0x7fff8ad98ff7  libresolv.9.dylib (??? - ???) <0882DC2D-A892-31FF-AD8C-0BB518C48B23> /usr/lib/libresolv.9.dylib
        0x7fff8adb1000 -     0x7fff8b10dfff  com.apple.Foundation (6.8 - 945.11) <A5D41956-A354-3ACC-9355-BE200072223B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8b11c000 -     0x7fff8b13eff7  libxpc.dylib (140.41.0 - compatibility 1.0.0) <FAC04D8B-680E-325F-8F0C-DD69859D0E01> /usr/lib/system/libxpc.dylib
        0x7fff8b13f000 -     0x7fff8b161ff7  com.apple.Kerberos (2.0 - 1) <C49B8820-34ED-39D7-A407-A3E854153556> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff8b162000 -     0x7fff8b16ffff  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <CE9785E8-B535-3504-B392-82F0064D9AF2> /usr/lib/libbz2.1.0.dylib
        0x7fff8b170000 -     0x7fff8b3f0ff7  com.apple.AOSKit (1.05 - 151) <A34E8584-797C-318F-9E25-937A710C68AB> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff8b3f1000 -     0x7fff8b3fffff  com.apple.Librarian (1.1 - 1) <1635162F-239A-341E-83C7-710C55E254AF> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff8b400000 -     0x7fff8b404fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff8b405000 -     0x7fff8b430fff  com.apple.framework.Apple80211 (8.0.1 - 801.17) <05786C8E-8C6F-31AF-80B5-9C98175757B4> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8b47d000 -     0x7fff8b4daff7  com.apple.AE (645.3 - 645.3) <FF867ACA-8628-3E5A-8FA0-AF429B42C5D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff8b4db000 -     0x7fff8b4e6ff7  com.apple.aps.framework (3.0 - 3.0) <11E1A5D1-F5E5-3228-8B6F-77EB36B5C248> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff8b513000 -     0x7fff8b52eff7  libsystem_kernel.dylib (2050.18.24 - compatibility 1.0.0) <C0535565-35D1-31A7-A744-63D9F10F12A4> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8b52f000 -     0x7fff8b597fff  libvDSP.dylib (380.6.0 - compatibility 1.0.0) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8b641000 -     0x7fff8b689fff  com.apple.framework.CoreWiFi (1.0 - 100.10) <0E863B4A-1094-3F8D-BEDE-D99537E9C588> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8b6bd000 -     0x7fff8b75bff7  com.apple.ink.framework (10.8.2 - 150) <84B9825C-3822-375F-BE58-A753444FBDE2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8b75c000 -     0x7fff8b75cfff  libkeymgr.dylib (25.0.0 - compatibility 1.0.0) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff8b75d000 -     0x7fff8b79cff7  com.apple.QD (3.42 - ???) <8DF36FCA-C06B-30F4-A631-7BE2FF7E56D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8b801000 -     0x7fff8b86eff7  com.apple.framework.IOKit (2.0 - ???) <142E19DD-1C8D-3D61-ABC8-83994A73279F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8b8c0000 -     0x7fff8b9c2fff  libJP2.dylib (??? - ???) <405CAF25-0AA5-3C6B-A4A6-94471A1EDD2F> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8b9c3000 -     0x7fff8bb37fff  com.apple.CFNetwork (596.2.3 - 596.2.3) <6A16C2BD-1035-30F9-AE96-D9E3BB54A976> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff8bb38000 -     0x7fff8bb4efff  com.apple.MultitouchSupport.framework (235.28 - 235.28) <BD78B16E-9B5A-3E07-93B4-13AD1A538CAC> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff8bb4f000 -     0x7fff8bd84ff7  com.apple.CoreData (106.1 - 407.7) <24E0A6B4-9ECA-3D12-B26A-72B9DCF09768> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8bd85000 -     0x7fff8bd8bfff  com.apple.DiskArbitration (2.5.1 - 2.5.1) <F7DAF7CC-5893-3F06-9168-3B0192B66D15> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8bd8c000 -     0x7fff8c185ff7  com.apple.MediaToolbox (1.0 - 926.62) <83BBE53E-29FE-3874-9991-B6D009EADCC5> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8c186000 -     0x7fff8c188ff7  com.apple.EFILogin (2.0 - 2) <51A470D7-1F72-3369-AF0F-AD2340B42C12> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8c189000 -     0x7fff8c44cff7  com.apple.AddressBook.framework (7.1 - 1167) <92EF9CE4-A42B-3D30-8CA2-79C0A66BB4CE> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
        0x7fff8c44d000 -     0x7fff8c4b5ff7  libc++.1.dylib (65.1.0 - compatibility 1.0.0) <20E31B90-19B9-3C2A-A9EB-474E08F9FE05> /usr/lib/libc++.1.dylib
        0x7fff8c4b6000 -     0x7fff8c501fff  com.apple.framework.CoreWLAN (3.0.1 - 301.11) <8370178E-438C-375C-AA41-A8DEE60B8636> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8c585000 -     0x7fff8c65fff7  com.apple.backup.framework (1.4.1 - 1.4.1) <A3CFCA9E-717C-302D-821B-16FD35E6673F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8c660000 -     0x7fff8c665fff  libcompiler_rt.dylib (30.0.0 - compatibility 1.0.0) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff8c666000 -     0x7fff8c8ebfff  com.apple.RawCamera.bundle (4.01 - 666) <BBDA55DD-6155-39B5-9D55-5CCCCFF26D98> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8c994000 -     0x7fff8cd8bfff  libLAPACK.dylib (??? - ???) <D632EC8B-2BA0-3853-800A-20DA00A1091C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8cd8c000 -     0x7fff8cdccfff  com.apple.MediaKit (13 - 659) <0C56D7FF-0430-3199-9952-CF8577519449> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff8cddf000 -     0x7fff8ce0dff7  libsystem_m.dylib (??? - ???) <B434BE5C-25AB-3EBD-BAA7-5304B34E3441> /usr/lib/system/libsystem_m.dylib
        0x7fff8d19c000 -     0x7fff8d1bdfff  com.apple.Ubiquity (1.2 - 243.10) <F97D3A33-2C8B-3CFF-AF75-A74866D42853> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff8d1d5000 -     0x7fff8d1d5fff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff8d1d6000 -     0x7fff8d202fff  com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff8d2f8000 -     0x7fff8d2fbfff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff8d2fc000 -     0x7fff8d34bff7  libFontRegistry.dylib (??? - ???) <2E03D7DA-9B8F-31BB-8FB5-3D3B6272127F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8d34c000 -     0x7fff8d376ff7  com.apple.CoreVideo (1.8 - 99.3) <C424838A-889C-39E5-8108-FD05C93D26A0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8d377000 -     0x7fff8d577fff  libicucore.A.dylib (49.1.0 - compatibility 1.0.0) <CC318A27-878A-38CE-9292-1B98353FA9C7> /usr/lib/libicucore.A.dylib
        0x7fff8d5b2000 -     0x7fff8d5b2fff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8d5b3000 -     0x7fff8d5d2ff7  com.apple.ChunkingLibrary (2.0 - 133.2) <D2A746DE-002A-3C6C-961E-BE94E71DB835> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8d62e000 -     0x7fff8d632fff  com.apple.IOSurface (86.0.3 - 86.0.3) <C121DE83-ED12-3DC1-BDB3-4FCB29AB0571> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8d633000 -     0x7fff8d65bfff  libJPEG.dylib (??? - ???) <A32618D7-FB91-3EE2-A105-5407B2F3F8D8> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8d8a4000 -     0x7fff8d925fff  com.apple.Metadata (10.7.0 - 707.3) <A45D75C1-B311-39F0-AF4A-63FCCC098C1D> /System/Libr

  • Finder not showing documents folder under user

    In finder, if I click user (my name) in left column, in the right column it no longer shows the document folder.
    If I click on documents in the left column, they display, and show the path as (my name)/documents (I think I have that turned on in preferences).
    In other words, documents is where it should be, just not showing up in finder under user (my name).
    What is going on?
    bob

    It's possible that the invisible bit got set. Most often it gets set, and no one knows why, on drives. But I've seen it get set for folders as well (although having it set on the Documents folder is, I think, a new one). If this the case and you have the Path item in the window toolbar, when you select it with the the Documents folder open, you will see that the Docs folder icon in the list looks greyish compared to the other items. Even if you aren't sure whether this is the problem, you can run this Terminal command:
    chflags nohidden ~/Documents
    Launch Terminal from your Utilities folder, copy and paste the above line, and press the Return key. If the invisible bit got set, that will fix it. If that isn't the problem, then nothing will happen. The command might fix it, and it won't harm anything at all.
    Francine
    Francine
    Schwieder

  • Custom Facelets Handler to add Columns

    Hi,
    my application uses a custom grid based on Mojarra datatable.
    The grid has fixed colums on the left side, dynamic scrollable columns in the middle part and fixed colums on the right side.
    What i like to have is that i can define the fixed column inside the xhtml pages, the dynamic columns could be created in backing bean.
    Something like:
    <h:column ...>fixed left</h:column>
    <my:columns cols="#{view.dynamicColumns}" />
    <h:column ...>fixed right</h:column>
    Is it possible to use a tag handler or component handler or whatever, which adds columns of a collection to the datatable?
    thanx,
    hammoud

    The problem is that JSF 1.2 and the default HTML component set does not come by default with the concept of dynamic columns. You can find ui components like these in other libraries like the RichFaces component set. Other than that you would need to write your own data table renderer. Since the default data table renderer wraps each UIColumn inside a <td> tag you don't have much control inside the actual column component to make it more than one columns. The default data table renderer only renders children of type UIColumn anyways there is not much you can do there.
    Using a TagHandler, you could have it add an arbitrary amount of UIColumn/HtmlColumn components depending on certain parameters, this can be made to work. For instance inside the apply() method for the handler you could do:
      Map columns = (Map) this.getRequiredAttribute("columns");
      for (Object key : columns.keySet()) {
        UIColumn column = new UIColumn();
        // you can setup the column component here
        parent.getChildren().add(column);
      }The problem with this type of solution is maintaining state. If what is displayed is only text then it should work. Otherwise, if you happen to have UIInput components inside your columns then it gets ever complicated. The best thing is to choose one of the library sets that comes with a data table that supports multiple dynamic columns like RichFaces and some others.
    Ponderator

  • Finding and showing file date/time i'm referencing on

    How can I find and show on page the date and time parameters of file on which i'm referencing with using an JSP? I tried it with java.io.*,
    <%@ page import="java.io.*"%>
    <%@ page import="java.awt.*,javax.swing.text.*"%>
    <%@ page contentType="text/html; charset=windows-1250"%>
    <%
    File u_file=new File("http://oracle1/pn/index.html");
    long dat=u_file.lastModified();
    Date u_date=new Date(dat);
    %>
    <%=u_file.getPath()%>
    <%=u_file.getName()%>
    <%=u_file.isFile()%>
    <%=u_date%>
    but the date was always 0(1.1.1970) ,result of isFile was null, but result of Pathname and Name was correct.
    What is wrong?

    From the JSP, if you say, File file = new File(path);
    It will try to search for the file starting from the bin directory (I am using tomcat). So, you need to give the full path to the file from there.
    For example, if your file is in, webapps/examples/html/ directory, you need to use something like this,
    File file = new File("../webapps/examples/html/index.html");
    You can't give URL as the file name/path. You can't access Oracle's file system!!!
    Hope this helps.
    Sudha

  • I am using dreamweaver cs6 and none of the menu's are showing up like the common, form, layout, spry etc...not sure why?

    i am using dreamweaver cs6 and none of the menu's are showing up like the common, form, layout, spry etc...not sure why?

    Which version of CC -- 13, 2014, or 2014.1?  You'll find it under the Help menu > About DW.
    Spry Menus are gone.
    Color is something you add with CSS.
    Nancy O.

  • Columns in Finder windows won't stay where I put them!

    WHen I open a finder window, put in LIST VIEW, then re-size my columns - everything is good now I can do stuff. BUT WAIT! I do one thing: dragging one folder and nesting it into another and BAM! The columns re-size back to the default. This is a deal-killer for me. I cannot work like this! If there is no fix, SOrry, but goodbye apple and hello Windows.

    Open window is a folder named "Photos".
    It contains many sub folders: Backyard photos, front yard photos, vacation photos, etc.
    It also contains a ton of image files - that I'm sorting into their respective folders.
    When I drag an image file titled "Backyard sunny" into the sub-folder "Backyard photos"... the columns all snap back to their default settings. FORCING ME TO RESIZE THEM.... then I drag another photo into another folder and the same thing happens again. THIS IS A SHUTDOWN OF MY USING MAC OS. I either need to return to Mavericks, or this needs to be fixed somehow. This never happened before, and it won't happen in the future, not on my desktop. I'd hate to start asking my wife to start teaching me windows. I've been a mac person my whole computing life (since the early 1990's) and never have I run into a show-stopper like this.
    My computer is NON-FUNCTIONAL if the columns won't stay where I put them!

Maybe you are looking for

  • After updating to iOS 8.3 on my 5s, my phone no longer will connect via USB to my GMC Terrain.

    Bluetooth connections still work and was able to connect via USB with an iPhone 6, bit the 5s will only play the first 5 seconds of a song after it is connected, then the song stops and no matter what is done, even restarting the car, it will not rec

  • Standard or Advanced?

    I currently have 1 G5 running server 10.3.9 doing Web,Mail,AFP,DNS and a Xserv Quad running FMPSA 8.5. I just purchased another Xserv and would like to replace the G5 for everything except Web which I will leave running on the G5 and put it in the DM

  • Display tree node data in bold characters

    Hi, I have a requirement where I need to display tree nodes data in bold characters. If I click on a particular tree node, next time it should appear in normal font only which means that some task had done using that tree node. Is my question clear??

  • Ichat3 error message camera in use by another application

    when i try and open ichat3 the video will not preview it tells me the camera is in use by another application which as far as i can see its not anyone got any ideas, thanks

  • [svn:cairngorm3:] 14661: Migrate to Flex SDK 3.5

    Revision: 14661 Revision: 14661 Author:   [email protected] Date:     2010-03-10 04:58:46 -0800 (Wed, 10 Mar 2010) Log Message: Migrate to Flex SDK 3.5 Modified Paths:     cairngorm3/trunk/build-parent/pom.xml