Uly.me

cloud engineer

  • Home
  • About
  • Archives
Home/Archives for disable

February 27, 2021

Disable Gutenberg

Two years ago, WordPress introduced Gutenberg block editor together with the release of WordPress version 5.0. Gutenberg essentially became the default editor starting with WordPress version 5.0. While many people love the Gutenberg editor, some people hate it. If you’re one of the many people who hate the Gutenberg editor, you can simply disable it by installing a plugin called Disable Gutenberg. This plugin will revert back to the classic editor.

Once installed, you should be able to see the Classic editor.

After working with Gutenberg for so long, I forgot the speed and agility of the classic editor. It’s much faster.

September 13, 2020

Disable Post Title in Genesis

Here’s how to disable the post title in Genesis WordPress themes. Add code in themes.php.

add_filter( 'genesis_link_post_title', '__return_false' );

add_filter( 'genesis_link_post_title', '__return_false' );

December 20, 2019

AWS CLI IAM Keys

Here’s a few commands to create, delete and disable AWS user keys.

List user keys.

aws iam list-access-keys --user-name john.doe

aws iam list-access-keys --user-name john.doe

Create access key. Results are printed on screen in JSON format.

aws iam create-access-key --user-name john.doe

aws iam create-access-key --user-name john.doe

Disable a key. The real key id is obfuscated.

aws iam update-access-key \
--access-key-id ******************** \
--status Inactive \
--user-name john.doe

aws iam update-access-key \ --access-key-id ******************** \ --status Inactive \ --user-name john.doe

Delete a key. They real key id is obfuscated.

aws iam delete-access-key \
--access-key-id ******************** \
--user-name john.doe

aws iam delete-access-key \ --access-key-id ******************** \ --user-name john.doe

June 28, 2019

Disable Falcon-Sensor

Here’s how to disable falcon-sensor or CrowdStrike.

systemctl stop falcon-sensor
systemctl disable falcon-sensor

systemctl stop falcon-sensor systemctl disable falcon-sensor

  • Cloud
  • Linux
  • Git

Copyright © 2012–2021