If your MySQL process is running, stop it. On Debian:
sudo service mysql stop
Go to your data folder. On Debian:
cd /var/lib/mysql/$DATABASE_NAME
https://forums.linuxmint.com/viewtopic.php?f=49&t=287775&p=1593262&hilit=SOLVED+USB+Ports+Working+Correctly#p1593262 | |
tldr: add on grub boot: quiet splash usbcore.autosuspend=-1 |
If your MySQL process is running, stop it. On Debian:
sudo service mysql stop
Go to your data folder. On Debian:
cd /var/lib/mysql/$DATABASE_NAME
(https://www.citrix.com/blogs/2016/04/07/using-the-crtl-key-with-citrix-receiver-for-linux/)[source]
On Ubuntu, you will need to use the dconf editor or gsettings to change the value:
gsettings set org.gnome.settings-daemon.peripherals.mouse locate-pointer false
OR
https://en.code-bude.net/2017/05/03/how-to-fix-ssl-error-61-in-citrix-web-receiver-on-linux/
sudo ln -s /usr/share/ca-certificates/mozilla/* /opt/Citrix/ICAClient/keystore/cacerts
undo:
cd /opt/Citrix/ICAClient/keystore/cacerts
sudo find -type l -delete
//search decks | |
document.getElementById("decktosearch").addEventListener("keyup", debounceSearchDeck); | |
const debounce = (callback, wait) => { | |
let timeoutId = null; | |
return (...args) => { | |
window.clearTimeout(timeoutId); | |
timeoutId = window.setTimeout(() => { | |
callback.apply(null, args); |
//https://stackoverflow.com/a/44821227/10829833 | |
function truncateString(text, count, insertDots){ | |
return text.slice(0, count) + (((text.length > count) && insertDots) ? "..." : ""); | |
} |
<?php | |
//https://stackoverflow.com/questions/4668628/truncate-float-numbers-with-php/12710283#12710283 | |
function truncate($val, $f="2"){ | |
if(($p = strpos($val, '.')) !== false) { | |
$val = floatval(substr($val, 0, $p + 1 + $f)); | |
} | |
return $val; | |
} |
sudo nano /var/lib/bluetooth/xx:xx:xx:xx:xx:xx/yy:yy:yy:yy:yy:yy/info
[ConnectionParameters]
MinInterval=6
MaxInterval=7
Latency=0
Timeout=216
google for ibus |