With command npm list -g --depth=0
-g
filters global modules instead local ones.
depth=0
avoids list dependencies of installed modules
HTML+CSS+JS, Accesibilidad, PHP y más
With command npm list -g --depth=0
-g
filters global modules instead local ones.
depth=0
avoids list dependencies of installed modules
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
And add proper emojis from unicode-emoji
wget -mkEpnp http://example.org
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.
For RHEL 7, add EPEL repo:
yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
subscription-manager repos --enable "rhel-*-optional-rpms" --enable "rhel-*-extras-rpms" --enable "rhel-ha-for-rhel-*-server-rpms"
And install exfat packages:
yum install -y exfat-utils fuse fuse-exfat
For RHEL 8 EPEL repo is not completed yet. Repo can be added:
yum install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
But it will lack exfat packages, will need to compile from source (easy):
sudo -i
yum group install 'Development Tools'
yum install fuse-devel gcc autoconf automake git
cd /usr/local/src && git clone https://github.com/relan/exfat.git
cd exfat
autoreconf --install
./configure --prefix=/usr
make && make install
make clean
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
ffmpeg -i video.mp4 -i audio.m4a -c copy output.m4v
Get patches from commit previous to target:
git format-patch -1 <sha>
Or:
git format-patch -1 HEAD
And apply:
git am < file.patch
Add temporarily:
Add permanently (more info):
Array.prototype.indexOf.call(childNodes, childEl)