I hereby claim:
- I am aaronstpierre on github.
- I am aaronstpierre (https://keybase.io/aaronstpierre) on keybase.
- I have a public key ASADjNHH4feOiwNfjuFQdzUM5jsHFReDXJCAIhbYH4CTego
To claim this, I am signing this object:
| #!/bin/bash | |
| # | |
| # rdn_add_ssh_key: | |
| # | |
| # Add SSH key to all sites on a rocket.net host. Doesn't check for errors (mostly) just blindly attempts to add | |
| # everywhere. Will not add if the key is already there. | |
| # | |
| // This file was initially generated by Windows Terminal 0.11.1121.0 | |
| // It should still be usable in newer versions, but newer versions might have additional | |
| // settings, help text, or changes that you will not see unless you clear this file | |
| // and let us generate a new one for you. | |
| // To view the default settings, hold "alt" while clicking on the "Settings" button. | |
| // For documentation on these settings, see: https://aka.ms/terminal-documentation | |
| { | |
| "$schema": "https://aka.ms/terminal-profiles-schema", |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| // Remove all evidence of WP Engine from the Dashboard, unless the logged in user is "wpengine" | |
| $user = wp_get_current_user(); | |
| if ( $user->user_login != 'wpengine' ) { | |
| add_action( 'admin_init', 'jpry_remove_menu_pages' ); | |
| add_action( 'admin_bar_menu', 'jpry_remove_admin_bar_links', 999 ); | |
| } | |
| /** |