Weird issue using Number

Hi All,
I create a custom component not long ago http://forums.adobe.com/message/3798449#3798449
To store value from this component I am using realValue parameter but when I pass a number with 2 decimals, it store in the database the number plus 15 decimals "0"s.
It is something wrong converting string to number using NUMBER function?
I try also passing Number:
public function set realValue(value:Number):void
                //Set real value
                _realValue = value;
                // format the number here
                super.text = formatDecimal(Number(_realValue));
Thanks
Johnny

FYI, It was a CF issue.
http://forums.adobe.com/thread/913538?tstart=0
Rgds
Johnny

Similar Messages

  • Weird issues with file share using both SMB and AFP?

    I use my Xserve with 10.4 server primarily as a file server (with a huge RAID array attached via Ultra320 SCSI). I've served files from this server over SMB ("Windows" sharing) to both PCs and Macs for a few years now with no big issues. The files are being shared in a collaborative environment with extensive user accounts and ACLs set up.
    I would like to turn on AFP for these same file shares, so those accessing with a Mac can have the added benefits of AFP over SMB. However, I've heard some rumors of some complicated issues developing from the use of both AFP and SMB together on the same folders, in a mixed environment.
    The rumors I've heard are things that would happen rarely but enough for it to be significant. For example, a file created over SMB and then edited over AFP would have some problems being re-edited over SMB again, due to some complicated feature that the rumor is unable to explain (something with a resource fork or file locking?). Maybe something weird that just involves the Adobe Creative Suite?
    Anyway, I figured I'd throw this out there. Anyone who serves files over both protocols to a varied set of computers and applications having weird issues? Or is everything working for you? Thanks in advance.
    Message was edited by: dtemp

    Thanks for the responses!
    re:crop
    It's coming in as cropped with no way to fix it that I can see.
    Pressing space or opening in preview shows the full image but if it gets anywhere near Photoshop it comes in auto-cropped.
    I'm starting to this it's a bug and will be reporting it to Adobe.

  • SQL Performance issue: Using user defined function with group by

    Hi Everyone,
    im new here and I really could need some help on a weird performance issue. I hope this is the right topic for SQL performance issues.
    Well ok, i create a function for converting a date from timezone GMT to a specified timzeone.
    CREATE OR REPLACE FUNCTION I3S_REP_1.fnc_user_rep_date_to_local (date_in IN date, tz_name_in IN VARCHAR2) RETURN date
    IS
    tz_name VARCHAR2(100);
    date_out date;
    BEGIN
    SELECT
    to_date(to_char(cast(from_tz(cast( date_in AS TIMESTAMP),'GMT')AT
    TIME ZONE (tz_name_in) AS DATE),'dd-mm-yyyy hh24:mi:ss'),'dd-mm-yyyy hh24:mi:ss')
    INTO date_out
    FROM dual;
    RETURN date_out;
    END fnc_user_rep_date_to_local;The following statement is just an example, the real statement is much more complex. So I select some date values from a table and aggregate a little.
    select
    stp_end_stamp,
    count(*) noi
    from step
    where
    stp_end_stamp
    BETWEEN
    to_date('23-05-2009 00:00:00','dd-mm-yyyy hh24:mi:ss')      
    AND
    to_date('23-07-2009 00:00:00','dd-mm-yyyy hh24:mi:ss')
    group by
    stp_end_stampThis statement selects ~70000 rows and needs ~ 70ms
    If i use the function it selects the same number of rows ;-) and takes ~ 4 sec ...
    select
    fnc_user_rep_date_to_local(stp_end_stamp,'Europe/Berlin'),
    count(*) noi
    from step
    where
    stp_end_stamp
    BETWEEN
    to_date('23-05-2009 00:00:00','dd-mm-yyyy hh24:mi:ss')      
    AND
    to_date('23-07-2009 00:00:00','dd-mm-yyyy hh24:mi:ss')
    group by
    fnc_user_rep_date_to_local(stp_end_stamp,'Europe/Berlin')I understand that the DB has to execute the function for each row.
    But if I execute the following statement, it takes only ~90ms ...
    select
    fnc_user_rep_date_to_gmt(stp_end_stamp,'Europe/Berlin','ny21654'),
    noi
    from
    select
    stp_end_stamp,
    count(*) noi
    from step
    where
    stp_end_stamp
    BETWEEN
    to_date('23-05-2009 00:00:00','dd-mm-yyyy hh24:mi:ss')      
    AND
    to_date('23-07-2009 00:00:00','dd-mm-yyyy hh24:mi:ss')
    group by
    stp_end_stamp
    )The execution plan for all three statements is EXACTLY the same!!!
    Usually i would say, that I use the third statement and the world is in order. BUT I'm working on a BI project with a tool called Business Objects and it generates SQL, so my hands are bound and I can't make this tool to generate the SQL as a subselect.
    My questions are:
    Why is the second statement sooo much slower than the third?
    and
    Howcan I force the optimizer to do whatever he is doing to make the third statement so fast?
    I would really appreciate some help on this really weird issue.
    Thanks in advance,
    Andi

    Hi,
    The execution plan for all three statements is EXACTLY the same!!!Not exactly. Plans are the same - true. They uses slightly different approach to call function. See:
    drop table t cascade constraints purge;
    create table t as select mod(rownum,10) id, cast('x' as char(500)) pad from dual connect by level <= 10000;
    exec dbms_stats.gather_table_stats(user, 't');
    create or replace function test_fnc(p_int number) return number is
    begin
        return trunc(p_int);
    end;
    explain plan for select id from t group by id;
    select * from table(dbms_xplan.display(null,null,'advanced'));
    explain plan for select test_fnc(id) from t group by test_fnc(id);
    select * from table(dbms_xplan.display(null,null,'advanced'));
    explain plan for select test_fnc(id) from (select id from t group by id);
    select * from table(dbms_xplan.display(null,null,'advanced'));Output:
    PLAN_TABLE_OUTPUT
    Plan hash value: 47235625
    | Id  | Operation          | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |      |    10 |    30 |   162   (3)| 00:00:02 |
    |   1 |  HASH GROUP BY     |      |    10 |    30 |   162   (3)| 00:00:02 |
    |   2 |   TABLE ACCESS FULL| T    | 10000 | 30000 |   159   (1)| 00:00:02 |
    Query Block Name / Object Alias (identified by operation id):
       1 - SEL$1
       2 - SEL$1 / T@SEL$1
    Outline Data
      /*+
          BEGIN_OUTLINE_DATA
          FULL(@"SEL$1" "T"@"SEL$1")
          OUTLINE_LEAF(@"SEL$1")
          ALL_ROWS
          OPTIMIZER_FEATURES_ENABLE('10.2.0.4')
          IGNORE_OPTIM_EMBEDDED_HINTS
          END_OUTLINE_DATA
    Column Projection Information (identified by operation id):
       1 - (#keys=1) "ID"[NUMBER,22]
       2 - "ID"[NUMBER,22]
    34 rows selected.
    SQL>
    Explained.
    SQL>
    PLAN_TABLE_OUTPUT
    Plan hash value: 47235625
    | Id  | Operation          | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |      |    10 |    30 |   162   (3)| 00:00:02 |
    |   1 |  HASH GROUP BY     |      |    10 |    30 |   162   (3)| 00:00:02 |
    |   2 |   TABLE ACCESS FULL| T    | 10000 | 30000 |   159   (1)| 00:00:02 |
    Query Block Name / Object Alias (identified by operation id):
       1 - SEL$1
       2 - SEL$1 / T@SEL$1
    Outline Data
      /*+
          BEGIN_OUTLINE_DATA
          FULL(@"SEL$1" "T"@"SEL$1")
          OUTLINE_LEAF(@"SEL$1")
          ALL_ROWS
          OPTIMIZER_FEATURES_ENABLE('10.2.0.4')
          IGNORE_OPTIM_EMBEDDED_HINTS
          END_OUTLINE_DATA
    Column Projection Information (identified by operation id):
       1 - (#keys=1) "TEST_FNC"("ID")[22]
       2 - "ID"[NUMBER,22]
    34 rows selected.
    SQL>
    Explained.
    SQL> select * from table(dbms_xplan.display(null,null,'advanced'));
    PLAN_TABLE_OUTPUT
    Plan hash value: 47235625
    | Id  | Operation          | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT   |      |    10 |    30 |   162   (3)| 00:00:02 |
    |   1 |  HASH GROUP BY     |      |    10 |    30 |   162   (3)| 00:00:02 |
    |   2 |   TABLE ACCESS FULL| T    | 10000 | 30000 |   159   (1)| 00:00:02 |
    Query Block Name / Object Alias (identified by operation id):
       1 - SEL$F5BB74E1
       2 - SEL$F5BB74E1 / T@SEL$2
    Outline Data
      /*+
          BEGIN_OUTLINE_DATA
          FULL(@"SEL$F5BB74E1" "T"@"SEL$2")
          OUTLINE(@"SEL$2")
          OUTLINE(@"SEL$1")
          MERGE(@"SEL$2")
          OUTLINE_LEAF(@"SEL$F5BB74E1")
          ALL_ROWS
          OPTIMIZER_FEATURES_ENABLE('10.2.0.4')
          IGNORE_OPTIM_EMBEDDED_HINTS
          END_OUTLINE_DATA
    Column Projection Information (identified by operation id):
       1 - (#keys=1) "ID"[NUMBER,22]
       2 - "ID"[NUMBER,22]
    37 rows selected.

  • Having a weird issue with my assign after java embedding

    hi,
    I'm having a weird issue with my assign activity, i am using a Java Embedding wherin i access a variable and assign it some data, later in next step when i try to assign some other data to this same variable in assign activity i get a Error message as below.
    com.oracle.bpel.client.BPELFault: faultName: {{http://schemas.xmlsoap.org/ws/2003/03/business-process/}selectionFailure} parts: {{ summary=Invalid to part type. When performing the assign operation, the to node THIS,IS,,TEST is invalid. The node named in the error message was either null or an empty node set, and it was not an instance of org.w3c.Element. Verify the node value at line number 795 is not null and is an instance of org.w3c.Element. } .
    i'm using soa 11.1.1.5
    Can anyone please help ?
    - Thanks
    Shirish

    Shirish,
    It's a bug and you will need to apply a patch for that.
    You can find all explanation in Oracle Support Id ID 1194228.1.
    Arik

  • Weird Issues of late?!?!

    I have been having a lot of weird issues lately. A lot of programs are becoming unresponsive. It also seems that when one becomes unresponsive, others will follow. So if FCP becomes unresponsive, Safari does as well or Firefox or text edit, etc. In many cases, after I force-quit them, they will become unresponsive while re-launching, and I will end up closing everything and re-starting. Speaking of which, re-starting tends to get hung-up as well forcing me to hard reboot (hold down the power button).
    Also, it seems to be struggling to play movies, where that was never an issue before.
    Then, theres FCP. I am having issues where I a song used for a video will suddenly be all whacky. Towards the end it will start repeating like a skipping record, and make static noises. Replacing the song with itself clears that up. And finally, I have had a number of videos export from final cut with the audio disappearing halfway through, even though the timelines are fine; or an exported video will have 'freeze spots' where the video will just be one frame for a period of time.
    Anyone have an idea what might cause these issues??
    iMac 27" i7, 4GB Ram, 10.6.4, all video on external drives.

    frlane wrote:
    I have been having a lot of weird issues lately. A lot of programs are becoming unresponsive.
    If your problem is a process that's using excess CPU time, you can explore that with the Activity Monitor utility. Launch that, set the list near the top to "All Processes", then click the "CPU" column header near the top until the highest CPU users are at the top of the list. Now user your Mac until it's sluggish, then check the Activity Monitor display to see if you can spot a culprit.

  • Weird weird issue about 27" intel (late 2009) display

    i toured the whole discussions to see if anyone else shares my problem but obviously not...
    i will now paste the e-mail i sent to [email protected] (which was directly rejected) about my problem out of this world!
    read below...
    Hello Apple People,
    i decided to write an email to apple directly for I'm not satisfied with the dealer here in istanbul / turkey.
    i am not so sure if this issue ever happened to some other iMac users…my screen is alive!
    i bought my iMac 27" (late 2009) from a friend. after i took it home and spent a couple of days i noticed that there was something unusual on the bottom right corner of my screen.
    it was like a triangular white detail under the glass cover…i thought that it was sort of a label or etc.
    after a couple of days i saw it growing and occupying a bigger area!
    for the warranty was expired i took it to a technical service store to take the glass out and see what it was…
    it was sort of a plastic tape probably used for insulating the ips panel to keep it safe from dust or etc.
    the tech guy first offered me to paint it black with a permanent pen if it was only a visual disturbance but after my high tone "no" , grabbed a blade, trimmed and peeled it off for it was on the screen blocking the portion. then i took it home…
    2 days later it was there again…bigger…
    i assume its made of a material that enlarges or expands itself by the heat produced within the machine…then i took the glass of as the tech guy did and gently trimmed it myself and peeled it off…
    2 days later…it was there, even bigger….this material is alive and growing! to get rid of the problem it caused i have done the same once more…nothing changes…it runs on the screen and blocking my pixels on the bottom right corner…
    i do believe it is going to grow since theres no material left by my butching. and as we lose the material we do lose the function. the inner screen behind the panel gets dirty because the mutant isolation tape doesn't do its only work but kidding with me. this may sound stupid but the issue is extremely annoying.
    although my iMac is out of warranty, i do believe it has nothing to do with the usage. the material itself has production faults.
    as an enthusiastic apple user, i now ask apple to solve my problem from the core and replace this mutantly behaving screen for my mental health and satisfaction as a loyal customer.
    no other issue would make me go mad, but this one is sitting in front of me everyday smiling psychopaticly on my face. by the way i believe my 1TB HDD also needs a replacement, cause it sort of screams and working very soundly. The HDD replacement program seems to cover this second problem of mine.
    please help me with my weird issues, for i can not work with my old beloved  machine anymore.
    Thanks in advance.
    serial number: W8*****5RU
    <Personal Information Edited by Host>

    Greetings ThunderHo,
    Welcome to the Apple Support Communities!
    I understand that you are seeing some strange graphical issues on your iMac. In this situation, it may be necessary to have your computer evaluated for repair. For more information about this process, please refer to the attached link.
    Apple - Support - Service Answer Center
    Cheers,
    Joe

  • Goods Issue using BAPI_GOODSMVT_CREATE movement type 541

    Hi
        According to my requirement I need to do Post goods issue using BAPI_GOODSMVT_CREATE. But I am unable to do PGI . how to consume BOM details if batches are changed. please let me know what values I need to pass to BAPI . give with an example.
    Its an urgent requirement.

    are you passing batch number to the BAPI?
    if not try pass the batch number the rest of the things bapi will take care of.
    bi

  • Weird Issue : Difference in HTML/excel output and pdf/rtf output--Urgent

    Hi There,
    I am facing a weird issue. I created one rtf template. When I preview the o/p in rtf or pdf, everything comes up as expected. When I preview the same in html or excel, few rows come up as bold though they were not supposed to. What could be the problem ?
    This is extremly urgent as the users primarily use the excel or html as o/p.
    Thanks in advance.
    Regards,
    Saurabh

    Hi Brett,
    I am using Oracle XML Publisher standalone (not with oracle apps). The version is 10.1.3.2 . The issue comes up while previewing as well as when the report is run from the XMLP server.
    Regards,
    Saurabh

  • CSV to Excel 2013 - Issue with number format

    Hi,
    I use Excel 2013 to manipulate CSV files. I experienced issue with number format cells. In my CSV file there is one column that presents latitude values in format: 52.05456464. When I open my CSV file in Excel 2013 all values in that column get separator
    ".", in this case my number is present like this: 52.054.454.464. I tried to change my cell format, and when opened the category was Number, I change it to the General but in that case I lost all "." and got 52054454464.
    I also tried to open same file on other machine with Excel 2010 and file is opened correctly without issues and in cell format the category is general by default.
    I hope that there is some kind of resolution for this.

    Hi
    According to your description, we may follow these steps:
    highlight the column B > Home Tab > Number section > Select Number and choose "More Number Format" > Make sure the Negative number is chosen correctly. If you are using Custom format, we will have to change it.
    Hope it helps
    Best regards

  • Flex 4.5 weird issue

    Hi All,
    I have encountered a weird issue after I migrated my application from flex 3.5 to flex 4.5.
    In our application, we have 3 kind of views, View, ChartView and StackedView, the later extends the former one, let's say, in ChartView we have
    <local:View...>....</local:View>, in StackedView we start with <local:ChartView>. We config the view type in the database as View.swf, ChartView.swf and StackedView.swf. The problem here is for example, if I load a view with StackedView.swf and change to a view with ChartView.swf, some of the components will not initialized, we get runtime exception like
    ArgumentError: Error #2004: One of the parameters is invalid.
        at flash.display::Graphics/drawRect()
        at mx.controls::VRule/updateDisplayList()[E:\dev\4.5.1\frameworks\projec ts\mx\src\mx\controls\VRule.as:256]
        at mx.core::UIComponent/validateDisplayList()[E:\dev\4.5.1\frameworks\pr ojects\framework\src\mx\core\UIComponent.as:8989]
        at mx.managers::LayoutManager/validateDisplayList()[E:\dev\4.5.1\framewo rks\projects\framework\src\mx\managers\LayoutManager.as:736]
        at mx.managers::LayoutManager/doPhasedInstantiation()[E:\dev\4.5.1\frame works\projects\framework\src\mx\managers\LayoutManager.as:801]
        at mx.managers::LayoutManager/doPhasedInstantiationCallback()[E:\dev\4.5 .1\frameworks\projects\framework\src\mx\managers\LayoutManager.as:1180 ]
    We debugged into the code, and found that the exception occoured before the parent component is initialized. Actually the parent(or the parent's parent) component's height or width is NaN.
    By the way, if we load ChartView.swf directly, everything works perfectly.
    And I just solved the problem by spliting the 3 type of views, say, keep the View.swf, comibine the code from View.swf with ChartView.swf to a new ChartView.swf, the same to StackedView.swf, which now combines 3 type of views' code.
    Though the problem is solved, but everyone can see it's not an elegent way, and the maintenence cost is high.
    I suspect it is something related to load module or unload module, seperating the 3 type of views just make sure they didn't share something.
    Can any expert help me figure this out? Many thanks.

    Use the profiler to see what is hanging onto the old memory.  But my main point is not about memory.  It is about sizes.  An empty container has no default size.  When it gets a child it often picks the child size, and then if that child is removed and another child is provided, instead of picking that new child’s size, it might still use the old child’s size, and that might cause the new child to layout at a different size than if it was the first child.

  • Weird issue with safari on iPad mini?

    I just had a weird issue with my safari web page, it stopped responding to my scrolling. I then tried coming out of it and going bad in again a couple of times, which still did not work. It then started jiggling around all over the place (jiggling is the only word I can use to describe it), it was as if you had clicked and held the page with a mouse and then started moving the page all over the place, or even like an earthquake on the page. The tab then closed. Can anyone explain this? Thanks.

    Quit Safari then reset your iPad.
    Double click the Home button to show the screen with running and recently used apps. Each app icon will have a sample page above it. Flick up on the page (not the app icon) and the page will fly away and the app icon will disappear. This quits that app. Then reset your device. Press and hold the Home and Sleep buttons simultaneously until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.

  • Gnome 3.16 resume from suspend weird issues

    After upgrade to gnome 3.16 with gnome-shell 3.16.1-2  and gdm 3.16.1.1-1, also with previous 3.16 versions, after I suspend to ram for some time and resume from it, the gdm window freezes and cannot input. After some tty switching using ctrl+alt+f1/f2/f3, the login window becomes usable slowly. And after I unlock it with password, the desktop and running applications shows just fine on tty2. But now when I switch to tty1, there is still a gdm login screen, if I login into it, tty2 shows, and switching to tty1 the gdm login is still there, still usable. Anyone see same things?
    Some gdm logs by  $ sudo journalctl -b|grep gdm
    Apr 20 17:52:54 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) config/udev: removing device AT Translated Set 2 keyboard
    Apr 20 17:52:54 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) evdev: AT Translated Set 2 keyboard: Close
    Apr 20 17:52:54 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) UnloadModule: "evdev"
    Apr 20 17:52:54 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: releasing fd for 13:70
    Apr 20 17:52:54 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (EE) systemd-logind: failed to release device: Device not taken
    Apr 20 17:52:54 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event6)
    Apr 20 17:52:54 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    Apr 20 17:52:54 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 44 paused 0
    Apr 20 17:52:54 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    Apr 20 17:52:54 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (**) AT Translated Set 2 keyboard: always reports core events
    Apr 20 17:52:54 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event6"
    Apr 20 17:52:54 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    Apr 20 17:52:54 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (--) evdev: AT Translated Set 2 keyboard: Found keys
    Apr 20 17:52:54 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    Apr 20 17:52:54 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input22/event6"
    Apr 20 17:52:54 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 14)
    Apr 20 17:52:54 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (**) Option "xkb_rules" "evdev"
    Apr 20 17:52:54 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (**) Option "xkb_model" "pc104"
    Apr 20 17:52:54 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (**) Option "xkb_layout" "us"
    Apr 20 17:55:20 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) AIGLX: Suspending AIGLX clients for VT switch
    Apr 20 17:55:21 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:67
    Apr 20 17:55:21 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:79
    Apr 20 17:55:21 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:77
    Apr 20 17:55:21 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:78
    Apr 20 17:55:21 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:65
    Apr 20 17:55:21 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:71
    Apr 20 17:55:21 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:72
    Apr 20 17:55:21 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 226:0
    Apr 20 17:55:21 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:69
    Apr 20 17:55:21 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:70
    Apr 20 17:55:21 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:80
    Apr 20 17:55:21 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:64
    Apr 20 17:55:21 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:68
    Apr 20 17:55:21 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (EE) xf86OpenSerial: Cannot open device /dev/input/event16
    Apr 20 17:55:21 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Permission denied.
    Apr 20 17:55:21 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (WW) synaptics: AlpsPS/2 ALPS GlidePoint: cannot open input device
    Apr 20 17:55:21 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: [dix] couldn't enable device 15
    Apr 20 17:55:54 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:67
    Apr 20 17:55:54 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:79
    Apr 20 17:55:54 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:77
    Apr 20 17:55:55 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:78
    Apr 20 17:55:55 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:65
    Apr 20 17:55:55 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:71
    Apr 20 17:55:55 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:72
    Apr 20 17:55:55 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 226:0
    Apr 20 17:55:55 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) AIGLX: Resuming AIGLX clients after VT switch
    Apr 20 17:55:55 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) intel(0): switch to mode [email protected] on VGA1 using pipe 0, position (0, 0), rotation normal, reflection none
    Apr 20 17:55:55 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:69
    Apr 20 17:55:55 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:70
    Apr 20 17:55:55 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:80
    Apr 20 17:55:55 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (--) synaptics: AlpsPS/2 ALPS GlidePoint: touchpad found
    Apr 20 17:55:55 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:64
    Apr 20 17:55:55 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:68
    Apr 20 17:55:56 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) intel(0): resizing framebuffer to 1920x2160
    Apr 20 17:55:56 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) intel(0): switch to mode [email protected] on VGA1 using pipe 1, position (0, 0), rotation normal, reflection none
    Apr 20 17:55:56 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 1080), rotation normal, reflection none
    Apr 20 17:55:58 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Activating service name='org.gnome.Shell.CalendarServer'
    Apr 20 17:55:58 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Activated service 'org.gnome.Shell.CalendarServer' failed: Process org.gnome.Shell.CalendarServer exited with status 127
    Apr 20 17:56:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) config/udev: removing device AT Translated Set 2 keyboard
    Apr 20 17:56:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) evdev: AT Translated Set 2 keyboard: Close
    Apr 20 17:56:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) UnloadModule: "evdev"
    Apr 20 17:56:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: releasing fd for 13:70
    Apr 20 17:56:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (EE) systemd-logind: failed to release device: Device not taken
    Apr 20 17:56:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) config/udev: Adding input device AT Translated Set 2 keyboard (/dev/input/event6)
    Apr 20 17:56:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (**) AT Translated Set 2 keyboard: Applying InputClass "evdev keyboard catchall"
    Apr 20 17:56:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got fd for /dev/input/event6 13:70 fd 44 paused 0
    Apr 20 17:56:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) Using input driver 'evdev' for 'AT Translated Set 2 keyboard'
    Apr 20 17:56:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (**) AT Translated Set 2 keyboard: always reports core events
    Apr 20 17:56:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (**) evdev: AT Translated Set 2 keyboard: Device: "/dev/input/event6"
    Apr 20 17:56:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (--) evdev: AT Translated Set 2 keyboard: Vendor 0x1 Product 0x1
    Apr 20 17:56:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (--) evdev: AT Translated Set 2 keyboard: Found keys
    Apr 20 17:56:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) evdev: AT Translated Set 2 keyboard: Configuring as keyboard
    Apr 20 17:56:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (**) Option "config_info" "udev:/sys/devices/platform/i8042/serio0/input/input24/event6"
    Apr 20 17:56:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) XINPUT: Adding extended input device "AT Translated Set 2 keyboard" (type: KEYBOARD, id 14)
    Apr 20 17:56:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (**) Option "xkb_rules" "evdev"
    Apr 20 17:56:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (**) Option "xkb_model" "pc104"
    Apr 20 17:56:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (**) Option "xkb_layout" "us"
    Apr 20 17:56:20 gsc-arch google-chrome.desktop[3249]: [3249:3249:0420/175620:ERROR:CONSOLE(0)] "XMLHttpRequest cannot load http://net.tsinghua.edu.cn/new.php?url=query.yahooapis.com. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'chrome-extension://mfgdmpfihlmdekaclngibpjhdebndhdj' is therefore not allowed access.", source: chrome-extension://mfgdmpfihlmdekaclngibpjhdebndhdj/newtab.html (0)
    Apr 20 17:56:27 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) AIGLX: Suspending AIGLX clients for VT switch
    Apr 20 17:56:27 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:67
    Apr 20 17:56:27 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:79
    Apr 20 17:56:27 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:77
    Apr 20 17:56:27 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:78
    Apr 20 17:56:27 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:65
    Apr 20 17:56:27 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:71
    Apr 20 17:56:27 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:72
    Apr 20 17:56:27 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 226:0
    Apr 20 17:56:27 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:69
    Apr 20 17:56:27 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:70
    Apr 20 17:56:27 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:80
    Apr 20 17:56:27 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:64
    Apr 20 17:56:27 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:68
    Apr 20 17:56:28 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (EE) xf86OpenSerial: Cannot open device /dev/input/event16
    Apr 20 17:56:28 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Permission denied.
    Apr 20 17:56:28 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (WW) synaptics: AlpsPS/2 ALPS GlidePoint: cannot open input device
    Apr 20 17:56:28 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: [dix] couldn't enable device 15
    Apr 20 17:56:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:67
    Apr 20 17:56:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:79
    Apr 20 17:56:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:77
    Apr 20 17:56:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:78
    Apr 20 17:56:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:65
    Apr 20 17:56:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:71
    Apr 20 17:56:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:72
    Apr 20 17:56:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 226:0
    Apr 20 17:56:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) AIGLX: Resuming AIGLX clients after VT switch
    Apr 20 17:56:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 1080), rotation normal, reflection none
    Apr 20 17:56:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) intel(0): switch to mode [email protected] on VGA1 using pipe 1, position (0, 0), rotation normal, reflection none
    Apr 20 17:56:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:69
    Apr 20 17:56:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (EE) xf86OpenSerial: Cannot open device /dev/input/event16
    Apr 20 17:56:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Permission denied.
    Apr 20 17:56:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (WW) synaptics: AlpsPS/2 ALPS GlidePoint: cannot open input device
    Apr 20 17:56:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: [dix] couldn't enable device 15
    Apr 20 17:56:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:70
    Apr 20 17:56:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (EE) xf86OpenSerial: Cannot open device /dev/input/event16
    Apr 20 17:56:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Permission denied.
    Apr 20 17:56:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (WW) synaptics: AlpsPS/2 ALPS GlidePoint: cannot open input device
    Apr 20 17:56:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: [dix] couldn't enable device 15
    Apr 20 17:56:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:80
    Apr 20 17:56:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (--) synaptics: AlpsPS/2 ALPS GlidePoint: touchpad found
    Apr 20 17:56:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:64
    Apr 20 17:56:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:68
    Apr 20 17:57:05 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Activating service name='org.gnome.ControlCenter.SearchProvider'
    Apr 20 17:57:05 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Activating service name='org.gnome.Calculator.SearchProvider'
    Apr 20 17:57:05 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Activating service name='org.gnome.clocks'
    Apr 20 17:57:05 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Activating service name='org.gnome.Documents'
    Apr 20 17:57:05 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Successfully activated service 'org.gnome.Calculator.SearchProvider'
    Apr 20 17:57:05 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Successfully activated service 'org.gnome.clocks'
    Apr 20 17:57:05 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Successfully activated service 'org.gnome.ControlCenter.SearchProvider'
    Apr 20 17:57:05 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Successfully activated service 'org.gnome.Documents'
    Apr 20 17:58:16 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) AIGLX: Suspending AIGLX clients for VT switch
    Apr 20 17:58:16 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:67
    Apr 20 17:58:16 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:79
    Apr 20 17:58:16 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:77
    Apr 20 17:58:16 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:78
    Apr 20 17:58:16 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:65
    Apr 20 17:58:16 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:71
    Apr 20 17:58:16 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:72
    Apr 20 17:58:16 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 226:0
    Apr 20 17:58:16 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:69
    Apr 20 17:58:16 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:70
    Apr 20 17:58:16 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:80
    Apr 20 17:58:16 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:64
    Apr 20 17:58:16 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:68
    Apr 20 17:58:16 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (EE) xf86OpenSerial: Cannot open device /dev/input/event16
    Apr 20 17:58:16 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Permission denied.
    Apr 20 17:58:16 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (WW) synaptics: AlpsPS/2 ALPS GlidePoint: cannot open input device
    Apr 20 17:58:16 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: [dix] couldn't enable device 15
    Apr 20 17:58:26 gsc-arch gdm-password][28218]: gkr-pam: unlocked login keyring
    Apr 20 17:58:26 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:67
    Apr 20 17:58:26 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:79
    Apr 20 17:58:26 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:77
    Apr 20 17:58:26 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:78
    Apr 20 17:58:26 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:65
    Apr 20 17:58:26 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:71
    Apr 20 17:58:26 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:72
    Apr 20 17:58:26 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 226:0
    Apr 20 17:58:26 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) AIGLX: Resuming AIGLX clients after VT switch
    Apr 20 17:58:26 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 1080), rotation normal, reflection none
    Apr 20 17:58:26 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) intel(0): switch to mode [email protected] on VGA1 using pipe 1, position (0, 0), rotation normal, reflection none
    Apr 20 17:58:26 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:69
    Apr 20 17:58:26 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (EE) xf86OpenSerial: Cannot open device /dev/input/event16
    Apr 20 17:58:26 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Permission denied.
    Apr 20 17:58:26 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (WW) synaptics: AlpsPS/2 ALPS GlidePoint: cannot open input device
    Apr 20 17:58:26 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: [dix] couldn't enable device 15
    Apr 20 17:58:26 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (EE) xf86OpenSerial: Cannot open device /dev/input/event16
    Apr 20 17:58:26 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Permission denied.
    Apr 20 17:58:26 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (WW) synaptics: AlpsPS/2 ALPS GlidePoint: cannot open input device
    Apr 20 17:58:26 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: [dix] couldn't enable device 15
    Apr 20 17:58:26 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:70
    Apr 20 17:58:26 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:80
    Apr 20 17:58:26 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (--) synaptics: AlpsPS/2 ALPS GlidePoint: touchpad found
    Apr 20 17:58:26 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:64
    Apr 20 17:58:26 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:68
    Apr 20 17:58:29 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) AIGLX: Suspending AIGLX clients for VT switch
    Apr 20 17:58:29 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:67
    Apr 20 17:58:29 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:79
    Apr 20 17:58:29 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:77
    Apr 20 17:58:29 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:78
    Apr 20 17:58:29 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:65
    Apr 20 17:58:29 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:71
    Apr 20 17:58:29 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:72
    Apr 20 17:58:29 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 226:0
    Apr 20 17:58:29 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:69
    Apr 20 17:58:29 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:70
    Apr 20 17:58:29 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:80
    Apr 20 17:58:29 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:64
    Apr 20 17:58:29 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:68
    Apr 20 17:58:29 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (EE) xf86OpenSerial: Cannot open device /dev/input/event16
    Apr 20 17:58:29 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Permission denied.
    Apr 20 17:58:29 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (WW) synaptics: AlpsPS/2 ALPS GlidePoint: cannot open input device
    Apr 20 17:58:29 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: [dix] couldn't enable device 15
    Apr 20 17:58:36 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:67
    Apr 20 17:58:36 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:79
    Apr 20 17:58:36 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:77
    Apr 20 17:58:36 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:78
    Apr 20 17:58:36 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:65
    Apr 20 17:58:36 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:71
    Apr 20 17:58:36 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:72
    Apr 20 17:58:36 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 226:0
    Apr 20 17:58:36 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) AIGLX: Resuming AIGLX clients after VT switch
    Apr 20 17:58:36 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 1080), rotation normal, reflection none
    Apr 20 17:58:36 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) intel(0): switch to mode [email protected] on VGA1 using pipe 1, position (0, 0), rotation normal, reflection none
    Apr 20 17:58:37 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:69
    Apr 20 17:58:37 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (EE) xf86OpenSerial: Cannot open device /dev/input/event16
    Apr 20 17:58:37 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Permission denied.
    Apr 20 17:58:37 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (WW) synaptics: AlpsPS/2 ALPS GlidePoint: cannot open input device
    Apr 20 17:58:37 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: [dix] couldn't enable device 15
    Apr 20 17:58:37 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:70
    Apr 20 17:58:37 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (EE) xf86OpenSerial: Cannot open device /dev/input/event16
    Apr 20 17:58:37 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Permission denied.
    Apr 20 17:58:37 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (WW) synaptics: AlpsPS/2 ALPS GlidePoint: cannot open input device
    Apr 20 17:58:37 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: [dix] couldn't enable device 15
    Apr 20 17:58:37 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:80
    Apr 20 17:58:37 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (--) synaptics: AlpsPS/2 ALPS GlidePoint: touchpad found
    Apr 20 17:58:37 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:64
    Apr 20 17:58:37 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:68
    Apr 20 18:04:56 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) AIGLX: Suspending AIGLX clients for VT switch
    Apr 20 18:04:56 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:67
    Apr 20 18:04:56 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:79
    Apr 20 18:04:56 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:77
    Apr 20 18:04:56 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:78
    Apr 20 18:04:56 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:65
    Apr 20 18:04:56 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:71
    Apr 20 18:04:56 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:72
    Apr 20 18:04:56 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 226:0
    Apr 20 18:04:56 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:69
    Apr 20 18:04:56 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:70
    Apr 20 18:04:56 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:80
    Apr 20 18:04:56 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:64
    Apr 20 18:04:56 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:68
    Apr 20 18:04:56 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (EE) xf86OpenSerial: Cannot open device /dev/input/event16
    Apr 20 18:04:56 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Permission denied.
    Apr 20 18:04:56 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (WW) synaptics: AlpsPS/2 ALPS GlidePoint: cannot open input device
    Apr 20 18:04:56 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: [dix] couldn't enable device 15
    Apr 20 18:04:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:67
    Apr 20 18:04:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:79
    Apr 20 18:04:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:77
    Apr 20 18:04:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:78
    Apr 20 18:04:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:65
    Apr 20 18:04:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:71
    Apr 20 18:04:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:72
    Apr 20 18:04:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 226:0
    Apr 20 18:04:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) AIGLX: Resuming AIGLX clients after VT switch
    Apr 20 18:04:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 1080), rotation normal, reflection none
    Apr 20 18:04:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) intel(0): switch to mode [email protected] on VGA1 using pipe 1, position (0, 0), rotation normal, reflection none
    Apr 20 18:04:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:69
    Apr 20 18:04:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (EE) xf86OpenSerial: Cannot open device /dev/input/event16
    Apr 20 18:04:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Permission denied.
    Apr 20 18:04:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (WW) synaptics: AlpsPS/2 ALPS GlidePoint: cannot open input device
    Apr 20 18:04:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: [dix] couldn't enable device 15
    Apr 20 18:04:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (EE) xf86OpenSerial: Cannot open device /dev/input/event16
    Apr 20 18:04:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Permission denied.
    Apr 20 18:04:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (WW) synaptics: AlpsPS/2 ALPS GlidePoint: cannot open input device
    Apr 20 18:04:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: [dix] couldn't enable device 15
    Apr 20 18:04:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:70
    Apr 20 18:04:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:80
    Apr 20 18:04:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (--) synaptics: AlpsPS/2 ALPS GlidePoint: touchpad found
    Apr 20 18:04:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:64
    Apr 20 18:04:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:68
    Apr 20 18:05:03 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) AIGLX: Suspending AIGLX clients for VT switch
    Apr 20 18:05:03 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:67
    Apr 20 18:05:03 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:79
    Apr 20 18:05:03 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:77
    Apr 20 18:05:03 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:78
    Apr 20 18:05:03 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:65
    Apr 20 18:05:03 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:71
    Apr 20 18:05:03 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:72
    Apr 20 18:05:03 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 226:0
    Apr 20 18:05:03 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:69
    Apr 20 18:05:03 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:70
    Apr 20 18:05:03 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:80
    Apr 20 18:05:03 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:64
    Apr 20 18:05:03 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:68
    Apr 20 18:05:04 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (EE) xf86OpenSerial: Cannot open device /dev/input/event16
    Apr 20 18:05:04 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Permission denied.
    Apr 20 18:05:04 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (WW) synaptics: AlpsPS/2 ALPS GlidePoint: cannot open input device
    Apr 20 18:05:04 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: [dix] couldn't enable device 15
    Apr 20 18:05:04 gsc-arch polkitd[28465]: Registered Authentication Agent for unix-session:c1 (system bus name :1.15 [gnome-shell --mode=gdm --wayland --display-server], object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale C)
    Apr 20 18:05:07 gsc-arch gdm-password][28475]: gkr-pam: unlocked login keyring
    Apr 20 18:05:07 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:67
    Apr 20 18:05:07 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:79
    Apr 20 18:05:07 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:77
    Apr 20 18:05:07 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:78
    Apr 20 18:05:07 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:65
    Apr 20 18:05:07 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:71
    Apr 20 18:05:07 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:72
    Apr 20 18:05:07 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 226:0
    Apr 20 18:05:07 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) AIGLX: Resuming AIGLX clients after VT switch
    Apr 20 18:05:07 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 1080), rotation normal, reflection none
    Apr 20 18:05:07 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) intel(0): switch to mode [email protected] on VGA1 using pipe 1, position (0, 0), rotation normal, reflection none
    Apr 20 18:05:07 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:69
    Apr 20 18:05:07 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (EE) xf86OpenSerial: Cannot open device /dev/input/event16
    Apr 20 18:05:07 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Permission denied.
    Apr 20 18:05:07 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (WW) synaptics: AlpsPS/2 ALPS GlidePoint: cannot open input device
    Apr 20 18:05:07 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: [dix] couldn't enable device 15
    Apr 20 18:05:07 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:70
    Apr 20 18:05:07 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (EE) xf86OpenSerial: Cannot open device /dev/input/event16
    Apr 20 18:05:07 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Permission denied.
    Apr 20 18:05:07 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (WW) synaptics: AlpsPS/2 ALPS GlidePoint: cannot open input device
    Apr 20 18:05:07 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: [dix] couldn't enable device 15
    Apr 20 18:05:07 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:80
    Apr 20 18:05:07 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (--) synaptics: AlpsPS/2 ALPS GlidePoint: touchpad found
    Apr 20 18:05:07 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:64
    Apr 20 18:05:07 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:68
    Apr 20 18:05:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) AIGLX: Suspending AIGLX clients for VT switch
    Apr 20 18:05:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:67
    Apr 20 18:05:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:79
    Apr 20 18:05:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:77
    Apr 20 18:05:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:78
    Apr 20 18:05:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:65
    Apr 20 18:05:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:71
    Apr 20 18:05:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:72
    Apr 20 18:05:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 226:0
    Apr 20 18:05:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:69
    Apr 20 18:05:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:70
    Apr 20 18:05:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:80
    Apr 20 18:05:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:64
    Apr 20 18:05:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got pause for 13:68
    Apr 20 18:05:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (EE) xf86OpenSerial: Cannot open device /dev/input/event16
    Apr 20 18:05:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Permission denied.
    Apr 20 18:05:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (WW) synaptics: AlpsPS/2 ALPS GlidePoint: cannot open input device
    Apr 20 18:05:10 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: [dix] couldn't enable device 15
    Apr 20 18:05:12 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:67
    Apr 20 18:05:12 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:79
    Apr 20 18:05:12 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:77
    Apr 20 18:05:12 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:78
    Apr 20 18:05:12 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:65
    Apr 20 18:05:12 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:71
    Apr 20 18:05:12 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:72
    Apr 20 18:05:12 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 226:0
    Apr 20 18:05:12 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) AIGLX: Resuming AIGLX clients after VT switch
    Apr 20 18:05:12 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) intel(0): switch to mode [email protected] on LVDS1 using pipe 0, position (0, 1080), rotation normal, reflection none
    Apr 20 18:05:12 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) intel(0): switch to mode [email protected] on VGA1 using pipe 1, position (0, 0), rotation normal, reflection none
    Apr 20 18:05:12 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:69
    Apr 20 18:05:12 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (EE) xf86OpenSerial: Cannot open device /dev/input/event16
    Apr 20 18:05:12 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Permission denied.
    Apr 20 18:05:12 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (WW) synaptics: AlpsPS/2 ALPS GlidePoint: cannot open input device
    Apr 20 18:05:12 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: [dix] couldn't enable device 15
    Apr 20 18:05:12 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (EE) xf86OpenSerial: Cannot open device /dev/input/event16
    Apr 20 18:05:12 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Permission denied.
    Apr 20 18:05:12 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (WW) synaptics: AlpsPS/2 ALPS GlidePoint: cannot open input device
    Apr 20 18:05:12 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: [dix] couldn't enable device 15
    Apr 20 18:05:12 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:70
    Apr 20 18:05:12 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:80
    Apr 20 18:05:12 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (--) synaptics: AlpsPS/2 ALPS GlidePoint: touchpad found
    Apr 20 18:05:13 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:64
    Apr 20 18:05:13 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: (II) systemd-logind: got resume for 13:68
    Apr 20 18:25:09 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Activating service name='org.gnome.ControlCenter.SearchProvider'
    Apr 20 18:25:09 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Activating service name='org.gnome.Calculator.SearchProvider'
    Apr 20 18:25:09 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Activating service name='org.gnome.clocks'
    Apr 20 18:25:09 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Activating service name='org.gnome.Documents'
    Apr 20 18:25:09 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Successfully activated service 'org.gnome.Calculator.SearchProvider'
    Apr 20 18:25:09 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Successfully activated service 'org.gnome.clocks'
    Apr 20 18:25:09 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Successfully activated service 'org.gnome.ControlCenter.SearchProvider'
    Apr 20 18:25:09 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Successfully activated service 'org.gnome.Documents'
    Apr 20 18:26:40 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Activating service name='org.gnome.ControlCenter.SearchProvider'
    Apr 20 18:26:40 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Activating service name='org.gnome.Calculator.SearchProvider'
    Apr 20 18:26:40 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Activating service name='org.gnome.clocks'
    Apr 20 18:26:40 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Activating service name='org.gnome.Documents'
    Apr 20 18:26:40 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Successfully activated service 'org.gnome.Calculator.SearchProvider'
    Apr 20 18:26:40 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Successfully activated service 'org.gnome.clocks'
    Apr 20 18:26:40 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Successfully activated service 'org.gnome.ControlCenter.SearchProvider'
    Apr 20 18:26:40 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Successfully activated service 'org.gnome.Documents'
    Apr 20 18:26:59 gsc-arch /usr/lib/gdm/gdm-wayland-session[968]: Reloaded configuration
    Apr 20 18:26:59 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Reloaded configuration
    Apr 20 18:27:25 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Activating service name='org.gnome.Terminal'
    Apr 20 18:27:25 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Successfully activated service 'org.gnome.Terminal'
    Apr 20 18:29:31 gsc-arch /usr/lib/gdm/gdm-wayland-session[968]: Reloaded configuration
    Apr 20 18:29:31 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Reloaded configuration
    Apr 20 18:29:33 gsc-arch /usr/lib/gdm/gdm-wayland-session[968]: Reloaded configuration
    Apr 20 18:29:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Reloaded configuration
    Apr 20 18:29:33 gsc-arch /usr/lib/gdm/gdm-wayland-session[968]: Reloaded configuration
    Apr 20 18:29:33 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Reloaded configuration
    Apr 20 18:29:41 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Activating service name='org.gnome.GConf'
    Apr 20 18:29:41 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Successfully activated service 'org.gnome.GConf'
    Apr 20 18:29:41 gsc-arch /usr/lib/gdm/gdm-wayland-session[968]: Reloaded configuration
    Apr 20 18:29:41 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Reloaded configuration
    Apr 20 18:29:41 gsc-arch /usr/lib/gdm/gdm-wayland-session[968]: Reloaded configuration
    Apr 20 18:29:41 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Reloaded configuration
    Apr 20 18:29:49 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Reloaded configuration
    Apr 20 18:29:49 gsc-arch /usr/lib/gdm/gdm-wayland-session[968]: Reloaded configuration
    Apr 20 18:29:49 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Reloaded configuration
    Apr 20 18:29:49 gsc-arch /usr/lib/gdm/gdm-wayland-session[968]: Reloaded configuration
    Apr 20 18:29:49 gsc-arch /usr/lib/gdm/gdm-wayland-session[968]: Reloaded configuration
    Apr 20 18:29:49 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Reloaded configuration
    Apr 20 18:29:49 gsc-arch /usr/lib/gdm/gdm-x-session[1195]: Reloaded configuration
    Last edited by xgdgsc (2015-04-20 10:33:44)

    BastardLawyerFromHell wrote:
    Got a similar weird issue - next to others. After waking up from suspend I've got a second Xorg-Session running on TTY2. This usually leads to a Xorg server crash.
    I'm not very satisfied with Gnome 3.16 these days.
    I reported a bug here: https://bugzilla.gnome.org/show_bug.cgi?id=748237

  • Weird Issue With Windows Live Mail

    I have a friend using Windows Live Mail and he's been having some weird issues with it. When he goes to forward an email, it will occasionally open the email up twice, which isn't a huge deal it's just more annoying than anything. I thought maybe there was
    some malware or other junk that could be causing it so I ran MBAM and got everything cleaned up but it's still happening. Any other thoughts on what could cause this?
    Thanks.

    Windows Live Mail support is found @
    https://login.live.com/login.srf?wa=wsignin1.0&rpsnv=12&ct=1410798892&rver=6.1.6206.0&wp=LBI&wreply=https:%2F%2Fanswers.microsoft.com%2Fen-us%2Fsite%2Fcompletesignin%3Fsilent%3DFalse&id=273572
    You must login to your Windows Live account and then Ask a Question.
    This forum is dedicated to the Windows 7 operating system.  Windows Live is not a feature of Windows 7 and Microsoft has established support for Windows Live Mail  @ the Microsoft Community found @
    http://answers.microsoft.com/en-us/windows/forum/windows_7-ecoms?auth=1
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • Is it better to use NUMBER or VARCHAR2 performance wise?

    Hi,
    maybe it's a silly question,
    but if i want to save a numeric code in my table is it better to use NUMBER or VARCHAR2, the code will never be use in any calculation.
    I'm asking this because i have an idea that is to use NUMBER for a column type only when that value will be used in mathmatic calculations of some sort, if it's not going to be used in calculation i use VARCHAR2.
    But other than my choice I've been wondering what is the best choice considering performance.
    Can you help?
    Best regards

    Sentinel wrote:
    Unless you need to preserve leading zeros, the number data type is the most appropriate data type to use for numeric data.I have to disagree I'm afraid.
    "Leading zeros" is a display issue and should not determine how you store your data on the database. If you need to display leading zeros, then that should be done at the front-end. You can't determine future requirements against the data (businesses change their minds) so you will give yourself problems of updating your data if you find the business decides that another area should display it with e.g. another 2 leading zeros or they don't want leading zeros etc. Never store numbers as varchar for display purposes.
    It's quite simple, if you are dealing with numbers, store them as numbers, if you are dealing with varchars store them as varchars, if you are dealing with dates and times, store them as date etc.
    As for performance, there is no noticable difference between the datatypes... it's all Binary data when you get down to machine code level.
    If you store numbers as varchar you could end up with other issues, apart from possible problems in calculations...
    Comparisons against numbers stored as varchar are notoriously problematic...
    SQL> select 'TRUE' from dual where '150' > '1000';
    'TRU
    TRUE
    SQL> select 'TRUE' from dual where '150' < '1000';
    no rows selected
    SQL>... and then the developer wonders why the data isn't being returned. ;)

  • I have been getting the wierdest, most ridiculous issues using PP 2014 here is a list:

    i have been getting the wierdest, most ridiculous issues using PP , 2014 here is a list:
    unsyncing single-source a/v when aplying effects.
    exporting the resynced clip to an even more out-of-sync clip
    freeze frame. when applying stabilizer, clip will just stall on a frame whereas before the effect, it didn't
    losing 2-3 hours of work due to auto-save failure. quitting premiere like normal but still having to force quit
    ramdom green frames that just suddenly appear
    constant crashing
    crashing without auto saving
    severe artifacting
    timeline, source, project thumbnails won't play
    toggle to previous/next edit point won't work
    significant, work-hidering issues in 90% of my project that collegues have never heard of
    pefferences will suddenly change. auto-save set to every 5 minutes and 100 versions will reset to default and audio scrubbing has just turned off
    no video, sound only during playback. freeze framing during playback
    pasting an item other than what was copied. copied a mask, pasted and mask of diferent size and shape
    inserting single frames between clips that i didn't add
    mixing unused video during transitions
    mixing unused video into masks.
    the above image is a mask that is being distorted by the image on the left below but it is only occuring in the mask.
    media pending sceen remains long after all content is loaded
    artifacting in the form of green pixel fields after exporting
    these issues are seriously hindering my ability to work. failed solutions i have run thru are:
    closing and reopening PP
    deleting render files and re-rendering
    replacing the distored clip with a  fresh clip
    rebuilding the mask
    restarting my computer
    PRAM and smc resets
    uninstalling and re-installing PP
    what is going on???

    Hi DV,
    Sorry you are having issues. FWIW, I also run a Mac and do not have these issues - however, I am still running OS X 10.8.5 on my personal machine.
    First of all, we need a lot more info: FAQ: What information should I provide when asking a question on this forum?
    deadvessel wrote:
    i have been getting the wierdest, most ridiculous issues using PP , 2014
    You say you are using "PP 2014," however, that is not precise enough. Which version of Premiere Pro CC 2014 are you using? 8.0.1, 8.1, or 8.2? Choose Premiere Pro > About Premiere Pro and look at the bottom of the dialog box. That will give you a precise version number.
    deadvessel wrote:
    Here is a list:
    Indeed, that's quite a list. My first suggestion is that you check out this article and perform the fixes there, if necessary: Premiere Pro CC, CC 2014, or 2014.1 freezing on startup or crashing while working (Mac OS X 10.9, and later) Are all the permissions set correctly?
    The other issue I see a lot is needlessly updating a project file in the middle of a project. The advice here is to avoid updating a project file to a new version of Premiere Pro as you work on it. Update before a new project is created.
    Try a test: update to Premiere Pro CC 2014.2 (8.2) and create a brand new project. Does it work better now?
    Thanks,
    Kevin

Maybe you are looking for

  • IPhone 2.0 exchange calendar sync issue with PUSH enabled

    I have setup Push sync over Exchange for my iPhone. If I accept an incoming meeting request it does not update Entourage calendar. If I change delivery setting to fetch, the issue disappears. Is this a known bug? BTW - several of my work colleagues h

  • How to load configuration files with to TestStand

    Hello, I need an expert advise on setting up Teststand environment. I am developing a generic tester that will eventually support multiple product lines. The PXI equipment is common but the Pin assignment will change from product to another. So, I wa

  • Problem in compiling in command line

    Hi! I used absolutelayout in my java programs, i have no problem running it on SunOne and NetBeans, but when i run it on a command prompt(DOS prompt) i encountered "no class definition error". I already checked the classpath and working directory but

  • Impact of Administrative time in Project plan

    Hi, Currently, I am using Project Server 2007. Can you please explain the impact of Administrative time?  We are thinking whether or not they can use the 'Plan Administrative Time' option within Project Server 2007 in order to indicate when they are

  • ITunes ePub on ADE....

    Hello, I was trying to put the ePub books I bought from iTunes on ADE but it is not letting me and says that there was an error encountered... Please help... Thank you.