- 👋 Ciao! Sono @salvatorecapolupo
- 👀 Sito: https://salvatorecapolupo.github.io/about-me/
- 🌱 Insegno informatica, divulgo, scrivo
- 📫 Contatti: s.capolupo@gmail.com
- Su X: @sarbathory
🎯
Focusing
Insegnante. Laureato in ingegneria informatica, dottore di ricerca, ex assegnista di ricerca, ex consulente informatico. Scrivo sui libri e sui blog.
Pinned Loading
-
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 1SELECT a.ID, a.post_title, a.post_type, a.post_status
2FROM wp_posts AS a
3INNER JOIN (4SELECT post_title, MIN( id ) AS min_id
5FROM wp_posts -
Palyndrome dates generator (Javascript)
Palyndrome dates generator (Javascript) 1function palindrome(str) {
2// Step 1. Lowercase the string and use the RegExp to remove unwanted characters from it3var re = /[\W_]/g; // or var re = /[^A-Za-z0-9]/g;
45var lowRegStr = str.toLowerCase().replace(re, '');
-
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 utente2cd ~
34# Mostra le cartelle ordinate per peso5du -sh ~/* | sort -h
-
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 12## ## ## ## ## ## ## ## ## ## ## ## ## ## -3## ## wp_postmeta4## ## ## ## ## ## ## ## ## ## ## ## ## ## -5 -
Creare un video da un file MP3 con s...
Creare un video da un file MP3 con sincronizzazione labbra basica. 1import numpy as np
2import cv2
3import librosa
4from numba import jit
5import os
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.