Skip to content

Instantly share code, notes, and snippets.

View aaronstpierre's full-sized avatar

Aaron St. Pierre aaronstpierre

View GitHub Profile
@aaronstpierre
aaronstpierre / settings.json
Created December 25, 2020 21:11 — forked from thomasmaurer/settings.json
My Windows Terminal Settings settings.json June 2020
// 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",

Keybase proof

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:

@aaronstpierre
aaronstpierre / remove-wpe-info.php
Created September 23, 2016 19:21 — forked from JPry/remove-wpe-info.php
Remove WP Engine info from WP Dashboard
<?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 );
}
/**