As root
cd /var/discourse
nano containers/app.yml
Comment out these lines:
Matrix Synapse server error: Found users in database not native to my.domain!
delete FROM user_directory WHERE user_id NOT LIKE '%chat.my.domain%';
window { | |
background-color: #31363b; | |
} | |
#input { | |
margin: 5px; | |
border-radius: 0px; | |
border: none; | |
border-bottom: 3px; | |
background-color: #31363b; |
token=123456789etc
curl -X POST "https://pagure.io/api/0/-/whoami" \
-H "Authorization: token $TOKEN" \
-H "Content-Type: application/x-www-form-urlencoded"
MySQL command to get a list of all pages (decoded from binary) and show the date they were last modified (in YYYYMMDD etc) | |
select cast(page_title as CHAR),cast(page_touched as CHAR) from page ORDER BY page_touched ASC; |
To get mediawiki page names from MySQL use: | |
use db_name; | |
select page_id,cast(page_title as CHAR) from page; |
alsa-lib-devel | |
attr-devel | |
audiofile-devel | |
black-hole-solver-devel | |
check-devel | |
cmark-devel | |
cups-devel | |
cyrus-sasl-devel | |
dbus-glib-devel | |
dialog |
App: https://github.com/aristocratos/bashtop | |
#Bashtop theme with nord palette (https://www.nordtheme.com) | |
#by Justin Zobel <[email protected]> | |
# Colors should be in 6 or 2 character hexadecimal or single spaced rgb decimal: "#RRGGBB", "#BW" or "0-255 0-255 0-255" | |
# example for white: "#ffffff", "#ff" or "255 255 255". | |
# All graphs and meters can be gradients | |
# For single color graphs leave "mid" and "end" variable empty. |
Tint2 Nord Themed Panel Config | |
Tint2: https://gitlab.com/o9000/tint2 | |
Nord Palette: https://www.nordtheme.com | |
#---- Generated by tint2conf 2641 ---- | |
# See https://gitlab.com/o9000/tint2/wikis/Configure for | |
# full documentation of the configuration options. | |
#------------------------------------- | |
# Backgrounds |
#!/bin/bash | |
mkdir -p OpenOffice/data | |
tar xf Apache_OpenOffice_*_Linux_x86-64_install-deb_en-US.tar.gz | |
mv en-US/DEBS/*.deb OpenOffice/ | |
cd OpenOffice/ | |
for i in $(ls -1 openoffice*) | |
do | |
mkdir Deb-${i} | |
mv ${i} Deb-${i}/ | |
pushd Deb-${i} > /dev/null |