Γ bello, quando si hanno dati derivabili dalle proprie cose, poterli visualizzare con grafici intriganti… quindi, ecco qui.
Alcuni grafici sono generati grazie al plugin SQL Chart Builder, con una piccola modifica che rende visibile il codice sorgente SQL usato, che potete copiare!
Tag Cloud
3DS (17) ActivityPub (11) Android (31) API (13) app (33) applicazione (24) blog (9) bot (9) browser (28) bug (20) casino (12) codice (33) console (23) dati (18) Fediverso (10) feed (10) file (10) Firefox (11) foto (16) gaming (26) giocare (10) giochi (13) gioco (24) hack (11) HTML (15) idea (17) Internet (14) JavaScript (25) Linux (13) Mannaggia (44) meme (11) merda (9) MicroBlog (27) mobile (13) Nintendo (21) OpenSource (10) pazienza (10) piattaforma (14) plugin (14) post (18) problema (38) problemi (27) progetto (11) programma (16) programmazione (13) retro (9) ricerca (11) rogne (14) RSS (10) SalaMuseoGames (15) script (13) server (22) sito (27) smartphone (16) software (33) soldi (17) soluzione (14) telefono (16) Telegram (27) tempo (20) video (22) web (49) webapp (26) WordPress (27)
Post al Giorno (Mensile)
SQL Code
SELECT * FROM ( SELECT COUNT(*) AS postCount, SUBSTRING(`post_date_gmt`,1,10) AS postDate FROM avwp_posts WHERE post_type = "post" AND post_status = "publish" GROUP BY postDate ORDER BY postDate DESC LIMIT 31 ) AS _ ORDER BY postDate ASC;
Parole al Giorno (Mensile, approssimato)
SQL Code
SELECT * FROM ( SELECT -- https://stackoverflow.com/questions/41952250/sql-string-counting-words-inside-a-string SUM(LENGTH(REPLACE(REPLACE(REPLACE(post_content, " ", "><"), "<>", ""), "><", " ")) - LENGTH(REPLACE(REPLACE(REPLACE(REPLACE(post_content, " ", "><"), "<>", ""), "><", " "), " ", ""))) AS wordCount, SUBSTRING(`post_date_gmt`,1,10) AS postDate FROM avwp_posts WHERE post_type = "post" AND post_status = "publish" GROUP BY postDate ORDER BY postDate DESC LIMIT 31 ) AS _ ORDER BY postDate ASC;
Post al Giorno (Annuale)
SQL Code
SELECT * FROM ( SELECT COUNT(*) AS postCount, SUBSTRING(`post_date_gmt`,1,10) AS postDate FROM avwp_posts WHERE post_type = "post" AND post_status = "publish" GROUP BY postDate ORDER BY postDate DESC LIMIT 365 ) AS _ ORDER BY postDate ASC;