Toggen Blog

Tech tips

Articles

Latest

Access

Blog History

MacOS github cruft cleaner

https://github.com/tw93/mole This is a command line utility that can be installed to clean the endless cruft that macos accumulates. brew install mole Run it with $ mo

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...