Big slow down in 3.2.2

We are finding this release very is slow on redrawing complex pages.
FireFox,Chrome and Opera are about 5 times faster.
Safari used to be quick.

How much memory you have on your computer will determine how fast your browser will run as well as how fast your computer executes tasks. Also if your video card is integrated onto your mother board you will find your browser to run slower because you have Windows, video feed, Safari and what ever else needs power to run fighting for Memory. In the memory battle Windows will win every time. Safari uses 45MB to run. Firefox uses 31 or 32 MB to run. Also depending on how many extensions you have running in Firefox that will also determine how fast Firefox runs. I have found that Safari 3.2.2 runs much faster than my Firefox.

Similar Messages

  • Time Machine backups slow down TC internet connection

    I'm having a problem with my TC internet connection slowing down dramatically. When I connect my DSL modem directly to my Mini, it's fine. When I connect it to the TC there are big slow downs off and on. I'm wondering if the backups done by TM slow down the internet connection and the network as a whole.

    Over ethernet no, it would have almost no effect.. over wireless yes.. it can have a big effect.
    How big are the backups generally? These should only be incremental and relatively small.
    Measure your actual speed of copying a file to the TC.. if you can put numbers to it, that will help. Use the Activity Monitor and see what is the average speed copying a file or when TM is backing up.
    Any improvements to the wireless speed will reduce the time the backup runs and how much time your internet is slow. Wireless is highly range and signal dependent. You might find a network rearrangement where you use the TC close to the Mini can solve the issue.. especially if you can connect to it by ethernet.. and then wireless bridge if you need to.

  • Illustrator file so big it slows down everything

    So i made a 30 page e-book in illustrator, the project file is 81MB but whenever i open it, it takes 20 minutes for it to start actually being able to work with, and slows down my computer and i cant do anything.. does anyone know how to fix this??

    Put some pages in another document.
    But then you'll need Acrobat to put the PDF together.

  • Why do big imports slow down?

    Hi folks
    So I have recently had to reimport my entire music collection off of an external, a couple of times.
    I have noticed that the importing process seems to slow down at points, with some individual tracks taking aaaages to import.  I can't tell if the import process itself is just generally slowing down for some reason related to memory or something (I am importing ~300GB in one hit), or if it has something to do with particular file formats, or perhaps even tagging. 
    I don't understand enough of iTunes' inner workings to figure this out myself so I would very much appreciate some insight into this matter from someone who does.
    Thanks!

    First of all, thank you for your contribution. You are right to say that I have no need in changing the AI Config every time that the loop runs. But as this is supposed to be a soft-scope, I need to be able to update the parameters associated with AI Start while the loop is running (e.g. trigger level).
    I have tried to move the AI Config subVI out of both loops but the error as a result is: "No transfer in progress for the specified source."
    I also need a sampling rate of exactly 96kHz. I realize that the laptop clock cannot attain this value. Do you know how I could get exactly 96kHz.
    Attachments:
    Final_Main_VI_with_working_amp.vi ‏498 KB

  • Timer Class not accurate and slows down my animation!?

    Does anyknow how why my timer object is not accurate and why it slows down my animation that is also present on my GUI at the same time?
    I have a timer in the form of 0.00 the left of the decimal point should represent a second but it doesnt, run my code and see for yourselves. below is my code if anyone can fix these 2 problems i will be very thankfull:
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.awt.Shape;
    import java.io.*;
    import java.text.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.event.*;
    import javax.swing.Timer;
    import java.sql.*;
    import java.text.*;
    public class RT extends JFrame implements MouseMotionListener
        //declares a number of swing componets to be used for the JFrame
        private JTextArea infoJTextArea;
        private JPanel showJPanel, startJPanel, helpJPanel, resultsJPanel;
        private JLabel de4JLabel, de3JLabel, mainTitleJLabel, nameJLabel, ageJLabel,
                       deJLabel, de1JLabel, de2JLabel, timeJLabel,nameResultJLabel,
                       ageResultJLabel, timeResultsJLabel, ratingJLabel, coJLabel, shJLabel;
        private JTextField nameJTextField, ageJTextField,nameResultJTextField,
                       ageResultsJTextField, timeResultsJTextField, ratingJTextField;
        private JButton exitJButton, showJButton, loginJButton, startTestJButton,
                        tempObjectJButton;
        private JScrollPane scroll;
    public JComboBox colourJComboBox, sizeJComboBox, shapeJComboBox, speedJComboBox;
    private static Connection dbcon;
    int temp=0;
    private String[] col = { "Red", "Blue", "Green","Yellow","Orange","Black"};
    private String[] shapeA = { "Normal Rectangle", "Normal Circle", "Normal Oval","BIG Rectangle", "BIG Circle","BIG Oval","small rectangle","small circle", "small oval"};
    private String[] speed = { "Fast", "Normal", "Slow"};
    public int checking;
    static int flag, flagshape, flagspeed;
        // creates and sets up a number of varibles to be used by the class
        public long timeLimit = 0;
        DecimalFormat timeDec = new DecimalFormat (":00");
        public int age;
        public String name, shapeChoice="Normal Rectangle(Never selected anything)", colourChoice="Black(Never selected anything)";
        private Timer TimeNow;
        private JTextField timerJTextField;
        ShapeMovingPanel testJPanel;
        Random seed;
        Shape shape;
        Shape[] shapes = {new Rectangle2D.Double(50, 30, 75, 25),new Ellipse2D.Double(175, 125, 50, 50),new Ellipse2D.Double(90, 100, 75, 35),new Rectangle2D.Double(50, 30, 175, 125),new Ellipse2D.Double(175, 125, 125, 125),new Ellipse2D.Double(90, 100, 175, 135),new Rectangle2D.Double(50, 30, 55, 15),new Ellipse2D.Double(175, 125, 20,20),new Ellipse2D.Double(90, 100, 55, 15)};
    //50, 30, 75, 25 change starting point here****************************************
        public RT()            // constructor method
            seed = new Random();
            shape = shapes[0];
            //sets up the Timer
            TimeNow = new Timer((1), new TimerListener());//++++++++++++++++++++++++++timer -17
            createUserInterface();          // method that creates the user interface     
        private void createUserInterface()
            new Thread(new Runnable()
                public void run()
                    String results = "";
                    int count = 0;
                    boolean journeyOn = true;
                    while(journeyOn && count < 3)
                        try
                            Thread.sleep(1000);
                        catch(InterruptedException ie)
                            System.err.println("show interrupt: " + ie.getMessage());
                            journeyOn = false;
                        results += count++ + ", ";
                    try {
                             Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                             dbcon = DriverManager.getConnection("jdbc:odbc:CMT3991", "", ""); // Access/ODBC
                          //connection ash used to connect to the user table in access
                           } catch(Exception eee)
                           eee.printStackTrace();  //exception if error occurs during the driver connection
                             System.out.println("* UserDA CONNECTED *");
            }).start();
            Container contentPane = getContentPane();
            contentPane.setLayout( null );
            // set up infoJTextField
            infoJTextArea = new JTextArea();
            infoJTextArea.setBounds( 20, 420, 550, 170  );
            infoJTextArea.setEditable( false);
            infoJTextArea.setText("\n    Welcome to the reaction testing program, this " +
                            "program is designed to test your reactions in a  \n"+
                            "    number of different situations.\n"+"\n    Please " +
                            "enter your name and age, or select show previous results.");
            contentPane.add( infoJTextArea );
            scroll = new JScrollPane(infoJTextArea);
            scroll.setBounds(  20, 420, 550, 170 );
            contentPane.add( scroll );
                  startJPanel = new JPanel();
            startJPanel.setBounds( 16,16, 560, 375 );
            startJPanel.setBorder(
                    new TitledBorder( "WELCOME - PLEASE ENTER YOUR NAME AND AGE:" ) );
            startJPanel.setLayout( null );
            contentPane.add( startJPanel );
            //sets up a JPanel
            mainTitleJLabel = new JLabel();
            mainTitleJLabel.setIcon( new ImageIcon( "title.png" ) );
            mainTitleJLabel.setBounds( 30, 10, 520, 170 );
            mainTitleJLabel.setHorizontalAlignment( JLabel.CENTER );
            startJPanel.add( mainTitleJLabel );
            //creates a newJLabel
            nameJLabel= new JLabel();
            nameJLabel.setBounds( 52, 200, 70, 35 );
            nameJLabel.setText("Name:");
            startJPanel.add( nameJLabel);
            //creates a new JTextField
            nameJTextField = new JTextField();
            nameJTextField.setBounds( 130, 200, 300, 24 );
            startJPanel.add( nameJTextField );
            //creates a newJLabel
            ageJLabel = new JLabel();
            ageJLabel.setBounds( 52, 245, 100, 35 );
            ageJLabel.setText("Age:");
            startJPanel.add( ageJLabel );
            //creates a new JTextField
            ageJTextField = new JTextField();
            ageJTextField.setBounds( 130, 245, 300, 24 );
            startJPanel.add( ageJTextField );
            //creates a JButton
            loginJButton = new JButton();
            loginJButton.setBounds( 440, 200, 90, 24 );
            loginJButton.setText( "Login" );
            loginJButton.setBackground( Color.YELLOW );
            startJPanel.add( loginJButton );
            loginJButton.setEnabled(true);
    //        loginJButton.setVisible(true);
            loginJButton.addActionListener(
                new ActionListener()    // adds an action listener,anonymous inner class
                    // event handler called when search is pressed
                    public void actionPerformed( ActionEvent event )
                        // not necessary to pass events to these methods...
                        Login();  // calls the Login method                       
            //creates a JButton
            showJButton = new JButton();
            showJButton.setBounds( 200, 320, 180, 24 );
            showJButton.setText( "Show previous results" );
            showJButton.setBackground( Color.YELLOW );
            startJPanel.add( showJButton );
            showJButton.setEnabled(true);
    //        showJButton.setVisible(true);
            showJButton.addActionListener(
                new ActionListener()    // adds an action listener,anonymous inner class
                    // event handler called when search is pressed
                    public void actionPerformed( ActionEvent event )
                        showData();   // calls the showData method                       
            //sets up a JPanel
            showJPanel = new JPanel();
            showJPanel.setBounds( 16,16, 560, 375 );
            showJPanel.setBorder(new TitledBorder( "PREVIOUS RESULTS:" ) );
            showJPanel.setLayout( null );
            contentPane.add( showJPanel );
            //sets up a JPanel
            helpJPanel = new JPanel();
            helpJPanel.setBounds( 16,16, 560, 375 );
            helpJPanel.setBorder(
            new TitledBorder( "CHOOSE A NUMBER OF OPTIONS AND GET READY:" ) );
            helpJPanel.setLayout( null );
            helpJPanel.setVisible(false);
            contentPane.add( helpJPanel );
            //creates a newJLabel
            deJLabel= new JLabel();
            deJLabel.setBounds( 23, 390, 530, 35 );
            deJLabel.setText("Details:");
            contentPane.add( deJLabel);
            //creates a newJLabel
            coJLabel= new JLabel();
            coJLabel.setBounds( 70, 40, 530, 35 );
            coJLabel.setText("Choose a colour:");
            helpJPanel.add( coJLabel);
            //creates a newJLabel
            de1JLabel= new JLabel();
            de1JLabel.setBounds( 25, 100, 530, 35 );
            de1JLabel.setText("You are about to start the reaction test, when you " +
                              "press the start button it will begin.");
            helpJPanel.add( de1JLabel);
            //creates a newJLabel
            de1JLabel= new JLabel();
            de1JLabel.setBounds(160, 145, 530, 35 );
            de1JLabel.setText("Simply catch the moving item and click.");
            helpJPanel.add( de1JLabel);
            colourJComboBox = new JComboBox( col );
               colourJComboBox.setBounds( 70, 70, 135, 21 );
               colourJComboBox.setMaximumRowCount( 3 );
               helpJPanel.add( colourJComboBox );
              colourJComboBox.addActionListener(
                new ActionListener() // adds an action listener,anonymous inner class
                    // event handler called when search is pressed
                    public void actionPerformed( ActionEvent event )
                         colourChoice="Black";
                         int x = colourJComboBox.getSelectedIndex();
                        if( x  == 0)
                             flag = 1;
                             colourChoice="Red";
                        else if(x  == 1)
                             flag = 2;
                             colourChoice="Blue";
                        else if(x  == 2)
                             flag = 3;
                                colourChoice="Green";
                         else if(x  == 3)
                             flag = 4;
                                colourChoice="Yellow";
                         else if(x  == 4)
                             flag = 5;
                                colourChoice="Orange";
                           else if(x  == 5)
                             flag = 6;
                                colourChoice="Black";
            shJLabel= new JLabel();
            shJLabel.setBounds( 340, 40, 530, 35 );
            shJLabel.setText("Choose a shape and size:");
            helpJPanel.add( shJLabel);
            shapeJComboBox = new JComboBox( shapeA );
               shapeJComboBox.setBounds( 340, 70, 135, 21 );
               shapeJComboBox.setMaximumRowCount( 3 );
               helpJPanel.add( shapeJComboBox );
              shapeJComboBox.addActionListener(
                new ActionListener() // adds an action listener,anonymous inner class
                    // event handler called when search is pressed
                    public void actionPerformed( ActionEvent event )
                          int xshape = shapeJComboBox.getSelectedIndex();
                        //shapeChoice="Normal Rectangle";
                        if( xshape  == 0)
                        {     flagshape = 1;
                             shapeChoice="Normal Rectangle";
                        else if(xshape  == 1)
                        {     flagshape = 2;
                             shapeChoice="Normal Circle";
                        else if(xshape  == 2)//**********here
                        {     flagshape = 3;
                             shapeChoice="Normal Oval";
                        else if(xshape  == 3)
                        {     flagshape = 4;
                             shapeChoice="BIG Rectangle";
                        else if(xshape  == 4)
                       {      flagshape = 5;
                             shapeChoice="BIG Circle";
                        else if(xshape  == 5)
                     {        flagshape = 6;
                             shapeChoice="BIG Oval";
                        else if(xshape  == 6)
                             flagshape = 7;
                             shapeChoice="small rectangle";
                        else if(xshape  == 7)
                     {        flagshape = 8;
                             shapeChoice="small circle";
                        else if(xshape  == 8)
                     {        flagshape = 9;
                             shapeChoice="small oval";
          /*  speedJComboBox = new JComboBox( speed );
               speedJComboBox.setBounds( 10, 150, 135, 21 );
               speedJComboBox.setMaximumRowCount( 3 );
               helpJPanel.add( speedJComboBox );
              speedJComboBox.addActionListener(
                new ActionListener() // adds an action listener,anonymous inner class
                    // event handler called when search is pressed
                    public void actionPerformed( ActionEvent event )
                          int xspeed = speedJComboBox.getSelectedIndex();
                        if( xspeed  == 0)
                             flagspeed = 1;
                             else if(xspeed  == 1)
                             flagspeed = 2;
                             else
                             flagspeed = 3;
                        System.out.println(flagspeed);     
            //creates a newJLabel
            de2JLabel= new JLabel();
            de2JLabel.setBounds( 20, 380, 70, 35 );
            de2JLabel.setText("Details:");
            helpJPanel.add( de2JLabel);
            //creates a JButton
            startTestJButton = new JButton();
            startTestJButton.setBounds( 185, 205, 180, 60 );
            startTestJButton.setText( "START" );
            startTestJButton.setBackground( Color.YELLOW );
            helpJPanel.add( startTestJButton );
            startTestJButton.setEnabled(true);
    //        startTestJButton.setVisible(true);
            startTestJButton.addActionListener(
                new ActionListener() // adds an action listener,anonymous inner class
                    // event handler called when search is pressed
                    public void actionPerformed( ActionEvent event )
                        startTest();
            //sets up an animation panel
            testJPanel = new ShapeMovingPanel(this);
            testJPanel.setBounds( 16,16, 560, 375 );
            testJPanel.setBorder(new TitledBorder("Click the moving object:"));
            testJPanel.setLayout( null );
            testJPanel.setVisible(false);
            contentPane.add( testJPanel );
            testJPanel.addMouseMotionListener(this);
            //creates a newJLabel
            timeJLabel = new JLabel();
            timeJLabel.setBounds( 440, 330, 100, 35 );
            timeJLabel.setText("Time:");
            testJPanel.add( timeJLabel );
            //creates a new JTextField
            timerJTextField = new JTextField();
            timerJTextField.setBounds( 480, 335, 60, 24 );
            timerJTextField.setText(String.valueOf(timeLimit));
            timerJTextField.setHorizontalAlignment(JTextField.CENTER );
            timerJTextField.setEditable(false);
            timerJTextField.setBackground( Color.YELLOW );
            testJPanel.add( timerJTextField );
            resultsJPanel = new JPanel();
            resultsJPanel.setBounds( 16,16, 560, 375 );
            resultsJPanel.setBorder(new TitledBorder("HERE ARE YOUR RESULTS:"));
            resultsJPanel.setLayout( null );
            resultsJPanel.setVisible(false);
            contentPane.add( resultsJPanel );
            de3JLabel= new JLabel();
            de3JLabel.setBounds(20, 200, 530, 35 );
            de3JLabel.setText("Below is also the movements you made with your mouse, " +
                              "you may exit the program now.");
            resultsJPanel.add( de3JLabel);
            de4JLabel= new JLabel();
            de4JLabel.setBounds(135, 245, 530, 35 );
            de4JLabel.setText("Thank you for trying the Reaction Testing program");
            resultsJPanel.add( de4JLabel);
            //creates a newJLabel
            nameResultJLabel= new JLabel();
            nameResultJLabel.setBounds( 62, 55, 50, 35 );
            nameResultJLabel.setText("Name:");
            resultsJPanel.add( nameResultJLabel);
            //creates a new JTextField
            nameResultJTextField = new JTextField();
            nameResultJTextField.setBounds( 140, 55, 300, 24 );
            resultsJPanel.add( nameResultJTextField );
            nameResultJTextField.setEditable(false);
            //creates a newJLabel
            ageResultJLabel = new JLabel();
            ageResultJLabel.setBounds( 62, 90, 100, 35 );
            ageResultJLabel.setText("Age:");
            resultsJPanel.add( ageResultJLabel );
            //creates a new JTextField
            ageResultsJTextField = new JTextField();
            ageResultsJTextField.setBounds( 140, 90, 300, 24 );
            resultsJPanel.add( ageResultsJTextField );
            ageResultsJTextField.setEditable(false);
            //creates a newJLabel
            timeResultsJLabel = new JLabel();
            timeResultsJLabel.setBounds( 62, 125, 100, 35 );
            timeResultsJLabel.setText("Time taken:");
            resultsJPanel.add( timeResultsJLabel );
            //creates a new JTextField
            timeResultsJTextField = new JTextField();
            timeResultsJTextField.setBounds( 140, 125, 300, 24 );
            resultsJPanel.add( timeResultsJTextField );
            timeResultsJTextField.setEditable(false);
            //creates a newJLabel
            ratingJLabel = new JLabel();
            ratingJLabel.setBounds( 62, 160, 100, 35 );
            ratingJLabel.setText("Your Rating:");
            resultsJPanel.add( ratingJLabel );
            ratingJTextField = new JTextField();
            ratingJTextField.setBounds( 140, 160, 300, 24 );
            resultsJPanel.add( ratingJTextField );
            ratingJTextField.setEditable(false);
            //creates a JButton
            exitJButton = new JButton();
            exitJButton.setBounds( 235, 310, 90, 24 );
            exitJButton.setText( "Exit" );
            exitJButton.setBackground( Color.WHITE );
            resultsJPanel.add( exitJButton );
            exitJButton.setEnabled(true);
            exitJButton.addActionListener(
                new ActionListener() // adds an action listener,anonymous inner class
                    // event handler called when exitJButton is pressed
                    public void actionPerformed( ActionEvent event )
                        System.exit(0); //closes the programme
            }); // end anonymous inner class
            addWindowListener(new WindowAdapter()
                public void windowClosing(WindowEvent e)
                    System.exit(0);
            // set properties of application's window
            setTitle( "Reaction Tester - CMT3991" ); // set JFrame's title bar string
            //setSize( 1280,995 );    // set width and height of JFrame
            setSize( 608, 650 );         // set width and height of JFrame
            setVisible( true );       // display JFrame on screen
        //** set up of method main */
        public static void main( String[] args )
            RT application = new RT();
            application.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
        } // end method main
         * action listener for TimeNow Timer
        private class TimerListener implements ActionListener
            public void actionPerformed(ActionEvent event)
                timeLimit ++;          
                if (timeLimit==100)
                     temp++;
                     timeLimit=0;
                timerJTextField.setText(String.valueOf(temp +""+timeDec.format(timeLimit)));
        private void Login()
            try
                name = nameJTextField.getText();
                age = Integer.parseInt(ageJTextField.getText());
                startJPanel.setVisible(false);
                showJPanel.setVisible(false);
                helpJPanel.setVisible(true);
                infoJTextArea.setText("\n    Welcome "+name+" you will soon know how " +
                                      "fast your reactions are.");
            catch (NumberFormatException exception)
                JOptionPane.showMessageDialog(this,
                        "There is either a blank field or a number hasn't been entered",
                        "Input Type error", JOptionPane.ERROR_MESSAGE);
                //shows this is something has been entered wrong
        private void startTest()
            helpJPanel.setVisible(false);
          //  System.out.println(""+ seed.nextInt(shapes.length));
            //shape = shapes[seed.nextInt(shapes.length)];//****************************
            if (flagshape==1)
                 shape = shapes[0];// changed colour here***************************
            else if (flagshape==2)
                 shape = shapes[1];// changed colour here***************************
            else if (flagshape==3)
                 shape = shapes[2];// changed colour here***************************
           else if (flagshape==4)
                 shape = shapes[3];// changed colour here***************************
             else if (flagshape==5)
                 shape = shapes[4];// changed colour here***************************
            else if (flagshape==6)
                 shape = shapes[5];// changed colour here***************************
            else if (flagshape==7)
                 shape = shapes[6];// changed colour here***************************
            else if (flagshape==8)
                 shape = shapes[7];// changed colour here***************************
            else if (flagshape==9)
                 shape = shapes[8];// changed colour here***************************
           // shape = shapes[8];
            System.out.println(shape.toString());
            testJPanel.setShape(shape);
            testJPanel.setVisible(true);
            testJPanel.start();
            infoJTextArea.setText("");
            TimeNow.start();
         * called by animation panel after shape is clicked
        public void stop()
            TimeNow.stop();
            movingObject();
         * this will compete with your animation
         * ie, it will slow it down or make it appear jerky
        public void mouseMoved(MouseEvent e)
            saySomething("\n    Mouse moved", e);
        public void mouseDragged(MouseEvent e)
            saySomething("\n    Mouse dragged", e);
        void saySomething(String eventDescription, MouseEvent e)
            infoJTextArea.append(eventDescription
                         + " (" + e.getX() + "," + e.getY() + ")");
            infoJTextArea.setCaretPosition(infoJTextArea.getDocument().getLength());
        private void movingObject()
            TimeNow.stop();
            //timeLimit;
            testJPanel.setVisible(false);
            resultsJPanel.setVisible(true);
            nameResultJTextField.setText(name);
            ageResultsJTextField.setText(String.valueOf(age)+" years old");
    System.out.println("shape used: "+shapeChoice);
            String mouse = infoJTextArea.getText();
            String tick = timerJTextField.getText();
            timeResultsJTextField.setText(tick);
            try
                // create a file called welch.txt
                final FileWriter outputFile = new FileWriter("Backup_of_"+name+"s_results.txt", true);
                final BufferedWriter outputBuffer = new BufferedWriter(outputFile);
                // converts data to a formatted string
                final PrintWriter printstream = new PrintWriter(outputBuffer);
                printstream.println("THIS IS A BACKUP");
                printstream.println("The person's name is: "+name);
                printstream.println("There age is: "+age);
                printstream.println("Time taken: "+tick+" seconds");
                printstream.println("The Shape and size was: "+shapeChoice);
                printstream.println("It's colour was: "+colourChoice);
                printstream.println("The mouse moved as follows: "+mouse);
                //states what needs to be printed to the new file
                printstream.close(); // closes teh printstream
            catch(IOException eio)
                //catchs the IO exception
            if(temp<5.00)
                ratingJTextField.setText("Thierry Henry");     
            else if(timeLimit<=10)
                ratingJTextField.setText("Average");     
            else if(timeLimit<=15)
                ratingJTextField.setText("You gotta be fat or something");     
            else if(timeLimit<=20)
                ratingJTextField.setText("See a doctor");
            else if(timeLimit>20)
                ratingJTextField.setText("DO YOU KNOW WHAT YOU DOING!?");
            String rate=ratingJTextField.getText();
            try
                   Statement st = dbcon.createStatement();
                   String cmd = "INSERT INTO users (Name, Age, Time_Taken, Rating, Mouse_Movement,Shape_and_Size, Shape_Colour) VALUES ('" + name + "' , " + age + " , '" + tick + "' , '" + rate+"','"+ mouse+"','"+ shapeChoice+"','"+ colourChoice+"');";
                //creates a SQL statement and executes it
                st.executeUpdate(cmd);
                   st.close();//close the statement
              } catch (Exception eDA)
                   eDA.printStackTrace();
        private void showData()
            // pretend this takes awhile -> 3 seconds (count)
            new Thread(new Runnable()
                public void run()
                    String results = "";
                    int count = 0;
                    boolean journeyOn = true;
                    while(journeyOn && count < 3)
                        try
                            Thread.sleep(1000);
                        catch(InterruptedException ie)
                            System.err.println("show interrupt: " + ie.getMessage());
                            journeyOn = false;
                        results += count++ + ", ";
                    infoJTextArea.setText("Here are your results:\n"+results);
                    startJPanel.setVisible(false);
                    showJPanel.setVisible(true);
            }).start();
    class ShapeMovingPanel extends JPanel implements ActionListener
        RT host;
        Timer timer;
        Shape shape, xformed;
        int x, y, dx, dy;
        public ShapeMovingPanel(RT rt)
            timer = new Timer(-20, this);     
            host = rt;
        /*    if (rt.flagspeed==1)
            timer = new Timer(-20, this);
            else if (rt.flagspeed==2)
                timer = new Timer(20, this);
            else if (rt.flagspeed==3)
            timer = new Timer(100, this);
            //change speed here******************************
            x = 0;//0
            y = 0;//0
            dx =2;//2
            dy = 3;//3
            //setBackground(Color.pink);
            addMouseListener(new ShapeTender());
        public void actionPerformed(ActionEvent e)
            int w = getWidth();
            int h = getHeight();
            if(w <= 0 || h <= 0)
                return;
            checkBoundries(w,h);
            x += dx;
            y += dy;
            repaint();
        private void checkBoundries(int w, int h)
            Rectangle r = xformed.getBounds();
            Insets insets = getInsets();
            if(r.x + dx < insets.left || r.x + r.width + dx > w - insets.right)
                dx *= -1;
            if(r.y + dy < insets.top || r.y + r.height + dy > h - insets.bottom)
                dy *= -1;
        protected void paintComponent(Graphics g)
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            AffineTransform at = AffineTransform.getTranslateInstance(x, y);
            if (RT.flag==1)
            {g2.setPaint(Color.red);// changed colour here***************************
            else if (RT.flag==2)
            {g2.setPaint(Color.blue);// changed colour here***************************
            else if (RT.flag==3)
            {g2.setPaint(Color.green);// changed colour here***************************
            else if (RT.flag==4)
            {g2.setPaint(Color.yellow);// changed colour here***************************
            else if (RT.flag==5)
            {g2.setPaint(Color.orange);// changed colour here***************************
            else if (RT.flag==6)
            {g2.setPaint(Color.black);// changed colour here***************************
            xfo                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     

    I'm (being lazy and) using the older RT app posted on your last thread. I removed the
    TimeNow timer from the RT class and used System.currentTimeMillis (as you requested) to
    determine the elapsed time during the animation (see "startTest", "stop" and
    "movingObject" methods). Also changed the DecimalFormat to NumberFormat and set the
    "maximumFractionDigits" to "2" so it will truncate the fraction to two digits (more simple
    than before). Made arrangements for the ShapeMovingPanel class to update the
    "timerJTextField" during the animation (RT.updateTime method).
    The MouseMotionListener is causing the animation to appear jerky and uneven. The
    "mouseMoved" method is very busy while the mouse is moving. You might consider recording
    the "mousePressed" events instead of the "mouseMoved" events, ie, the events where the user
    is attempting to click inside the moving shape. It would allow the app to be more
    responsive and might eliminate the uneven motion of the animating shape.
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.geom.*;
    import java.io.*;
    import java.text.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.border.*;
    import javax.swing.event.*;
    import javax.swing.Timer;
    public class RT extends JFrame implements MouseMotionListener
        //declares a number of swing componets to be used for the JFrame
        private JTextArea infoJTextArea;
        private JPanel showJPanel, startJPanel, helpJPanel, resultsJPanel;
        private JLabel de4JLabel, de3JLabel, mainTitleJLabel, nameJLabel, ageJLabel,
                       deJLabel, de1JLabel, de2JLabel, timeJLabel,nameResultJLabel,
                       ageResultJLabel, timeResultsJLabel, ratingJLabel;
        private JTextField nameJTextField, ageJTextField,nameResultJTextField,
                       ageResultsJTextField, timeResultsJTextField, ratingJTextField;
        private JButton exitJButton, showJButton, loginJButton, startTestJButton,
                        tempObjectJButton;
        private JScrollPane scroll;;
        // creates and sets up a number of varibles to be used by the class
        private long startTime;
        private long endTime;
        public int timeLimit = 0;
        public int age;
        public String name;
        private JTextField timerJTextField;
        ShapeMovingPanel testJPanel;
        NumberFormat timeDec;
        Random seed;
        Shape shape;
        Shape[] shapes = {
            new Rectangle2D.Double(50, 30, 75, 25),
            new Ellipse2D.Double(175, 125, 50, 50),
            new Ellipse2D.Double(90, 100, 75, 35)
        public RT()
            timeDec = NumberFormat.getInstance();
            timeDec.setMaximumFractionDigits(2);
            seed = new Random();
            shape = shapes[0];
            createUserInterface();
        private void createUserInterface()
            Container contentPane = getContentPane();
            contentPane.setLayout( null );
            // set up infoJTextField
            infoJTextArea = new JTextArea();
            infoJTextArea.setBounds( 20, 420, 550, 170  );
            infoJTextArea.setEditable( false);
            infoJTextArea.setText("\n    Welcome to the reaction testing program, this " +
                            "program is designed to test your reactions in a  \n"+
                            "    number of different situations.\n"+"\n    Please " +
                            "enter your name and age, or select show previous results.");
            contentPane.add( infoJTextArea );
            scroll = new JScrollPane(infoJTextArea);
            scroll.setBounds(  20, 420, 550, 170 );
            contentPane.add( scroll );
              startJPanel = new JPanel();
            startJPanel.setBounds( 16,16, 560, 375 );
            startJPanel.setBorder(
                    new TitledBorder( "WELCOME -PLEASE ENTER YOUR NAME AND AGE:" ) );
            startJPanel.setLayout( null );
            contentPane.add( startJPanel );
            //sets up a JPanel
            mainTitleJLabel = new JLabel();
            mainTitleJLabel.setIcon( new ImageIcon( "title.png" ) );
            mainTitleJLabel.setBounds( 30, 10, 520, 170 );
            mainTitleJLabel.setHorizontalAlignment( JLabel.CENTER );
            startJPanel.add( mainTitleJLabel );
            //creates a newJLabel
            nameJLabel= new JLabel();
            nameJLabel.setBounds( 52, 200, 70, 35 );
            nameJLabel.setText("Name:");
            startJPanel.add( nameJLabel);
            //creates a new JTextField
            nameJTextField = new JTextField();
            nameJTextField.setBounds( 130, 200, 300, 24 );
            startJPanel.add( nameJTextField );
            //creates a newJLabel
            ageJLabel = new JLabel();
            ageJLabel.setBounds( 52, 245, 100, 35 );
            ageJLabel.setText("Age:");
            startJPanel.add( ageJLabel );
            //creates a new JTextField
            ageJTextField = new JTextField();
            ageJTextField.setBounds( 130, 245, 300, 24 );
            startJPanel.add( ageJTextField );
            //creates a JButton
            loginJButton = new JButton();
            loginJButton.setBounds( 440, 200, 90, 24 );
            loginJButton.setText( "Login" );
            loginJButton.setBackground( Color.YELLOW );
            startJPanel.add( loginJButton );
            loginJButton.setEnabled(true);
            loginJButton.addActionListener(
                new ActionListener()    // adds an action listener,anonymous inner class
                    // event handler called when search is pressed
                    public void actionPerformed( ActionEvent event )
                        // not necessary to pass events to these methods...
                        Login();  // calls the Login method                       
            //creates a JButton
            showJButton = new JButton();
            showJButton.setBounds( 200, 320, 180, 24 );
            showJButton.setText( "Show previous results" );
            showJButton.setBackground( Color.YELLOW );
            startJPanel.add( showJButton );
            showJButton.setEnabled(true);
            showJButton.addActionListener(
                new ActionListener()    // adds an action listener,anonymous inner class
                    // event handler called when search is pressed
                    public void actionPerformed( ActionEvent event )
                        showData();   // calls the showData method                       
            //sets up a JPanel
            showJPanel = new JPanel();
            showJPanel.setBounds( 16,16, 560, 375 );
            showJPanel.setBorder(new TitledBorder( "PREVIOUS RESULTS:" ) );
            showJPanel.setLayout( null );
            contentPane.add( showJPanel );
            //sets up a JPanel
            helpJPanel = new JPanel();
            helpJPanel.setBounds( 16,16, 560, 375 );
            helpJPanel.setBorder(
            new TitledBorder( "HELP DETAILS:" ) );
            helpJPanel.setLayout( null );
            helpJPanel.setVisible(false);
            contentPane.add( helpJPanel );
            //creates a newJLabel
            deJLabel= new JLabel();
            deJLabel.setBounds( 23, 390, 530, 35 );
            deJLabel.setText("Details:");
            contentPane.add( deJLabel);
            //creates a newJLabel
            de1JLabel= new JLabel();
            de1JLabel.setBounds( 25, 100, 530, 35 );
            de1JLabel.setText("You are about to start the reaction test, when you " +
                              "press the start button it will begin.");
            helpJPanel.add( de1JLabel);
            //creates a newJLabel
            de1JLabel= new JLabel();
            de1JLabel.setBounds(160, 145, 530, 35 );
            de1JLabel.setText("Simply catch the moving item and click.");
            helpJPanel.add( de1JLabel);
            //creates a newJLabel
            de2JLabel= new JLabel();
            de2JLabel.setBounds( 20, 380, 70, 35 );
            de2JLabel.setText("Details:");
            helpJPanel.add( de2JLabel);
            //creates a JButton
            startTestJButton = new JButton();
            startTestJButton.setBounds( 185, 205, 180, 60 );
            startTestJButton.setText( "START" );
            startTestJButton.setBackground( Color.YELLOW );
            helpJPanel.add( startTestJButton );
            startTestJButton.setEnabled(true);
            startTestJButton.addActionListener(
                new ActionListener() // adds an action listener,anonymous inner class
                    // event handler called when search is pressed
                    public void actionPerformed( ActionEvent event )
                        startTest();
            //sets up an animation panel
            testJPanel = new ShapeMovingPanel(this);
            testJPanel.setBounds( 16,16, 560, 375 );
            testJPanel.setBorder(new TitledBorder("Click the moving object:"));
            testJPanel.setLayout( null );
            testJPanel.setVisible(false);
            contentPane.add( testJPanel );
    // this is causing the animation to appear uneven
    // you can try the app with and without this to see
    //        testJPanel.addMouseMotionListener(this);
            //creates a newJLabel
            timeJLabel = new JLabel();
            timeJLabel.setBounds( 440, 330, 100, 35 );
            timeJLabel.setText("Time:");
            testJPanel.add( timeJLabel );
            //creates a new JTextField
            timerJTextField = new JTextField();
            timerJTextField.setBounds( 480, 335, 60, 24 );
            timerJTextField.setText(String.valueOf(timeLimit));
            timerJTextField.setHorizontalAlignment(JTextField.CENTER );
            timerJTextField.setEditable(false);
            timerJTextField.setBackground( Color.YELLOW );
            testJPanel.add( timerJTextField );
            resultsJPanel = new JPanel();
            resultsJPanel.setBounds( 16,16, 560, 375 );
            resultsJPanel.setBorder(new TitledBorder("HERE ARE YOUR RESULTS:"));
            resultsJPanel.setLayout( null );
            resultsJPanel.setVisible(false);
            contentPane.add( resultsJPanel );
            de3JLabel= new JLabel();
            de3JLabel.setBounds(20, 200, 530, 35 );
            de3JLabel.setText("Below is also the movements you made with your mouse, " +
                              "you may exit the program now.");
            resultsJPanel.add( de3JLabel);
            de4JLabel= new JLabel();
            de4JLabel.setBounds(135, 245, 530, 35 );
            de4JLabel.setText("Thank you for trying the Reaction Testing program");
            resultsJPanel.add( de4JLabel);
            //creates a newJLabel
            nameResultJLabel= new JLabel();
            nameResultJLabel.setBounds( 62, 55, 50, 35 );
            nameResultJLabel.setText("Name:");
            resultsJPanel.add( nameResultJLabel);
            //creates a new JTextField
            nameResultJTextField = new JTextField();
            nameResultJTextField.setBounds( 140, 55, 300, 24 );
            resultsJPanel.add( nameResultJTextField );
            nameResultJTextField.setEditable(false);
            //creates a newJLabel
            ageResultJLabel = new JLabel();
            ageResultJLabel.setBounds( 62, 90, 100, 35 );
            ageResultJLabel.setText("Age:");
            resultsJPanel.add( ageResultJLabel );
            //creates a new JTextField
            ageResultsJTextField = new JTextField();
            ageResultsJTextField.setBounds( 140, 90, 300, 24 );
            resultsJPanel.add( ageResultsJTextField );
            ageResultsJTextField.setEditable(false);
            //creates a newJLabel
            timeResultsJLabel = new JLabel();
            timeResultsJLabel.setBounds( 62, 125, 100, 35 );
            timeResultsJLabel.setText("Time taken:");
            resultsJPanel.add( timeResultsJLabel );
            //creates a new JTextField
            timeResultsJTextField = new JTextField();
            timeResultsJTextField.setBounds( 140, 125, 300, 24 );
            resultsJPanel.add( timeResultsJTextField );
            timeResultsJTextField.setEditable(false);
            //creates a newJLabel
            ratingJLabel = new JLabel();
            ratingJLabel.setBounds( 62, 160, 100, 35 );
            ratingJLabel.setText("Your Rating:");
            resultsJPanel.add( ratingJLabel );
            ratingJTextField = new JTextField();
            ratingJTextField.setBounds( 140, 160, 300, 24 );
            resultsJPanel.add( ratingJTextField );
            ratingJTextField.setEditable(false);
            //creates a JButton
            exitJButton = new JButton();
            exitJButton.setBounds( 235, 310, 90, 24 );
            exitJButton.setText( "Exit" );
            exitJButton.setBackground( Color.WHITE );
            resultsJPanel.add( exitJButton );
            exitJButton.setEnabled(true);
            exitJButton.addActionListener(
                new ActionListener() // adds an action listener,anonymous inner class
                    // event handler called when exitJButton is pressed
                    public void actionPerformed( ActionEvent event )
                        System.exit(0); //closes the programme
            }); // end anonymous inner class
            addWindowListener(new WindowAdapter()
                public void windowClosing(WindowEvent e)
                    System.exit(0);
            // set properties of application's window
            setTitle( "Reaction Tester - CMT3991" ); // set JFrame's title bar string
            //setSize( 1280,995 );    // set width and height of JFrame
            setSize( 608, 650 );         // set width and height of JFrame
            setVisible( true );       // display JFrame on screen
        //** set up of method main */
        public static void main( String[] args )
            RT application = new RT();
            application.setDefaultCloseOperation( EXIT_ON_CLOSE );
        } // end method main
        private void Login()
            try
                name = nameJTextField.getText();
                age = Integer.parseInt(ageJTextField.getText());
                startJPanel.setVisible(false);
                showJPanel.setVisible(false);
                helpJPanel.setVisible(true);
                infoJTextArea.setText("\n    Welcome "+name+" you will soon know how " +
                                      "fast your reactions are");
            catch (NumberFormatException exception)
                JOptionPane.showMessageDialog(this,
                        "There is either a blank field or a number hasn't been entered",
                        "Input Type error", JOptionPane.ERROR_MESSAGE);
                //shows this is something has been entered wrong
        private void startTest()
            helpJPanel.setVisible(false);
            shape = shapes[seed.nextInt(shapes.length)];
            testJPanel.setShape(shape);
            testJPanel.setVisible(true);
            testJPanel.start();
            startTime = System.currentTimeMillis();
            infoJTextArea.setText("");
         * called by animation panel after shape is clicked
        public void stop()
            endTime = System.currentTimeMillis();
            movingObject();
         * called by timer actionPerformed in ShapeMovingPanel
        public void updateTime()
            long timeNow = System.currentTimeMillis();
            double elapsed = (timeNow - startTime)/1000.0;
            timerJTextField.setText(timeDec.format(elapsed));
         * this will compete with your animation
         * ie, it will slow it down or make it appear jerky
        public void mouseMoved(MouseEvent e)
            saySomething("\n    Mouse moved", e);
        public void mouseDragged(MouseEvent e)
            saySomething("\n    Mouse dragged", e);
        void saySomething(String eventDescription, MouseEvent e)
            infoJTextArea.append(eventDescription
                         + " (" + e.getX() + "," + e.getY() + ")");
            infoJTextArea.setCaretPosition(infoJTextArea.getDocument().getLength());
        private void movingObject()
            testJPanel.setVisible(false);
            resultsJPanel.setVisible(true);
            nameResultJTextField.setText(name);
            ageResultsJTextField.setText(String.valueOf(age)+" years old");
            double elapsedTime = (endTime - startTime)/1000.0;
            timeLimit = (int)elapsedTime;
            timeResultsJTextField.setText(timeDec.format(elapsedTime)+" seconds");
            String mouse = infoJTextArea.getText();
            String tick = timeDec.format(elapsedTime);
            try
                // create a file called welch.txt
                final FileWriter outputFile = new FileWriter(name+".txt", true);
                final BufferedWriter outputBuffer = new BufferedWriter(outputFile);
                // converts data to a formatted string
                final PrintWriter printstream = new PrintWriter(outputBuffer);
                printstream.println("The person's name is: "+name);
                printstream.println("There age is: "+age);
                printstream.println("Time taken: "+tick+" seconds");
                printstream.println("The mouse moved as follows: "+mouse);
                //states what needs to be printed to the new file
                printstream.close(); // closes teh printstream
            catch(IOException eio)
                //catchs the IO exception
            if(timeLimit<5)
                ratingJTextField.setText("Thierry Henry");     
            if(timeLimit>5)
                ratingJTextField.setText("Average");     
            if(timeLimit>10)
                ratingJTextField.setText("You gotta be fat or something");     
            if(timeLimit>20)
                ratingJTextField.setText("See a doctor");
            String rate=ratingJTextField.getText();
        private void showData()
    //        String results = "";
    //        infoJTextArea.setText("Here are your results:\n"+results);
            startJPanel.setVisible(false);
            showJPanel.setVisible(true);
    class ShapeMovingPanel extends JPanel implements ActionListener
        RT host;
        Timer timer;
        Shape shape, xformed;
        int x, y, dx, dy;
        public ShapeMovingPanel(RT rt)
            host = rt;
            timer = new Timer(25, this);
            x = 0;
            y = 0;
            dx = 2;
            dy = 3;
            setBackground(Color.pink);
            addMouseListener(new ShapeTender());
        public void actionPerformed(ActionEvent e)
            int w = getWidth();
            int h = getHeight();
            if(w <= 0 || h <= 0)
                return;
            checkBoundries(w,h);
            x += dx;
            y += dy;
            repaint();
            // update RT.timerJTextField
            host.updateTime();
        private void checkBoundries(int w, int h)
            Rectangle r = xformed.getBounds();
            Insets insets = getInsets();
            if(r.x + dx < insets.left || r.x + r.width + dx > w - insets.right)
                dx *= -1;
            if(r.y + dy < insets.top || r.y + r.height + dy > h - insets.bottom)
                dy *= -1;
        protected void paintComponent(Graphics g)
            super.paintComponent(g);
            Graphics2D g2 = (Graphics2D)g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING,
                                RenderingHints.VALUE_ANTIALIAS_ON);
            AffineTransform at = AffineTransform.getTranslateInstance(x, y);
            g2.setPaint(Color.red);
            xformed = at.createTransformedShape(shape);
            g2.draw(xformed);
        public void start()
            if(!timer.isRunning())
                timer.start();
        public void setShape(Shape s)
            shape = s;
            Rectangle r = shape.getBounds();
            x = r.x;
            y = r.y;
            repaint();
        private class ShapeTender extends MouseAdapter
            public void mousePressed(MouseEvent e)
                if(xformed.contains(e.getPoint()))
                    timer.stop();
                    host.stop();
    }

  • Internet speeds keep slowing down to a crawl

    I'm having a problem that has only developed in the past week which was during a time when I haven't changed any configurations in that period of time since my son was born a week ago yesterday and I obviously had more important things to do than mess with my network configurations. However, about 2 weeks prior to his birth, in the process of configuring a baby monitoring system with icam source, 3 weeks or so ago, I read that I might be able to improve my internet performance, I ran googles namebench a couple of times and added and re-ordered the DNS servers that had been listed prior to any problems developing based on its' reports. My internet speeds improved as a result of changing those DNS settings and stayed good until the past week. But of course, we now need to use the computer as part of our baby monitoring system and it's not working worth a **** and I'm getting frustrated since I can't put my finger on the problem and I don't really have time to spin around in circles right now. I'm sure it's probably something simple and I can't put my finger on it though. Sleep deprivation is new to me.......
    I've kept running log of notes so this is a little deshoveled but I figured the more information I provide the better the chance someone might help me get this solved quickly.
    In the last week, since my sons birth, my internet speeds would be okay after restarts and resetting everything, 2.5 Mbps or so but after a 10-15 minutes it starts to slow down to .2-.3 Mbps. I went thru all my network settings, restarted everything, repaired permissions, I've changed ethernet cables reset PRAM, firewall is running, stealth mode enabled, allow signed software incoming connections and my various other programs such as netsessionmac4f3c6b, skype, java, itunes, etc.
    All sharing services off and pretty basic login items at startup including growl.
    I had AT&T come out and check my DSL line and everything checked out on their end up to and out of the DSL modem based in their equipment tests.
    The problem seems to start when I connect my imac (a fairly loaded 27" imac I got in Dec.) First off, as soon as the imac is connected to the modem via ethernet, the old ethernet modem flashes and continues to flash, even right after startup. So the tech thought something was running in the background and I can't figure out what. I looked through login items but don't see anything that would be a problem and am afraid to eliminate everything.
    So I created a guest account to eliminate any login items (I think) and in I got 5.69 Mbps right off the bat. But after a minute or two, without changing anything my download speed slows down and I get for example .77 Mbps. The same thing happens with my administrator account on the imac. Fast speeds at startup and more importantly if I change the configuration by switching between ethernet and airport, I get fast speeds right after changing the configuration but after a minute or two I am well below 1.0 Mbps. I've got several network configurations with automatic, airport and ethernet set up in different ways including a clean ethernet connection with the original DNS settings.
    I haven't set up an airport only account but that really isn't the way I want to hook up the computer that sits right next to the modem and runs my network. Restarting the old modem and direct connecting the computer to the modem results in the same thing happening.
    I connected my ethernet from the (old?) modem directly to my ancient powerbook G4 and I got +5.6 Mbps download but it also slowed down to 300 kbps after 5 minutes or so the first time (old modem?)
    Now to explain why I have "old?" listed above. I was then able to get a new DSL modem from AT&T, hook it up just fine, get enormously faster internet service in the 5,000 kbps only to have it slow back down to around 300 kpbs after connected for several minutes.
    directly connected to imac-bypassing router
    3,500 kbps
    after 15 minutes-250 kbps
    connected to imac thru router/time capsule with airport extreme
    2500 kbps
    after 15 minutes=166 kbps
    directly connected to an older powerbook G4 with new modem
    IP address of 192.168.1.64
    5.65 Mbps on speedtest
    after 15 minutes=5.67 Mbps
    after 30 minutes= 5.59 Mbps
    1 hour-5.66 Mbps
    Very solid, stable readings for what I am used to. This would seem to isolate the problem to the imac.
    directly connected to imac with new modem
    IP address of 192.168.1.64
    5.8 Mbps on speedtest
    after 30 minutes= .60 Mbps-ping takes 250 ms
    1 hour= .46 Mbps-ping takes 250 ms
    Now a problem that only started last night after I hooked up the new modem and started up my old Time capsule/airport configuration, I got a message that said something to effect of "another device on this network is using computer IP address 192.168.1.64. So I tried manually changing last digit of the IP address on the computer to one number higher and it kept saying the start and end range were incorrect so I shut the airport station down since when it was connected, it would not allow the computer to connect thru the router via ethernet. I did a hard reset on the airport and I got it back up and running just fine but the internet speeds on the imacs' ethernet connections are so slow it's practically worthless. I also checked to see what was connected to my airport on any given occasion, 2 iphones, 2 pads, another imac running upstairs and a newer powerbook running icam source that is supposed to be the baby monitor. Except for the laptop everything can use "802.11n" but the powerbook only connects via 802.11g so I have set the airport to that limiting setting.
    Any suggestions? Is there a way for me to log what is happening so I can report in more detail?

    First thing is to check if the wireless is on a sensible channel: HomeHub doesn't always make sensible choices.  Install inSSIDer on your laptop and see what other devices there are around and if there is any clash.  Also, try moving the HomeHub around a little, even quite small differences can make a big difference to wireless signals.
    You could run an ethernet cable from downstairs to upstairs.  Easy to do, but can be a bit unsightly.  If most of your devices are upstairs, you could use this cable to connect the modem to the HomeHub.  If you have devices both up and down, you may want to keep the HomeHub downstairs and add a switch upstairs.
    HomePlug may be suitable for you.  If you search Amazon for HomePlug you will see a couple of kits for just over £30.  Don't go for an 85Mbps one.  A 200Mbps such as the TP-link or D-Link should be much better than wireless, but not as good as a cable.
    Depending excatly how many devices you want to connect and where, you can pay more and have a builtin wireless at one end: http://www.amazon.co.uk/Devolo-1408-Wireless-N-HomePlug-Adapter/dp/B00472MMCQ/ref=sr_1_15?ie=UTF8&qi...  Or it may be best for you to use the basic devices and add an old wireless router in switch mode.

  • I want to slow down my Apple TV...

    Hi,
    I want to slow down data going into my Apple TV...
    Basically when one of the family uses Netflix or another source on the Apple TV, it is taking too much of the bandwidth available to the household.  Living in a rural part of the UK we can get around 4Mb/s, and eeking it out amonst a big family is a real issue.  Fibre is still a dream despite all the rhetoric spoken by BT and others.
    Anyhow, I wondered whether our router could allow me to configure the Apple TV's IP address to have a maximum value. (Some routers do).  Unfortunately oursis the basic ISP supplied jobee, and it will not allow this.
    So, here's the reason for writing, and  I wondered whether I could but a cap around 800Mb/s on data on the Apple TV unit.  It currently is also using Wifi if that helps.
    Any suggestions or configurations gratefuilly accepted.

    Without knowing what make and model of router you have its impossible to know whether ti would allow it or not.
    Your other option is too buy a router that will allow it, and daisy chain it to the ISPs modem. Then control the entire network through the new router.

  • Is iOS 8 slowing down the wi fi on my iPad air?

    Having lived through several OS updates I know that it takes a little while for apps to all be updated and for little glitches to be worked out.  However, I think iOS 8 has brought on some real issues with my iPad Air. 
    The overall issue is a slow connection to the internet.  This happens at home and in several other locations where I have used the wi-fi since updating to iOS 8 a few weeks, ago.  My work PC works fine (well... at least, the internet does), but my daugter's iPad mini (also updated to iOS 8) will slow down when she is watching Netflix, occassionally.  The family also has an iMac, which is working fine. 
    While using the Washtington Post (downloading the newspaper), Pinterest, Safari, You Tube, Mail and the App Store, the connection seems to slow down to a crawl making it impossible to continue what I am doing. 
    I've shut down and restarted the iPad, and then it works fine for a while, only to slow down again sometime later.  Sometimes the problem will seem to fix itself, but then it slows down again.  Sometimes, it happens when it comes out of sleep mode, and sometimes not.   Since I use my iPad to work from home, it is really frustrating.  I can delay my gratification when it comes to games and such, but not when I am updating my blog or reading my email. 
    I've Googled iOS 8 and wi fi and saw that there are a number of issues out there.  Some of the big tech magazines and websites are tracking some similiar issues.  I'm curious if anyone knows if this is all related to iOS 8 and if a future update will resolve it, or if there are ways I can test my hardware on my iPad to make sure it is working properly. 
    Thanks!

    How to remove ios 8 ? This is biggest failure of Apple. It slow down my ipad , freez application, freez key board....?

  • IMac slowing down

    My 27" iMac, late 2009, Mountain Lion has 164 GB free space of 500 GB total, and has slowed down noticeably the past month. There are three additional HD's connected, could that be part of the problem? Photoshop operations are the most affected, I'd say, PS6 is installed. PS Bridge also. Thanks very much.

    5/19/13 9:54:44.701 AM sandboxd[498]: ([497]) mdworker(497) deny mach-lookup com.apple.ls.boxd
    5/19/13 9:54:45.000 AM kernel[0]: Sandbox: sandboxd(498) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 9:56:13.947 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 9:58:46.415 AM mdworker[504]: Unable to talk to lsboxd
    5/19/13 9:58:46.463 AM sandboxd[505]: ([504]) mdworker(504) deny mach-lookup com.apple.ls.boxd
    5/19/13 9:58:46.000 AM kernel[0]: Sandbox: sandboxd(505) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:00:11.106 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:00:41.141 AM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x16-10.0.1.7:0!
    5/19/13 10:00:49.814 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:05:53.943 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:06:22.935 AM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x18-10.0.1.7:0!
    5/19/13 10:06:44.939 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:06:47.184 AM mdworker[516]: Unable to talk to lsboxd
    5/19/13 10:06:47.238 AM sandboxd[518]: ([516]) mdworker(516) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:06:47.000 AM kernel[0]: Sandbox: sandboxd(518) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:07:14.000 AM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=521[GoogleSoftwareUp] clearing CS_VALID
    5/19/13 10:08:35.363 AM com.apple.backupd[526]: Starting automatic backup
    5/19/13 10:08:35.373 AM com.apple.backupd[526]: Attempting to mount network destination URL: afp://johnp;[email protected]/Data
    5/19/13 10:08:35.519 AM com.apple.kextd[14]: Can't create kext cache under / - owner not root.
    5/19/13 10:08:35.934 AM com.apple.kextd[14]: Can't create kext cache under / - owner not root.
    5/19/13 10:08:41.000 AM kernel[0]: AppleSRP started.
    5/19/13 10:08:49.366 AM com.apple.backupd[526]: Mounted network destination at mount point: /Volumes/Data using URL: afp://johnp;[email protected]/Data
    5/19/13 10:08:49.000 AM kernel[0]: ASP_TCP asp_tcp_usr_control: invalid kernelUseCount 0
    5/19/13 10:08:49.000 AM kernel[0]: AFP_VFS afpfs_mount: /Volumes/Data, pid 528
    5/19/13 10:08:49.000 AM kernel[0]: AFP_VFS afpfs_mount : succeeded on volume 0xffffff814afa9008 /Volumes/Data (error = 0, retval = 0)
    5/19/13 10:09:12.887 AM mds[34]: (Error) Volume: Root store set to FSOnly with matching create! (loaded:1)
    5/19/13 10:09:13.560 AM com.apple.backupd[526]: Disk image /Volumes/Data/Big iMac (7).sparsebundle mounted at: /Volumes/Time Machine Backups
    5/19/13 10:09:13.672 AM com.apple.backupd[526]: Backing up to: /Volumes/Time Machine Backups/Backups.backupdb
    5/19/13 10:09:14.000 AM kernel[0]: AppleBCM5701Ethernet:        0        1 BCM5701Enet::replaceOrCopyPacket worked after N tries
    5/19/13 10:09:29.396 AM com.apple.backupd[526]: Using file event preflight for 27iMac
    5/19/13 10:09:34.515 AM com.apple.backupd[526]: Will copy (268.1 MB) from 27iMac
    5/19/13 10:09:34.531 AM com.apple.backupd[526]: Using file event preflight for LaCie 1 TB
    5/19/13 10:09:34.701 AM com.apple.backupd[526]: Will copy (43 KB) from LaCie 1 TB
    5/19/13 10:09:34.720 AM com.apple.backupd[526]: Found 1108 files (268.1 MB) needing backup
    5/19/13 10:09:34.729 AM com.apple.backupd[526]: 2.87 GB required (including padding), 1.53 TB available
    5/19/13 10:10:48.149 AM com.apple.SecurityServer[25]: Session 100013 created
    5/19/13 10:10:49.130 AM com.apple.SecurityServer[25]: Session 100014 created
    5/19/13 10:11:06.000 AM kernel[0]: disk0s2: I/O error.
    5/19/13 10:11:22.000 AM kernel[0]: disk0s2: I/O error.
    5/19/13 10:11:35.000 AM kernel[0]: disk0s2: I/O error.
    5/19/13 10:11:35.992 AM com.apple.backupd[526]: Error: (-36) SrcErr:YES Copying /Users/micasa/Desktop/Adobe Photo Downloader/20130511/_MG_7646.CR2 to (null)
    5/19/13 10:11:36.268 AM mdworker[585]: Unable to talk to lsboxd
    5/19/13 10:11:36.319 AM sandboxd[586]: ([585]) mdworker(585) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:11:36.000 AM kernel[0]: Sandbox: sandboxd(586) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:13:36.103 AM com.apple.backupd[526]: Copied 8404 files (1.36 GB) from volume 27iMac.
    5/19/13 10:13:44.301 AM com.apple.backupd[526]: Copied 8599 files (1.36 GB) from volume LaCie 1 TB.
    5/19/13 10:13:44.432 AM com.apple.backupd[526]: Using file event preflight for 27iMac
    5/19/13 10:13:44.437 AM com.apple.backupd[526]: Will copy (1.2 MB) from 27iMac
    5/19/13 10:13:44.439 AM com.apple.backupd[526]: Found 27 files (1.2 MB) needing backup
    5/19/13 10:13:44.440 AM com.apple.backupd[526]: 2.55 GB required (including padding), 1.53 TB available
    5/19/13 10:13:56.667 AM com.apple.backupd[526]: Copied 722 files (1.2 MB) from volume 27iMac.
    5/19/13 10:14:00.312 AM com.apple.backupd[526]: Copied 729 files (1.2 MB) from volume LaCie 1 TB.
    5/19/13 10:14:01.475 AM com.apple.backupd[526]: Created new backup: 2013-05-19-101400
    5/19/13 10:14:02.067 AM com.apple.backupd[526]: Starting post-backup thinning
    5/19/13 10:14:23.198 AM com.apple.backupd[526]: Deleted /Volumes/Time Machine Backups/Backups.backupdb/Big iMac (7)/2013-04-19-082302 (238.3 MB)
    5/19/13 10:14:32.787 AM com.apple.backupd[526]: Deleted /Volumes/Time Machine Backups/Backups.backupdb/Big iMac (7)/2013-04-18-093806 (29.2 MB)
    5/19/13 10:14:42.979 AM com.apple.backupd[526]: Deleted /Volumes/Time Machine Backups/Backups.backupdb/Big iMac (7)/2013-04-17-140654 (47.5 MB)
    5/19/13 10:14:42.979 AM com.apple.backupd[526]: Post-back up thinning complete: 3 expired backups removed
    5/19/13 10:14:43.092 AM com.apple.backupd[526]: Backup completed successfully.
    5/19/13 10:14:48.435 AM com.apple.backupd[526]: Ejected Time Machine disk image: /Volumes/Data/Big iMac (7).sparsebundle
    5/19/13 10:14:49.000 AM kernel[0]: AFP_VFS afpfs_unmount: /Volumes/Data, flags 0, pid 620
    5/19/13 10:14:49.351 AM com.apple.backupd[526]: Ejected Time Machine network volume.
    5/19/13 10:14:49.352 AM com.apple.backupd[526]: Running automatic backup verification.
    5/19/13 10:14:49.352 AM com.apple.backupd[526]: Attempting to mount network destination URL: afp://johnp;[email protected]/Data
    5/19/13 10:14:49.000 AM kernel[0]: AFP_VFS afpfs_unmount : We are the last mnt/sbmnt using volume /Volumes/Data 0xffffff814afa9008
    5/19/13 10:14:49.000 AM kernel[0]: AFP_VFS afpfs_unmount : We are the last volume using socket /Volumes/Data 0xffffff814afa9008
    5/19/13 10:14:49.000 AM kernel[0]: AFP_VFS afpfs_unmount : afpfs_DoReconnect sent signal for unmount to proceed
    5/19/13 10:14:49.844 AM com.apple.backupd[526]: Mounted network destination at mount point: /Volumes/Data using URL: afp://johnp;[email protected]/Data
    5/19/13 10:14:50.000 AM kernel[0]: ASP_TCP asp_tcp_usr_control: invalid kernelUseCount 0
    5/19/13 10:14:50.000 AM kernel[0]: AFP_VFS afpfs_mount: /Volumes/Data, pid 622
    5/19/13 10:14:50.000 AM kernel[0]: AFP_VFS afpfs_mount : succeeded on volume 0xffffff814b022008 /Volumes/Data (error = 0, retval = 0)
    5/19/13 10:14:53.072 AM com.apple.backupd[526]: Verifying backup disk image.
    5/19/13 10:15:11.938 AM mdworker[641]: Unable to talk to lsboxd
    5/19/13 10:15:12.000 AM kernel[0]: Sandbox: sandboxd(644) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:15:12.924 AM sandboxd[644]: ([641]) mdworker(641) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:15:33.018 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:16:03.229 AM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x1a-10.0.1.7:0!
    5/19/13 10:16:55.143 AM WindowServer[115]: CGXSetWindowBackgroundBlurRadius: Invalid window 0xffffffff
    5/19/13 10:16:55.242 AM loginwindow[38]: find_shared_window: WID -1
    5/19/13 10:16:55.242 AM loginwindow[38]: CGSGetWindowTags: Invalid window 0xffffffff
    5/19/13 10:16:55.242 AM loginwindow[38]: find_shared_window: WID -1
    5/19/13 10:16:55.242 AM loginwindow[38]: CGSSetWindowTags: Invalid window 0xffffffff
    5/19/13 10:16:55.698 AM coreservicesd[71]: Application App:"loginwindow" [ 0x0/0x1001]  @ 0x0x7feea3e27a40 tried to be brought forward, but isn't in fPermittedFrontASNs ( ( ASN:0x0-0xa10a1:) ), so denying.
    5/19/13 10:16:55.698 AM WindowServer[115]: [cps/setfront] Failed setting the front application to loginwindow, psn 0x0-0x1001, securitySessionID=0x186a3, err=-13066
    5/19/13 10:19:53.250 AM diskarbitrationd[49]: loginwindow [38]:45339 not responding.
    5/19/13 10:21:16.038 AM mdworker[672]: Unable to talk to lsboxd
    5/19/13 10:21:16.099 AM sandboxd[675]: ([672]) mdworker(672) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:21:16.000 AM kernel[0]: Sandbox: sandboxd(675) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:21:34.901 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:22:52.124 AM com.apple.backupd[526]: Backup verification passed!
    5/19/13 10:23:18.342 AM mdworker[682]: Unable to talk to lsboxd
    5/19/13 10:23:18.389 AM sandboxd[683]: ([682]) mdworker(682) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:23:18.000 AM kernel[0]: Sandbox: sandboxd(683) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:25:15.164 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:25:42.916 AM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x1c-10.0.1.7:0!
    5/19/13 10:26:39.952 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:27:20.173 AM mdworker[687]: Unable to talk to lsboxd
    5/19/13 10:27:20.240 AM sandboxd[693]: ([687]) mdworker(687) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:27:20.000 AM kernel[0]: Sandbox: sandboxd(693) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:31:21.939 AM mdworker[702]: Unable to talk to lsboxd
    5/19/13 10:31:21.989 AM sandboxd[703]: ([702]) mdworker(702) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:31:22.000 AM kernel[0]: Sandbox: sandboxd(703) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:33:22.745 AM mdworker[711]: Unable to talk to lsboxd
    5/19/13 10:33:22.811 AM sandboxd[715]: ([711]) mdworker(711) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:33:22.000 AM kernel[0]: Sandbox: sandboxd(715) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:34:53.931 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:35:23.904 AM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x1e-10.0.1.7:0!
    5/19/13 10:36:24.862 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:37:24.552 AM mdworker[725]: Unable to talk to lsboxd
    5/19/13 10:37:24.620 AM sandboxd[728]: ([725]) mdworker(725) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:37:25.000 AM kernel[0]: Sandbox: sandboxd(728) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:41:26.317 AM mdworker[736]: Unable to talk to lsboxd
    5/19/13 10:41:26.365 AM sandboxd[737]: ([736]) mdworker(736) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:41:26.000 AM kernel[0]: Sandbox: sandboxd(737) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:43:28.105 AM mdworker[742]: Unable to talk to lsboxd
    5/19/13 10:43:28.154 AM sandboxd[743]: ([742]) mdworker(742) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:43:28.000 AM kernel[0]: Sandbox: sandboxd(743) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:44:33.007 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:45:02.885 AM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x20-10.0.1.7:0!
    5/19/13 10:47:29.921 AM mdworker[750]: Unable to talk to lsboxd
    5/19/13 10:47:29.986 AM sandboxd[753]: ([750]) mdworker(750) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:47:30.000 AM kernel[0]: Sandbox: sandboxd(753) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:51:16.977 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:51:33.259 AM mdworker[768]: Unable to talk to lsboxd
    5/19/13 10:51:33.307 AM sandboxd[769]: ([768]) mdworker(768) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:51:33.000 AM kernel[0]: Sandbox: sandboxd(769) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:53:35.049 AM mdworker[773]: Unable to talk to lsboxd
    5/19/13 10:53:35.100 AM sandboxd[774]: ([773]) mdworker(773) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:53:35.000 AM kernel[0]: Sandbox: sandboxd(774) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 10:54:13.000 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 10:54:42.809 AM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x22-10.0.1.7:0!
    5/19/13 10:59:39.946 AM mdworker[794]: Unable to talk to lsboxd
    5/19/13 10:59:39.995 AM sandboxd[795]: ([794]) mdworker(794) deny mach-lookup com.apple.ls.boxd
    5/19/13 10:59:40.000 AM kernel[0]: Sandbox: sandboxd(795) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:01:40.742 AM mdworker[801]: Unable to talk to lsboxd
    5/19/13 11:01:40.794 AM sandboxd[803]: ([801]) mdworker(801) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:01:41.000 AM kernel[0]: Sandbox: sandboxd(803) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:03:42.869 AM mdworker[810]: Unable to talk to lsboxd
    5/19/13 11:03:42.919 AM sandboxd[811]: ([810]) mdworker(810) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:03:43.000 AM kernel[0]: Sandbox: sandboxd(811) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:03:52.995 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 11:04:22.860 AM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x23-10.0.1.7:0!
    5/19/13 11:05:57.000 AM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=827[GoogleSoftwareUp] clearing CS_VALID
    5/19/13 11:06:05.706 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 11:08:17.341 AM mdworker[840]: Unable to talk to lsboxd
    5/19/13 11:08:17.394 AM sandboxd[841]: ([840]) mdworker(840) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:08:17.000 AM kernel[0]: Sandbox: sandboxd(841) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:08:34.845 AM com.apple.backupd[844]: Starting automatic backup
    5/19/13 11:08:34.862 AM com.apple.backupd[844]: Network destination already mounted at: /Volumes/Data
    5/19/13 11:09:01.916 AM mds[34]: (Error) Volume: Root store set to FSOnly with matching create! (loaded:1)
    5/19/13 11:09:02.689 AM com.apple.backupd[844]: Disk image /Volumes/Data/Big iMac (7).sparsebundle mounted at: /Volumes/Time Machine Backups
    5/19/13 11:09:02.691 AM com.apple.backupd[844]: Backing up to: /Volumes/Time Machine Backups/Backups.backupdb
    5/19/13 11:09:05.396 AM com.apple.backupd[844]: Using file event preflight for 27iMac
    5/19/13 11:09:07.804 AM com.apple.backupd[844]: Will copy (1.3 MB) from 27iMac
    5/19/13 11:09:07.805 AM com.apple.backupd[844]: Using file event preflight for LaCie 1 TB
    5/19/13 11:09:07.805 AM com.apple.backupd[844]: Will copy (Zero KB) from LaCie 1 TB
    5/19/13 11:09:07.806 AM com.apple.backupd[844]: Found 54 files (1.3 MB) needing backup
    5/19/13 11:09:07.814 AM com.apple.backupd[844]: 104.9 MB required (including padding), 1.53 TB available
    5/19/13 11:09:07.815 AM com.apple.backupd[844]: Waiting for index to be ready (100)
    5/19/13 11:09:18.151 AM mdworker[869]: Unable to talk to lsboxd
    5/19/13 11:09:18.206 AM sandboxd[871]: ([869]) mdworker(869) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:09:18.000 AM kernel[0]: Sandbox: sandboxd(871) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:09:42.566 AM com.apple.backupd[844]: Copied 1868 files (7.2 MB) from volume 27iMac.
    5/19/13 11:09:46.543 AM com.apple.backupd[844]: Copied 1875 files (7.2 MB) from volume LaCie 1 TB.
    5/19/13 11:09:46.573 AM com.apple.backupd[844]: Using file event preflight for 27iMac
    5/19/13 11:09:46.577 AM com.apple.backupd[844]: Will copy (1 MB) from 27iMac
    5/19/13 11:09:46.580 AM com.apple.backupd[844]: Found 27 files (1 MB) needing backup
    5/19/13 11:09:46.580 AM com.apple.backupd[844]: 2.55 GB required (including padding), 1.53 TB available
    5/19/13 11:10:00.753 AM com.apple.backupd[844]: Copied 705 files (1 MB) from volume 27iMac.
    5/19/13 11:10:04.275 AM com.apple.backupd[844]: Copied 712 files (1 MB) from volume LaCie 1 TB.
    5/19/13 11:10:04.866 AM com.apple.backupd[844]: Created new backup: 2013-05-19-111004
    5/19/13 11:10:05.251 AM com.apple.backupd[844]: Starting post-backup thinning
    5/19/13 11:10:17.744 AM com.apple.backupd[844]: Deleted /Volumes/Time Machine Backups/Backups.backupdb/Big iMac (7)/2013-05-15-193013 (7.9 MB)
    5/19/13 11:10:17.744 AM com.apple.backupd[844]: Post-back up thinning complete: 1 expired backups removed
    5/19/13 11:10:17.856 AM com.apple.backupd[844]: Backup completed successfully.
    5/19/13 11:10:21.667 AM com.apple.backupd[844]: Ejected Time Machine disk image: /Volumes/Data/Big iMac (7).sparsebundle
    5/19/13 11:10:21.000 AM kernel[0]: AFP_VFS afpfs_unmount: /Volumes/Data, flags 0, pid 880
    5/19/13 11:10:22.139 AM com.apple.backupd[844]: Ejected Time Machine network volume.
    5/19/13 11:10:22.000 AM kernel[0]: AFP_VFS afpfs_unmount : We are the last mnt/sbmnt using volume /Volumes/Data 0xffffff814b022008
    5/19/13 11:10:22.000 AM kernel[0]: AFP_VFS afpfs_unmount : We are the last volume using socket /Volumes/Data 0xffffff814b022008
    5/19/13 11:10:22.000 AM kernel[0]: AFP_VFS afpfs_unmount : afpfs_DoReconnect sent signal for unmount to proceed
    5/19/13 11:11:20.009 AM mdworker[887]: Unable to talk to lsboxd
    5/19/13 11:11:20.070 AM sandboxd[890]: ([887]) mdworker(887) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:11:20.000 AM kernel[0]: Sandbox: sandboxd(890) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:13:33.912 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 11:15:23.412 AM mdworker[906]: Unable to talk to lsboxd
    5/19/13 11:15:23.481 AM sandboxd[909]: ([906]) mdworker(906) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:15:23.000 AM kernel[0]: Sandbox: sandboxd(909) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:19:25.217 AM mdworker[918]: Unable to talk to lsboxd
    5/19/13 11:19:25.284 AM sandboxd[921]: ([918]) mdworker(918) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:19:25.000 AM kernel[0]: Sandbox: sandboxd(921) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:20:54.745 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 11:21:26.014 AM mdworker[927]: Unable to talk to lsboxd
    5/19/13 11:21:26.000 AM kernel[0]: Sandbox: sandboxd(928) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:21:26.278 AM sandboxd[928]: ([927]) mdworker(927) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:22:11.852 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 11:22:41.877 AM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x27-10.0.1.7:0!
    5/19/13 11:26:07.171 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 11:26:08.704 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 11:26:31.436 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 11:26:34.203 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 11:29:29.966 AM mdworker[949]: Unable to talk to lsboxd
    5/19/13 11:29:30.024 AM sandboxd[951]: ([949]) mdworker(949) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:29:30.000 AM kernel[0]: Sandbox: sandboxd(951) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:31:30.768 AM mdworker[965]: Unable to talk to lsboxd
    5/19/13 11:31:30.821 AM sandboxd[966]: ([965]) mdworker(965) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:31:31.000 AM kernel[0]: Sandbox: sandboxd(966) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:33:32.571 AM mdworker[975]: Unable to talk to lsboxd
    5/19/13 11:33:32.638 AM sandboxd[978]: ([975]) mdworker(975) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:33:33.000 AM kernel[0]: Sandbox: sandboxd(978) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:35:44.705 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 11:37:34.616 AM mdworker[988]: Unable to talk to lsboxd
    5/19/13 11:37:34.679 AM sandboxd[991]: ([988]) mdworker(988) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:37:35.000 AM kernel[0]: Sandbox: sandboxd(991) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:39:36.385 AM mdworker[1000]: Unable to talk to lsboxd
    5/19/13 11:39:36.436 AM sandboxd[1001]: ([1000]) mdworker(1000) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:39:36.000 AM kernel[0]: Sandbox: sandboxd(1001) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:40:52.828 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 11:41:22.730 AM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x2e-10.0.1.7:0!
    5/19/13 11:41:38.145 AM mdworker[1004]: Unable to talk to lsboxd
    5/19/13 11:41:38.194 AM sandboxd[1005]: ([1004]) mdworker(1004) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:41:38.000 AM kernel[0]: Sandbox: sandboxd(1005) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:47:41.519 AM mdworker[1021]: Unable to talk to lsboxd
    5/19/13 11:47:41.587 AM sandboxd[1024]: ([1021]) mdworker(1021) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:47:41.000 AM kernel[0]: Sandbox: sandboxd(1024) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:49:44.917 AM mdworker[1033]: Unable to talk to lsboxd
    5/19/13 11:49:44.968 AM sandboxd[1035]: ([1033]) mdworker(1033) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:49:45.000 AM kernel[0]: Sandbox: sandboxd(1035) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:50:33.746 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 11:51:02.729 AM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x2f-10.0.1.7:0!
    5/19/13 11:51:46.701 AM mdworker[1038]: Unable to talk to lsboxd
    5/19/13 11:51:46.750 AM sandboxd[1040]: ([1038]) mdworker(1038) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:51:46.000 AM kernel[0]: Sandbox: sandboxd(1040) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:57:50.095 AM mdworker[1058]: Unable to talk to lsboxd
    5/19/13 11:57:50.156 AM sandboxd[1061]: ([1058]) mdworker(1058) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:57:50.000 AM kernel[0]: Sandbox: sandboxd(1061) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:58:50.869 AM mdworker[1067]: Unable to talk to lsboxd
    5/19/13 11:58:50.922 AM sandboxd[1068]: ([1067]) mdworker(1067) deny mach-lookup com.apple.ls.boxd
    5/19/13 11:58:50.000 AM kernel[0]: Sandbox: sandboxd(1068) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 11:59:39.640 AM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:00:09.702 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x31-10.0.1.8:0!
    5/19/13 12:00:13.739 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:00:42.731 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x32-10.0.1.7:0!
    5/19/13 12:00:52.683 PM mdworker[1074]: Unable to talk to lsboxd
    5/19/13 12:00:52.747 PM sandboxd[1078]: ([1074]) mdworker(1074) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:00:53.000 PM kernel[0]: Sandbox: sandboxd(1078) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:04:40.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=1092[GoogleSoftwareUp] clearing CS_VALID
    5/19/13 12:04:47.477 PM com.apple.SecurityServer[25]: Session 100016 created
    5/19/13 12:04:48.686 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:04:56.029 PM mdworker[1098]: Unable to talk to lsboxd
    5/19/13 12:04:56.078 PM sandboxd[1099]: ([1098]) mdworker(1098) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:04:56.000 PM kernel[0]: Sandbox: sandboxd(1099) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:08:34.954 PM com.apple.backupd[1110]: Starting automatic backup
    5/19/13 12:08:34.963 PM com.apple.backupd[1110]: Attempting to mount network destination URL: afp://johnp;[email protected]/Data
    5/19/13 12:08:43.648 PM com.apple.backupd[1110]: Mounted network destination at mount point: /Volumes/Data using URL: afp://johnp;[email protected]/Data
    5/19/13 12:08:43.000 PM kernel[0]: ASP_TCP asp_tcp_usr_control: invalid kernelUseCount 0
    5/19/13 12:08:43.000 PM kernel[0]: AFP_VFS afpfs_mount: /Volumes/Data, pid 1112
    5/19/13 12:08:43.000 PM kernel[0]: AFP_VFS afpfs_mount : succeeded on volume 0xffffff814b031008 /Volumes/Data (error = 0, retval = 0)
    5/19/13 12:08:58.446 PM mdworker[1119]: Unable to talk to lsboxd
    5/19/13 12:08:58.513 PM sandboxd[1122]: ([1119]) mdworker(1119) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:08:58.000 PM kernel[0]: Sandbox: sandboxd(1122) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:09:05.731 PM mds[34]: (Error) Volume: Root store set to FSOnly with matching create! (loaded:1)
    5/19/13 12:09:06.392 PM com.apple.backupd[1110]: Disk image /Volumes/Data/Big iMac (7).sparsebundle mounted at: /Volumes/Time Machine Backups
    5/19/13 12:09:06.430 PM com.apple.backupd[1110]: Backing up to: /Volumes/Time Machine Backups/Backups.backupdb
    5/19/13 12:09:07.767 PM com.apple.backupd[1110]: Using file event preflight for 27iMac
    5/19/13 12:09:08.750 PM com.apple.backupd[1110]: Will copy (5.7 MB) from 27iMac
    5/19/13 12:09:08.752 PM com.apple.backupd[1110]: Using file event preflight for LaCie 1 TB
    5/19/13 12:09:08.752 PM com.apple.backupd[1110]: Will copy (Zero KB) from LaCie 1 TB
    5/19/13 12:09:08.752 PM com.apple.backupd[1110]: Found 61 files (5.7 MB) needing backup
    5/19/13 12:09:08.761 PM com.apple.backupd[1110]: 2.55 GB required (including padding), 1.53 TB available
    5/19/13 12:09:46.037 PM com.apple.backupd[1110]: Copied 1850 files (11.6 MB) from volume 27iMac.
    5/19/13 12:09:50.037 PM com.apple.backupd[1110]: Copied 1857 files (11.6 MB) from volume LaCie 1 TB.
    5/19/13 12:09:50.043 PM com.apple.backupd[1110]: Using file event preflight for 27iMac
    5/19/13 12:09:50.047 PM com.apple.backupd[1110]: Will copy (28 KB) from 27iMac
    5/19/13 12:09:50.050 PM com.apple.backupd[1110]: Found 23 files (28 KB) needing backup
    5/19/13 12:09:50.050 PM com.apple.backupd[1110]: 2.55 GB required (including padding), 1.53 TB available
    5/19/13 12:09:52.812 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:10:01.724 PM com.apple.backupd[1110]: Copied 669 files (28 KB) from volume 27iMac.
    5/19/13 12:10:05.158 PM com.apple.backupd[1110]: Copied 676 files (28 KB) from volume LaCie 1 TB.
    5/19/13 12:10:05.681 PM com.apple.backupd[1110]: Created new backup: 2013-05-19-121005
    5/19/13 12:10:06.003 PM com.apple.backupd[1110]: Starting post-backup thinning
    5/19/13 12:10:06.003 PM com.apple.backupd[1110]: No post-back up thinning needed: no expired backups exist
    5/19/13 12:10:06.631 PM com.apple.backupd[1110]: Backup completed successfully.
    5/19/13 12:10:10.301 PM com.apple.backupd[1110]: Ejected Time Machine disk image: /Volumes/Data/Big iMac (7).sparsebundle
    5/19/13 12:10:10.799 PM com.apple.backupd[1110]: Ejected Time Machine network volume.
    5/19/13 12:10:10.000 PM kernel[0]: AFP_VFS afpfs_unmount: /Volumes/Data, flags 0, pid 1155
    5/19/13 12:10:10.000 PM kernel[0]: AFP_VFS afpfs_unmount : We are the last mnt/sbmnt using volume /Volumes/Data 0xffffff814b031008
    5/19/13 12:10:10.000 PM kernel[0]: AFP_VFS afpfs_unmount : We are the last volume using socket /Volumes/Data 0xffffff814b031008
    5/19/13 12:10:10.000 PM kernel[0]: AFP_VFS afpfs_unmount : afpfs_DoReconnect sent signal for unmount to proceed
    5/19/13 12:11:00.314 PM mdworker[1161]: Unable to talk to lsboxd
    5/19/13 12:11:00.371 PM sandboxd[1166]: ([1161]) mdworker(1161) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:11:00.000 PM kernel[0]: Sandbox: sandboxd(1166) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:14:38.816 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:14:40.658 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:15:02.167 PM mdworker[1177]: Unable to talk to lsboxd
    5/19/13 12:15:02.229 PM sandboxd[1180]: ([1177]) mdworker(1177) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:15:02.000 PM kernel[0]: Sandbox: sandboxd(1180) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:19:32.809 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:21:05.567 PM mdworker[1196]: Unable to talk to lsboxd
    5/19/13 12:21:05.628 PM sandboxd[1199]: ([1196]) mdworker(1196) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:21:06.000 PM kernel[0]: Sandbox: sandboxd(1199) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:21:59.649 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:23:06.364 PM mdworker[1207]: Unable to talk to lsboxd
    5/19/13 12:23:06.418 PM sandboxd[1208]: ([1207]) mdworker(1207) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:23:06.000 PM kernel[0]: Sandbox: sandboxd(1208) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:25:20.561 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:27:08.152 PM mdworker[1216]: Unable to talk to lsboxd
    5/19/13 12:27:08.213 PM sandboxd[1219]: ([1216]) mdworker(1216) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:27:08.000 PM kernel[0]: Sandbox: sandboxd(1219) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:29:29.698 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:31:11.534 PM mdworker[1235]: Unable to talk to lsboxd
    5/19/13 12:31:11.596 PM sandboxd[1238]: ([1235]) mdworker(1235) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:31:11.000 PM kernel[0]: Sandbox: sandboxd(1238) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:34:19.696 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:35:13.380 PM mdworker[1247]: Unable to talk to lsboxd
    5/19/13 12:35:13.442 PM sandboxd[1250]: ([1247]) mdworker(1247) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:35:13.000 PM kernel[0]: Sandbox: sandboxd(1250) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:36:09.366 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:36:38.169 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x3e-10.0.1.7:0!
    5/19/13 12:41:49.133 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 04:f7:e4:01:54:5c@fe80::6f7:e4ff:fe01:545c._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:43:18.348 PM mdworker[1278]: Unable to talk to lsboxd
    5/19/13 12:43:18.412 PM sandboxd[1281]: ([1278]) mdworker(1278) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:43:18.000 PM kernel[0]: Sandbox: sandboxd(1281) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:43:57.542 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:44:27.613 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x41-10.0.1.7:0!
    5/19/13 12:44:37.169 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 04:f7:e4:01:54:5c@fe80::6f7:e4ff:fe01:545c._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:45:07.326 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x42-10.0.1.6:0!
    5/19/13 12:45:14.650 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:45:14.651 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:45:20.065 PM mdworker[1287]: Unable to talk to lsboxd
    5/19/13 12:45:20.000 PM kernel[0]: Sandbox: sandboxd(1290) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:45:20.116 PM sandboxd[1290]: ([1287]) mdworker(1287) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:48:24.079 PM mdworker[1304]: Unable to talk to lsboxd
    5/19/13 12:48:24.141 PM sandboxd[1307]: ([1304]) mdworker(1304) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:48:24.000 PM kernel[0]: Sandbox: sandboxd(1307) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:49:49.288 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:50:02.494 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:51:18.067 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:51:31.276 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:51:54.930 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:52:10.617 PM apsd[57]: <APSConnectionNotificationQueue: 0x7fb374a3bc00>: outstanding count -1 for com.apple.apsd-queue-port=com.apple.CalendarAgent.push-user=503 darkWakeEnabled-env=production
    5/19/13 12:52:10.618 PM apsd[57]: <APSConnectionNotificationQueue: 0x7fb374a3bc00>: outstanding count -1 for com.apple.apsd-queue-port=com.apple.CalendarAgent.push-user=503 darkWakeEnabled-env=production
    5/19/13 12:52:10.619 PM apsd[57]: <APSConnectionNotificationQueue: 0x7fb374a3bc00>: outstanding count -1 for com.apple.apsd-queue-port=com.apple.CalendarAgent.push-user=503 darkWakeEnabled-env=production
    5/19/13 12:52:24.754 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x49-10.0.1.8:0!
    5/19/13 12:52:25.904 PM mdworker[1318]: Unable to talk to lsboxd
    5/19/13 12:52:25.964 PM sandboxd[1321]: ([1318]) mdworker(1318) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:52:26.000 PM kernel[0]: Sandbox: sandboxd(1321) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:53:03.789 PM apsd[57]: <APSConnectionNotificationQueue: 0x7fb376c12260>: outstanding count -1 for com.apple.apsd-queue-port=com.apple.syncdefaultsd.push-user=503-env=production
    5/19/13 12:53:03.790 PM apsd[57]: <APSConnectionNotificationQueue: 0x7fb376c12260>: outstanding count -1 for com.apple.apsd-queue-port=com.apple.syncdefaultsd.push-user=503-env=production
    5/19/13 12:53:03.790 PM apsd[57]: <APSConnectionNotificationQueue: 0x7fb376c12260>: outstanding count -1 for com.apple.apsd-queue-port=com.apple.syncdefaultsd.push-user=503-env=production
    5/19/13 12:54:26.709 PM mdworker[1330]: Unable to talk to lsboxd
    5/19/13 12:54:26.764 PM sandboxd[1331]: ([1330]) mdworker(1330) deny mach-lookup com.apple.ls.boxd
    5/19/13 12:54:27.000 PM kernel[0]: Sandbox: sandboxd(1331) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 12:57:42.684 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:58:06.953 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:58:42.587 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 12:59:12.612 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x4c-10.0.1.7:0!
    5/19/13 1:02:30.686 PM mdworker[1352]: Unable to talk to lsboxd
    5/19/13 1:02:30.753 PM sandboxd[1357]: ([1352]) mdworker(1352) deny mach-lookup com.apple.ls.boxd
    5/19/13 1:02:31.000 PM kernel[0]: Sandbox: sandboxd(1357) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 1:03:23.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=1363[GoogleSoftwareUp] clearing CS_VALID
    5/19/13 1:03:32.494 PM mdworker[1365]: Unable to talk to lsboxd
    5/19/13 1:03:32.000 PM kernel[0]: Sandbox: sandboxd(1367) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 1:03:32.545 PM sandboxd[1367]: ([1365]) mdworker(1365) deny mach-lookup com.apple.ls.boxd
    5/19/13 1:03:39.956 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:03:54.397 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 04:f7:e4:01:54:5c@fe80::6f7:e4ff:fe01:545c._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:04:15.597 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:04:15.906 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:04:23.283 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x4e-10.0.1.6:0!
    5/19/13 1:04:45.864 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x50-10.0.1.7:0!
    5/19/13 1:05:30.403 PM apsd[57]: <APSConnectionNotificationQueue: 0x7fb376c12260>: outstanding count -1 for com.apple.apsd-queue-port=com.apple.syncdefaultsd.push-user=503-env=production
    5/19/13 1:05:30.404 PM apsd[57]: <APSConnectionNotificationQueue: 0x7fb376c12260>: outstanding count -1 for com.apple.apsd-queue-port=com.apple.syncdefaultsd.push-user=503-env=production
    5/19/13 1:05:30.406 PM apsd[57]: <APSConnectionNotificationQueue: 0x7fb376c12260>: outstanding count -1 for com.apple.apsd-queue-port=com.apple.syncdefaultsd.push-user=503-env=production
    5/19/13 1:05:34.290 PM mdworker[1375]: Unable to talk to lsboxd
    5/19/13 1:05:34.358 PM sandboxd[1378]: ([1375]) mdworker(1375) deny mach-lookup com.apple.ls.boxd
    5/19/13 1:05:34.000 PM kernel[0]: Sandbox: sandboxd(1378) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 1:05:59.736 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:06:38.691 PM com.apple.launchd.peruser.503[229]: (0x7fd5cb92a010.anonymous.com.apple.dock.[339]) Unmanaged jobs may not make XPC Events requests.
    5/19/13 1:06:38.691 PM com.apple.dock.extra[339]: Event channel check-in failed: com.apple.usernotificationcenter.matching: 0x1: Operation not permitted
    5/19/13 1:06:38.691 PM com.apple.dock.extra[339]: Bug: 12D78: libxpc.dylib + 35251 [BBE558BD-5E55-35E4-89ED-1AA6B056D05A]: 0x1
    5/19/13 1:06:38.692 PM com.apple.dock.extra[339]: Got bogus event on event stream listener connection. You may have called xpc_set_event_stream_handler() more than once for the same stream: <error: 0x7fff7e878ca0> { count = 1, contents =
              "XPCErrorDescription" => <string: 0x7fff7e878c20> { length = 18, contents = "Connection invalid" }
    5/19/13 1:06:38.811 PM com.apple.SecurityServer[25]: Session 100019 created
    5/19/13 1:06:39.443 PM WindowServer[115]: kCGErrorIllegalArgument: _CGXRemoveWindowFromWindowMovementGroup: Window not in group
    5/19/13 1:06:41.002 PM Messages[1383]: [Warning] Could not find transfer for guid: 978F7947-A674-4580-86B5-B7850F738B6E
    5/19/13 1:06:41.002 PM Messages[1383]: [Warning] Could not find transfer for guid: 0BF9128C-961F-4E40-9D43-7945C852F4FD
    5/19/13 1:06:41.514 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 04:f7:e4:01:54:5c@fe80::6f7:e4ff:fe01:545c._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:06:41.518 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:06:56.469 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.469 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.469 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.469 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.470 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.487 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.487 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.487 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.488 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.488 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.488 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.488 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.488 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.489 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:06:56.489 PM WindowServer[115]: CGXGetConnectionProperty: Invalid connection 80099
    5/19/13 1:07:02.303 PM Mail[1394]: Using V2 Layout
    5/19/13 1:07:02.701 PM com.apple.SecurityServer[25]: Killing auth hosts
    5/19/13 1:07:02.701 PM com.apple.SecurityServer[25]: Session 100010 destroyed
    5/19/13 1:07:02.718 PM com.apple.SecurityServer[25]: Session 100020 created
    5/19/13 1:07:05.434 PM librariand[1396]: MMe quota status changed: under quota
    5/19/13 1:07:14.140 PM Mail[1394]: *** -[IADomainCache init]: IA domains cache is out of date.
    5/19/13 1:07:15.807 PM SyncServer[1403]: [0x7fe4d2c0be80] |DataManager|Warning| Client com.apple.Mail sync alert tool path /System/Library/Frameworks/Message.framework/Resources/MailSync does not exist.
    5/19/13 1:08:07.775 PM WindowServer[115]: CGXSetWindowBackgroundBlurRadius: Invalid window 0xffffffff
    5/19/13 1:08:18.267 PM mdworker[1410]: Unable to talk to lsboxd
    5/19/13 1:08:18.319 PM sandboxd[1411]: ([1410]) mdworker(1410) deny mach-lookup com.apple.ls.boxd
    5/19/13 1:08:18.000 PM kernel[0]: Sandbox: sandboxd(1411) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 1:08:35.984 PM com.apple.backupd[1418]: Starting automatic backup
    5/19/13 1:08:35.993 PM com.apple.backupd[1418]: Attempting to mount network destination URL: afp://johnp;[email protected]/Data
    5/19/13 1:08:44.593 PM com.apple.backupd[1418]: Mounted network destination at mount point: /Volumes/Data using URL: afp://johnp;[email protected]/Data
    5/19/13 1:08:44.000 PM kernel[0]: ASP_TCP asp_tcp_usr_control: invalid kernelUseCount 0
    5/19/13 1:08:44.000 PM kernel[0]: AFP_VFS afpfs_mount: /Volumes/Data, pid 1420
    5/19/13 1:08:44.000 PM kernel[0]: AFP_VFS afpfs_mount : succeeded on volume 0xffffff814afc6008 /Volumes/Data (error = 0, retval = 0)
    5/19/13 1:09:04.207 PM mds[34]: (Error) Volume: Root store set to FSOnly with matching create! (loaded:1)
    5/19/13 1:09:04.879 PM com.apple.backupd[1418]: Disk image /Volumes/Data/Big iMac (7).sparsebundle mounted at: /Volumes/Time Machine Backups
    5/19/13 1:09:04.882 PM com.apple.backupd[1418]: Backing up to: /Volumes/Time Machine Backups/Backups.backupdb
    5/19/13 1:09:07.098 PM com.apple.backupd[1418]: Using file event preflight for 27iMac
    5/19/13 1:09:08.416 PM com.apple.backupd[1418]: Will copy (8.7 MB) from 27iMac
    5/19/13 1:09:08.420 PM com.apple.backupd[1418]: Using file event preflight for LaCie 1 TB
    5/19/13 1:09:08.420 PM com.apple.backupd[1418]: Will copy (Zero KB) from LaCie 1 TB
    5/19/13 1:09:08.420 PM com.apple.backupd[1418]: Found 203 files (8.7 MB) needing backup
    5/19/13 1:09:08.430 PM com.apple.backupd[1418]: 2.56 GB required (including padding), 1.53 TB available
    5/19/13 1:10:06.833 PM com.apple.backupd[1418]: Copied 4720 files (17.5 MB) from volume 27iMac.
    5/19/13 1:10:10.102 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 04:f7:e4:01:54:5c@fe80::6f7:e4ff:fe01:545c._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:10:11.056 PM com.apple.backupd[1418]: Copied 4727 files (17.5 MB) from volume LaCie 1 TB.
    5/19/13 1:10:11.062 PM com.apple.backupd[1418]: Using file event preflight for 27iMac
    5/19/13 1:10:11.071 PM com.apple.backupd[1418]: Will copy (2 MB) from 27iMac
    5/19/13 1:10:11.073 PM com.apple.backupd[1418]: Found 46 files (2 MB) needing backup
    5/19/13 1:10:11.074 PM com.apple.backupd[1418]: 2.55 GB required (including padding), 1.53 TB available
    5/19/13 1:10:19.134 PM mdworker[1455]: Unable to talk to lsboxd
    5/19/13 1:10:19.201 PM sandboxd[1460]: ([1455]) mdworker(1455) deny mach-lookup com.apple.ls.boxd
    5/19/13 1:10:19.000 PM kernel[0]: Sandbox: sandboxd(1460) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 1:10:25.521 PM com.apple.backupd[1418]: Copied 827 files (2.2 MB) from volume 27iMac.
    5/19/13 1:10:28.887 PM com.apple.backupd[1418]: Copied 834 files (2.2 MB) from volume LaCie 1 TB.
    5/19/13 1:10:29.458 PM com.apple.backupd[1418]: Created new backup: 2013-05-19-131028
    5/19/13 1:10:30.828 PM com.apple.backupd[1418]: Starting post-backup thinning
    5/19/13 1:10:30.828 PM com.apple.backupd[1418]: No post-back up thinning needed: no expired backups exist
    5/19/13 1:10:31.429 PM com.apple.backupd[1418]: Backup completed successfully.
    5/19/13 1:10:35.389 PM com.apple.backupd[1418]: Ejected Time Machine disk image: /Volumes/Data/Big iMac (7).sparsebundle
    5/19/13 1:10:35.000 PM kernel[0]: AFP_VFS afpfs_unmount: /Volumes/Data, flags 0, pid 1468
    5/19/13 1:10:35.000 PM kernel[0]: AFP_VFS afpfs_unmount : We are the last mnt/sbmnt using volume /Volumes/Data 0xffffff814afc6008
    5/19/13 1:10:35.000 PM kernel[0]: AFP_VFS afpfs_unmount : We are the last volume using socket /Volumes/Data 0xffffff814afc6008
    5/19/13 1:10:35.000 PM kernel[0]: AFP_VFS afpfs_unmount : afpfs_DoReconnect sent signal for unmount to proceed
    5/19/13 1:10:35.962 PM com.apple.backupd[1418]: Ejected Time Machine network volume.
    5/19/13 1:13:28.861 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:15:36.656 PM mdworker[1483]: Unable to talk to lsboxd
    5/19/13 1:15:36.721 PM sandboxd[1488]: ([1483]) mdworker(1483) deny mach-lookup com.apple.ls.boxd
    5/19/13 1:15:36.000 PM kernel[0]: Sandbox: sandboxd(1488) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 1:18:27.823 PM CVMServer[134]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    5/19/13 1:18:28.349 PM CVMServer[134]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    5/19/13 1:18:29.916 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:18:38.580 PM Safari[1498]: CGContextClipToRect: invalid context 0x0
    5/19/13 1:19:40.023 PM mdworker[1512]: Unable to talk to lsboxd
    5/19/13 1:19:40.072 PM sandboxd[1514]: ([1512]) mdworker(1512) deny mach-lookup com.apple.ls.boxd
    5/19/13 1:19:40.000 PM kernel[0]: Sandbox: sandboxd(1514) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 1:21:29.938 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 04:f7:e4:01:54:5c@fe80::6f7:e4ff:fe01:545c._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:22:58.722 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 04:f7:e4:01:54:5c@fe80::6f7:e4ff:fe01:545c._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:23:06.655 PM apsd[57]: <APSConnectionNotificationQueue: 0x7fb376c12260>: outstanding count -1 for com.apple.apsd-queue-port=com.apple.syncdefaultsd.push-user=503-env=production
    5/19/13 1:23:06.662 PM apsd[57]: <APSConnectionNotificationQueue: 0x7fb376c12260>: outstanding count -1 for com.apple.apsd-queue-port=com.apple.syncdefaultsd.push-user=503-env=production
    5/19/13 1:23:06.666 PM apsd[57]: <APSConnectionNotificationQueue: 0x7fb376c12260>: outstanding count -1 for com.apple.apsd-queue-port=com.apple.syncdefaultsd.push-user=503-env=production
    5/19/13 1:23:07.626 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:23:28.873 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x58-10.0.1.6:0!
    5/19/13 1:23:37.563 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x59-10.0.1.7:0!
    5/19/13 1:23:41.878 PM mdworker[1523]: Unable to talk to lsboxd
    5/19/13 1:23:41.000 PM kernel[0]: Sandbox: sandboxd(1526) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 1:23:42.329 PM sandboxd[1526]: ([1523]) mdworker(1523) deny mach-lookup com.apple.ls.boxd
    5/19/13 1:26:23.313 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:26:23.319 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:26:35.364 PM com.apple.SecurityServer[25]: Killing auth hosts
    5/19/13 1:26:35.364 PM com.apple.SecurityServer[25]: Session 100019 destroyed
    5/19/13 1:26:35.390 PM com.apple.SecurityServer[25]: Session 100021 created
    5/19/13 1:29:00.844 PM mdworker[1555]: Unable to talk to lsboxd
    5/19/13 1:29:00.893 PM sandboxd[1556]: ([1555]) mdworker(1555) deny mach-lookup com.apple.ls.boxd
    5/19/13 1:29:01.000 PM kernel[0]: Sandbox: sandboxd(1556) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 1:29:56.823 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 04:f7:e4:01:54:5c@fe80::6f7:e4ff:fe01:545c._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:29:57.123 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:29:57.130 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:30:26.871 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x5d-10.0.1.6:0!
    5/19/13 1:30:26.994 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x5e-10.0.1.7:0!
    5/19/13 1:31:42.496 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:31:59.700 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:32:12.583 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x60-10.0.1.7:0!
    5/19/13 1:35:05.846 PM mdworker[1578]: Unable to talk to lsboxd
    5/19/13 1:35:05.907 PM sandboxd[1581]: ([1578]) mdworker(1578) deny mach-lookup com.apple.ls.boxd
    5/19/13 1:35:06.000 PM kernel[0]: Sandbox: sandboxd(1581) deny mach-lookup com.apple.coresymbolicationd
    5/19/13 1:35:30.442 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:35:30.744 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:35:48.564 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:36:03.308 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:36:09.761 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:36:32.393 PM com.apple.usbmuxd[20]: _heartbeat_failed heartbeat detected detach for device 0x65-10.0.1.7:0!
    5/19/13 1:36:49.695 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device 4c:b1:99:47:b3:55@fe80::4eb1:99ff:fe47:b355._apple-mobdev._tcp.local. has already appeared on interface 4. Suppressing duplicate attach notification.
    5/19/13 1:36:54.303 PM com.apple.usbmuxd[20]: _SendAttachNotification (thread 0x7fff7eb12180): Device e4:8b:7f:99:de:86@fe80::e68b:7fff:fe99:de86._apple

  • IPhone 4s cover flow slow down and jerky help

    Hi all
    i have copied my music over from my backup 3GS to iPhone 4s but in cover flow it is very very jerky and not as smooth at all, my 3gs is way smoother an much better than on the iphone 4s it even has problems loading the covers up as there is a delay in doing so as it seems to b slow
    whats happend there not as good as my 3GS
    So i tried to remove all songs and turned off the iPhone and powered the phone back up and put the music back on and its still jerky and not as smooth what the hells going on this phone should breeze through cover flow view
    My 3GS is still on iOS 4 does anyon have the same problems ? Try to scroll fast and it just jerks and slows down but like I say not on the 3gs
    Any help

    Hi, I have the same problem with my 4s.  After reading all the suggestion on this and simmilar forums I checked my picture files assigned to my albums.  I selected in iTunes an album, then right click to get pop up menu, selected "get info.  Then I went to artwork, copied it (right click, copy), then I copied the picture to picture editor to see the properties.  I noticed that some of my pictures assigned to albums are huge, something like 2000 x 2000 pix.
    When I repliced them with smaller ones, i.e. max 600 x 600, everything become smoth.  Now my cover flow work perfectly as it should be.  Definitly ther must be something wrong with iOS5 because before I did not notice such a problem on 3GS of 4 model, even I had the big picture assigned to the album

  • Iphoto library seems to slow down my new MacPro.

    so far no one at at the Apple store can have a solution why the new MacPro is RATHER  slow.
    some did suggest that the iphoto library MAY BE  too big...
    also, when I work with it ..( it contains over `12000 items) ..it machine works hard and slow.
    who can help ?
    establish another library ?
    safe the pics on an external harddrive ?
    appreciate your ideas and help,
    heinz

    Open the Activity Monitor when iPhoto is slowing down your Mac and see what processes is soaking up all the CPU cycles.  Also check the Console for messages during that time.  It can also give info as to what's slowing things down.
    Do you have any anti virus software installed or have used MacKeeper, CleanMyMac or similar type of software on your Mac?
    OT

  • Premiere Pro performance suddenly slowed down to be virtually unusable, even for simple projects

    I'm running latest Premiere Pro update on a late 2013, 27" iMac, with a 3.4 GHz Intel Core i5 processor with 8GB RAM, Mac osX version 10.9.5.  I know that's not a lot of RAM, but up until the past week or so I was able to edit an hour-long 4K project with that configuration, as long as I ran the Premiere session at 1/8 resolution.  It did drop some frames if I tried to play a long piece of it without stopping, but it was workable for editing purposes.  But in the past few days, the session has slowed down to the point where it starts serious frame dropping from the moment I push play, and is basically unusable.   It also drops audio, and I can hear the drives clattering frantically as soon as I hit play.   My media is on 2-TB G-drives connected via USB3.
    What I've tried so far...
    - Ran diagnostics on the drives, and it found no errors.
    - Tried linking the project to the identical files on the backup drive.  Same problem. 
    - I made sure my Mac's energy saver settings were set so that the drives never go to sleep.
    - I deleted all the media caches and Premiere preview files I could find.
    - I reset the Spotlight privacy settings so that they do not index any external drives, and only a few folders on the internal drive.
    - I made sure I'm set to devote the maximum amount of memory (6.5 GB) to Premiere.
    - Finally updated my Premiere software to the latest version.
    None of these things made any difference. 
    - Then I thought maybe the session had just gotten too big and bloated for my system to handle.   So I made a new project and imported a simplified version of just one sequence, which only references some of my color-corrected video files.  That way I only have to have one external drive connected, and the session is referencing much smaller files.  Still no improvement.
    - So I tried an experiment where I made a brand new Premiere project and sequence.  I imported just 5 video files into it.  The largest file was less than 3GB.  (I do Protools editing on that computer with files much bigger than that, on the same type of extermal drives, with no issues at all.)  With only a single 5-second video clip (and no audio) in the timeline, it still starts dropping frames after about 2 seconds.  If I put another 5-second clip in the timeline, the frame dropping gets twice as bad.  If I try to put a video crossfade on them, playback gets so jerky it's unwatchable.
    So basically, I started out being able to edit a 60-minute long 4K video project with video transitions and multiple tracks of audio and video.  (It wasn't perfect, but it was workable.)  And now suddenly, I can't play a brand new session that has 5 small video clips in it, and no audio.    So it's not just my project or sequences that are the problem.  Premiere just no longer seems to be able to access and play back my media with any kind of speed.
    What am I missing?  Can you give me some additional suggestions to try that I haven't already mentioned above?  (And yes, I know a lot of you guys probably consider my hardware setup completely insufficient for what I'm doing, and you're probably right.  But it was working well enough for me up to this point.  I'm so close to the end of my project, and I'm really just trying to get back to the functionality I had a week ago, so I can finish.)
    I'd appreciate any suggestions.  I feel like I'm running out of things to try.

    After a lot of troubleshooting, it appears the problem is related to the color corrected version of my video not being able to play back fast enough.  While my system had no issue with the raw 4K camera files, the increased color depth of color corrected Pro Res versions are just too much for my drives to play back in real time, even at low resolution.   Unless I want to do considerable system upgrades (which I don't), the solution is to keep my color corrected and non-color corrected video stacked on top of each other in the timeline, and to deactivate the video track containing the color corrected ones.  Of course, I can turn the color corrected track on when I need to check something with it, but for playback functionality while editing, I'm limited to the raw camera files. 
    Obviously this is an imperfect solution.  But because I'm basically done editing and just need to do some title work and a little trimming, I can finish the project working that way. 
    Incidentally, tech support suggested major upgrades to my memory and video cards.  But if I were going to attempt to troubleshoot this further, I would upgrade to a better RAID system before I would do additional upgrades to my mac.  It really feels more likely that's the primary issue here. 

  • TiledLayers : Slowing Down

    I have created a tiled layer (javax.microedition.lcdui.game.TiledLayer) for the purpose of making a World for my sprite to move around in. The game world i want is just a big box with a wall round the outside and grass inside that box. As I increase the size of the tiled layer the application runs slower & slower. Is this because :
    (B.T.W -- An instance of LayerManager controls drawing the level)
    The application draws the whole tiledlayer (onto the offscreen buffer) but only shows whats appropriate to the view window.
    The application calculates which bit of the tiledlayer needs to be drawn to the view window, but as the tiled layer gets larger, the calculations become alot more complex (therefore slowing the app down)
    I cant really think of any other way of drawing a large background without slowing down the application. If i use sprites I will end up with 400 of them (One for each tile), and that would slow the application down to miniscule rates( especially when I try to calculate collision detection for about 80 tiles)
    This is the code use for constructing a simple level:
    *MAIN GAME CLASS
    public class Level extends TiledLayer
    *Dimension Fields - Constant after intitialisation
    /*The width of the square tiles that make up this layer*/
    static int TILE_WIDTH = 34;
    /*The Height of the square tiles that make up this layer*/
    static int TILE_HEIGHT = 34;
    /*This gives the number of squares of "texture" to put along
    the screen -- Changing this to 10 means a smaller level but faster game*/
    static int INITIAL_COLUMNS = 23;
    /*This gives the number of squares of "texture" to put along
    the screen -- Changing this to 10 means a smaller level but faster game*/
    static int INITIAL_HEIGHT = 23;
    public Level() throws Exception
    super(INITIAL_COLUMNS, INITIAL_HEIGHT, Image.createImage("/icons/Level.png"), TILE_WIDTH, TILE_HEIGHT);
    /*Quickly fill some cells*/          
    fillCells(1, 1, 20, 1, 1);
    fillCells(1, 1, 1, 20, 1);
    /*sets object position*/
    setPosition (0, 0);
    void reset()
    setPosition (0, 0);
    }

    I didn't see it in your code but I am sure you are using a for(x;x;x) loop to draw the scene.
    Yes, your are correct, your slow down is that all of your map is being processed as if it were all going to be drawn to the screen. You have to write the code that avoids this. On your 10x10 you are running the loops 100 times, but when you increase the size to 23 by 23 you are running the loops 529 times every time you have to redraw the scene. The solution is to set up some tracking variables and put them in your loop so we only have to run the loops 81 times, no matter how big the map is.
    Something I have been trying lately is drawing all of my layers in one for loop.
    map_width = 32; // this is the size of the map
    map_height = 32; // not all of the map will fit in the screen
    width = 9; // this is the tile size of the screen
    height = 9; // 9 tiles wide, 9 tiles high
    character_x_possition = (possition x on the map divided by 34 which is your tile width);
    character_y_possition = (possition y on the map divided by 34 which is your tile width);
    corner_x = character_x_possition - 4; // or 5?, just try it, I can't remember
    corner_y = character_y_possition - 4; //or 5 again
    for(int x = corner_x; int < corner_x + width; x++)
    {  for(int y = corner_y; int < corner_y + height; y++)
    Draw layer 1 to backbuffer
    if(x == char_possition && y == char_possition)
    {   Draw Character to back buffer  }
    else { Draw layer2 to back buffer}
    Draw layer 3 to back buffer
    Draw back buffer to screen
    //////////// END OF SORT OF CODE :-) /////////////
    You can also use something similar to cut out time in colision checking, theres no since in checking the entire scene for colision when there are only 9 possible colisions at a given time, there are also some advanced meathods such as quad trees, but these at the moment are beyond me until I can find the time to sit down and study them. Hopefully some else will post on these, but they be beyond the needs of your game. I breifly read over them and went with the 9 tile checking for my game.
    One other note, if this is an rpg, there is rarely benefit for an offscreen NPC to be moving. :-)

  • Why does my Macbook slow down every 4-5 seconds?

    I am a big gamer nerd, and recently i have been moving over from x-box to computer.
    I have recently noticed when i am playing high graphics games, or any game that takes a good amount of graphics, my computer seems to slow down alot every few seconds.
    For Minecraft, i can play it on all the best settings and it will run perfectly fine for 3 seconds, then i get about 8 fps for one second and it repeats. It gets really annoying especially when it is in an intense moment, (or when it makes me fall into lava) This also becomes a big concern on games like Left 4 Dead, it makes these games (that my computer CLAIMS it can handle perfectly) almost unplayable.
    This seems to become more apparent as my computer heats up.
    Why does my computer do this? and Is there a way to make it stop?

    Good that "big gamer nerds" are starting to use the Mac.  Not long ago, there were hardly any good games around.  Going backwards, yes, it's going to make the MBP run hotter.  It's using the max amount of everything running.
    To really help you, we would need the exact model of MBP.  For example, if you have 15 or 17", you need to make sure you're running with the discrete video card (nvidia or AMD) instead of the integrated Intel version (which is good enough for TV viewing and web browsing).  Also, you need to make sure you maximize memory.  When I play a game (I only play Starcraft), I shut down all other programs, especially anything that runs in the background (like a twitter feed, though that really doesn't use too many resources).  You can use Activity Monitor (it's in your Utility folder) to see what's sucking resources on your computer.
    Remember, the game companies want to sell as many games as possible.  So they give computer spects that will just barely run the game if you tweak every setting.  You want to be way over the minimum settings in processor speed, memory, disk space etc.
    Minecraft has known framerate issues on the Mac port of the game.  It has nothing to do with you, your Mac, or anything, but the quality of code from the developer. 

  • Why is TB re-syncing/re-load with GMail all messages each time I open TB? Slows down TB by much each time.

    Why is TB re-syncing/re-load with GMail all messages each time I open TB?
    It does slow down quite heavily. e.g. It takes almost 5 mins to just write a simple short email, since ''freezing'' at every 3-4 caracters.
    All other programs on the computer work fine in the meantime, though. Including word processor. So it is really a TB issue.
    Or is it a GMail issue, forcing download everytime a connection is created ?
    I am on Win8.1 on an ASUS AiO.
    Thanks

    IMAP mail accounts see a remote view of the server.
    You subscribe to see server Folders.
    Headers are downloaded and when you select to view an email, the emails are downloaded to a temp cache to enable quicker access to those emails, but upon exit Thunderbird the temp cache is lost, so you cannot read emails if offline. These emails are not stored on your computer.
    If you synchronise subscribed folders, then a copy of the folder is downloaded to Thunderbird Profile folder and stored in an mbox file. This means you can read them even if offline.
    However, the folder is set up to synchronise with the server when changes occur, so that your copy and the folder on the server are updated to be the same.
    I would recomend that you do not allow folders to get too big as it would take longer to synch.
    more info on IMAP:
    https://support.mozilla.org/en-US/kb/imap-synchronization
    Can you see an 'All Mail' folder?
    This is gmails copy of all your emails, so it is gmail Archive of your emails.
    This folder can get huge. As it only shows you what you already have in other folders, it also doubles the size of your Profile and can take a while to download. It is recommended that you do not subscribe to see this folder.
    Read info at link - under 'all Mail' section:
    http://kb.mozillazine.org/Gmail

Maybe you are looking for

  • What is the best way to wipe Photoshop CS 3 off computer, when uninstall is missing.  I want to start fresh with PS CS 5.

    My iMac G5, OS X version 10.6.8 has a Photoshop CS2 and CS3 on it which have never started up, in the present configuration of the computer.  (I had the capacity increased to 2 TB.) It has not been possible for me to uninstall them.   The uninstaller

  • Missing kig library [solved itself]

    I installed kdeedu-kig and when I run it, it gives a couple warnings about Dbus connection created before QCoreApplication.  Application may behave.  When the application starts, all I get is the message Could not find the necessary Kig library, chec

  • If you thought SmoothCam was ok..ish, get a load of this --

    3D Content-preserving-wraps!! - Very impressive stuff.. I sincerely hope this ends up as a plug-in for FCP! http://www.finalcutuser.com/2009/06/30/content-preserving-warps-for-3d-video-sta bilization/

  • I can't make updates from SQL Developer

    I've been using SQL Navigator from Quest software to make some updates to data. I just run a select query with the updateable button selected and i can type in my updates and hit commit to make changes. I can't figure out how to do this in SQL Develo

  • ISE AD group issue

    Dear Team, I am going to deploy cisco ISE (1.2) at one of our customer sites. I am able to join the ISE with Active directory and users are able to authenticate with their Domain login ID. Problem:-  I am not able to retrieve/See the acitve directory