This file contains hidden or 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
/etc/xdg/ubuntu-push-client/config.json | |
log_level to debug |
This file contains hidden or 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
Add this env var to the exe | |
QT_LOGGING_RULES=qt.qml.binding.removal.info=true |
This file contains hidden or 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
monitor Notifs: | |
dbus-monitor interface=org.freedesktop.Notifications | |
gdbus call --session --dest com.ubuntu.Postal --object-path /com/ubuntu/Postal/dekko2_2edekkoproject --method com.ubuntu.Postal.Post dekko2.dekkoproject_dekko \ | |
'"{\"message\": \"foobar\", \"notification\":{\"card\": {\"summary\": \"yes\", \"body\": \"hello\", \"popup\": true, \"persist\": true}}}"' | |
Avec son: | |
gdbus call --session --dest com.ubuntu.Postal --object-path /com/ubuntu/Postal/dekko2_2edekkoproject --method com.ubuntu.Postal.Post dekko2.dekkoproject_dekko \ | |
'"{\"message\": \"foobar\", \"notification\":{\"sound\": \"test.ogg\",\"card\": {\"summary\": \"yes\", \"body\": \"hello\", \"popup\": true, \"persist\": true}}}"' |
This file contains hidden or 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
Music app can't play imported file. | |
The File is well copied but no entry in MediaStore db. | |
watch inotify events: | |
inotifywait -rme modify,attrib,move,close_write,create,delete,delete_self /home/phablet/Music/Imported/2021/09/03 | |
QFile::rename + QFile::copy ( actual content-hub code contentItem.cpp/move method ) | |
/home/phablet/Music/Imported/2021/09/03/ CREATE 094451-pikatchu.wav | |
/home/phablet/Music/Imported/2021/09/03/ MODIFY 094451-pikatchu.wav | |
/home/phablet/Music/Imported/2021/09/03/ MODIFY 094451-pikatchu.wav |
This file contains hidden or 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
ssh into device | |
sudo mount -o rw,remount / | |
cd /usr/share/unity8/.... | |
sudo nano .... | |
restart unity8 |
This file contains hidden or 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
[XENIAL] | |
debug ofono: | |
sudo mount -o remount,rw / | |
sudo service ofono stop | |
Add `-d *` to the exec line in /etc/init/ofono.override => `exec ofonod -d *` | |
sudo service ofono start | |
It logs to `syslog` | |
If not possible to edit `ofono.override`, |
This file contains hidden or 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
#this test fails on my N5 devel: | |
#Pre-requisit: access UT device on terminal ( adb or ssh ) | |
#lanch this commands in UT: | |
#check the "object path" property from: | |
dbus-send --system --print-reply --dest=org.ofono / org.ofono.Manager.GetModems | |
#WARNING: those commands effectively interact with modem and trigger a call/hangup |
This file contains hidden or 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
Suru Design guidelines: https://snwh.org/ |
This file contains hidden or 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
https://github.com/lduboeuf/ut-qtcreator |
This file contains hidden or 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
FROM clickable/ubuntu-sdk:16.04-amd64 | |
RUN apt-get update && apt-get install -y git qtcreator libxrender1 gdb | |
CMD ["/usr/bin/qtcreator"] |