This repo contains a script that installs some basic tools and packages on a fresh Debian installation.
Pre-requisites: sudo, curl or wget
This script is meant to be run on a fresh Debian installation (tested on 12-Bookworm and 13-Trixie)
EntityChoiceList$manager (2nd) and $class (3th) arguments of ORMQueryBuilderLoaderORMQueryBuilderLoaderloader and property options of the DoctrineTypeSymfony\Component\HttpKernel\Log\LoggerInterface has been removed| mkdir /opt | |
| cd /opt | |
| wget https://github.com/AdguardTeam/AdGuardHome/releases/download/latest/AdGuardHome_linux_armv7.tar.gz | |
| tar -xzvf AdGuardHome_linux_armv7.tar.gz | |
| # grep -rn '/etc/' -e 'dnsmasq' | |
| # netstat -lnp | grep 'dnsmasq' | |
| echo "port=0" >> /etc/dhcpd/dhcpd-port-port.conf | |
| echo 'enable="yes"' > /etc/dhcpd/dhcpd-port-port.info | |
| echo "port=0" >> /etc/dhcpd/dhcpd.conf |
| sudo apt install php7.2-xdebug | |
| sudo find / -name 'xdebug.so' | |
| sudo gedit /etc/php/7.2/fpm/php.ini | |
| sudo gedit /etc/php/7.2/cli/php.ini | |
| sudo gedit /etc/php/7.2/cli/conf.d/20-xdebug.ini | |
| [Xdebug] | |
| ; путь к файлу so, который мы временно сохаринили на шаге раньше | |
| zend_extension=/usr/lib/php/20170718/xdebug.so | |
| ; остальные обязательные параметры | |
| xdebug.profiler_enable_trigger=1 |
Make sure these boxes are checked before submitting the PR
Past August 2024, Authy stopped supported the desktop version of their apps:
See Authy is shutting down its desktop app | The 2FA app Authy will only be available on Android and iOS starting in August for details.
And indeed, after a while, Authy changed something in their backend which now prevents the old desktop app from logging in. If you are already logged in, then you are in luck, and you can follow the instructions below to export your tokens.
If you are not logged in anymore, but can find a backup of the necessary files, then restore those files, and re-install Authy 2.2.3 following the instructions below, and it should work as expected.
| kubectl get pods | grep Evicted | awk '{print $1}' | xargs kubectl delete pod |
| extension SequenceType { | |
| func groupBy<Key: Hashable>(handler: (Generator.Element) -> Key) -> [Key: [Generator.Element]] { | |
| var grouped = [Key: Array<Generator.Element>]() | |
| self.forEach { item in | |
| let key = handler(item) | |
| if grouped[key] == nil { | |
| grouped[key] = [] | |
| } |
Make sure these boxes are checked before submitting/approving the PR