They should work. Works for all cores of your host system. Also you can download ESXi from here.
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| # 🚀 Discover More: Testing Your Firewall in 60 Seconds: A Lightweight WAF Testing Script That Anyone Can Use | |
| # Learn how this script works and the best practices for WAF testing. | |
| # Read the full article here: | |
| # 👉 https://medium.com/@kochuraa/testing-your-firewall-in-60-seconds-a-lightweight-waf-testing-script-that-anyone-can-use-a7a725fefcb7 | |
| # Safe WAF Tester Script | |
| # Usage: ./waf-smoke-test.sh <URL> [-o output.md] [-H "Header: Value"] | |
| # Examples: | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| set -x | |
| # This script with documentation is available at: https://gist.github.com/blazewicz/04e666ae1f25387c8b291d81b12c550c | |
| ## 1. install required dependencies with apt | |
| apt update && apt install python3-venv python3-dev libffi-dev libssl-dev | |
| ## 2. create directory for docker-compose's virtualenv | |
| mkdir -p /opt/local/docker-compose | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\.NETFramework\v2.0.50727] | |
| "SystemDefaultTlsVersions"=dword:00000001 | |
| "SchUseStrongCrypto"=dword:00000001 | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\.NETFramework\v4.0.30319] | |
| "SystemDefaultTlsVersions"=dword:00000001 | |
| "SchUseStrongCrypto"=dword:00000001 | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | git_current_branch () { | |
| local ref | |
| ref=$(command git symbolic-ref --quiet HEAD 2> /dev/null) | |
| local ret=$? | |
| if [[ $ret != 0 ]] | |
| then | |
| [[ $ret == 128 ]] && return | |
| ref=$(command git rev-parse --short HEAD 2> /dev/null) || return | |
| fi | |
| echo ${ref#refs/heads/} | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/usr/bin/perl | |
| # This file was written as an executable to be used in the auto report function | |
| # of csf and lfd. By replacing $YOUR_API_KEY below with your abuseipdb api key, | |
| # allows you to use this code to integrate your csf system with abuseipdb.com | |
| use strict; | |
| use warnings; | |
| use HTTP::Tiny; | |
| use JSON; | |
| # Gather the information from the commandline passed by lfd | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | cd /usr/local/src/ | |
| wget http://rep0.admin-ahead.com/sources/aast-ffmpeg-installer/2_0_4/sources/ffmpeg-php.tar.gz | |
| tar zxvf ffmpeg-php.tar.gz | |
| cd ffmpeg-php | |
| /opt/cpanel/ea-php56/root/usr/bin/phpize | |
| CFLAGS=-I/usr/local/ffmpeg/build/include LDFLAGS=-L/usr/local/ffmpeg/build/lib ./configure --with-ffmpeg=/usr/local/ffmpeg/build/ --with-php-config=/opt/cpanel/ea-php56/root/usr/bin/php-config | |
| make && make install | |
| echo "extension=ffmpeg.so" >> /opt/cpanel/ea-php56/root/etc/php.d/ffmpeg.ini | |
| /opt/cpanel/ea-php70/root/usr/bin/phpize | |
| CFLAGS=-I/usr/local/ffmpeg/build/include LDFLAGS=-L/usr/local/ffmpeg/build/lib ./configure --with-ffmpeg=/usr/local/ffmpeg/build/ --with-php-config=/opt/cpanel/ea-php70/root/usr/bin/php-config | 
Use your text editor of choice or if you don't have one use Windows Notepad
Opening with Notepad may or may not result in a fancy mess
- Close Spotify
- Open File Explorer and paste the following into the address bar %appdata%/Spotify¤
- Open the file named prefs with your text editor
- Change the numeric value following storage.size= . If storage.size= doesn't exist add it manually to the end of the file and assign numeric value. This value represents megabytes. One gigabyte equals 1024 megabytes. In the end, it should look something like this storage.size=1024
- Save the file
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | ### NON SSL | STANDARD HTTP | |
| server { | |
| listen 80; | |
| server_name domain.com; | |
| root /path/to/whmcs; | |
| index index.php index.html; | |
| access_log /var/log/nginx/domain.com.log combined; | |
| access_log /var/log/nginx/domain.com.bytes bytes; | |
| error_log /var/log/nginx/domain.com.error.log error; | |
| location / { | 
NewerOlder