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.

Maximum 250 characters. Please don’t include any personal information such as legal names or email addresses. Markdown is supported. This note will only be visible to 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. 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, '');
  3. Liberare spazio sul Mac: rilevare le... Liberare spazio sul Mac: rilevare le cartelle più grandi. Liberare spazio occupato da Python. Altri tutorial su https://pagare.online
    1
    # Vai nella tua cartella utente
    2
    cd ~
    3
    
                  
    4
    # Mostra le cartelle ordinate per peso
    5
    du -sh ~/* | sort -h
  4. Riparazione lettere accentate da DB ... Riparazione lettere accentate da DB MySQL. Tratto e ispirato da http://www.suseitalia.org/blog/cicciolinuks/2014/03/27/riparare-lettere-accentate-mysql
    1
    
                  
    2
    ## ## ## ## ## ## ## ## ## ## ## ## ## ## -
    3
    ## ## wp_postmeta
    4
    ## ## ## ## ## ## ## ## ## ## ## ## ## ## -
    5
    
                  
  5. Creare un video da un file MP3 con s... Creare un video da un file MP3 con sincronizzazione labbra basica.
    1
    import numpy as np
    2
    import cv2
    3
    import librosa
    4
    from numba import jit
    5
    import os