This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
| #/bin/bash | |
| # Clear all the installed files by Wacom Driver | |
| rm -rf /Applications/Wacom\ Tablet.localized | |
| rm -rf /Applications/Pen\ Tablet.localized | |
| rm -rf /Library/Application\ Support/Tablet | |
| rm -rf /Library/Extensions/Wacom\ Tablet.kext |
This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
| sudo rm -r /Applications/Wireshark.app | |
| sudo rm -r /Library/Wireshark | |
| sudo rm /Library/StartupItems/ChmodBPF | |
| sudo rm /Library/LaunchDaemons/org.wireshark.ChmodBPF.plist | |
| sudo rm /Library/Application\ Support/Wireshark/ChmodBPF/ChmodBF | |
| sudo rm /Library/Application\ Support/Wireshark/ChmodBPF/org.wireshark.ChmodBPF.plist | |
| sudo dscl . -delete /Groups/access_bpf |
| # Initialize the scroll | |
| page = es.search( | |
| index = 'yourIndex', | |
| doc_type = 'yourType', | |
| scroll = '2m', | |
| search_type = 'scan', | |
| size = 1000, | |
| body = { | |
| # Your query's body | |
| }) |