Very long Dimension build COMPILE step

We're using AWM 11.2.0.1.0A and Oracle 11.2.0.1.0.
I have a time dimension called DAY with 7 levels from. The standard hierarchy contains all 7 levels, and I added a new hierarchy for the top 6 levels down to WEEK. The intention is that the hierarchies will be identical for the top 6 levels. There are 7420 dimension values (17 years) in total. When loading, the LOAD NO SYNCH step takes 5.2 seconds but the following COMPILE takes 22785 seconds (6h20m).
Can anyone shed any light on this?
Many thanks.

The COMPILE step of a TIME dimension does additional work over that of any other kind of dimension. Specifically it is precalculating a large number of value sets and self relations needed to support time calculations (year ago, moving average, etc.) This can be expensive when the time dimension gets large, but even so I am surprised at just how much time your case takes. (I should be clear that 7420 members counts as small for other kinds of dimensions -- I am only talking about time dimensions here.) I can only assume it is related to the depth of the hierarchies. If you don't need to use time based measures, then the simplest thing to do would be to redefine it as a user dimension. This may be worth trying as an experiment in any case since it would show whether or not it is time related.
Assuming you need it to be a true time dimension, then it may be useful to gather some more information. If you execute the following alter session before the build, then there will be some additional records in the CUBE_BUILD_LOG that break the COMPILE step down.
alter session set events='37377 trace name context forever, level 16384';
exec dbms_cube.build(' "DAY" USING (COMPILE) ')
Specifically you should see five new steps
COMPILE PARTITIONS
COMPILE HIERARCHIES
COMPILE ATTRIBUTES
COMPILE TIME OBJECTS
COMPILE GIDS
My guess is that the bulk of the time will be in COMPILE TIME OBJECTS, but I don't know for sure. It may also be worth raising a Service Request on this since then you could supply a reproducible test case.

