This file contains 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 | |
# Run this from Cron using @reboot - the script runs continiously | |
# Change your email address below | |
# Change pi.hole (Line 31) to your own PiHole Hostname | |
# Change search terms in the array below (Line 9) to whatever words you want to monitor | |
# Define the log file and search terms | |
LOG_FILE="/var/log/pihole/pihole.log" | |
SEARCH_TERMS="xvid|porn|hamster|gay|faphouse|boyfriend|xnxx|maletube|cock|chaturbate|stripchat|streamen|flirt|jizz|boys|2gochat|dragy|grindr|hoop|likee" | |
ALERT_EMAIL="[email protected]" # Replace with your email address |
This file contains 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
import ipaddress | |
import requests | |
import pandas as pd | |
def bot_ip_addresses(): | |
bots_urls = { | |
'google': 'https://developers.google.com/search/apis/ipranges/googlebot.json', | |
'bing': 'https://www.bing.com/toolbox/bingbot.json' | |
} |
This file contains 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
<?php | |
/** | |
* Adds first and last name to the registration field | |
*/ | |
function proper_add_user_reg_fields () { | |
?> | |
<p class="reg-email-validation"> | |
<label for="confirm_email_address"> |
This file contains 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
This requires | |
- ffmpeg.exe binary on your desktop | |
- video input file named input.mp4 | |
- audio file for timelapse called timelapsemusic.mp3 | |
- your finished timelapse will be called MYTIMELAPSE.mp4 | |
- change the username in cd C:\Users\Username\Desktop to your real username on windows | |
- Speed up or slow down the timelapse by changing the setpts=PTS/80 to a higher or lower value | |
- Example setpts=PTS/200 = very fast timelapse | |
- Example setpts=PTS/50 = slower timelapse | |
DO NOT COPY ANY OF THE ABOVE LINES INTO YOUR .bat file |
This file contains 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
// ====================================================================================== | |
// Notify user of product deletion | |
// Applies to any Woocommerce product but was written specifically for WCFM Marketplace | |
// Copyright Bjorn Patje & Mitchell Krog (thank you Bjorn) | |
// ====================================================================================== | |
// This sends an email to the owner (user) of a product when it is deleted / trashed | |
// The email uses simple html formatting and php variables | |
// Modify the contents of the $body varaible and $subject variable to your liking | |
// ====================================================================================== | |
add_action( 'delete_post', 'notification_for_product', 99 ); |
This file contains 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
/** | |
* Flatsome Theme | |
* Change Shop & Catalog Product Titles from <p> to <h2> | |
* Adjust to <h3> <h4> <h5> <h6> as you require. | |
*/ | |
if ( ! function_exists( 'woocommerce_template_loop_product_title' ) ) { | |
function woocommerce_template_loop_product_title() { | |
echo '<h2 class="name product-title ' . esc_attr( apply_filters( 'woocommerce_product_loop_title_classes', 'woocommerce-loop-product__title' ) ) . '">'; | |
woocommerce_template_loop_product_link_open(); |
This file contains 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
// CHANGE WOOCOMMERCE BACKORDER TEXT | |
// Here I have used a 3 line message with inline styles to change the color and add line breaks | |
// Adapt this as you see fit | |
// Use Code Snippets Plugin to add this function or add yourself to functions.php of your child theme | |
// https://wordpress.org/plugins/code-snippets/ | |
function mywoo_backorder_message( $text, $product ){ | |
if ( $product->managing_stock() && $product->is_on_backorder( 1 ) ) { | |
$text = __( '<strong><p style="color:green">New Stock is on its way !!!!<br>Backorder now - first come first served<br>Please allow 1 – 3 weeks for delivery of this item</p></strong><br>', 'your-textdomain' ); | |
} |
NewerOlder