python --version
python3 --version
// Update Packages | |
sudo apt-get update && sudo apt-get -y upgrade && sudo apt dist-upgrade -y && sudo apt-get autoremove -y | |
// Setup Hostname | |
hostnamectl set-hostname subdomain.domain.tld | |
// Create Host Record | |
sudo nano /etc/hosts | |
// Add this line |
If error
Plugin installation failed
error: Python gobject/dbus may be not installed
error: Plug-in install failed.
Done.
On Linux Mint 20 before HP hplip setup you need install
PASS=yourcertificatemasterpassword | |
SUBJ=/C=PL/ST=MyState/L=MyLocation/O=MyOrganization/OU=MyOrganisationUnit/CN=localhost/emailAddress=admin@localhost | |
# Targets | |
localhostCA.crt: localhostCA.pem | |
openssl x509 \ | |
-in localhostCA.pem \ | |
-inform PEM \ | |
-out localhostCA.crt |
.elementor-widget-price-table, .elementor-widget-price-table>div, .elementor-price-table { | |
height: 100%; | |
} | |
.elementor-price-table { | |
display: -webkit-box; | |
display: -ms-flexbox; | |
display: flex; | |
-webkit-box-orient: vertical; | |
-webkit-box-direction: normal; |
<?php | |
/** | |
* Plugin Name: Elementor Form Additional Webhook | |
* Plugin URI: https://gist.github.com/csalzano/dfd754e0fe8b6ac10731fad8f257c0bf | |
* Description: Adds a second Webhook to an Elementor form | |
* Version: 1.0.1 | |
* Author: Corey Salzano | |
* Author URI: https://breakfastco.xyz/ | |
* License: GPLv2 or later | |
* License URI: http://www.gnu.org/licenses/gpl-2.0.html |
<?php | |
// Place this in your functions.php file | |
add_filter('wpcf7_form_action_url', 'wpcf7_custom_form_action_url'); | |
function wpcf7_custom_form_action_url(){ | |
return 'send.php';// replace this with the new action url (excluding the 'http://') | |
} | |
?> |
# Compiled source # | |
################### | |
*.com | |
*.class | |
*.dll | |
*.exe | |
*.o | |
*.so | |
# Packages # |
############################################################################### | |
## Monit control file | |
############################################################################### | |
## | |
## Comments begin with a '#' and extend through the end of the line. Keywords | |
## are case insensitive. All path's MUST BE FULLY QUALIFIED, starting with '/'. | |
## | |
## Below you will find examples of some frequently used statements. For | |
## information about the control file and a complete list of statements and | |
## options, please have a look in the Monit manual. |
package com.your.package; | |
import android.content.Context; | |
import android.preference.ListPreference; | |
import android.util.AttributeSet; | |
/** | |
* Created by Rafa Vázquez on 29/06/13. | |
* | |
* ListPreference item that shows its selected value as summary. |