Toggen Blog

Tech tips

Articles

Latest

Access

Blog History

Remove old trackback/pingbacks in WordPress

From the mysql command line client To see all your trackback/pingbacks SELECT * FROM wp_comments WHERE (comment_type = 'pingback' OR comment_type = 'trackback'); Narrow it down to a specific post SELECT * FROM wp_comments WHERE (comment_type = 'pingback' OR...

Getting the SHA512SUM using Powershell

Get-FileHash -Path ".\debian-13.2.0-amd64-netinst.iso" -Algorithm SHA512 | fl # output Algorithm : SHA512 Hash : 891D7936A2E21DF1D752E5D4C877BB7CA2759C902B0BFBF5527098464623BEDAA17260E8BD4ACF1331580AE56A6A87A08CC2F497102 DAA991D5E4E4018FEE82B Path :...