yarn or npm or node install error

I got an error while using npm or yarn which is based on node js. Error: dyld: Library not loaded: /usr/local/opt/icu4c/lib/libicui18n.58.dylib   Referenced from: /usr/local/bin/node   Reason: image not found Fix: Reinstall node js...

hashcat on OS X

git clone https://github.com/hashcat/hashcat.git mkdir -p hashcat/deps git clone https://github.com/KhronosGroup/OpenCL-Headers.git hashcat/deps/OpenCL cd hashcat/ make ./example0.sh  

escaping docker environment variables

This is the solution: Using single-quotes instead of double-quotes Escape the ampersand & to \& Not escaping the exclamation mark ! e.g. docker run -i -t –rm \ -e ‚LDAP_FILTER=(\&(objectCategory=person)(objectClass=user)‘ \ -e...
de_DEDeutsch