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 Loading

  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. pDNSf-Hosts-collection pDNSf-Hosts-collection Public

    Forked from j-moriarti/pDNSf-Hosts-collection

    My personalized Hosts file collection of various sources, cleaned and optimized specially for pDNSf

    Shell

  3. 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
  4. 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
  5. 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
    
                  
  6. Display username, message & avatar s... Display username, message & avatar shortcode with link to My Account page - conditional based on existing user fields
    1
    /* DISPLAY AVATAR & USER SHORTCODE - CONDITIONAL */
    2
    function display_current_user_shortcode()
    3
    {
    4
        global $current_user;
    5
        $user = wp_get_current_user();