View journalctl-gnome-shell.log
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Nov 07 23:21:10 localhost gnome-shell[3394]: JS WARNING: [resource:///org/gnome/shell/ui/main.js 315]: reference to undefined property "MetaStage" | |
Nov 07 23:21:10 localhost gnome-shell[3394]: JS WARNING: [resource:///org/gnome/shell/ui/layout.js 221]: reference to undefined property "MetaWindowGroup" | |
Nov 07 23:21:10 localhost gnome-shell[3394]: JS WARNING: [resource:///org/gnome/shell/ui/osdMonitorLabeler.js 59]: reference to undefined property "MetaDBusDisplayConfigSkeleton" | |
Nov 07 23:21:10 localhost org.gnome.Shell.desktop[3394]: current session already has an ibus-daemon. | |
Nov 07 23:21:10 localhost gnome-shell[3394]: JS WARNING: [resource:///org/gnome/shell/ui/slider.js 38]: reference to undefined property "CallyActor" | |
Nov 07 23:21:10 localhost gnome-shell[3394]: Telepathy is not available, chat integration will be disabled. | |
Nov 07 23:21:10 localhost gnome-shell[3394]: JS WARNING: [resource:///org/gnome/gjs/modules/tweener/tweener.js 540]: reference to undefined property "isSpecialProperty" | |
Nov 07 23:21:11 |
View gist:713aa101cd8ac00bbc7e4a6966979f8e
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
== RUN TestWebsocketChan_Broadcast | |
2017/11/16 08:50:26 timeout | |
2017/11/16 08:50:26 timeout | |
2017/11/16 08:50:26 timeout | |
2017/11/16 08:50:26 timeout |
View tick5
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# say something, with timestamp, every 5 seconds | |
while echo "$@"; do | |
sleep 5s | |
done |
View tick5.spec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Some metadata required by an RPM package | |
Name: tick5 | |
Summary: Print a message every 5s | |
Version: 0.1 | |
Release: 1 | |
License: MIT | |
%description | |
tick5 is a simple useless script that echos a message every 5 seconds. |
View tick5.service
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
StopWhenUnneeded=true | |
[Install] | |
WantedBy=multi-user.target | |
[Service] | |
ExecStart=/usr/bin/tick5 | |
Restart=always | |
RestartSec=5 |
View tick5.spec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Some metadata required by an RPM package | |
Name: tick5 | |
Summary: Print a message every 5s | |
Version: 0.1 | |
Release: 1 | |
License: MIT | |
%description | |
tick5 is a simple useless script that echos a message every 5 seconds. |
View control
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Package: tick5 | |
Maintainer: Koala Yeung | |
Architecture: all | |
Version: 0.1 | |
Description: Print a message every 5s | |
. | |
tick5 is a simple useless script that echos a message every 5 seconds. |
View tick5.spec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Variables that might be modified by maintainer easily. | |
%define name tick5 | |
%define version 0.1 | |
%define release 1 | |
%define systemdinstalldir /etc/systemd/system | |
%define message come on, James | |
# Some metadata required by an RPM package | |
Name: %name | |
Summary: Print a message every 5s |
View http_build_attribute.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Build HTML tag attributes string with a given array. | |
* | |
* Usage Example: | |
* echo '<img ' . http_build_attributes([ | |
* 'src' => 'some-image-url', | |
* 'class' => ['img-responsive', 'decorative'], | |
* ]); |
View example.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
include_once 'getGooglePageSpeedScreenshot.php'; | |
echo getGooglePageSpeedScreenshot($_GET['url']); | |
// Output: <img src="..." border="1" style="width: 80px; height: 80px" /> | |
echo getGooglePageSpeedScreenshot($_GET['url'], [ | |
'class' => 'thumbnail', | |
'style' => ['width: 80px;', 'height: 80px;'] |
OlderNewer