- set
gconftool-2 --type string --set /desktop/gnome/background/picture_filename /path/to/image.jpg - list
xfconf-query --channel xfce4-desktop --list
- set
pcmanfm --set-wallpaper="/your/background/file"
- dbus (?)
| # https://xdaforums.com/t/packages-which-are-safe-to-remove-and-a-few-problems.4006171 | |
| pm uninstall -k --user 0 com.android.browser # the default Browser | |
| pm uninstall -k --user 0 com.android.calendar #Mi Default Calendar | |
| pm uninstall -k --user 0 com.android.soundrecorder #This is the Recorder app. | |
| pm uninstall -k --user 0 com.facebook.appmanager # Facebook | |
| pm uninstall -k --user 0 com.facebook.katana # Facebook | |
| pm uninstall -k --user 0 com.facebook.services # Facebook | |
| pm uninstall -k --user 0 com.facebook.system # Facebook | |
| pm uninstall -k --user 0 com.mi.android.globalFileexplorer # the default Mi Explorer |
| #!/bin/sh | |
| case "$1" in | |
| post) | |
| for DEVICE_ID in `lspci -D |grep Audio|awk '{print $1}'` | |
| do | |
| echo 1 > /sys/bus/pci/devices/${DEVICE_ID}/remove | |
| done | |
| sleep 1 | |
| echo 1 > /sys/bus/pci/rescan |
| 0xe6C7971b7255212511A5dFeFc92F8E18755F9c7C |
| k delete customresourcedefinitions.apiextensions.k8s.io authservices.getambassador.io && \ | |
| k delete customresourcedefinitions.apiextensions.k8s.io consulresolvers.getambassador.io && \ | |
| k delete customresourcedefinitions.apiextensions.k8s.io devportals.getambassador.io && \ | |
| k delete customresourcedefinitions.apiextensions.k8s.io filterpolicies.getambassador.io && \ | |
| k delete customresourcedefinitions.apiextensions.k8s.io filters.getambassador.io && \ | |
| k delete customresourcedefinitions.apiextensions.k8s.io hosts.getambassador.io && \ | |
| k delete customresourcedefinitions.apiextensions.k8s.io kubernetesendpointresolvers.getambassador.io && \ | |
| k delete customresourcedefinitions.apiextensions.k8s.io kubernetesserviceresolvers.getambassador.io && \ | |
| k delete customresourcedefinitions.apiextensions.k8s.io logservices.getambassador.io && \ | |
| k delete customresourcedefinitions.apiextensions.k8s.io mappings.getambassador.io && \ |
| sudo true | |
| echo "Installing Ambianic.ai" | |
| sudo apt update -q && sudo apt install wget -y -q | |
| if ! type "docker" > /dev/null; then | |
| echo "Installing docker" | |
| wget -qO- https://get.docker.com/ | sh | |
| #sudo usermod -aG docker ${USER} | |
| fi |
| version: "3.7" | |
| services: | |
| ambianic-edge: | |
| container_name: ambianic-edge | |
| restart: unless-stopped | |
| privileged: true | |
| image: ambianic/ambianic-edge:latest | |
| network_mode: "host" | |
| devices: | |
| - "/dev/video0:/dev/video0" |
| ###################################### | |
| # Ambianic main configuration file # | |
| ###################################### | |
| version: '1.2.4' | |
| # path to the data directory | |
| data_dir: ./data | |
| # Set logging level to one of DEBUG, INFO, WARNING, ERROR | |
| logging: |
| apiVersion: networking.istio.io/v1alpha3 | |
| kind: Gateway | |
| metadata: | |
| name: httpbin-gateway | |
| spec: | |
| selector: | |
| istio: ingressgateway # use Istio default gateway implementation | |
| servers: | |
| - port: | |
| number: 80 |
| const baseUrl = "https://aal-programme-info-day-2020.b2match.io/participants" | |
| const data = require("./data.json") | |
| const participantRow = (participant) => { | |
| let { | |
| id, | |
| user, | |
| organisation_name, | |
| organisation_type, |