8000 salvatorecapolupo (Salvatore Capolupo) · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content
View salvatorecapolupo's full-sized avatar
🎯
Focusing
🎯
Focusing

Block or report salvatorecapolupo

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
salvatorecapolupo/README.md

Pinned Loading

  1. WordPress find post duplicates via M... WordPress find post duplicates via MySQL query - Used to remove duplicated posts from WordPress - i.e https://www.lipercubo.it, https://capolooper.it
    1
    SELECT a.ID, a.post_title, a.post_type, a.post_status
    2
    FROM wp_posts AS a
    3
       INNER JOIN (
    4
          SELECT post_title, MIN( id ) AS min_id
    5
          FROM wp_posts
  2. HTACCESS standard senza HTTP/HTTPS m... HTACCESS standard senza HTTP/HTTPS mixed content - https://capolooper.it
    1
    ########################################################################
    2
    # OPTIMAL .htaccess FILE FOR SPEED AND SECURITY @Version 2020
    3
    # ----------------------------------------------------------------------
    4
    # @Author: Andreas Hecht
    5
    # @Author URI: https://seoagentur-hamburg.com
  3. insuperato insuperato Public archive

    Primeval puzzle game, never published before. Demo here: https://salvatorecapolupo.github.io/insuperato/

    CSS 1

  4. Emulate a Markov process in Python 3... Emulate a Markov process in Python 3, with a transition graph and an editable matrix. Source / Explanation: https://lipercubo.it/catene-di-markov.html
    1
    import random
    2
    import matplotlib.pyplot as plt
    3
    import networkx as nx
    4
    from matplotlib.animation import FuncAnimation
    5
    
                  
  5. MySQL conversion: from MyIsam to InnoDB MySQL conversion: from MyIsam to InnoDB
    1
    Step 1
    2
    SELECT CONCAT('ALTER TABLE ',TABLE_NAME,' ENGINE=InnoDB;') 
    3
    FROM INFORMATION_SCHEMA.TABLES 
    4
    WHERE ENGINE='MyISAM' AND table_schema = 'wordpress';
    5
    
                  
  6. Palyndrome dates generator (Javascript) Palyndrome dates generator (Javascript)
    1
    function palindrome(str) {
    2
      // Step 1. Lowercase the string and use the RegExp to remove unwanted characters from it
    3
      var re = /[\W_]/g; // or var re = /[^A-Za-z0-9]/g;
    4
      
    5
      var lowRegStr = str.toLowerCase().replace(re, '');
0