With command npm list -g –depth=0 -g filters global modules instead local ones. depth=0 avoids list dependencies of installed modules
Archivos del autor:jervert
Debian: Pidgin Hangouts
sudo apt-get install -y libpurple-dev libjson-glib-dev libglib2.0-dev libprotobuf-c-dev protobuf-c-compiler mercurial make; hg clone https://bitbucket.org/EionRobb/purple-hangouts/ && cd purple-hangouts; make && sudo make install Via EionRobb/purple-hangouts And add proper emojis from unicode-emoji
Download site with Wget
wget -mkEpnp http://example.org
ProtonVPN + Debian Buster/Bullseye
Mate/Gnome: sudo apt-get install openvpn resolvconf network-manager-openvpn-gnome KDE: sudo apt-get install openvpn resolvconf network-manager-openvpn After that, create new network with «import vpn» option in network manager and import config file provided by ProtonVPN.
RHEL: Add exfat support
For RHEL 7, add EPEL repo: And install exfat packages: For RHEL 8 EPEL repo is not completed yet. Repo can be added: But it will lack exfat packages, will need to compile from source (easy): From: https://access.redhat.com/solutions/70050
Instalar LAMP y Phpmyadmin en Debian 10 Buster
Interesantes artículos para instalar Apache/PHP/MariaDB en Debian 10. Especialmente útil el de instalación de PHPMyAdmin, ya que el paquete de Debian ha sido eliminado por falta de un debido mantenimiento. How to Install LAMP Stack on Debian 10 Buster Server/Desktop Install phpMyAdmin with Apache (LAMP) on Debian 10 Buster
Fusionar video y audio con ffmpeg
Create GIT patch from commits
Get patches from commit previous to target: git format-patch -1 <sha> Or: git format-patch -1 HEAD And apply: git am < file.patch
Debian, set max number of inotify watches
Add temporarily: Run sudo sysctl fs.inotify.max_user_watches=524288 (with preferred value at the end). Add permanently (more info): put fs.inotify.max_user_watches=524288 into your sysctl settings: /etc/sysctl.conf
Get Javascript DOM node index from node list
Array.prototype.indexOf.call(childNodes, childEl)