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 json | |
import mimetypes | |
import subprocess | |
import sys | |
# Codec Reader for HTML Video Tags by Steve-Tech | |
# Usage: python3 codec-reader.py [-d] file_name | |
# Requires ffmpeg and ffprobe to be installed. | |
# | |
# Supported Codecs: |
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 | |
/** | |
* Plugin Name: Role-Based Page Editor Limitations | |
* Description: This plugin restricts editing capabilities of specific pages to certain user roles. It dynamically creates roles if they don't exist and assigns them editor capabilities. It then checks if a user with a specific role is trying to edit a page that they're not assigned to, and if so, it removes their editing capabilities for that page. Edit the $role_page_map array to specify which roles can edit which pages. | |
* Version: 1 | |
* Author: Greg R. | |
*/ | |
/* For example you want to make it so that some peolple at your company can edit /subpage/ and all the children under that page, so you can create a user role that restricts them to jus that section of the site. */ |
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 os | |
import cv2 | |
import matplotlib.pyplot as plt | |
from PIL import Image | |
# adjust these variables as necessary | |
dirname = "pix-for-crop" | |
put_dirname = "cropped" | |
simple_crop = False |
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 xml.etree.ElementTree as ET | |
# Parse the XML file and get the root | |
tree = ET.parse('wordpress_export.xml') | |
root = tree.getroot() | |
# Find the <channel> element | |
channel = root.find('channel') | |
total = 0 |
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 requests | |
import asyncio | |
from termcolor import cprint | |
from pyppeteer import launch | |
from pyppeteer_stealth import stealth | |
import subprocess | |
def page_content_vaild(page_content): | |
excluded_strings = ["Page Not Found", "Human Verification", "About Lynx"] |
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 | |
# Loop over all m4b files in the current directory | |
for input in *.m4b | |
do | |
# Print a message indicating the file being processed | |
echo "Processing file $input..." | |
# Use ffmpeg to convert the m4b file to a wav file | |
ffmpeg -i "$input" "${input%.*}.wav" |
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
function do_gutenberg( $content ) { | |
$output_rendered = ""; | |
$parsed_blocks = parse_blocks( $content ); | |
if ( $parsed_blocks ) { | |
foreach ( $parsed_blocks as $block ) { | |
$output_rendered .= apply_filters( 'the_content', render_block( $block ) ); | |
} | |
} | |
return ( $output_rendered ); | |
} |
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
from datetime import datetime | |
from skyfield.api import load | |
from skyfield.framelib import ecliptic_frame | |
from tzfpy import get_tz | |
import pytz | |
def human_moon(lat, lon): | |
ts = load.timescale() | |
# Get the current time in the specified timezone |
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 | |
// Dumps a database table out to the screen or out a csv file. | |
// add ?download=true to the url to download the file | |
// Database credentials, table, filename, and timezone | |
$db_host = ""; | |
$db_user = ""; | |
$db_pass = ""; | |
$db_name = ""; |
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 | |
/** | |
* Plugin Name: Gutenburger Upgrader | |
* Author: Greg R. | |
* Version: 0.0.1 | |
*/ | |
/* | |
This plugin tries to clean html up so that it can be directly converted into gutenberg as blocks. |
NewerOlder