Skip to content
View daddiofaddio's full-sized avatar
Block or Report

Block or report daddiofaddio

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. sitemap-extract sitemap-extract Public template

    Processes XML sitemaps and extracts URLs. Includes features such as support for both plain XML and compressed XML files, multiple input sources, protection against anti-bot measures, multi-threadin…

    Python 1

  2. Python script - Rename extracted jso... Python script - Rename extracted json data files to match sanitized names of urls scraped; regex for batch renaming of suffixes, specific first names, etc.
    1
    import os
    2
    import re
    3
    import json
    4
    
                  
    5
    # Directory containing the JSON files
  3. Python - Extract & parse raw scraped... Python - Extract & parse raw scraped identification data and reformat to "human name" data values (nameparser/HumanName imports)
    1
    from nameparser import HumanName
    2
    import pandas as pd
    3
    
                  
    4
    def parse_names_from_file(input_file_path, output_file_path):
    5
        # Read the names from a file
  4. How to install ImageMagick with HEIC... How to install ImageMagick with HEIC and WEBP support on Ubuntu 20.04
    1
    # inspired by https://gist.github.com/rjnienaber/af47fccb8410926ba7ea35f96c3b87fd
    2
    
                  
    3
    # remove bundled ImageMagick
    4
    sudo apt remove imagemagick -y
    5
    
                  
  5. Woocommerce add Bootstrap5 styling t... Woocommerce add Bootstrap5 styling to checkout fields
    1
    /* WOO CHECKOUT FIELDS BS STYLING */
    2
    add_filter('woocommerce_checkout_fields', 'addBootstrapToCheckoutFields');
    3
    function addBootstrapToCheckoutFields($fields) {
    4
      foreach ($fields as & $fieldset) {
    5
        foreach ($fieldset as & $field) {
  6. Woocommerce remove & replace Select2... Woocommerce remove & replace Select2 styles with Bootstrap5
    1
    /* WOO REMOVE & REPLACE SELECT2 STYLES TO BS */
    2
    add_action('wp_enqueue_scripts', 'agentwp_dequeue_stylesandscripts', 100);
    3
    function agentwp_dequeue_stylesandscripts() {
    4
      if (class_exists('woocommerce')) {
    5
        wp_dequeue_style('selectWoo');