Blog code and general code release note system

February 22nd, 2025 – 8:19 pm
Tagged as: Computing Notes

Today’s site updates including removing the RSS feed links. Kinsta provided source code.1  The code for functions.php to remove it is: remove_action( ‘wp_head’, ‘feed_links_extra’, 3 ); remove_action( ‘wp_head’, ‘feed_links’, 2 ); Kinsta also provided another very useful function2 and that was one that removed the various update notifications in the dashboard. function kinsta_hide_update_nag() { remove_action( [...]

Rudimentary versioning system

October 19th, 2020 – 11:14 am
Tagged as: Computing Notes

Some time ago, Python 2 was the default language for use with Linux and Gnome 3. A set of extensions for Gnome, called Nautilus Python existed which allowed one to create customized right click menus. One of these was called “Historical Copy” and it created a lovely copy of the file with a timestamp inserted [...]