Similar Messages

  • The synchronisation of my iphone on my mac is during so long, why? before it was not so long but now the 3rd step is very long (it's synchronisation of buys)

    he synchronisation of my iphone on my mac is during so long, why? before it was not so long but now the 3rd step is very long (it's synchronisation of buys).
    thank you

    Contact the carrier... ability to receive government alerts is controlled by the carrier settings.
    Does TMO even officially support the iPhone 4?

  • Application build takes very long time

    Recently building applications has started taking a very long time. Before, similar applications took 30 seconds or less for a build, but currently 5-10 minutes is not uncommon. 
    The perplexing part is how the time is distributed. The builder will spend 3-5 minutes each on the first two "processing" tasks it undertakes, namely:
    Processing NI_AALPro.lvlib...
    Processing NI_Gmath.lvlib...
    Which amount for about 1% of the progress bar. Once it finished processing these two libraries, the final 99% finishes in about 3 seconds.
    Has anyone run into this issue before? I suspect I've misplaced files for the two libraries causing the hangup and the builder is having to go searching for them, but I don't know how to remedy this situation. Any suggestions would be appreciated.

    I find that when I include DAQmx in my build it can take up to 30 minutes to build an Installer.  I have not seen this with builds that dont include DAQmx though.
    CLA, CLED, CTD,CPI, LabVIEW Champion
    Platinum Alliance Partner
    Senior Engineer
    Using LV 2013, 2012
    Don't forget Kudos for Good Answers, and Mark a solution if your problem is solved.

  • Compiling a very long Bytecode

    Is it possible to interprete a very long bytecode using Appletviewer for Applet or java for Application without having to reduce the code.If after you get an error when you tried to interprete it.The error was java.lang.ClassFormatError

    From http://astronomy.swin.edu.au/s2plot/3dpdf/ :
    Please note: Figure 4 (isosurfaces) can be very slow to load in Adobe Reader for Apple Mac OS X. Sometimes it can take up to 2 minutes ... please be patient!
    It is not _so_ slow for me, but still is.
    http://asymptote.sourceforge.net/gallery/sphericalharmonic.pdf is also not so fast to load.
    Some of my models, where I had to use lots of per-triangle materials to achieve smooth color and transparency demonstrated this problem (but they also did not view exactly _fine_, they made my MacBook noisy due to increase in fan activity ; ). 

  • Launching Browser from Java when Browser URL is very  long

    Hi,
    I am trying to launch a browser from Java.
    I am doing the following.
    String command = "cmd" + "/c" + "start" + " browserURL";
    Process p = Runtime.getRuntime()exec(command);
    Note: My browserURL is very long.
    Now the browser is invoked. But the URL shown is incomplete and hence
    browser is unable to open the required application.
    Can someone help me in this.
    One way is to increase the buffer size on the command prompt?
    Is there any java command for this?
    Is there any other way to solve this issue.
    Thanks,
    AR

    this is my second time posting this, take note of it. I can't remember where i got it from, but credits go to the person that wrote it. It has helped me out thousands of times!!!
    to use, compile, then call from your program:
    org.newio.utils.BrowserLauncher.openURL("your url here")dfwtc
    package org.newio.utils;
    import java.io.File;
    import java.io.IOException;
    import java.lang.reflect.*;
    public class BrowserLauncher
        private static int jvm;
        private static Object browser;
        private static boolean loadedWithoutErrors;
        private static Class mrjFileUtilsClass;
        private static Class mrjOSTypeClass;
        private static Class macOSErrorClass;
        private static Class aeDescClass;
        private static Constructor aeTargetConstructor;
        private static Constructor appleEventConstructor;
        private static Constructor aeDescConstructor;
        private static Method findFolder;
        private static Method getFileType;
        private static Method makeOSType;
        private static Method putParameter;
        private static Method sendNoReply;
        private static Object kSystemFolderType;
        private static Integer keyDirectObject;
        private static Integer kAutoGenerateReturnID;
        private static Integer kAnyTransactionID;
        private static final int MRJ_2_0 = 0;
        private static final int MRJ_2_1 = 1;
        private static final int WINDOWS_NT = 2;
        private static final int WINDOWS_9x = 3;
        private static final int OTHER = -1;
        private static final String FINDER_TYPE = "FNDR";
        private static final String FINDER_CREATOR = "MACS";
        private static final String GURL_EVENT = "GURL";
        private static final String FIRST_WINDOWS_PARAMETER = "/c";
        private static final String SECOND_WINDOWS_PARAMETER = "start";
        private static final String NETSCAPE_OPEN_PARAMETER_START = " -remote 'openURL(";
        private static final String NETSCAPE_OPEN_PARAMETER_END = ")'";
        private static String errorMessage;
        private BrowserLauncher()
        private static boolean loadClasses()
            switch(jvm)
            default:
                break;
            case 0: // '\0'
                try
                    Class aeTargetClass = Class.forName("com.apple.MacOS.AETarget");
                    macOSErrorClass = Class.forName("com.apple.MacOS.MacOSError");
                    Class osUtilsClass = Class.forName("com.apple.MacOS.OSUtils");
                    Class appleEventClass = Class.forName("com.apple.MacOS.AppleEvent");
                    Class aeClass = Class.forName("com.apple.MacOS.ae");
                    aeDescClass = Class.forName("com.apple.MacOS.AEDesc");
                    aeTargetConstructor = aeTargetClass.getDeclaredConstructor(new Class[] {
                        Integer.TYPE
                    appleEventConstructor = appleEventClass.getDeclaredConstructor(new Class[] {
                        Integer.TYPE, Integer.TYPE, aeTargetClass, Integer.TYPE, Integer.TYPE
                    aeDescConstructor = aeDescClass.getDeclaredConstructor(new Class[] {
                        java.lang.String.class
                    makeOSType = osUtilsClass.getDeclaredMethod("makeOSType", new Class[] {
                        java.lang.String.class
                    putParameter = appleEventClass.getDeclaredMethod("putParameter", new Class[] {
                        Integer.TYPE, aeDescClass
                    sendNoReply = appleEventClass.getDeclaredMethod("sendNoReply", new Class[0]);
                    Field keyDirectObjectField = aeClass.getDeclaredField("keyDirectObject");
                    keyDirectObject = (Integer)keyDirectObjectField.get(null);
                    Field autoGenerateReturnIDField = appleEventClass.getDeclaredField("kAutoGenerateReturnID");
                    kAutoGenerateReturnID = (Integer)autoGenerateReturnIDField.get(null);
                    Field anyTransactionIDField = appleEventClass.getDeclaredField("kAnyTransactionID");
                    kAnyTransactionID = (Integer)anyTransactionIDField.get(null);
                    break;
                catch(ClassNotFoundException cnfe)
                    errorMessage = cnfe.getMessage();
                    return false;
                catch(NoSuchMethodException nsme)
                    errorMessage = nsme.getMessage();
                    return false;
                catch(NoSuchFieldException nsfe)
                    errorMessage = nsfe.getMessage();
                    return false;
                catch(IllegalAccessException iae)
                    errorMessage = iae.getMessage();
                return false;
            case 1: // '\001'
                try
                    mrjFileUtilsClass = Class.forName("com.apple.mrj.MRJFileUtils");
                    mrjOSTypeClass = Class.forName("com.apple.mrj.MRJOSType");
                    Field systemFolderField = mrjFileUtilsClass.getDeclaredField("kSystemFolderType");
                    kSystemFolderType = systemFolderField.get(null);
                    findFolder = mrjFileUtilsClass.getDeclaredMethod("findFolder", new Class[] {
                        mrjOSTypeClass
                    getFileType = mrjFileUtilsClass.getDeclaredMethod("getFileType", new Class[] {
                        java.io.File.class
                    break;
                catch(ClassNotFoundException cnfe)
                    errorMessage = cnfe.getMessage();
                    return false;
                catch(NoSuchFieldException nsfe)
                    errorMessage = nsfe.getMessage();
                    return false;
                catch(NoSuchMethodException nsme)
                    errorMessage = nsme.getMessage();
                    return false;
                catch(SecurityException se)
                    errorMessage = se.getMessage();
                    return false;
                catch(IllegalAccessException iae)
                    errorMessage = iae.getMessage();
                return false;
            return true;
        private static Object locateBrowser()
            if(browser != null)
                return browser;
            switch(jvm)
            case 0: // '\0'
                try
                    Integer finderCreatorCode = (Integer)makeOSType.invoke(null, new Object[] {
                        "MACS"
                    Object aeTarget = aeTargetConstructor.newInstance(new Object[] {
                        finderCreatorCode
                    Integer gurlType = (Integer)makeOSType.invoke(null, new Object[] {
                        "GURL"
                    Object appleEvent = appleEventConstructor.newInstance(new Object[] {
                        gurlType, gurlType, aeTarget, kAutoGenerateReturnID, kAnyTransactionID
                    return appleEvent;
                catch(IllegalAccessException iae)
                    browser = null;
                    errorMessage = iae.getMessage();
                    return browser;
                catch(InstantiationException ie)
                    browser = null;
                    errorMessage = ie.getMessage();
                    return browser;
                catch(InvocationTargetException ite)
                    browser = null;
                    errorMessage = ite.getMessage();
                    return browser;
            case 1: // '\001'
                File systemFolder;
                try
                    systemFolder = (File)findFolder.invoke(null, new Object[] {
                        kSystemFolderType
                catch(IllegalArgumentException iare)
                    browser = null;
                    errorMessage = iare.getMessage();
                    return browser;
                catch(IllegalAccessException iae)
                    browser = null;
                    errorMessage = iae.getMessage();
                    return browser;
                catch(InvocationTargetException ite)
                    browser = null;
                    errorMessage = ite.getTargetException().getClass() + ": " + ite.getTargetException().getMessage();
                    return browser;
                String systemFolderFiles[] = systemFolder.list();
                for(int i = 0; i < systemFolderFiles.length; i++)
                    try
                        File file = new File(systemFolder, systemFolderFiles);
    if(file.isFile())
    Object fileType = getFileType.invoke(null, new Object[] {
    file
    if("FNDR".equals(fileType.toString()))
    browser = file.toString();
    return browser;
    catch(IllegalArgumentException iare)
    browser = browser;
    errorMessage = iare.getMessage();
    return null;
    catch(IllegalAccessException iae)
    browser = null;
    errorMessage = iae.getMessage();
    return browser;
    catch(InvocationTargetException ite)
    browser = null;
    errorMessage = ite.getTargetException().getClass() + ": " + ite.getTargetException().getMessage();
    return browser;
    browser = null;
    break;
    case 2: // '\002'
    browser = "cmd.exe";
    break;
    case 3: // '\003'
    browser = "command.com";
    break;
    case -1:
    default:
    browser = "netscape";
    break;
    return browser;
    public static void openURL(String url)
    throws IOException
    if(!loadedWithoutErrors)
    throw new IOException("Exception in finding browser: " + errorMessage);
    Object browser = locateBrowser();
    if(browser == null)
    throw new IOException("Unable to locate browser: " + errorMessage);
    switch(jvm)
    case 0: // '\0'
    Object aeDesc = null;
    try
    try
    aeDesc = aeDescConstructor.newInstance(new Object[] {
    url
    putParameter.invoke(browser, new Object[] {
    keyDirectObject, aeDesc
    sendNoReply.invoke(browser, new Object[0]);
    catch(InvocationTargetException ite)
    throw new IOException("InvocationTargetException while creating AEDesc: " + ite.getMessage());
    catch(IllegalAccessException iae)
    throw new IOException("IllegalAccessException while building AppleEvent: " + iae.getMessage());
    catch(InstantiationException ie)
    throw new IOException("InstantiationException while creating AEDesc: " + ie.getMessage());
    break;
    finally
    aeDesc = null;
    browser = null;
    case 1: // '\001'
    Runtime.getRuntime().exec(new String[] {
    (String)browser, url
    break;
    case 2: // '\002'
    case 3: // '\003'
    Runtime.getRuntime().exec(new String[] {
    (String)browser, "/c", "start", url
    break;
    case -1:
    Process process = Runtime.getRuntime().exec((String)browser + " -remote 'openURL(" + url + ")'");
    try
    int exitCode = process.waitFor();
    if(exitCode != 0)
    Runtime.getRuntime().exec(new String[] {
    (String)browser, url
    catch(InterruptedException ie)
    throw new IOException("InterruptedException while launching browser: " + ie.getMessage());
    break;
    default:
    Runtime.getRuntime().exec(new String[] {
    (String)browser, url
    break;
    static
    loadedWithoutErrors = true;
    String osName = System.getProperty("os.name");
    if("Mac OS".equals(osName))
    String mrjVersion = System.getProperty("mrj.version");
    String majorMRJVersion = mrjVersion.substring(0, 3);
    try
    double version = Double.valueOf(majorMRJVersion).doubleValue();
    if(version == 2D)
    jvm = 0;
    } else
    if(version >= 2.1000000000000001D)
    jvm = 1;
    } else
    loadedWithoutErrors = false;
    errorMessage = "Unsupported MRJ version: " + version;
    catch(NumberFormatException numberformatexception)
    loadedWithoutErrors = false;
    errorMessage = "Invalid MRJ version: " + mrjVersion;
    } else
    if(osName.startsWith("Windows"))
    if(osName.indexOf("9") != -1)
    jvm = 3;
    } else
    jvm = 2;
    } else
    jvm = -1;
    if(loadedWithoutErrors)
    loadedWithoutErrors = loadClasses();
    suck my balls

  • [Solved: Apache fault] Very very long shutdown

    Hello Archers.
    After completely reinstalling my laptop, I faced a problem with the shutdown process. It hangs almost 1 minute, which seems very long to me.
    Looking the output of journalctl, I noticed the problem seems to come from NetworkManager and/or dbus (see the output below, between 16:41:46 and 16:42:24).
    Here the output of "journalctl -b -1 -r", only after asking the system to shutdown:
    mars 03 16:42:25 ArchLinux systemd-journal[163]: Journal stopped
    mars 03 16:42:25 ArchLinux kernel: watchdog watchdog0: watchdog did not stop!
    mars 03 16:42:25 ArchLinux systemd[1]: Set hardware watchdog to 10min.
    mars 03 16:42:25 ArchLinux systemd[1]: Hardware watchdog 'iTCO_wdt', version 0
    mars 03 16:42:25 ArchLinux systemd[1]: Shutting down.
    mars 03 16:42:25 ArchLinux systemd[1]: Starting Reboot...
    mars 03 16:42:25 ArchLinux systemd[1]: Reached target Final Step.
    mars 03 16:42:25 ArchLinux systemd[1]: Starting Final Step.
    mars 03 16:42:25 ArchLinux systemd[1]: Reached target Unmount All Filesystems.
    mars 03 16:42:25 ArchLinux systemd[1]: Starting Unmount All Filesystems.
    mars 03 16:42:25 ArchLinux systemd[1]: Failed unmounting Temporary Directory.
    mars 03 16:42:25 ArchLinux systemd[1]: tmp.mount mount process exited, code=exited status=32
    mars 03 16:42:25 ArchLinux systemd[1]: Deactivated swap /dev/sda3.
    mars 03 16:42:25 ArchLinux systemd[1]: Deactivated swap /dev/disk/by-uuid/69563f44-d300-4365-b454-beac28eae2c6.
    mars 03 16:42:25 ArchLinux systemd[1]: Deactivated swap /dev/disk/by-id/ata-OCZ-VERTEX4_OCZ-241I8O3QO62H8453-part3.
    mars 03 16:42:25 ArchLinux systemd[1]: Deactivated swap /dev/disk/by-id/wwn-0x5e83a97da2be91d1-part3.
    mars 03 16:42:25 ArchLinux umount[10668]: [61B blob data]
    mars 03 16:42:25 ArchLinux umount[10668]: (Dans certains cas, des renseignements sur les processus utilisant
    mars 03 16:42:25 ArchLinux umount[10668]: [30B blob data]
    mars 03 16:42:25 ArchLinux systemd[1]: Reached target Shutdown.
    mars 03 16:42:25 ArchLinux systemd[1]: Starting Shutdown.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopped Remount Root and Kernel File Systems.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping Remount Root and Kernel File Systems...
    mars 03 16:42:25 ArchLinux systemd[1]: Stopped target Local File Systems (Pre).
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping Local File Systems (Pre).
    mars 03 16:42:25 ArchLinux systemd[1]: Failed unmounting /home.
    mars 03 16:42:25 ArchLinux systemd[1]: home.mount mount process exited, code=exited status=32
    mars 03 16:42:25 ArchLinux umount[10667]: [61B blob data]
    mars 03 16:42:25 ArchLinux umount[10667]: (Dans certains cas, des renseignements sur les processus utilisant
    mars 03 16:42:25 ArchLinux umount[10667]: [31B blob data]
    mars 03 16:42:25 ArchLinux systemd[1]: Unmounting Temporary Directory...
    mars 03 16:42:25 ArchLinux systemd[1]: Unmounting /home...
    mars 03 16:42:25 ArchLinux systemd[1]: Stopped target Local File Systems.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping Local File Systems.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopped Recreate Volatile Files and Directories.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping Recreate Volatile Files and Directories...
    mars 03 16:42:25 ArchLinux systemd[1]: Stopped Update UTMP about System Reboot/Shutdown.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopped Load/Save Random Seed.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopped Load/Save Screen Backlight Brightness of acpi_video1.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopped Load/Save Screen Backlight Brightness of acpi_video0.
    mars 03 16:42:25 ArchLinux systemd[1]: Deactivating swap /dev/sda3...
    mars 03 16:42:25 ArchLinux systemd[1]: Deactivating swap /dev/sda3...
    mars 03 16:42:25 ArchLinux systemd[1]: Deactivating swap /dev/sda3...
    mars 03 16:42:25 ArchLinux systemd[1]: Deactivating swap /dev/sda3...
    mars 03 16:42:25 ArchLinux systemd[1]: Stopped target Swap.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping Swap.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping Update UTMP about System Reboot/Shutdown...
    mars 03 16:42:25 ArchLinux systemd[1]: Stopped Apply Kernel Variables.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping Apply Kernel Variables...
    mars 03 16:42:25 ArchLinux systemd[1]: Stopped target Encrypted Volumes.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping Encrypted Volumes.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping Load/Save Random Seed...
    mars 03 16:42:25 ArchLinux systemd[1]: Stopped Setup Virtual Console.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping Setup Virtual Console...
    mars 03 16:42:25 ArchLinux systemd[1]: Stopped Set Up Additional Binary Formats.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping Set Up Additional Binary Formats...
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping Load/Save Screen Backlight Brightness of acpi_video1...
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping Load/Save Screen Backlight Brightness of acpi_video0...
    mars 03 16:42:25 ArchLinux systemd[1]: Stopped target System Initialization.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping System Initialization.
    mars 03 16:42:25 ArchLinux systemd[1]: Closed D-Bus System Message Bus Socket.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping D-Bus System Message Bus Socket.
    mars 03 16:42:25 ArchLinux systemd[1]: Closed LVM2 metadata daemon socket.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping LVM2 metadata daemon socket.
    mars 03 16:42:25 ArchLinux systemd[1]: Closed Device-mapper event daemon FIFOs.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping Device-mapper event daemon FIFOs.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopped target Sockets.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping Sockets.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopped Daily Cleanup of Temporary Directories.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping Daily Cleanup of Temporary Directories.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopped target Timers.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping Timers.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopped Dispatch Password Requests to Console Directory Watch.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping Dispatch Password Requests to Console Directory Watch.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopped Forward Password Requests to Wall Directory Watch.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping Forward Password Requests to Wall Directory Watch.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopped target Paths.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping Paths.
    mars 03 16:42:25 ArchLinux systemd[1]: Removed slice User and Session Slice.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping User and Session Slice.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopped target Slices.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping Slices.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopped target Basic System.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopping Basic System.
    mars 03 16:42:25 ArchLinux systemd[1]: Stopped Network Manager.
    mars 03 16:42:25 ArchLinux NetworkManager[436]: <info> exiting (success)
    mars 03 16:42:25 ArchLinux NetworkManager[436]: <info> Removing DNS information from /usr/bin/resolvconf
    mars 03 16:42:25 ArchLinux NetworkManager[436]: <error> [1393861345.204404] [nm-dispatcher.c:285] _dispatcher_call(): could not get dispatcher proxy!
    mars 03 16:42:25 ArchLinux NetworkManager[436]: dbus_g_proxy_new_for_name: assertion 'connection != NULL' failed
    mars 03 16:42:25 ArchLinux NetworkManager[436]: dbus_g_proxy_call_no_reply: assertion '!DBUS_G_PROXY_DESTROYED (proxy)' failed
    mars 03 16:42:25 ArchLinux NetworkManager[436]: dbus_g_proxy_begin_call: assertion '!DBUS_G_PROXY_DESTROYED (proxy)' failed
    mars 03 16:42:25 ArchLinux NetworkManager[436]: <info> NetworkManager state is now DISCONNECTED
    mars 03 16:42:25 ArchLinux NetworkManager[436]: <info> (wlp8s0): taking down device.
    mars 03 16:42:25 ArchLinux NetworkManager[436]: dbus_g_proxy_begin_call: assertion '!DBUS_G_PROXY_DESTROYED (proxy)' failed
    mars 03 16:42:25 ArchLinux NetworkManager[436]: <info> (wlp8s0): cleaning up...
    mars 03 16:42:25 ArchLinux NetworkManager[436]: <info> Removing DNS information from /usr/bin/resolvconf
    mars 03 16:42:25 ArchLinux NetworkManager[436]: dbus_g_proxy_begin_call: assertion '!DBUS_G_PROXY_DESTROYED (proxy)' failed
    mars 03 16:42:25 ArchLinux NetworkManager[436]: dbus_g_proxy_begin_call: assertion '!DBUS_G_PROXY_DESTROYED (proxy)' failed
    mars 03 16:42:25 ArchLinux NetworkManager[436]: <info> (wlp8s0): canceled DHCP transaction, DHCP client pid 977
    mars 03 16:42:24 ArchLinux dhcpcd[977]: exited
    mars 03 16:42:24 ArchLinux dhcpcd[977]: wlp8s0: removing interface
    mars 03 16:42:24 ArchLinux dhcpcd[977]: received SIGTERM from PID 436, stopping
    mars 03 16:42:24 ArchLinux NetworkManager[436]: <info> (wlp8s0): deactivating device (reason 'removed') [36]
    mars 03 16:42:24 ArchLinux NetworkManager[436]: <info> (wlp8s0): device state change: activated -> unmanaged (reason 'removed') [100 10 36]
    mars 03 16:42:24 ArchLinux NetworkManager[436]: <info> (enp7s0): taking down device.
    mars 03 16:42:24 ArchLinux NetworkManager[436]: <info> (enp7s0): cleaning up...
    mars 03 16:42:24 ArchLinux NetworkManager[436]: <info> (enp7s0): device state change: unavailable -> unmanaged (reason 'removed') [20 10 36]
    mars 03 16:42:24 ArchLinux NetworkManager[436]: <info> caught signal 15, shutting down normally.
    mars 03 16:42:24 ArchLinux systemd[1]: Stopping Network Manager...
    mars 03 16:42:24 ArchLinux systemd[1]: Stopped target Network.
    mars 03 16:42:24 ArchLinux systemd[1]: Stopping Network.
    mars 03 16:42:24 ArchLinux systemd[1]: Stopped target Remote File Systems.
    mars 03 16:42:24 ArchLinux systemd[1]: Stopping Remote File Systems.
    mars 03 16:42:24 ArchLinux systemd[1]: Stopped Apache Web Server.
    mars 03 16:42:24 ArchLinux apachectl[10520]: httpd: Could not reliably determine the server's fully qualified domain name, using fe80::6a5d:43ff:fe22:4b3d for ServerName
    mars 03 16:42:24 ArchLinux NetworkManager[436]: [241B blob data]
    mars 03 16:42:21 ArchLinux NetworkManager[436]: [241B blob data]
    mars 03 16:42:18 ArchLinux NetworkManager[436]: [241B blob data]
    mars 03 16:42:15 ArchLinux NetworkManager[436]: [241B blob data]
    mars 03 16:42:13 ArchLinux NetworkManager[436]: dbus_g_proxy_begin_call_with_timeout: assertion 'DBUS_IS_G_PROXY (proxy)' failed
    mars 03 16:42:13 ArchLinux NetworkManager[436]: dbus_g_proxy_new_for_name: assertion 'connection != NULL' failed
    mars 03 16:42:12 ArchLinux NetworkManager[436]: [241B blob data]
    mars 03 16:42:09 ArchLinux NetworkManager[436]: [241B blob data]
    mars 03 16:42:06 ArchLinux NetworkManager[436]: [241B blob data]
    mars 03 16:42:03 ArchLinux NetworkManager[436]: [241B blob data]
    mars 03 16:42:00 ArchLinux NetworkManager[436]: [241B blob data]
    mars 03 16:41:57 ArchLinux NetworkManager[436]: [241B blob data]
    mars 03 16:41:54 ArchLinux NetworkManager[436]: [241B blob data]
    mars 03 16:41:51 ArchLinux NetworkManager[436]: [241B blob data]
    mars 03 16:41:49 ArchLinux NetworkManager[436]: <info> (wlp8s0): roamed from BSSID C0:D9:62:8D:F4:C1 (Movellan) to (none) ((none))
    mars 03 16:41:48 ArchLinux NetworkManager[436]: <error> [1393861308.226890] [nm-dbus-manager.c:278] nm_dbus_manager_init_bus(): Could not get the system bus. Make sure the message bus daemon is running! Message: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken.
    mars 03 16:41:46 ArchLinux gdm[321]: GLib-GObject: g_object_unref: assertion 'object->ref_count > 0' failed
    mars 03 16:41:45 ArchLinux systemd[1]: Stopped MariaDB database server.
    mars 03 16:41:45 ArchLinux mysqld[311]: 140303 16:41:45 [Note] /usr/bin/mysqld: Shutdown complete
    mars 03 16:41:45 ArchLinux mysqld[311]: 140303 16:41:45 InnoDB: Shutdown completed; log sequence number 1648952
    mars 03 16:41:45 ArchLinux systemd[1]: Stopped Bumblebee C Daemon.
    mars 03 16:41:44 ArchLinux gnome-session[1016]: [115B blob data]
    mars 03 16:41:44 ArchLinux gnome-session[1016]: (gnome-shell:10452): Clutter-WARNING **: ./clutter-actor.c:9814: Actor 'StIMText' tried to allocate a size of -54,00 x 17,00
    mars 03 16:41:44 ArchLinux systemd[1]: Stopped Login Service.
    mars 03 16:41:44 ArchLinux systemd[1]: Started Generate shutdown-ramfs.
    mars 03 16:41:44 ArchLinux mkinitcpio[10539]: ==> Build complete.
    mars 03 16:41:44 ArchLinux gnome-session[1016]: asyncCallback@/usr/share/gjs-1.0/overrides/Gio.js:91
    mars 03 16:41:44 ArchLinux gnome-session[1016]: LoginManagerSystemd<.getCurrentSessionProxy/<@/usr/share/gnome-shell/js/misc/loginManager.js:146
    mars 03 16:41:44 ArchLinux gnome-session[1016]: @/usr/share/gjs-1.0/overrides/Gio.js:209
    mars 03 16:41:44 ArchLinux gnome-session[1016]: klass[method]@/usr/share/gjs-1.0/overrides/Gio.js:250
    mars 03 16:41:44 ArchLinux gnome-session[1016]: [164B blob data]
    mars 03 16:41:44 ArchLinux gnome-session[1016]: [107B blob data]
    mars 03 16:41:44 ArchLinux gnome-session[1016]: [107B blob data]
    mars 03 16:41:44 ArchLinux gnome-session[1016]: OK
    mars 03 16:41:44 ArchLinux gnome-session[1016]: [32B blob data]
    mars 03 16:41:44 ArchLinux gnome-session[1016]: Gjs-Message: JS LOG: GNOME Shell started at Mon Mar 03 2014 16:41:44 GMT+0100 (CET)
    mars 03 16:41:44 ArchLinux gnome-session[1016]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    mars 03 16:41:44 ArchLinux gnome-session[1016]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    mars 03 16:41:44 ArchLinux gnome-session[1016]: ** (zeitgeist-datahub:1205): WARNING **: zeitgeist-datahub.vala:226: Unable to get name "org.gnome.zeitgeist.datahub" on the bus!
    mars 03 16:41:44 ArchLinux gnome-session[1016]: (nm-applet:1245): Gdk-WARNING **: nm-applet: Fatal IO error 11 (Ressource temporairement non disponible) on X server :0.
    mars 03 16:41:44 ArchLinux gnome-session[1016]: (firewall-applet:1213): Gdk-WARNING **: firewall-applet: Fatal IO error 11 (Ressource temporairement non disponible) on X server :0.
    mars 03 16:41:44 ArchLinux gnome-session[1016]: (variety:1229): Gdk-WARNING **: variety: Fatal IO error 11 (Ressource temporairement non disponible) on X server :0.
    mars 03 16:41:44 ArchLinux gnome-session[1016]: devilspie: Fatal IO error 11 (Resource temporarily unavailable) on X server :0.
    mars 03 16:41:44 ArchLinux gnome-session[1016]: dropbox: Fatal IO error 11 (Ressource temporairement non disponible) on X server :0.
    mars 03 16:41:44 ArchLinux mkinitcpio[10539]: -> Running build hook: [sd-shutdown]
    mars 03 16:41:44 ArchLinux mkinitcpio[10539]: ==> Starting build: none
    mars 03 16:41:44 ArchLinux systemd[1]: Stopped Permit User Sessions.
    mars 03 16:41:44 ArchLinux gnome-session[1016]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    mars 03 16:41:44 ArchLinux org.gtk.vfs.Daemon[1038]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    mars 03 16:41:44 ArchLinux kernel: bbswitch: enabling discrete graphics
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-TERMINATING
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-DISCONNECTED bssid=c0:d9:62:8d:f4:c1 reason=3 locally_generated=1
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux systemd[1]: Unmounted /run/user/1000/gvfs.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopping Permit User Sessions...
    mars 03 16:41:44 ArchLinux systemd[1]: Removed slice user-1000.slice.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopping user-1000.slice.
    mars 03 16:41:44 ArchLinux systemd[1]: Started Store Sound Card State.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopped Disk Manager.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopped RealtimeKit Scheduling Policy Service.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopped WPA supplicant.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopped User Manager for 1000.
    mars 03 16:41:44 ArchLinux gnome-session[1016]: (tracker-miner-fs:1208): GVFS-RemoteVolumeMonitor-WARNING **: Owner of volume monitor org.gtk.Private.UDisks2VolumeMonitor disconnected from the bus; removing drives/volumes/mounts
    mars 03 16:41:44 ArchLinux org.gtk.vfs.Daemon[1038]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    mars 03 16:41:44 ArchLinux gdm[321]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    mars 03 16:41:44 ArchLinux kernel: cfg80211: Calling CRDA to update world regulatory domain
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: nl80211: send_and_recv->nl_recvmsgs failed: -33
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-CONNECTED - Connection to c0:d9:62:8d:f4:c1 completed [id=0 id_str=]
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: WPA: Key negotiation completed with c0:d9:62:8d:f4:c1 [PTK=CCMP GTK=CCMP]
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: Associated with c0:d9:62:8d:f4:c1
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: Trying to associate with c0:d9:62:8d:f4:c1 (SSID='Movellan' freq=2412 MHz)
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: SME: Trying to authenticate with c0:d9:62:8d:f4:c1 (SSID='Movellan' freq=2412 MHz)
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: CTRL-EVENT-SCAN-STARTED
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: wlp8s0: Reject scan trigger since one is already pending
    mars 03 16:41:44 ArchLinux wpa_supplicant[735]: Successfully initialized wpa_supplicant
    mars 03 16:41:44 ArchLinux org.freedesktop.secrets[1038]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    mars 03 16:41:44 ArchLinux org.freedesktop.secrets[1038]: GNOME_KEYRING_PID=10508
    mars 03 16:41:44 ArchLinux org.freedesktop.secrets[1038]: GNOME_KEYRING_CONTROL=/run/user/1000/keyring-Te5yjj
    mars 03 16:41:44 ArchLinux org.gnome.seahorse.Application[1038]: (seahorse:10475): Gdk-WARNING **: seahorse: Fatal IO error 11 (Ressource temporairement non disponible) on X server :0.
    mars 03 16:41:44 ArchLinux org.gnome.Bijiben.SearchProvider[1038]: (bijiben-shell-search-provider:10471): Gdk-WARNING **: bijiben-shell-search-provider: Fatal IO error 11 (Ressource temporairement non disponible) on X server :0.
    mars 03 16:41:44 ArchLinux ca.desrt.dconf[1038]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    mars 03 16:41:44 ArchLinux org.a11y.atspi.Registry[1047]: after 945 requests (945 known processed) with 0 events remaining.
    mars 03 16:41:44 ArchLinux org.a11y.atspi.Registry[1047]: XIO: fatal IO error 11 (Resource temporarily unavailable) on X server ":0"
    mars 03 16:41:44 ArchLinux org.gnome.Weather.Application[1038]: (org.gnome.Weather.Application:10473): Gdk-WARNING **: org.gnome.Weather.Application: Fatal IO error 11 (Ressource temporairement non disponible) on X server :0.
    mars 03 16:41:44 ArchLinux org.gnome.ControlCenter.SearchProvider[1038]: (org.gnome.ControlCenter.SearchProvider:10467): Gdk-WARNING **: org.gnome.ControlCenter.SearchProvider: Fatal IO error 11 (Ressource temporairement non disponible) on X server :0.
    mars 03 16:41:44 ArchLinux org.gnome.zeitgeist.Engine[1038]: [15:41:44.591553 WARNING] zeitgeist-daemon.vala:449: The connection is closed
    mars 03 16:41:44 ArchLinux org.gnome.Nautilus.SearchProvider[1038]: (nautilus:10469): Gdk-WARNING **: nautilus: Fatal IO error 11 (Ressource temporairement non disponible) on X server :0.
    mars 03 16:41:44 ArchLinux org.gnome.OnlineAccounts[1038]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    mars 03 16:41:44 ArchLinux org.gnome.OnlineAccounts[1038]: 16:41:44.589:[1509]:[DEBUG]: GoaIdentityService: Lost name org.gnome.Identity [goaidentityservice.c:1744, on_name_lost()]
    mars 03 16:41:44 ArchLinux org.gnome.OnlineAccounts[1038]: 16:41:44.589:[1509]:[INFO]: Lost (or failed to acquire) the name org.gnome.OnlineAccounts on the session message bus [main.c:68, on_name_lost()]
    mars 03 16:41:44 ArchLinux org.a11y.Bus[1038]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    mars 03 16:41:44 ArchLinux org.gnome.zeitgeist.Engine[1038]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    mars 03 16:41:44 ArchLinux NetworkManager[436]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    mars 03 16:41:44 ArchLinux org.gtk.Private.UDisks2VolumeMonitor[1038]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    mars 03 16:41:44 ArchLinux org.gtk.Private.UDisks2VolumeMonitor[1038]: ### debug: Name owner ':1.101' vanished
    mars 03 16:41:44 ArchLinux org.gtk.Private.UDisks2VolumeMonitor[1038]: ### debug: Name owner ':1.95' vanished
    mars 03 16:41:44 ArchLinux org.gtk.Private.UDisks2VolumeMonitor[1038]: ### debug: Name owner ':1.28' vanished
    mars 03 16:41:44 ArchLinux org.gtk.Private.UDisks2VolumeMonitor[1038]: ### debug: Name owner ':1.35' vanished
    mars 03 16:41:44 ArchLinux org.freedesktop.Telepathy.AccountManager[1038]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    mars 03 16:41:44 ArchLinux bumblebeed[314]: [ 4657.358988] [WARN]Received Terminated signal.
    mars 03 16:41:44 ArchLinux gnome-session[1016]: (terra:1242): Gdk-WARNING **: terra: Fatal IO error 11 (Ressource temporairement non disponible) on X server :0.
    mars 03 16:41:44 ArchLinux org.gtk.vfs.Daemon[1038]: g_dbus_connection_real_closed: Remote peer vanished with error: Underlying GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
    mars 03 16:41:44 ArchLinux org.gtk.vfs.Daemon[1038]: A connection to the bus can't be made
    mars 03 16:41:44 ArchLinux gdm[321]: GLib-GObject: g_object_ref: assertion 'object->ref_count > 0' failed
    mars 03 16:41:44 ArchLinux mysqld[311]: 140303 16:41:44 InnoDB: Starting shutdown...
    mars 03 16:41:44 ArchLinux mysqld[311]: 140303 16:41:44 [Note] Event Scheduler: Purging the queue. 0 events
    mars 03 16:41:44 ArchLinux mysqld[311]: 140303 16:41:44 [Note] /usr/bin/mysqld: Normal shutdown
    mars 03 16:41:44 ArchLinux NetworkManager[436]: <warn> disconnected by the system bus.
    mars 03 16:41:44 ArchLinux NetworkManager[436]: <warn> Connection disconnected (reason -3)
    mars 03 16:41:44 ArchLinux ntpd[504]: ntpd exiting on signal 15
    mars 03 16:41:44 ArchLinux kernel: wlp8s0: deauthenticating from c0:d9:62:8d:f4:c1 by local choice (reason=3)
    mars 03 16:41:44 ArchLinux systemd[1]: Stopped Manage, Install and Generate Color Profiles.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopped Daemon for power management.
    mars 03 16:41:44 ArchLinux systemd[1]: Unit firewalld.service entered failed state.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopped firewalld - dynamic firewall daemon.
    mars 03 16:41:44 ArchLinux systemd[1]: firewalld.service: main process exited, code=exited, status=1/FAILURE
    mars 03 16:41:44 ArchLinux systemd[1]: Stopped Network Time Service.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopped Authorization Manager.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopped Accounts Service.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopped GNOME Display Manager.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopped D-Bus System Message Bus.
    mars 03 16:41:44 ArchLinux systemd[1]: Starting Generate shutdown-ramfs...
    mars 03 16:41:44 ArchLinux systemd[1]: Starting Store Sound Card State...
    mars 03 16:41:44 ArchLinux systemd[1]: Stopping D-Bus System Message Bus...
    mars 03 16:41:44 ArchLinux systemd[1]: Stopping Bumblebee C Daemon...
    mars 03 16:41:44 ArchLinux systemd[1]: Stopping GNOME Display Manager...
    mars 03 16:41:44 ArchLinux systemd[1]: Stopped target Login Prompts.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopping Login Prompts.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopping Login Service...
    mars 03 16:41:44 ArchLinux systemd[1]: Stopping MariaDB database server...
    mars 03 16:41:44 ArchLinux systemd[1]: Stopping Network Time Service...
    mars 03 16:41:44 ArchLinux systemd[1010]: Starting Exit the Session...
    mars 03 16:41:44 ArchLinux systemd[1]: Stopping Apache Web Server...
    mars 03 16:41:44 ArchLinux systemd[1010]: Reached target Shutdown.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopped target Multi-User System.
    mars 03 16:41:44 ArchLinux systemd[1010]: Starting Shutdown.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopping Multi-User System.
    mars 03 16:41:44 ArchLinux systemd[1010]: Stopped target Default.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopped target Graphical Interface.
    mars 03 16:41:44 ArchLinux systemd[1010]: Stopping Default.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopping Graphical Interface.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopping Accounts Service...
    mars 03 16:41:44 ArchLinux systemd[1]: Stopping Authorization Manager...
    mars 03 16:41:44 ArchLinux systemd[1]: Stopping Daemon for power management...
    mars 03 16:41:44 ArchLinux systemd[1]: Stopping WPA supplicant...
    mars 03 16:41:44 ArchLinux systemd[1]: Stopping Manage, Install and Generate Color Profiles...
    mars 03 16:41:44 ArchLinux systemd[1]: Stopping User Manager for 1000...
    mars 03 16:41:44 ArchLinux systemd[1]: Stopping RealtimeKit Scheduling Policy Service...
    mars 03 16:41:44 ArchLinux systemd[1]: Stopping Disk Manager...
    mars 03 16:41:44 ArchLinux systemd[1]: Removed slice system-getty.slice.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopping system-getty.slice.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopped target Bluetooth.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopping Bluetooth.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopped target Sound Card.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopping Sound Card.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopped Session 2 of user damien.
    mars 03 16:41:44 ArchLinux systemd[1]: Stopping Session 2 of user damien.
    mars 03 16:41:44 ArchLinux systemd-logind[313]: System is rebooting.
    I have no idea how to deal with that.
    Any help will be appreciated.
    Thanks
    Last edited by Cthulhu82 (2014-03-04 09:05:36)

    I gived a try to systemd 210. Indeed, the failures to unmount /home and swap disappeared, but the long shutdown remain.
    Now, the only message left in red by journalctl are dbus related:
    mars 04 09:45:32 ArchLinux systemd[1]: Stopped Network Manager.
    mars 04 09:45:32 ArchLinux NetworkManager[441]: <info> exiting (success)
    mars 04 09:45:32 ArchLinux NetworkManager[441]: <info> Removing DNS information from /usr/bin/resolvconf
    mars 04 09:45:32 ArchLinux NetworkManager[441]: <error> [1393922732.757374] [nm-dispatcher.c:285] _dispatcher_call(): could not get dispatcher proxy!
    mars 04 09:45:32 ArchLinux NetworkManager[441]: dbus_g_proxy_new_for_name: assertion 'connection != NULL' failed
    mars 04 09:45:32 ArchLinux NetworkManager[441]: dbus_g_proxy_call_no_reply: assertion '!DBUS_G_PROXY_DESTROYED (proxy)' failed
    mars 04 09:45:32 ArchLinux NetworkManager[441]: dbus_g_proxy_begin_call: assertion '!DBUS_G_PROXY_DESTROYED (proxy)' failed
    mars 04 09:45:32 ArchLinux NetworkManager[441]: <info> NetworkManager state is now DISCONNECTED
    mars 04 09:45:32 ArchLinux NetworkManager[441]: <info> (wlp8s0): taking down device.
    mars 04 09:45:32 ArchLinux NetworkManager[441]: dbus_g_proxy_begin_call: assertion '!DBUS_G_PROXY_DESTROYED (proxy)' failed
    mars 04 09:45:32 ArchLinux NetworkManager[441]: <info> (wlp8s0): cleaning up...
    mars 04 09:45:32 ArchLinux NetworkManager[441]: <info> Removing DNS information from /usr/bin/resolvconf
    mars 04 09:45:32 ArchLinux NetworkManager[441]: dbus_g_proxy_begin_call: assertion '!DBUS_G_PROXY_DESTROYED (proxy)' failed
    mars 04 09:45:32 ArchLinux NetworkManager[441]: dbus_g_proxy_begin_call: assertion '!DBUS_G_PROXY_DESTROYED (proxy)' failed
    mars 04 09:45:32 ArchLinux NetworkManager[441]: <info> (wlp8s0): canceled DHCP transaction, DHCP client pid 980
    mars 04 09:45:32 ArchLinux dhcpcd[980]: exited
    mars 04 09:45:32 ArchLinux dhcpcd[980]: wlp8s0: removing interface
    mars 04 09:45:32 ArchLinux dhcpcd[980]: received SIGTERM from PID 441, stopping
    mars 04 09:45:32 ArchLinux NetworkManager[441]: <info> (wlp8s0): deactivating device (reason 'removed') [36]
    mars 04 09:45:32 ArchLinux NetworkManager[441]: <info> (wlp8s0): device state change: activated -> unmanaged (reason 'removed') [100 10 36]
    mars 04 09:45:32 ArchLinux NetworkManager[441]: <info> (enp7s0): taking down device.
    mars 04 09:45:32 ArchLinux NetworkManager[441]: <info> (enp7s0): cleaning up...
    mars 04 09:45:32 ArchLinux NetworkManager[441]: <info> (enp7s0): device state change: unavailable -> unmanaged (reason 'removed') [20 10 36]
    mars 04 09:45:32 ArchLinux NetworkManager[441]: <info> caught signal 15, shutting down normally.
    mars 04 09:45:32 ArchLinux systemd[1]: Stopping Network Manager...
    mars 04 09:45:32 ArchLinux systemd[1]: Stopped target Network.
    mars 04 09:45:32 ArchLinux systemd[1]: Stopping Network.
    mars 04 09:45:32 ArchLinux systemd[1]: Stopped target Remote File Systems.
    mars 04 09:45:32 ArchLinux systemd[1]: Stopping Remote File Systems.
    mars 04 09:45:32 ArchLinux systemd[1]: Stopped Apache Web Server.
    mars 04 09:45:32 ArchLinux apachectl[2005]: httpd: Could not reliably determine the server's fully qualified domain name, using fe80::6a5d:43ff:fe22:4b3d for ServerName
    mars 04 09:45:31 ArchLinux NetworkManager[441]: <error> [1393922731.444443] [nm-dbus-manager.c:278] nm_dbus_manager_init_bus(): Could not get the system bus. Make sure the message bus daemon is running! Message: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken
    mars 04 09:45:28 ArchLinux NetworkManager[441]: <error> [1393922728.444115] [nm-dbus-manager.c:278] nm_dbus_manager_init_bus(): Could not get the system bus. Make sure the message bus daemon is running! Message: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken
    mars 04 09:45:25 ArchLinux NetworkManager[441]: <error> [1393922725.444661] [nm-dbus-manager.c:278] nm_dbus_manager_init_bus(): Could not get the system bus. Make sure the message bus daemon is running! Message: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken
    mars 04 09:45:22 ArchLinux NetworkManager[441]: <error> [1393922722.443321] [nm-dbus-manager.c:278] nm_dbus_manager_init_bus(): Could not get the system bus. Make sure the message bus daemon is running! Message: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken
    mars 04 09:45:19 ArchLinux NetworkManager[441]: <error> [1393922719.444843] [nm-dbus-manager.c:278] nm_dbus_manager_init_bus(): Could not get the system bus. Make sure the message bus daemon is running! Message: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken
    mars 04 09:45:16 ArchLinux NetworkManager[441]: <error> [1393922716.443540] [nm-dbus-manager.c:278] nm_dbus_manager_init_bus(): Could not get the system bus. Make sure the message bus daemon is running! Message: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken
    mars 04 09:45:13 ArchLinux NetworkManager[441]: <error> [1393922713.445131] [nm-dbus-manager.c:278] nm_dbus_manager_init_bus(): Could not get the system bus. Make sure the message bus daemon is running! Message: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken
    mars 04 09:45:10 ArchLinux NetworkManager[441]: <error> [1393922710.443804] [nm-dbus-manager.c:278] nm_dbus_manager_init_bus(): Could not get the system bus. Make sure the message bus daemon is running! Message: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken
    mars 04 09:45:07 ArchLinux NetworkManager[441]: <error> [1393922707.444349] [nm-dbus-manager.c:278] nm_dbus_manager_init_bus(): Could not get the system bus. Make sure the message bus daemon is running! Message: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken
    mars 04 09:45:04 ArchLinux NetworkManager[441]: <error> [1393922704.443956] [nm-dbus-manager.c:278] nm_dbus_manager_init_bus(): Could not get the system bus. Make sure the message bus daemon is running! Message: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken
    mars 04 09:45:01 ArchLinux NetworkManager[441]: <error> [1393922701.444539] [nm-dbus-manager.c:278] nm_dbus_manager_init_bus(): Could not get the system bus. Make sure the message bus daemon is running! Message: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken
    mars 04 09:44:58 ArchLinux NetworkManager[441]: <error> [1393922698.443230] [nm-dbus-manager.c:278] nm_dbus_manager_init_bus(): Could not get the system bus. Make sure the message bus daemon is running! Message: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken
    mars 04 09:44:56 ArchLinux NetworkManager[441]: <info> (wlp8s0): roamed from BSSID C0:D9:62:8D:F4:C1 (Movellan) to (none) ((none))
    mars 04 09:44:55 ArchLinux NetworkManager[441]: <error> [1393922695.444563] [nm-dbus-manager.c:278] nm_dbus_manager_init_bus(): Could not get the system bus. Make sure the message bus daemon is running! Message: Did not receive a reply. Possible causes include: the remote application did not send a reply, the message bus security policy blocked the reply, the reply timeout expired, or the network connection was broken
    mars 04 09:44:53 ArchLinux systemd[1]: Stopped MariaDB database server.

  • Import very long

    I export a 8.1.7 database in full mode. It runs very quickly.
    2 tables contains rowid columns.
    The import full is very very long for the 2 tables.
    Is there a reason and a way to avoid this ?

    Thank you for your answer. I know export is faster than import. I'm using direct=true to improve import.
    My question was : is there a way to explain why import so long with tables containing rowid columns. We have 1 table (37 000 000 rows) with 1 rowid column and the import is running since 7 days !!! Any idea ?
    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by Christo Pandakliev ([email protected]):
    Hi
    Export is much faster then import. It is normal. Import of a table is done on 3 stages. The first one is loading rows, the second one is building indexes and the last one is creating constraints. Usualy the second step is slowest. You can produce sql script for creating indexes and load data without indexes. After that you can create indexes in different order so part of your database will be in short time. You can think also about tunning sort operation.
    Regards<HR></BLOCKQUOTE>
    null

  • ASO Dimension building slow

    Hi all,
    We just switched from BSO cubes to ASO cubes and found that building complete dimensions (parent child) takes much longer than building BSO dimensions.
    We use the same loadrules as we used for the BSO cubes.
    Is this normal?
    Is there any way to speed up the dimension building?
    Your help is much appreciated!
    rgds,
    Rudy

    Thanks very much guys,
    this info will definitely help us come to an optimized approach.
    btw, since rebuilding all dimension in BSO wasn't any problem I'll now also spend some thoughts on rebuilding only those dimensions that have actually changed.
    No reason to rebuild if nothing has changed, right...<@Cameron,
    We went for this approach because we don't want the business users to manually change the outline.
    So we created an dimension maintenance GUI on a sql table that can be maintained by the business users. That way we're able to load all dimension from sql.
    It has its downside when it comes to e.g. member formulas, but as this more of an administrator task, it's no problem, as we're able to set which dimension should be fully rebuild/resorted.
    Now we have one ODI scenario that's able to load to any essbase cube (ASO and BSO), fully parameterized. IT definitely works great!

  • IMAC takes very long to boot and and shut down.

    My iMAC 21" takes very long (15-20 mts) to boot up and become responsive. It also takes More than 5 mts to shut down. The HW test and disk utility do not report any issue. I have Erased the disk and re-installed OS X 10.9.2 two times. On the second re-install, I deliberately did not restore the backup from the time machine. It works well after it settles down. I changed the mouse and have cheked the Apple wireless keyboard.
    The problems began after the last security update to the best of my recollection. Since there does not appear to be any HW issue and I have re-installed the software, I am unable to determine what else I can do to resolve the issue.

    Hello. Thank you for responding to my message.
    I have shut down the system at 8.28am local time (took about 2 mts which is not bad). I then restarted and it took more than 10 mts to reach the login prompt. After login, it took several more minutes until all the icons were displayed at the bottom. After clicking on Safari and reaching the top hits pages also took an unresonable amount of time considering it is a quad core MAC and I am on a fibre internet connection. (Other computers at home respond quickly). I have to add that I am experiencing intermittent performane issues even when the MAC settles down after the long startup time. i.e. get to see the coloured spinning wheel several times.
    I have tried my best to cut down the log size but found many unique lines as the boot took so long. So, apologies for the length of the log. The System diagnostics section in the Console app is blank with no reports at all.
    2/5/14 8:28:23.982 am com.apple.launchd.peruser.501[179]: (com.apple.PackageKit.InstallStatus) Throttling respawn: Will start in 5 seconds
    2/5/14 8:28:25.782 am WindowServer[83]: disable_update_timeout: UI updates were forcibly disabled by application "loginwindow" for over 1.00 seconds. Server has re-enabled them.
    2/5/14 8:28:26.416 am WindowServer[83]: common_reenable_update: UI updates were finally reenabled by application "loginwindow" after 1.63 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/5/14 8:28:26.424 am WindowServer[83]: CGXGetConnectionProperty: Invalid connection 51715
    2/5/14 8:28:26.431 am com.apple.launchd[1]: (com.apple.ShareKitHelper[252]) Exited: Killed: 9
    2/5/14 8:28:26.431 am com.apple.launchd.peruser.501[179]: (com.apple.AirPlayUIAgent[219]) Exited: Killed: 9
    2/5/14 8:28:26.437 am com.apple.launchd.peruser.501[179]: ([0x0-0x17017].com.apple.AppleSpell[310]) Exited: Killed: 9
    2/5/14 8:28:32.476 am sessionlogoutd[379]: sessionlogoutd Launched
    2/5/14 8:28:32.483 am sessionlogoutd[379]: DEAD_PROCESS: 41 console
    2/5/14 8:28:32.504 am airportd[63]: _doAutoJoin: Already associated to “Star-7789”. Bailing on auto-join.
    2/5/14 8:28:47.258 am shutdown[380]: halt by _coreaudiod:
    2/5/14 8:28:47.000 am kernel[0]: Kext loading now disabled.
    2/5/14 8:28:47.000 am kernel[0]: Kext unloading now disabled.
    2/5/14 8:28:47.000 am kernel[0]: Kext autounloading now disabled.
    2/5/14 8:28:47.000 am kernel[0]: Kernel requests now disabled.
    2/5/14 8:28:47.258 am shutdown[380]: SHUTDOWN_TIME: 1398990527 258440
    2/5/14 8:30:30.000 am bootlog[0]: BOOT_TIME 1398990630 0
    2/5/14 8:31:56.000 am syslogd[19]: Configuration Notice:
    ASL Module "com.apple.appstore" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2/5/14 8:31:56.000 am syslogd[19]: Configuration Notice:
    ASL Module "com.apple.authd" sharing output destination "/var/log/system.log" with ASL Module "com.apple.asl".
    Output parameters from ASL Module "com.apple.asl" override any specified in ASL Module "com.apple.authd".
    2/5/14 8:31:56.000 am syslogd[19]: Configuration Notice:
    ASL Module "com.apple.authd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2/5/14 8:31:56.000 am syslogd[19]: Configuration Notice:
    ASL Module "com.apple.performance" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2/5/14 8:31:56.000 am syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2/5/14 8:31:56.000 am syslogd[19]: Configuration Notice:
    ASL Module "com.apple.securityd" claims selected messages.
    Those messages may not appear in standard system log files or in the ASL database.
    2/5/14 8:31:56.000 am kernel[0]: Longterm timer threshold: 1000 ms
    2/5/14 8:31:56.000 am kernel[0]: PMAP: PCID enabled
    2/5/14 8:31:56.000 am kernel[0]: PMAP: Supervisor Mode Execute Protection enabled
    2/5/14 8:31:56.000 am kernel[0]: Darwin Kernel Version 13.1.0: Wed Apr  2 23:52:02 PDT 2014; root:xnu-2422.92.1~2/RELEASE_X86_64
    2/5/14 8:31:56.000 am kernel[0]: vm_page_bootstrap: 1861432 free pages and 219336 wired pages
    2/5/14 8:31:56.000 am kernel[0]: kext submap [0xffffff7f807a5000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff80007a5000]
    2/5/14 8:31:56.000 am kernel[0]: zone leak detection enabled
    2/5/14 8:31:56.000 am kernel[0]: "vm_compressor_mode" is 4
    2/5/14 8:31:56.000 am kernel[0]: standard timeslicing quantum is 10000 us
    2/5/14 8:31:56.000 am kernel[0]: standard background quantum is 2500 us
    2/5/14 8:31:56.000 am kernel[0]: mig_table_max_displ = 74
    2/5/14 8:31:56.000 am kernel[0]: TSC Deadline Timer supported and enabled
    2/5/14 8:31:56.000 am kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    2/5/14 8:31:56.000 am kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    2/5/14 8:31:56.000 am kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    2/5/14 8:31:56.000 am kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=6 Enabled
    2/5/14 8:31:56.000 am kernel[0]: calling mpo_policy_init for TMSafetyNet
    2/5/14 8:31:56.000 am kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    2/5/14 8:31:56.000 am kernel[0]: calling mpo_policy_init for Sandbox
    2/5/14 8:31:56.000 am kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    2/5/14 8:31:56.000 am kernel[0]: calling mpo_policy_init for Quarantine
    2/5/14 8:31:56.000 am kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    2/5/14 8:31:56.000 am kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    2/5/14 8:31:56.000 am kernel[0]: The Regents of the University of California. All rights reserved.
    2/5/14 8:31:56.000 am kernel[0]: MAC Framework successfully initialized
    2/5/14 8:31:56.000 am kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    2/5/14 8:31:56.000 am kernel[0]: AppleKeyStore starting (BUILT: Jan 16 2014 20:19:00)
    2/5/14 8:31:56.000 am kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    2/5/14 8:31:56.000 am kernel[0]: ACPI: sleep states S3 S4 S5
    2/5/14 8:31:56.000 am kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 3467
    2/5/14 8:31:56.000 am kernel[0]: AppleIntelCPUPowerManagement: (built 19:46:50 Jan 16 2014) initialization complete
    2/5/14 8:31:56.000 am kernel[0]: pci (build 20:00:24 Jan 16 2014), flags 0x63008, pfm64 (36 cpu) 0xf80000000, 0x80000000
    2/5/14 8:31:56.000 am kernel[0]: [ PCI configuration begin ]
    2/5/14 8:31:56.000 am kernel[0]: console relocated to 0xf80020000
    2/5/14 8:31:56.000 am kernel[0]: [ PCI configuration end, bridges 13, devices 16 ]
    2/5/14 8:31:56.000 am kernel[0]: AppleThunderboltNHIType2::setupPowerSavings - GPE based runtime power management
    2/5/14 8:31:56.000 am kernel[0]: mcache: 4 CPU(s), 64 bytes CPU cache line size
    2/5/14 8:31:56.000 am kernel[0]: mbinit: done [96 MB total pool size, (64/32) split]
    2/5/14 8:31:56.000 am kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    2/5/14 8:31:56.000 am kernel[0]: rooting via boot-uuid from /chosen: BAEA055B-14AD-3566-B5E1-7009F2439E7E
    2/5/14 8:31:56.000 am kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    2/5/14 8:31:56.000 am kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    2/5/14 8:31:56.000 am kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    2/5/14 8:31:56.000 am kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    2/5/14 8:31:56.000 am kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    2/5/14 8:31:56.000 am kernel[0]: AppleIntelCPUPowerManagementClient: ready
    2/5/14 8:31:56.000 am kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/APPLE HDD ST1000LM024 Media/IOGUIDPartitionScheme/Customer@2
    2/5/14 8:31:56.000 am kernel[0]: BSD root: disk0s2, major 1, minor 3
    2/5/14 8:31:56.000 am kernel[0]: BTCOEXIST off
    2/5/14 8:31:56.000 am kernel[0]: BRCM tunables:
    2/5/14 8:31:56.000 am kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    2/5/14 8:31:56.000 am kernel[0]: Thunderbolt Self-Reset Count = 0xedefbe00
    2/5/14 8:31:56.000 am kernel[0]: IOThunderboltSwitch<0xffffff8038947200>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 11 unplug = 0
    2/5/14 8:31:56.000 am kernel[0]: IOThunderboltSwitch<0xffffff8038947200>(0x0)::listenerCallback - Thunderbolt HPD packet for route = 0x0 port = 12 unplug = 0
    2/5/14 8:31:56.000 am kernel[0]: hfs: mounted Macintosh HD on device root_device
    2/5/14 8:31:56.000 am kernel[0]: pci pause: SDXC
    2/5/14 8:30:55.844 am com.apple.launchd[1]: *** launchd[1] has started up. ***
    2/5/14 8:30:55.844 am com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    2/5/14 8:31:54.439 am com.apple.SecurityServer[14]: Session 100000 created
    2/5/14 8:31:56.000 am kernel[0]: Waiting for DSMOS...
    2/5/14 8:31:56.589 am hidd[48]: void __IOHIDPlugInLoadBundles(): Loaded 0 HID plugins
    2/5/14 8:31:56.590 am hidd[48]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    2/5/14 8:31:56.000 am kernel[0]: VM Swap Subsystem is ON
    2/5/14 8:31:59.855 am distnoted[20]: assertion failed: 13C1021: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    2/5/14 8:31:59.000 am kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    2/5/14 8:31:59.000 am kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    2/5/14 8:32:01.000 am kernel[0]: IOBluetoothUSBDFU::probe
    2/5/14 8:32:01.000 am kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x828B FirmwareVersion - 0x0079
    2/5/14 8:32:01.000 am kernel[0]: **** [IOBluetoothHostControllerUSBTransport][start] -- completed -- result = TRUE -- 0xb400 ****
    2/5/14 8:32:01.000 am kernel[0]: **** [BroadcomBluetoothHostControllerUSBTransport][start] -- Completed -- 0xb400 ****
    2/5/14 8:32:01.000 am kernel[0]: SMC::smcReadKeyAction ERROR: smcReadData8 failed for key LsNM (kSMCKeyNotFound)
    2/5/14 8:32:01.000 am kernel[0]: SMC::smcReadKeyAction ERROR LsNM kSMCKeyNotFound(0x84) fKeyHashTable=0x0
    2/5/14 8:32:01.000 am kernel[0]: SMC::smcGetLightshowVers ERROR: smcReadKey LsNM failed (kSMCKeyNotFound)
    2/5/14 8:32:01.000 am kernel[0]: SMC::smcPublishLightshowVersion ERROR: smcGetLightshowVers failed (kSMCKeyNotFound)
    2/5/14 8:32:01.000 am kernel[0]: SMC::smcInitHelper ERROR: smcPublishLightshowVersion failed (kSMCKeyNotFound)
    2/5/14 8:32:01.000 am kernel[0]: Previous Shutdown Cause: 5
    2/5/14 8:32:01.000 am kernel[0]: NVDAStartup: Official
    2/5/14 8:32:01.000 am kernel[0]: init
    2/5/14 8:32:01.000 am kernel[0]: probe
    2/5/14 8:32:01.000 am kernel[0]: start
    2/5/14 8:32:01.000 am kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification -- 0xb400
    2/5/14 8:32:01.000 am kernel[0]: [IOBluetoothHCIController][start] -- completed
    2/5/14 8:32:01.000 am kernel[0]: NVDAGK100HAL loaded and registered
    2/5/14 8:32:01.000 am kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    2/5/14 8:32:01.000 am kernel[0]: **** [IOBluetoothHCIController][protectedBluetoothHCIControllerTransportShowsUp] -- Connected to the transport successfully -- 0xab00 -- 0x1800 -- 0xb400 ****
    2/5/14 8:32:01.000 am kernel[0]: DSMOS has arrived
    2/5/14 8:32:01.965 am com.apple.usbmuxd[26]: usbmuxd-327.4 on Feb 12 2014 at 14:54:33, running 64 bit
    2/5/14 8:32:02.000 am kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    2/5/14 8:32:04.345 am configd[17]: dhcp_arp_router: en1 SSID unavailable
    2/5/14 8:32:04.354 am configd[17]: setting hostname to "Johns-iMac.local"
    2/5/14 8:32:04.357 am configd[17]: network changed.
    2/5/14 8:32:11.163 am stackshot[29]: Timed out waiting for IOKit to finish matching.
    2/5/14 8:32:21.000 am kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    2/5/14 8:32:21.654 am com.apple.SecurityServer[14]: Entering service
    2/5/14 8:32:24.752 am loginwindow[43]: Login Window Application Started
    2/5/14 8:32:24.752 am awacsd[60]: Starting awacsd connectivity_executables-97 (Aug 24 2013 23:49:23)
    2/5/14 8:32:24.758 am awacsd[60]: InnerStore CopyAllZones: no info in Dynamic Store
    2/5/14 8:32:24.760 am digest-service[65]: label: default
    2/5/14 8:32:24.760 am digest-service[65]:           dbname: od:/Local/Default
    2/5/14 8:32:24.760 am digest-service[65]:           mkey_file: /var/db/krb5kdc/m-key
    2/5/14 8:32:24.760 am digest-service[65]:           acl_file: /var/db/krb5kdc/kadmind.acl
    2/5/14 8:32:24.762 am digest-service[65]: digest-request: uid=0
    2/5/14 8:32:24.768 am UserEventAgent[11]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    2/5/14 8:32:24.775 am mDNSResponder[40]: mDNSResponder mDNSResponder-522.90.2 (Nov  3 2013 18:51:09) starting OSXVers 13
    2/5/14 8:32:24.784 am UserEventAgent[11]: Captive: CNPluginHandler en1: Inactive
    2/5/14 8:32:24.803 am digest-service[65]: digest-request: netr probe 0
    2/5/14 8:32:24.803 am digest-service[65]: digest-request: init request
    2/5/14 8:32:24.810 am digest-service[65]: digest-request: init return domain: BUILTIN server: JohnS-IMAC indomain was: <NULL>
    2/5/14 8:32:24.844 am mDNSResponder[40]: D2D_IPC: Loaded
    2/5/14 8:32:24.844 am mDNSResponder[40]: D2DInitialize succeeded
    2/5/14 8:32:24.847 am mDNSResponder[40]:   4: Listening for incoming Unix Domain Socket client requests
    2/5/14 8:32:24.864 am systemkeychain[83]: done file: /var/run/systemkeychaincheck.done
    2/5/14 8:32:39.821 am awacsd[60]: Exiting
    2/5/14 8:32:59.919 am configd[17]: InterfaceNamer: timed out waiting for IOKit to quiesce
    2/5/14 8:32:59.919 am configd[17]: Busy services :
    2/5/14 8:32:59.919 am configd[17]:   iMac13,1 [1, 150166 ms]
    2/5/14 8:32:59.919 am configd[17]:   iMac13,1/AppleACPIPlatformExpert [1, 61878 ms]
    2/5/14 8:32:59.919 am configd[17]:   iMac13,1/AppleACPIPlatformExpert/CPU0@0 [1, 58697 ms]
    2/5/14 8:32:59.920 am configd[17]:   iMac13,1/AppleACPIPlatformExpert/CPU0@0/AppleACPICPU [1, 58692 ms]
    2/5/14 8:32:59.920 am configd[17]:   iMac13,1/AppleACPIPlatformExpert/CPU0@0/AppleACPICPU/X86PlatformPlugin [!registered, !matched, 1, 58622 ms]
    2/5/14 8:32:59.000 am kernel[0]: en2: promiscuous mode enable succeeded
    2/5/14 8:32:59.000 am kernel[0]: en3: promiscuous mode enable succeeded
    2/5/14 8:33:07.391 am airportd[64]: airportdProcessDLILEvent: en1 attached (up)
    2/5/14 8:33:07.000 am kernel[0]: createVirtIf(): ifRole = 1
    2/5/14 8:33:07.000 am kernel[0]: in func createVirtualInterface ifRole = 1
    2/5/14 8:33:07.000 am kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1
    2/5/14 8:33:07.000 am kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    2/5/14 8:33:07.000 am kernel[0]: Created virtif 0xffffff803932dc00 p2p0
    2/5/14 8:33:07.812 am configd[17]: network changed: DNS*
    2/5/14 8:33:19.050 am apsd[62]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    2/5/14 8:33:23.440 am networkd[102]: networkd.102 built Aug 24 2013 22:08:46
    2/5/14 8:33:24.805 am mds[39]: (Normal) FMW: FMW 0 0
    2/5/14 8:33:29.103 am apsd[62]: CGSLookupServerRootPort: Failed to look up the port for "com.apple.windowserver.active" (1102)
    2/5/14 8:33:35.862 am warmd[25]: [warmctl_evt_timer_bc_activation_timeout:287] BC activation bcstop timer fired!
    2/5/14 8:33:36.000 am kernel[0]: IOPPF: AppleIntelCPUPowerManagement mode
    2/5/14 8:33:36.000 am kernel[0]: [AGPM Controller] build GPUDict by Vendor10deDevice0fd5
    2/5/14 8:34:09.979 am _networkd[116]: /usr/libexec/ntpd-wrapper: scutil key State:/Network/Global/DNS not present after 30 seconds
    2/5/14 8:34:14.131 am _networkd[119]: Unable to resolve hostname(s)
    2/5/14 8:34:14.354 am ntpd[109]: proto: precision = 1.000 usec
    2/5/14 8:34:15.055 am WindowServer[84]: Server is starting up
    2/5/14 8:34:15.117 am WindowServer[84]: Session 256 retained (2 references)
    2/5/14 8:34:15.117 am WindowServer[84]: Session 256 released (1 references)
    2/5/14 8:34:15.127 am WindowServer[84]: Session 256 retained (2 references)
    2/5/14 8:34:15.128 am WindowServer[84]: init_page_flip: page flip mode is on
    2/5/14 8:34:15.610 am locationd[45]: NBB-Could not get UDID for stable refill timing, falling back on random
    2/5/14 8:34:15.612 am locationd[45]: could not create intermediate property list - Cannot parse a NULL or zero-length data
    2/5/14 8:34:15.612 am locationd[45]: could not deserialize property list from /var/db/locationd/clients.plist
    2/5/14 8:34:15.676 am WindowServer[84]: Found 51 modes for display 0x00000000 [27, 24]
    2/5/14 8:34:16.000 am kernel[0]: en1: 802.11d country code set to 'SG'.
    2/5/14 8:34:16.000 am kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140 149 153 157 161 165
    2/5/14 8:34:17.000 am kernel[0]: MacAuthEvent en1   Auth result for: 98:2c:be:74:e5:be  MAC AUTH succeeded
    2/5/14 8:34:17.000 am kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    2/5/14 8:34:17.000 am kernel[0]: AirPort: Link Up on en1
    2/5/14 8:34:17.000 am kernel[0]: en1: BSSID changed to 98:2c:be:74:e5:be
    2/5/14 8:34:17.050 am WindowServer[84]: Found 1 modes for display 0x00000000 [1, 0]
    2/5/14 8:34:17.053 am WindowServer[84]: Found 1 modes for display 0x00000000 [1, 0]
    2/5/14 8:34:17.054 am WindowServer[84]: mux_initialize: Couldn't find any matches
    2/5/14 8:34:17.055 am WindowServer[84]: Found 51 modes for display 0x00000000 [27, 24]
    2/5/14 8:34:17.058 am WindowServer[84]: Found 1 modes for display 0x00000000 [1, 0]
    2/5/14 8:34:17.058 am WindowServer[84]: Found 1 modes for display 0x00000000 [1, 0]
    2/5/14 8:34:17.071 am locationd[45]: Location icon should now be in state 'Inactive'
    2/5/14 8:34:17.000 am kernel[0]: AirPort: RSN handshake complete on en1
    2/5/14 8:34:17.208 am WindowServer[84]: WSMachineUsesNewStyleMirroring: true
    2/5/14 8:34:17.208 am WindowServer[84]: Display 0x04280480: GL mask 0x1; bounds (0, 0)[1920 x 1080], 51 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a012, S/N 0, Unit 0, Rotation 0
    UUID 0x2838c3dda39478c14a5e57649bbc5643
    2/5/14 8:34:17.209 am WindowServer[84]: Display 0x003f003f: GL mask 0x8; bounds (0, 0)[3840 x 2160], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    2/5/14 8:34:17.209 am WindowServer[84]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    2/5/14 8:34:17.209 am WindowServer[84]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    2/5/14 8:34:17.209 am WindowServer[84]: WSSetWindowTransform: Singular matrix
    2/5/14 8:34:17.209 am WindowServer[84]: WSSetWindowTransform: Singular matrix
    2/5/14 8:34:17.000 am kernel[0]: flow_divert_kctl_disconnect (0): disconnecting group 1
    2/5/14 8:34:19.342 am WindowServer[84]: Display 0x04280480: GL mask 0x1; bounds (0, 0)[1920 x 1080], 51 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model a012, S/N 0, Unit 0, Rotation 0
    UUID 0x2838c3dda39478c14a5e57649bbc5643
    2/5/14 8:34:19.342 am WindowServer[84]: Display 0x003f003f: GL mask 0x8; bounds (2944, 0)[1 x 1], 2 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 3, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    2/5/14 8:34:19.342 am WindowServer[84]: Display 0x003f003e: GL mask 0x4; bounds (2945, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    2/5/14 8:34:19.342 am WindowServer[84]: Display 0x003f003d: GL mask 0x2; bounds (2946, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffffffffffff
    2/5/14 8:34:19.343 am WindowServer[84]: CGXPerformInitialDisplayConfiguration
    2/5/14 8:34:19.343 am WindowServer[84]:   Display 0x04280480: Unit 0; Vendor 0x610 Model 0xa012 S/N 0 Dimensions 18.70 x 10.51; online enabled built-in, Bounds (0,0)[1920 x 1080], Rotation 0, Resolution 1
    2/5/14 8:34:19.343 am WindowServer[84]:   Display 0x003f003f: Unit 3; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2944,0)[1 x 1], Rotation 0, Resolution 1
    2/5/14 8:34:19.343 am WindowServer[84]:   Display 0x003f003e: Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2945,0)[1 x 1], Rotation 0, Resolution 1
    2/5/14 8:34:19.343 am WindowServer[84]:   Display 0x003f003d: Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2946,0)[1 x 1], Rotation 0, Resolution 1
    2/5/14 8:34:31.835 am UserEventAgent[11]: Captive: [CNInfoNetworkActive:1655] en1: SSID 'Star-7789' making interface primary (protected network)
    2/5/14 8:34:31.835 am configd[17]: network changed: DNS* Proxy
    2/5/14 8:34:31.835 am UserEventAgent[11]: Captive: CNPluginHandler en1: Evaluating
    2/5/14 8:34:31.835 am UserEventAgent[11]: Captive: en1: Probing 'Star-7789'
    2/5/14 8:34:31.838 am configd[17]: network changed: v4(en1!:192.168.1.98) DNS+ Proxy+ SMB
    2/5/14 8:34:32.937 am UserEventAgent[11]: Captive: CNPluginHandler en1: Authenticated
    2/5/14 8:34:35.953 am configd[17]: setting hostname to
    2/5/14 8:34:51.522 am digest-service[129]: label: default
    2/5/14 8:34:51.522 am digest-service[129]:           dbname: od:/Local/Default
    2/5/14 8:34:51.522 am digest-service[129]:           mkey_file: /var/db/krb5kdc/m-key
    2/5/14 8:34:51.522 am digest-service[129]:           acl_file: /var/db/krb5kdc/kadmind.acl
    2/5/14 8:34:51.523 am digest-service[129]: digest-request: uid=0
    2/5/14 8:34:51.525 am digest-service[129]: digest-request: netr probe 0
    2/5/14 8:34:51.525 am digest-service[129]: digest-request: init request
    2/5/14 8:34:51.528 am digest-service[129]: digest-request: init return domain:    -IMAC server: -IMAC indomain was: <NULL>
    2/5/14 8:34:52.906 am WindowServer[84]: GLCompositor: GL renderer id 0x01022727, GL mask 0x0000000f, accelerator 0x0000449b, unit 0, caps QEX|MIPMAP, vram 512 MB
    2/5/14 8:34:52.940 am digest-service[129]: digest-request: uid=0
    2/5/14 8:34:52.940 am digest-service[129]: digest-request: init request
    2/5/14 8:34:52.943 am digest-service[129]: digest-request: init return domain: JohnS-IMAC server: JohnS-IMAC indomain was: <NULL>
    2/5/14 8:34:52.991 am WindowServer[84]: GLCompositor: GL renderer id 0x01022727, GL mask 0x0000000f, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    2/5/14 8:34:52.991 am WindowServer[84]: GLCompositor enabled for tile size [256 x 256]
    2/5/14 8:34:52.991 am WindowServer[84]: CGXGLInitMipMap: mip map mode is on
    2/5/14 8:34:53.030 am WindowServer[84]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    2/5/14 8:34:53.031 am com.apple.launchd[1]: (com.apple.netbiosd[121]) Exited abnormally: Hangup: 1
    2/5/14 8:34:53.063 am loginwindow[43]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    2/5/14 8:34:56.004 am WindowServer[84]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x04280480 device: 0x7fee2af174f0  isBackBuffered: 1 numComp: 3 numDisp: 3
    2/5/14 8:34:56.004 am WindowServer[84]: _CGXGLDisplayContextForDisplayDevice: acquired display context (0x7fee2af174f0) - enabling OpenGL
    2/5/14 8:34:57.999 am com.apple.launchd[1]: (com.apple.netbiosd[135]) Exited abnormally: Hangup: 1
    2/5/14 8:34:57.999 am com.apple.launchd[1]: (com.apple.netbiosd) Throttling respawn: Will start in 6 seconds
    2/5/14 8:35:23.873 am WindowServer[84]: Display 0x04280480: Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    2/5/14 8:35:24.617 am WindowServer[84]: Display 0x04280480: Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    2/5/14 8:35:24.624 am WindowServer[84]: Display 0x04280480: Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    2/5/14 8:35:25.802 am launchctl[142]: com.apple.findmymacmessenger: Already loaded
    2/5/14 8:35:26.179 am airportd[64]: _doAutoJoin: Already associated to “Star-”. Bailing on auto-join.
    2/5/14 8:35:26.420 am com.apple.SecurityServer[14]: Session 100005 created
    2/5/14 8:35:26.438 am loginwindow[43]: Setting the initial value of the magsave brightness level 1
    2/5/14 8:35:27.177 am loginwindow[43]: Login Window Started Security Agent
    2/5/14 8:35:27.329 am UserEventAgent[144]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    2/5/14 8:35:27.697 am SecurityAgent[151]: This is the first run
    2/5/14 8:35:27.697 am SecurityAgent[151]: MacBuddy was run = 0
    2/5/14 8:35:32.787 am locationd[45]: locationd was started after an unclean shutdown
    2/5/14 8:35:59.142 am SecurityAgent[151]: User info context values set for
    2/5/14 8:36:17.705 am SecurityAgent[151]: Login Window login proceeding
    2/5/14 8:36:20.463 am loginwindow[43]: Login Window - Returned from Security Agent
    2/5/14 8:36:20.488 am loginwindow[43]: USER_PROCESS: 43 console
    2/5/14 8:36:20.544 am airportd[64]: _doAutoJoin: Already associated to “Star-7789”. Bailing on auto-join.
    2/5/14 8:36:20.000 am kernel[0]: AppleKeyStore:Sending lock change 0
    2/5/14 8:36:20.704 am com.apple.launchd.peruser.501[171]: Background: Aqua: Registering new GUI session.
    2/5/14 8:36:20.720 am com.apple.launchd.peruser.501[171]: (com.apple.EscrowSecurityAlert) Unknown key: seatbelt-profiles
    2/5/14 8:36:20.720 am com.apple.launchd.peruser.501[171]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    2/5/14 8:36:20.723 am launchctl[173]: com.apple.pluginkit.pkd: Already loaded
    2/5/14 8:36:20.723 am launchctl[173]: com.apple.sbd: Already loaded
    2/5/14 8:36:20.730 am distnoted[175]: # distnote server agent  absolute time: 351.096632167   civil time: Fri May  2 08:36:20 2014   pid: 175 uid: 501  root: no
    2/5/14 8:36:21.191 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    2/5/14 8:36:21.191 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    2/5/14 8:36:21.191 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    2/5/14 8:36:21.191 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    2/5/14 8:36:21.191 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    2/5/14 8:36:21.192 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    2/5/14 8:36:21.192 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    2/5/14 8:36:21.192 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    2/5/14 8:36:21.192 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    2/5/14 8:36:21.192 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    2/5/14 8:36:21.192 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    2/5/14 8:36:21.193 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    2/5/14 8:36:21.193 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    2/5/14 8:36:21.193 am com.apple.audio.DriverHelper[187]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.blued.
    2/5/14 8:36:21.243 am com.apple.audio.DriverHelper[187]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    2/5/14 8:36:21.244 am com.apple.audio.DriverHelper[187]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    2/5/14 8:36:21.244 am com.apple.audio.DriverHelper[187]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    2/5/14 8:36:21.278 am WindowServer[84]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    2/5/14 8:36:21.340 am WindowServer[84]: Display 0x04280480: Unit 0; ColorProfile { 2, "iMac"}; TransferFormula (1.000000, 1.000000, 1.000000)
    2/5/14 8:36:23.176 am UserEventAgent[174]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    2/5/14 8:36:23.391 am sharingd[202]: Starting Up...
    2/5/14 8:36:23.481 am xpcproxy[207]: assertion failed: 13C1021: xpcproxy + 3438 [D559FC96-E6B1-363A-B850-C7AC9734F210]: 0x2
    2/5/14 8:36:24.143 am WindowServer[84]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    2/5/14 8:36:24.771 am com.apple.iCloudHelper[207]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    2/5/14 8:36:28.783 am com.apple.iCloudHelper[207]: AOSKit WARN: APS timeout encountered (cxn initialization)
    2/5/14 8:36:28.783 am com.apple.iCloudHelper[207]: AOSKit WARN: Failed to get response from APSConnection's initialization method(s)
    2/5/14 8:36:29.021 am com.apple.iCloudHelper[207]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    2/5/14 8:36:30.083 am com.apple.iCloudHelper[207]: ApplePushService: Timed out making blocking call, failed to perform call via XPC connection to 'com.apple.apsd'
    2/5/14 8:36:38.144 am WindowServer[84]: disable_update_likely_unbalanced: UI updates still disabled by application "SystemUIServer" after 15.00 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    2/5/14 8:36:59.246 am com.apple.iCloudHelper[207]: ApplePushService: Connection timed out trying to communicate with apsd
    2/5/14 8:37:14.483 am com.apple.iCloudHelper[207]: ApplePushService: Connection timed out trying to communicate with apsd
    2/5/14 8:37:18.728 am com.apple.IconServicesAgent[213]: IconServicesAgent launched.
    2/5/14 8:37:20.971 am com.apple.launchd.peruser.501[171]: (com.brother.LOGINserver[229]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    2/5/14 8:37:20.971 am com.apple.launchd.peruser.501[171]: (com.brother.LOGINserver[229]) Job failed to exec(3) for weird reason: 2
    2/5/14 8:37:20.975 am com.apple.SecurityServer[14]: Session 100007 created
    2/5/14 8:37:21.162 am com.apple.SecurityServer[14]: Session 100008 created
    2/5/14 8:37:22.227 am WiFiKeychainProxy[215]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    2/5/14 8:37:22.227 am WiFiKeychainProxy[215]: [NO client logger] <Nov 10 2013 18:30:13> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiKeychainProxy
    2/5/14 8:37:45.125 am com.apple.SecurityServer[14]: Session 100011 created
    2/5/14 8:37:47.000 am kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=228[GoogleSoftwareUp] final status 0x0, allowing (remove VALID) page
    2/5/14 8:37:54.515 am accountsd[238]: assertion failed: 13C1021: liblaunch.dylib + 25164 [38D1AB2C-A476-385F-8EA8-7AB604CA1F89]: 0x25
    2/5/14 8:37:55.448 am apsd[210]: Unrecognized leaf certificate
    2/5/14 8:38:06.772 am WindowServer[84]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 103.63 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/5/14 8:38:08.154 am SystemUIServer[182]: void CGSUpdateManager::log() const: conn 0x8d2b: spurious update.
    2/5/14 8:38:13.536 am SystemUIServer[182]: Cannot find executable for CFBundle 0x7fb98ac35520 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    2/5/14 8:38:13.552 am SystemUIServer[182]: Cannot find executable for CFBundle 0x7fb98ac20800 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    2/5/14 8:38:19.690 am librariand[205]: [ERROR] [0.000s] default-qu framework_client.c:103 IPCSendMessageTimed() Could not send a message to ubd: Operation timed out
    2/5/14 8:38:19.690 am librariand[205]: [ERROR] [0.000s] default-qu framework_client.c:737 IPCSyncingEnabled() failed to contact ubd: -1
    2/5/14 8:38:34.789 am librariand[205]: [ERROR] [15.099s] default-qu framework_client.c:103 IPCSendMessageTimed() Could not send a message to ubd: Operation timed out
    2/5/14 8:38:34.789 am librariand[205]: [ERROR] [15.099s] default-qu framework_client.c:737 IPCSyncingEnabled() failed to contact ubd: -1
    2/5/14 8:39:11.229 am storeagent[241]: FCIsAppAllowedToLaunchExt [343] -- *** _FCMIGAppCanLaunch timed out. Returning false.
    2/5/14 8:39:12.674 am parentalcontrolsd[248]: StartObservingFSEvents [849:] -- *** StartObservingFSEvents started event stream
    2/5/14 8:39:13.288 am com.apple.time[174]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2/5/14 8:39:14.535 am com.apple.SecurityServer[14]: Session 100013 created
    2/5/14 8:39:39.278 am com.apple.iCloudHelper[207]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<iMac13,1> <Mac OS X;10.9.2;13C1021> <com.apple.AOSKit/176>";
        "X-Mme-Country" = SG;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT+8";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1001 "The request timed out." UserInfo=0x7ff801e07250 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The request timed out., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    2/5/14 8:39:39.479 am sandboxd[239]: ([226]) assistantd(226) deny file-read-data /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    2/5/14 8:39:40.927 am sandboxd[239]: ([120]) ntpd(120) deny file-read-data /private/var/run/resolv.conf
    2/5/14 8:39:41.729 am sandboxd[239]: ([120]) ntpd(120) deny file-read-data /private/var/run/resolv.conf
    2/5/14 8:40:36.480 am LKDCHelper[256]: Starting (uid=501)
    2/5/14 8:40:39.379 am com.apple.iCloudHelper[207]: AOSKit ERROR: Config request failed, url=https://setup.icloud.com/configurations/init, requestHeaders=
        "Accept-Language" = "en-us";
        "X-Mme-Client-Info" = "<iMac13,1> <Mac OS X;10.9.2;13C1021> <com.apple.AOSKit/176>";
        "X-Mme-Country" = SG;
        "X-Mme-Nac-Version" = 11A457;
        "X-Mme-Timezone" = "GMT+8";
    error=Error Domain=kCFErrorDomainCFNetwork Code=-1001 "The request timed out." UserInfo=0x7ff801e10320 {NSErrorFailingURLStringKey=https://setup.icloud.com/configurations/init, NSLocalizedDescription=The request timed out., NSErrorFailingURLKey=https://setup.icloud.com/configurations/init}, httpStatusCode=-1, responseHeaders=
    (null)
    2/5/14 8:40:39.410 am com.apple.iCloudHelper[207]: AOSKit ERROR: Setup request failed, appleID=1331111818, url=(null), requestHeaders=
    (null),
    error=Error Domain=AOSErrorDomain Code=1000 "The operation couldn’t be completed. (AOSErrorDomain error 1000.)" UserInfo=0x7ff801e25270 {HttpStatusCode=0, DialogInfo={
        DialogType = Unknown;
    }}, httpStatusCode=0, responseHeaders=
    (null),
    responseBody=
    (null)
    2/5/14 8:40:40.002 am com.apple.time[174]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2/5/14 8:40:40.262 am mds[39]: (Normal) Volume: volume:0x7faefc094000 ********** Bootstrapped Creating a default store:0 SpotLoc:(null) SpotVerLoc:(null) occlude:0 /Volumes/firmwaresyncd.GVtxu8
    2/5/14 8:40:53.113 am com.apple.dock.extra[250]: <NSXPCConnection: 0x7ff860f17f90>: received an undecodable message (no exported object to receive message). Dropping message.
    2/5/14 8:40:54.213 am secd[233]:  __EnsureFreshParameters_block_invoke_2 SOSCloudKeychainSynchronizeAndWait: The operation couldn’t be completed. (SyncedDefaults error 1025 - Remote error : No valid account for KVS)
    2/5/14 8:40:54.213 am secd[233]:  __talkWithKVS_block_invoke callback error: The operation couldn’t be completed. (SyncedDefaults error 1025 - Remote error : No valid account for KVS)
    2/5/14 8:40:54.372 am secd[233]:  CFPropertyListReadFromFile file file:///Users/Johndandekar/Library/Keychains/54F98C75-0DC3-5591-B434-1E7BF5D373 41/accountStatus.plist: The file “accountStatus.plist” couldn’t be opened because there is no such file.
    2/5/14 8:40:54.404 am secd[233]:  SecErrorGetOSStatus unknown error domain: com.apple.security.sos.error for error: The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    2/5/14 8:40:54.404 am secd[233]:  securityd_xpc_dictionary_handler WiFiKeychainProx[215] DeviceInCircle The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)
    2/5/14 8:41:06.693 am WindowServer[84]: disable_update_timeout: UI updates were forcibly disabled by application "Safari" for over 1.00 seconds. Server has re-enabled them.
    2/5/14 8:41:20.693 am WindowServer[84]: disable_update_likely_unbalanced: UI updates still disabled by application "Safari" after 15.00 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    2/5/14 8:42:06.685 am ntpd[109]: ntpd: time set +1.417472 s
    2/5/14 8:42:06.693 am com.apple.time[174]: Interval maximum value is 946100000 seconds (specified value: 9223372036854775807).
    2/5/14 8:42:12.250 am WindowServer[84]: common_reenable_update: UI updates were finally reenabled by application "Safari" after 65.14 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/5/14 8:44:32.201 am com.apple.SecurityServer[14]: Session 100014 created
    2/5/14 8:44:32.441 am imagent[214]: [Warning] Creating empty account: PlaceholderAccount for service: IMDService (iMessage)
    2/5/14 8:44:32.441 am imagent[214]: [Warning] Creating empty account: PlaceholderAccount for service: IMDService (iMessage)
    2/5/14 8:44:32.605 am soagent[208]: No active accounts, killing soagent in 10 seconds
    2/5/14 8:44:32.606 am soagent[208]: No active accounts, killing soagent in 10 seconds
    2/5/14 8:44:42.605 am soagent[208]: Killing soagent.
    2/5/14 8:44:42.606 am NotificationCenter[200]: SOHelperCenter main connection interrupted
    2/5/14 8:44:42.606 am com.apple.dock.extra[250]: SOHelperCenter main connection interrupted
    2/5/14 8:44:42.607 am imagent[214]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:208)
    2/5/14 8:44:42.607 am imagent[214]: [Warning] Denying xpc connection, task does not have entitlement: com.apple.private.icfcallserver  (soagent:208)
    2/5/14 8:45:39.211 am ntpd[109]: FREQ state ignoring -0.000168 s
    2/5/14 8:45:42.272 am mdworker32[259]: CGSConnectionByID: 0 is not a valid connection ID.
    2/5/14 8:45:42.272 am mdworker32[259]: CGSGetSpaceManagementMode: No connection with id 0x       0
    2/5/14 8:46:48.521 am ntpd[109]: FREQ state ignoring +0.000861 s
    2/5/14 8:47:41.646 am xpcd[192]: restored permissions (100600 -> 100700) on /Users/Johndandekar/Library/Containers/com.apple.Notes/Container.plist
    2/5/14 8:47:53.961 am com.apple.SecurityServer[14]: Session 100015 created
    2/5/14 8:47:59.173 am WindowServer[84]: disable_update_timeout: UI updates were forcibly disabled by application "Notes" for over 1.00 seconds. Server has re-enabled them.
    2/5/14 8:48:02.756 am WindowServer[84]: common_reenable_update: UI updates were finally reenabled by application "Notes" after 4.58 seconds (server forcibly re-enabled them after 1.00 seconds)
    2/5/14 8:48:04.999 am com.apple.SecurityServer[14]: Session 100016 created
    2/5/14 8:48:22.828 am ntpd[109]: FREQ state ignoring -0.000677 s
    2/5/14 8:49:20.692 am sandboxd[239]: ([315]) mdworker(315) deny file-read-data /Applications/Microsoft Office 2011/Office/Media/Clipart/Bullets.localized/.localized ()

  • Can these things be customized? [Very long]

    Good day all!
    First I would like to say thank you for everyone who consistently roams these forums to help new users! I have learned a lot by visiting discussions every other day at least for a long time!
    I have been using Macs for a year now and still find navigation to be frustrating and counter-productive on several occasions.
    Next I would like to say that if my questions annoy you or you think that I should search through all previous discussions for an answer to my problems, please don't respond. I would like to invite you to go help the next user with their problems. I've been computing for at least 15 years, so I know what to expect! And in my experience, that kind of post is akin to trolling. I know that there may be a multitude of responses about some of the things I would like help with. But the whole purpose for starting this discussion is to get help for me exactly where I am with several features, not to be sent on an easter egg hunt through the rest of the forum to piece everything together. I'm really very busy! And I will continue studying on my own every other day, as I have been for a long time.
    On the flip side, I am not trying to be rude at all! I am sincerely asking for help and constructive suggestions/advice from a power user's perspective about how to adjust some things with my interface if possible! And I will be very very thankful if you can help!
    I use Macs for business purpose and pleasure, so this is a professional concern and a personal quest!
    So if you're still reading at this point, thank you for your patience!!! Your tenacity is admirable.
    Ok, so I have a list of features that I will admit come from having used Windows-based PCs for a very very long time, but they are much more efficient then what I have been able to do on OS X.
    [My tech profile]
    Intermediate User (Mac), Power User (Windows) [I know, I know... Spare me. x.x]
    System: Macbook Pro, Order number MGXC2LL/A (Currently, the big one... Mid-2014)
    Using OSX v10.9.5. I understand that Yosemite is available but I am concerned about updating because I am also using bootcamp with Windows 7 installed for personal, professional and educational use. I definitely make my machines work for me. (Starting another discussion about THAT concern though.)
    So finally, my questions.
    I have run into several interface annoyances and I would like to know about the following things. If anyone has any advice at all about how to customize these features, thank you in advance! (Note: I don't mind links to other posts at all! Please do so if you know a great discussion for exactly what I am experiencing.. If not, please just give whatever advice you can.)
    Trackpad sensitivity: I've gone to System Preferences > Trackpad for adjustments but its just not helping as I had hoped.
    Experiencing false touch due to heat sensitivity. Several times a day I will be programming or surfing and my cursor will jump to where the mouse indicator is on the screen if I get within an inch or two of the trackpad. If I am not watching then sometimes I will end up punching characters into a random line far away from where they're supposed to be. Then I have to go through the long process of deleting, moving, adjusting unexpected typos, making sure the code is still rendering and then typing everything all over again on the correct line. Anyway to adjust the calibration?
    I'm used to pinpoint accuracy when navigating with my high dpi pc mouse, so this may be a difficult one to explain... I touch the trackpad and move my finger and it works, but it feels like sensitivity maxed out is variable depending on the speed that I move my finger. So if I quickly move a centimeter it launches halfway across the screen. If I slowly move it, it barely moves. The variation is incredibly annoying at times because I'm used to navigating rapidly. It I turn the sensitivity down then movement is terrible, if I turn it up, it seems to move more rapidly only when I move my finger quickly, which is also frustrating because I can't accurately go to the exact point I want to without moving slow regardless of sensitivity. Maybe this is also due to OSX's calibration method/"philosophy"? I have also used the wire mouse on my Mac (Desktop) and it seems to work the same way even though its a completely different input method. Any suggestions? Maybe I should just install a Razer on my laptop and let those drivers determine how it operates? (Thats what I use on my PC.)
    Is there anyway to toggle the trackpad on and off? I have not checked into this yet beyond System Preferences > Trackpad, but it would be very helpful when programming or writing.
    Interface issues: There are several organization/navigational features that I use heavily in Windows. The lack thereof makes it difficult to enjoy the OSX interface at times... Sure you can say "Oh, you'll get used to it," but the fact of the matter is getting used to a different interface should at least enable me to be as productive as I would be on a Windows computer. I don't think getting used to these particulars would accomplish that.
    Please advise me about how to customize a faster way to access media files! (I suppose I could create shortcuts in different directories, but... Ugh!) Is there an easier method or some way to rearrange the way that directories are organized in general so that I don't have to click desktop > click go > click home just to find my media files? Is there a way to make them accessible from the Finder Sidebar when navigating other directories? I need full access to commonly used directories if possible! Not just a certain level of my computer system without clicking "Go."
    Is there an easy way to launch a directory in a second Finder window? Absolutely hate when I click a directory and it opens in the same window. Especially considering that you have to actually drag items to a different directory to move them without shortcut keys. Extra steps are not cool. (Like dragging a folder to your desktop so you can open a new directory to drag it to in the same Finder window. Very redundant and counter-productive.)
    Anyway to manually add a cut/paste-like function to the right-click menu? Would solve a lot of my organization challenges. (Not afraid of tweaking system files or downloading scripts/programs to accomplish this.)
    These are the things that have contributed to productivity challenges the most for me. Not really a lot, but still frustrating.
    Thank you for reading and any advice you may have! Even if its only about one or two things. Anything helps.

    Kurt Lang wrote:
    Is there a way to make them accessible from the Finder Sidebar when navigating other directories? I need full access to commonly used directories if possible!
    Yes. With any sidebar open, have the parent folder of the folder you want on the sidebar open. Now just drag and drop the folder you want on the sidebar under the Favorites heading, and above Devices. Make sure one of the other favorites already listed isn't highlighted as you let go of the mouse, or the OS will presume you want to copy the folder there. A new shortcut with that folder name should be added to the list. To remove any favorite, drag it off the sidebar over the desktop, wait a moment and let go.
    Is there an easy way to launch a directory in a second Finder window? Absolutely hate when I click a directory and it opens in the same window.
    That one is a huge bone of contention. Apple changed that behavior beginning with Mavericks so you can't do that if the sidebar or toolbar is showing. At least not the way it used to work before 10.9.x. To force a nested folder to open in its own window, hold down the Option key as you double click the folder. Hiding the toolbar and sidebar so all you see are the files eliminates the need to hold the Option key. Yes, there's no consistency of interface behavior on that one.
    Hi Kurt! Thank you very much for those suggestions. I've actually been playing with the sidebar customizations and can attest that navigation has been a lot easier! This suggestion from Diane and from you has been incredibly helpful. As per the second Finder window, I guess I can only keep searching for a solution. I'm sure there is a way to regain the ability to access more than one Finder window at once. I can see the benefit of limiting it to only one window but I also know from experience that having it is counter-productive in most scenarios. I will have to try opening files and folders in their own windows with the option button to see if it will get me back to the productivity levels I'm used to.
    Thank you again Diane! I need to do some research on each utility to see which one might be worth the investment in the long run!
    I actually wanted to post a resolution of my own. Particularly the sensitivity/acceleration issue and the cut/paste issue. I was able to solve them both by adding a peripheral to my arsenal. The Razer Orochi wireless mouse. There are a couple of reasons why this has been an incredibly helpful move. The first is I have been using Razer peripherals for years. I love the control that Synapse software allows (That is, the utility that comes with Razer mice). I am able to adjust acceleration (Essentially how much farther the mouse moves with aggressive finger movements compared to normal movements) and I am able to adjust overall sensitivity beyond anything the trackpad is capable of because dpi and more thorough software. Don't get me wrong! I'm not trying to advertise here, it's been like night and day since I installed it.
    I also mentioned cut and paste. The Orochi has a mouse wheel with a built-in button, 4 side buttons and the common left/right click buttons for a total of 7 possible mouse-click functions. So how I was able to correct the cut/paste issue was by binding Command-Option-V to one oft the side buttons. So essentially I can now Right Click, choose "Copy" and simply click the side button to move the folder/file/etc to the new directory. Productivity already increasing to levels I once had!
    [Reference: OS X:Keyboard Shortcuts]
    Granted this is not a control-level resolution, (Which would be highly preferable), but it has made a big difference so far. I definitely wouldn't consider this to be an interface preference but rather a productivity preference. However you look at it, I'm happier and can navigate/operate more effectively than I have been able to in a long time.
    I think for all intents and purposes I can mark this thread as solved even though there are a couple of things that fall into this category by default simply because Macs are not capable of doing certain things as far as I can tell...
    Unable to be resolved (By 98% of users) due to fundamental(?) design limitations:
    Allow for heat sensitivity adjustments on the trackpad
    Clickable cut/paste functionality built into OSX
    Second (or multiple) Finder Window(s)
    I think at this point I need to start researching deeper fixes for these problems and maybe post something later about it.
    If anyone has more advice about them or any other features mentioned here, please post!
    -war

  • Report script taking very long time to export in ASO

    Hi All,
    My report script is taking very long time to execute and finally a message appears as timed out.
    I'm working on ASO Cubes and there are 14 dimensions for which i need to export all data for all the dimensions for only one version.
    The data is very huge and the member count in each dimension is also huge, so which is making me difficult to export the data.
    Any suggestions??
    Thanks

    Here is a link that addresses several ways to optimize your report script. I utilize report scripts for Level 0 exports in an ASO environment as well, however the majority of our dimemsions are attribute dimensions.
    These are the most effective solutions we have implemented to improve our exports via report scripts:
    1. Make sure your report script is written in the order of how the Report Extractor retrieves data.
    2. Supressing Zero and Missing Data
    3. We use the LINK command within reports for some dimensions that are really big and pull at Level 0
    4. Using Symmetric reports.
    5. Breakout the exports in multiple reports.
    However, you may also consider some additional solutions outlined in this link:
    1. The MDX optimizing commands
    2. Back end system settings
    http://download.oracle.com/docs/cd/E12825_01/epm.111/esb_dbag/drpoptim.htm
    I hope this helps. Maybe posting your report script would also help users to provide feedback.
    Thanks
    Edited by: ronnie on Jul 14, 2011 9:25 AM
    Edited by: ronnie on Jul 14, 2011 9:53 AM

  • Warning this is very long code but i need help to see if I am on right trac

    I have done all the following code myself and it is the buisiness layer for my application. I have tried to follow recommendations on previous posts and I would like to be told where I can clean up my code and how? This is not complete and it looks very long to me but I need help in order to be better. There are 4 button vlivks and I have not completed them all. The criteria for application is that phonebook will accept new entries if they have names surnames and phone numbers that are not longer than 10 characters for display purposes but can change this. No duplicates are allowed. No editing of a existing entry must lead to a duplicate entry either. No new entry or edit may result in a new contact having no phone numbers.
    Many thanks for your time in advance,.....
    import javax.swing.JOptionPane;
    import java.util.ArrayList;
    public class Contact
    {// Start of the Contact class
         ArrayList<ContactDetails> phoneList = new ArrayList<ContactDetails>();          // To hold all the contacts
         ArrayList<ContactDetails> searchList = new ArrayList<ContactDetails>();          // To hold all contacts that return true on search
         ArrayList<ContactDetails> list = new ArrayList<ContactDetails>();
         String newName;                                                                                // To hold the new name
         String newSurname;                                                                           // to hold the new surname
         String newHome;                                                                                // To hold the new home number if any
         String newWork;                                                                                // To hold the new work number
         String newCell;                                                                                // To hold the new cell number
         final int MAX_LENGTH = 10;
         public boolean addToPhoneList;                                                            // Sets to false if there is an invalid entry
         public boolean addToSearchList;                                                            // Sets to false if there is an invlid search
         public boolean modifyContact;                                                            // Sets to false if there is an invalid modification
         // Method to create a new contact
         public void createNew()
         {// Start of create new()
              addToPhoneList = true;                                                                 // Set boolean to true each time the method is executed
              getNewContactsName();                                                                 // Get new name
              if(addToPhoneList == false)
                   createNew();
                   return;
              getNewContactsSurname();                                                            //Get new surname
              if(addToPhoneList == false)
                   createNew();
                   return;
              String checkName = newName;                                                            //Creates copies to be used in the checkIfDuplicate method
              String checkSurname = newSurname;
              addToPhoneList = checkIfDuplicate(checkName, checkSurname);                    //Check if the entries are duplicate
              if(addToPhoneList == false)
                   createNew();
                   return;
              getNewContactsHomeNum();                                                            // Get new home number
              if(addToPhoneList == false)
                   createNew();
                   return;
              getNewContactsWorkNum();                                                            // Get new work number
              if(addToPhoneList == false)
                   createNew();
                   return;
              getNewContactsCellNum();                                                            // Get new cell number
              if(addToPhoneList == false)
                   createNew();
                   return;
              checkAtLeastOneNumEntered();                                                       // Check that at least one phone number was entered
              if(addToPhoneList == true)
                   updateListWithNew();
         }// End of createNew()
         // Method to search for an existing contact
         public void searchExisting()
         {// Start of searchExisting()
              addToSearchList = true;                                                                 // Set the boolean true
              searchList.clear();                                                                      // Clear list from any previous searches
              if(phoneList.size() > 0)                                                            // Check if any contacts are in the list
                   getExistingDetailsAndSearch();                                                  // If there are entries then continue to search
              else
                   JOptionPane.showMessageDialog(null,"There are no contacts to search for. Please use this option when you have added a contact to the list.","Error",JOptionPane.ERROR_MESSAGE);
         }// End of searchExisting()
         // Method to modify an existing contact
         public void modifyExisting()
         {// Start of modifyExisting()
              modifyContact = true;                                                                 // Set the boolean to true
              if(phoneList.size() <= 0)                                                            // Check if the phonelist is not empty
                   JOptionPane.showMessageDialog(null,"There are no contacts to modify. Please use this option when there have been contacts added to the list.","Error",JOptionPane.ERROR_MESSAGE);
              else
                   getExistingDetailsAndModify();                                                  // If phonelist not emty continue to modify method
         }// End of modifyExisting()
         //Method to delete a contact from the list
         public void deleteExisting()
         //Method to get new contacts name
         public void getNewContactsName()
              newName = JOptionPane.showInputDialog("Please enter the new contacts name or press cancel to exit without saving.");
              if(newName == null)
                   finish();
              if(newName.trim().length()<=0)
                   JOptionPane.showMessageDialog(null,"You have not entered a name. Please try again.","Error",JOptionPane.ERROR_MESSAGE);
                   addToPhoneList = false;
                   return;
              addToPhoneList = checkLengthValid(newName, "name");
         //Method to get a new contacts surname
         public void getNewContactsSurname()
              newSurname = JOptionPane.showInputDialog("Please enter the new contacts surnname or press cancel to exit without saving.");
              if(newSurname == null)
                   finish();
              addToPhoneList = checkLengthValid(newSurname, "surname");
         //Method to get a new contacts home number
         public void getNewContactsHomeNum()
              newHome = JOptionPane.showInputDialog("Please enter the new contacts home number or press cancel to exit without saving.");
              if(newHome == null)
                   finish();
              if(newHome.trim().length() > 0)
                   try
                        Long homeNum = Long.parseLong(newHome);
                   catch(Exception e)
                        JOptionPane.showMessageDialog(null,"You may only use numbers for a valid phone number. Please try again.","Error",JOptionPane.ERROR_MESSAGE);
                        addToPhoneList = false;
                        return;
              addToPhoneList = checkLengthValid(newHome, "home number");
         //Method to get a new contacst work number
         public void getNewContactsWorkNum()
              newWork = JOptionPane.showInputDialog("Please enter the new contacts work number or press cancel to exit without saving");
              if(newWork == null)
                   finish();
              if(newWork.trim().length()> 0)
                   try
                        Long workNum = Long.parseLong(newWork);
                   catch(Exception e)
                        JOptionPane.showMessageDialog(null,"You may only use numbers for a valid number. Please try again.","Error",JOptionPane.ERROR_MESSAGE);
                        addToPhoneList = false;
                        return;
              addToPhoneList = checkLengthValid(newWork, "work number");
         //Method to get a new contacts cell number
         public void getNewContactsCellNum()
              newCell = JOptionPane.showInputDialog("Please enter the new contacts cell number or press cancel to exit without saving");
              if(newCell == null)
                   finish();
              if(newCell.trim().length() > 0)
                   try
                        Long cellNum = Long.parseLong(newCell);
                   catch(Exception e)
                        JOptionPane.showMessageDialog(null,"You may only use numbers for a valid number. Please try again.","Error",JOptionPane.ERROR_MESSAGE);
                        addToPhoneList = false;
                        return;
              addToPhoneList = checkLengthValid(newCell, "cell number");
         //Method to get the details for an existing contact
         public void getExistingDetailsAndSearch()
              String existingName = getExistingName("search for");
              if(existingName == null)
                   addToSearchList = false;
                   return;
              if(existingName.length()<=0)
                   JOptionPane.showMessageDialog(null,"You have not entered a name please try again","Error",JOptionPane.ERROR_MESSAGE);
                   addToSearchList = false;
                   searchExisting();
              String existingSurname = getExistingSurname();
                   if(existingSurname == null)
                        return;
              if(addToSearchList == true)
                   searchAndAddIfFound(existingName, existingSurname);
         //Method to get existing details and modify contact
         public void getExistingDetailsAndModify()
              String existingName = getExistingName("modify");
              if(existingName == null)
                   modifyContact = false;
                   return;
              if(existingName.length()<=0)
                   JOptionPane.showMessageDialog(null,"You have not entered a name please try again","Error",JOptionPane.ERROR_MESSAGE);
                   modifyContact = false;
                   modifyExisting();
              String existingSurname = getExistingSurname();
                   if(existingSurname == null)
                        return;
              if(modifyContact == true)
                   getContactBySearch(existingName.trim().toUpperCase(), existingSurname.trim().toUpperCase());
         //Method to get the contact from list and modify details
         public void getContactBySearch(String currentName, String currentSurname)
              int count = 0;
              int numFound = 0;
              for(ContactDetails cd: phoneList)
                   cd = phoneList.get(count);
                   if((cd.name.equals(currentName))&&(cd.surname.equals(currentSurname)))
                        numFound ++;
                        changeDetails(cd);
                   count ++;
              if(numFound <= 0)
                   JOptionPane.showMessageDialog(null,"No contacts matching the name and surname you entered found. Press the modify button to try again.","Information",JOptionPane.INFORMATION_MESSAGE);
         //Method to get existing contacts name
         public String getExistingName(String whatWasClicked)
              String name = JOptionPane.showInputDialog("Please enter the contacts name that you wish to "+whatWasClicked);
              return name;
         //Method to get an existing contacts surname
         public String getExistingSurname()
              String surname = JOptionPane.showInputDialog("Please enter the contacts surname.");
              return surname;
         //Method to change the details of contact
         public void changeDetails(ContactDetails conToChange)
              String currentName = conToChange.name;
              String currentSurname = conToChange.surname;
              String currentHome = conToChange.home;
              String currentWork = conToChange.work;
              String currentCell = conToChange.cell;
              String newNameForContact = getNewModName(currentName);
              if(modifyContact == false)
                   modifyExisting();
                   return;
              String newSurnameForContact = getNewModSurname(currentSurname);
              if(modifyContact == false)
                   modifyExisting();
                   return;
              String newHomeForContact = getNewModHome(currentHome);
              if(modifyContact == false)
                   modifyExisting();
                   return;
              String newWorkForContact = getNewModWork(currentWork);
              if(modifyContact == false)
                   modifyExisting();
                   return;
              String newCellForContact = getNewModCell(currentCell);
              if(modifyContact == false)
                   modifyExisting();
                   return;
              if(modifyContact == true)
                   conToChange.name = newNameForContact;
         //Method to get the modified name
         public String getNewModName(String currentName)
              String newModifiedName = JOptionPane.showInputDialog("Please enter the new name for contact or press cancel to keep it as is.");
              if(newModifiedName == null)
                   return currentName;
              if(newModifiedName.trim().length() <= 0)
                   JOptionPane.showMessageDialog(null,"You may not replace the existing name with a blank name. Please try again.","Error",JOptionPane.ERROR_MESSAGE);
                   modifyContact = false;
                   return currentName;
              modifyContact = checkLengthValid(newModifiedName, "modified name");
              return newModifiedName;
         //Method to get the modified surname
         public String getNewModSurname(String currentSurname)
              String newModifiedSurname = JOptionPane.showInputDialog("Please enter the new surname for the contact or press cancel to keep it as is.");
              if(newModifiedSurname == null)
                   return currentSurname;
              modifyContact = checkLengthValid(newModifiedSurname, "modified surname");
              if(modifyContact == false)
                   JOptionPane.showMessageDialog(null,"Surname not changed.","Information",JOptionPane.INFORMATION_MESSAGE);
                   return currentSurname;
              modifyContact = checkLengthValid(newModifiedSurname, "modified surname");
              return newModifiedSurname;
         //Method to search and update the list with a succesfull search
         private void searchAndAddIfFound(String name, String surname)
              int count = 0;
              int numFound = 0;
              for(ContactDetails cd: phoneList)
                   cd = phoneList.get(count);
                   if(cd.name.equals(name.trim().toUpperCase()))
                        numFound ++;
                        searchList.add(cd);
                   count ++;
              if(numFound <= 0)
                   JOptionPane.showMessageDialog(null,"No contacts were found matching the dat you entered.","Information",JOptionPane.INFORMATION_MESSAGE);
              else
                   list.clear();
                   list.addAll(searchList);
         //Method that check all entries are a valid logical length
         //Method is based on assumption that a normal name, surname, and phone numbers are not longer than 10 characters long.
         //IF This method is changed please change the layout in the GUI as this is also set to fit with the layout that gives a neat //apperance
         private boolean checkLengthValid(String detailEntered, String whatWasEntered)
              boolean validLength = true;
              if(detailEntered.trim().length() >= MAX_LENGTH)
                   JOptionPane.showMessageDialog(null,"The " +whatWasEntered+" you entered is too long. Please try again and use a "+whatWasEntered+" that is less than "+MAX_LENGTH+" characters long.","Error",JOptionPane.ERROR_MESSAGE);
                   validLength = false;
              return validLength;
         private void finish()
              System.exit(0);
         //Method to update the list with a new entry
         private void updateListWithNew()
              try
                   ContactDetails cd = new ContactDetails();
                   cd.name = newName.trim().toUpperCase();
                   cd.surname = newSurname.trim().toUpperCase();
                   cd.home = newHome.trim();
                   cd.work = newWork.trim();
                   cd.cell = newCell.trim();
                   phoneList.add(cd);
                   JOptionPane.showMessageDialog(null,"Contact succesfully entered. To save this change press exit to save or use the save option in the toolbar menu.","Information",JOptionPane.INFORMATION_MESSAGE);
              catch(Exception e)
                   JOptionPane.showMessageDialog(null,"Failed to add contact to list. If problem persists please contact the software developer.","Error",JOptionPane.ERROR_MESSAGE);
              list.clear();
              list.addAll(phoneList);
         //Method to check for duplicate
         public boolean  checkIfDuplicate(String nameToCheck, String surnameToCheck)
              int count = 0;
              boolean valid = true;
              for(ContactDetails cd : phoneList)
                   cd = phoneList.get(count);
                   if(((nameToCheck.trim().toUpperCase()).equals(cd.name))&&((surnameToCheck.trim().toUpperCase()).equals(cd.surname)))
                        JOptionPane.showMessageDialog(null,"You may not enter a duplicate contact. Please try again and change the name and surname.","Error",JOptionPane.ERROR_MESSAGE);
                        valid = false;
                        break;
                   count ++;
              return valid;
         //Method to check that at least one phone number exists for contact
         public void checkAtLeastOneNumEntered()
              if((newHome.trim().length()<=0)&&(newWork.trim().length()<=0)&&(newCell.trim().length()<=0))
                   JOptionPane.showMessageDialog(null,"You have not entered any phone number at all. You must enter at least one phone number for a new contact.","Error",JOptionPane.ERROR_MESSAGE);
                   addToPhoneList = false;
         //Method that returns the list to the GUI
         public ArrayList<ContactDetails> getList()
              return list;
    }

    Should I start over from scratch? Can I get help with links to tutorials on following? How to create a java CRUD application (google not useful) and how to layer in java(google not useful)
    This is my pres layer as is is this wrong too?
         Filename:     ContactsListInterface.java
         Date:           16 March 2008
         Programmer:     Yucca Nel
         Purpose:     Provides a GUI for entering names and contact numbers into a telephone directory.
                        Also allows options for searching for a specific name and deleting of data from the record
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.text.*;
    import java.io.*;
    import java.util.*;
    import java.text.*;
    public class Phonebook1 extends JFrame implements ActionListener
    { //start of class
         // construct fields, buttons, labels,text boxes, ArrayLists etc
         JTextPane displayPane = new JTextPane();
         JLabel listOfContacts = new JLabel("List Of Contacts");               // creates a label for the scrollpane
         JButton createButton = new JButton("Create");
         JButton searchButton = new JButton("Search");
         JButton modifyButton = new JButton("Modify");
         JButton deleteButton = new JButton("Delete");
         Contact c = new Contact();
         ArrayList<ContactDetails> contactList = c.getList();
         // create an instance of the ContactsListInterface
         public Phonebook1()
         { // start of cli()
              super("Phonebook Interface");
         } // end of cli()
         public JMenuBar createMenuBar()
         { // start of the createMenuBar()
              // construct and populate a menu bar
              JMenuBar mnuBar = new JMenuBar();                              // creates a menu bar
              setJMenuBar(mnuBar);
              JMenu mnuFile = new JMenu("File",true);                         // creates a file menu in the menu bar which is visible
                   mnuFile.setMnemonic(KeyEvent.VK_F);
                   mnuFile.setDisplayedMnemonicIndex(0);
                   mnuFile.setToolTipText("File Options");
                   mnuBar.add(mnuFile);
              JMenuItem mnuFileExit = new JMenuItem("Save And Exit");     // creates an exit option in the file menu
                   mnuFileExit.setMnemonic(KeyEvent.VK_X);
                   mnuFileExit.setDisplayedMnemonicIndex(1);
                   mnuFileExit.setToolTipText("Close Application");
                   mnuFile.add(mnuFileExit);
                   mnuFileExit.setActionCommand("Exit");
                   mnuFileExit.addActionListener(this);
              JMenu mnuEdit = new JMenu("Edit",true);                         // creates a menu for editing options
                   mnuEdit.setMnemonic(KeyEvent.VK_E);
                   mnuEdit.setDisplayedMnemonicIndex(0);
                   mnuEdit.setToolTipText("Edit Options");
                   mnuBar.add(mnuEdit);
              JMenu mnuEditSort = new JMenu("Sort",true);                    // creates an option for sorting entries
                   mnuEditSort.setMnemonic(KeyEvent.VK_S);
                   mnuEditSort.setDisplayedMnemonicIndex(0);
                   mnuEdit.add(mnuEditSort);
              JMenuItem mnuEditSortByName = new JMenuItem("Sort By Name");          // to sort entries by name
                   mnuEditSortByName.setMnemonic(KeyEvent.VK_N);
                   mnuEditSortByName.setDisplayedMnemonicIndex(8);
                   mnuEditSortByName.setToolTipText("Sort entries by first name");
                   mnuEditSortByName.setActionCommand("Name");
                   mnuEditSortByName.addActionListener(this);
                   mnuEditSort.add(mnuEditSortByName);
              JMenuItem mnuEditSortBySurname = new JMenuItem("Sort By Surname");     // to sort entries by surname
                   mnuEditSortBySurname.setMnemonic(KeyEvent.VK_R);
                   mnuEditSortBySurname.setDisplayedMnemonicIndex(10);
                   mnuEditSortBySurname.setToolTipText("Sort entries by surname");
                   mnuEditSortBySurname.setActionCommand("Surname");
                   mnuEditSortBySurname.addActionListener(this);
                   mnuEditSort.add(mnuEditSortBySurname);
              JMenu mnuHelp = new JMenu("Help",true);                                        // creates a menu for help options
                   mnuHelp.setMnemonic(KeyEvent.VK_H);
                   mnuHelp.setDisplayedMnemonicIndex(0);
                   mnuHelp.setToolTipText("Help options");
                   mnuBar.add(mnuHelp);
              JMenuItem mnuHelpHelp = new JMenuItem("Help");                              // creates a help option for help topic
                   mnuHelpHelp.setMnemonic(KeyEvent.VK_P);
                   mnuHelpHelp.setDisplayedMnemonicIndex(3);
                   mnuHelpHelp.setToolTipText("Help Topic");
                   mnuHelpHelp.setActionCommand("Help");
                   mnuHelpHelp.addActionListener(this);
                   mnuHelp.add(mnuHelpHelp);
              JMenuItem mnuHelpAbout = new JMenuItem("About");                         // creates a about option for info about api
                   mnuHelpAbout.setMnemonic(KeyEvent.VK_T);
                   mnuHelpAbout.setDisplayedMnemonicIndex(4);
                   mnuHelpAbout.setToolTipText("About this program");
                   mnuHelpAbout.setActionCommand("About");
                   mnuHelpAbout.addActionListener(this);
                   mnuHelp.add(mnuHelpAbout);
              return mnuBar;
         } // end of the createMenuBar()
         // create the content pane
         public Container createContentPane()
         { // start of createContentPane()
              //construct and populate panels and content pane
              JPanel labelPanel = new JPanel(); // panel is only used to put the label for the textpane in
                   labelPanel.setLayout(new FlowLayout());
                   labelPanel.add(listOfContacts);
              JPanel displayPanel = new JPanel();// panel is used to display all the contacts and thier numbers
                   setTabsAndStyles(displayPane);
                   displayPane = addTextToTextPane();
                   displayPane.setEditable(false);
              JScrollPane scrollPane = new JScrollPane(displayPane);
                   scrollPane.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS); // pane is scrollable vertically
                   scrollPane.setWheelScrollingEnabled(true);// pane is scrollable by use of the mouse wheel
                   scrollPane.setPreferredSize(new Dimension(400,320));
              displayPanel.add(scrollPane);
              JPanel workPanel = new JPanel();// panel is used to enter, edit and delete data
                   workPanel.setLayout(new FlowLayout());
                   workPanel.add(createButton);
                        createButton.setToolTipText("Create a new entry");
                        createButton.addActionListener(this);
                   workPanel.add(searchButton);
                        searchButton.setToolTipText("Search for an entry by name number or surname");
                        searchButton.addActionListener(this);
                   workPanel.add(modifyButton);
                        modifyButton.setToolTipText("Modify an existing entry");
                        modifyButton.addActionListener(this);
                   workPanel.add(deleteButton);
                        deleteButton.setToolTipText("Delete an existing entry");
                        deleteButton.addActionListener(this);
              labelPanel.setBackground(Color.red);
              displayPanel.setBackground(Color.red);
              workPanel.setBackground(Color.red);
              // create container and set attributes
              Container c = getContentPane();
                   c.setLayout(new BorderLayout(30,30));
                   c.add(labelPanel,BorderLayout.NORTH);
                   c.add(displayPanel,BorderLayout.CENTER);
                   c.add(workPanel,BorderLayout.SOUTH);
                   c.setBackground(Color.red);
              // add a listener for the window closing and save
              addWindowListener(
                   new WindowAdapter()
                        public void windowClosing(WindowEvent e)
                             int answer = JOptionPane.showConfirmDialog(null,"Are you sure you would like to save all changes and exit?","File submission",JOptionPane.YES_NO_OPTION);
                             if(answer == JOptionPane.YES_OPTION)
                                  System.exit(0);
              return c;
         } // end of createContentPane()
         protected void setTabsAndStyles(JTextPane displayPane)
         { // Start of setTabsAndStyles()
              // set Font style
              Style fontStyle = StyleContext.getDefaultStyleContext().getStyle(StyleContext.DEFAULT_STYLE);
              Style regular = displayPane.addStyle("regular", fontStyle);
              StyleConstants.setFontFamily(fontStyle, "SansSerif");
              Style s = displayPane.addStyle("bold", regular);
              StyleConstants.setBold(s,true);
         } // End of setTabsAndStyles()
         public JTextPane addTextToTextPane()
         { // start of addTextToTextPane()
              int numberOfEntries = contactList.size();
              int count = 0;
              Document doc = displayPane.getDocument();
              try
              { // start of tryblock
                   // clear previous text
                   doc.remove(0,doc.getLength());
                   // insert titles of columns
                   doc.insertString(0,"NAME\tSURNAME\tHOME NO\tWORK NO\tCELL NO\n",displayPane.getStyle("bold"));
                   for(ContactDetails cd : contactList)
                        cd = contactList.get(count);
                        doc.insertString(doc.getLength(),cd.name+"\t"+cd.surname+"\t"+cd.home+"\t"+cd.work+"\t"+cd.cell+"\n",displayPane.getStyle("regular"));
                        count ++;
              } // end of try block
              catch(BadLocationException ble)
              { // start of ble exception handler
                   System.err.println("Could not insert text.");
              } // end of ble exception handler
              return displayPane;
         } // end of addTextToTextPane()
         // code to process user clicks
         public void actionPerformed(ActionEvent e)
         { // start of actionPerformed()
              String arg = e.getActionCommand();
              // user clicks create button
              if(arg.equals("Create"))
                   c.createNew();                                                  // method to create a new Contact
                   addTextToTextPane();
              if(arg.equals("Search"))
                   c.searchExisting();                                             // method to search for an existing entry
                   addTextToTextPane();
              if(arg.equals("Modify"))
                   c.modifyExisting();                                             // method to modify contact
                   addTextToTextPane();
              if(arg.equals("Delete"))
                   c.deleteExisting();
                   addTextToTextPane();
              if(arg.equals("Exit"))
         } // end of actionPerformed()
         // method to create a new contact
         public static void main(String[] args)
         { // start of main()
              // Set look and feel of interface
              try
              { // start of try block
                   UIManager.setLookAndFeel("com.sun.java.swing.plaf.windows.WindowsLookAndFeel");
              } // end of try block
              catch(Exception e)
              { // start of catch block
                   JOptionPane.showMessageDialog(null,"There was an error in setting the look and feel of this application","Error",JOptionPane.INFORMATION_MESSAGE);
              } // end  of catch block
              Phonebook1 pb = new Phonebook1();
              pb.setDefaultCloseOperation(JFrame.DO_NOTHING_ON_CLOSE);
              pb.setJMenuBar(pb.createMenuBar());
              pb.setContentPane(pb.createContentPane());
              pb.setSize(520,500);
              pb.setVisible(true);
              pb.setResizable(false);
         } // end of main()
    } //end of class

  • Why is it that Photoshop Elements takes a very long time to open a png file?

    Even though I wait for a very long time (minutes)  for Photoshop Elements 11 to open a PNG file, the computer's process monitor shows nothing discernible going on while I am waiting.
    This is on a Windows 7 machine with an Intel I7 4 core processor.

    I killed Firefox and Thunderbird and tried it again.  Using a stopwatch, it took 5 minutes 54 seconds to open the file.  In the interim the application windows were frozen.  The process monitor showed Photoshop not responding.  The thread analysis showed a thread waiting on splwow64.exe. 
    splwow64.exe allows 32-bit applications to connect with the 64-bit printer spooler service on x64 Windows builds.
    I should also point out that when I exit Photoshop, it does not seem to die.  I cannot restart it in the normal way.  The starter software just goes away when I click on PE 11.  I finally fo into the task monitor and kull the PhotoshopElements process.  Then I can restart Photoshop Elements.  Although after a long time since I exited PE while I was writing this post, I then just tried opening PE the normal way and it worked.  Many of these items I mention are probably red herrings.

  • Brand New Installation of Snow Leopard Takes A Very Long Time To Log In

    Hello All
    I installed Snow Leopard onto a friends computer this past weekend and I have run into a strange issue. The computer in question is a Black MacBook 2.16 GHz with 2GB of RAM. The first thing I did was to back up the computer to an external hard drive using TimeMachine. Next, I formatted the drive and zeroed out all of the data. I then installed Mac OS X 10.6 onto the computer. During the initial boot process, I restored the applications, home directory, and misc. files from the TimeMachine backup. The first login took an extremely long time to log in. I figured that the Mac was sorting out the newly restored files and home directory and such and this was probably normal. Then I ran all of the software updates to get the machine completely current. When I rebooted, it took a really long time to log in. I thought maybe the machine was sorting out and installing the new updates (even though it has never taken this long on my MacBook. So I started up from the Snow Leopard install CD and ran DiskUtility and repaired the disk and permissions. Upon another reboot (I timed it this time) it, again, took a very long time ... *8.5 minutes!* I'm at my wits end and am thinking about rebuilding the machine again to see if this build is better. Also, as far as I can tell, the System is working perfectly once I get logged in; no spinning beach ball, hangs, kernel panics or what have you. Also, the machine didn't have this issue before I rebuilt it. Has anybody ever heard of this before? If so, is there a nice fix for it?
    Thank you all for reading and have a good day.

    Check /System/Library/StartupItems & /Library/StartupItems on the Black MacBook. Any items in either folder is not part of the Snow Leopard install & may be causing the slow starts. Also check System Preferences > Accounts > Login Items, especially if the log in screen comes up quickly & most of the delay is after entering the account password. It is normal to see the iTunes Helper app login item, but any others may be causing the delay, especially if they are not fully compatible with Snow Leopard or are apps that require Rosetta to start up before they will run. The same goes for any items n the "Others" section of System Preferences.
    Message was edited by: R C-R

  • HT2506 I use Preview to edit photos, and would like to know if there are any Preview updates in the works. I find there is a problem with Preview crashing, or taking a very long time to "catch up" (spinning beachball of death) while I'm editing.

    I use Preview to edit photos, and would like to know if there are any updates to this program in the works. It seems Apple is constantly updating its software, except for Preview. I find it crashes all too often, and also takes forever to "catch up" with me (as in spinning beachball of death) when I'm editing a lrge amount of photos. Yes, I know I should be using Photoshop or somesuch, but it's just too **** confusing, and I don't have the time to figure it out. Thanks!!

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Step 1
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Enter the name of the crashed application or process in the Filter text field. Select the messages from the time of the last crash, if any. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.
    Step 2
    In the Console window, look under User Diagnostic Reports for crash reports related to the crashed process. The report name starts with the name of the process, and ends with ".crash". Select the most recent report and post the entire contents — again, the text, not a screenshot. In the interest of privacy, I suggest that, before posting, you edit out the “Anonymous UUID,” a long string of letters, numbers, and dashes in the header of the report, if it’s present (it may not be.) Please don’t post shutdownStall, spin, or hang logs — they're very long and not helpful.

Maybe you are looking for

  • Using ANT to compile code on AIX.

    Can anyone tell me what is te equivalent of Window's CLASSPATH on AIX? I have a ANT build script that extratcs the source code from CVS repository and compiles everything, creates all the needed JAR, WAR and WAR files. This script executes well on Wi

  • Where can I get iPhoto 9.6.1?

    I have used iPhoto occasionally since 2001 but for some reason didn't update to the final version. Now OS X 10.2.3 has killed off my iPhoto 9.6. When I try to open it, I am told to go to the App Store for the latest version, but then it tells me that

  • IWeb's not going away is it?

    I have my work portfolio on iWeb, and a few other sites and am about to start another site, and wanted to check something: I read somewhere about there not being recent updates for iWeb, and wanted to make sure that nothing drastic is changing, basic

  • Sharepoint E-mail Issues

    Hi There,  I am having some issues with the e-mail attachment functionality within sharepoint. I have set up the library settings to accept incoming e-mails from  any sender. I have assigned the library unique permissions so that the sender of the e-

  • IMessage is asking for Apple ID. When I enter it. It says it can't complete transaction, iMessage is asking for Apple ID. When I enter it. It says it can't complete transaction

    Recently I had to change Wifis in my home. My iPad found the wifi and is using it fine. But my ability to text or iMessage is getting a apple sign in message. When I sign in it gives me the message that the task can't be completed. Try again. But it