I hereby claim:
- I am aaemnnosttv on github.
- I am aaemnnosttv (https://keybase.io/aaemnnosttv) on keybase.
- I have a public key ASDP8nGBRCckhApflbk_o4CWjs7CTtz4r5ZcLzP_jmSEvwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <title>Document</title> | |
| </head> | |
| <body> | |
| <style> | |
| html { |
| <?php | |
| /** | |
| * There are many possible ways to set this, but it can only be defined once. | |
| * | |
| * Using an environment variable by the same name | |
| * define( 'WP_ENV', getenv( 'WP_ENV' ) ); | |
| * | |
| * Matching the hostname | |
| * define( 'WP_ENV', 'example.com' == $_SERVER['SERVER_NAME'] ? 'production' : 'staging' ); | |
| */ |
| <?php | |
| /** | |
| * Prevent revslider from adding a query on every request. | |
| * | |
| * Calling `update_option('rs_tables_created', true)` causes | |
| * a database query to run since it's get_option value ("1") | |
| * does not match the value it is called to set it to. | |
| * | |
| * Since the query casts `true` to "1" the update query is run on every request as true !== '1'. |
| <?php | |
| /** | |
| * Filter for GravityForms to group select field choices by a special "optgroup" choice. | |
| * | |
| * Simply add a new choice with a value of 'optgroup' to the dropdown to start a group of options. | |
| * All following choices will be grouped under it using its label for the group. | |
| * Any number of groups can be created, as each optgroup choice will start a new group. | |
| * Supports field placeholder & ungrouped options, but must be before the first group. | |
| * | |
| * This snippet can be added to your theme's functions.php, or a custom plugin. |
Suppose you're opening an issue, pull request, or just leaving a comment and you have a lot of supporting content to provide, such as:
To optimize readability, wrap it in a `` tag!
| <?php | |
| /** | |
| * Plugin Name: Environment Configuration | |
| * Description: Enforces environment-specific settings for the current environment. | |
| */ | |
| namespace App\Environment; | |
| function disable_plugins( $disable_plugins ) { | |
| add_filter( |
| describe( 'level 0', () => { | |
| beforeAll( () => console.log( 'beforeAll', 'Level 0' ) ); | |
| afterAll( () => console.log( 'afterAll', 'Level 0' ) ); | |
| beforeEach( () => console.log( 'beforeEach', 'Level 0' ) ); | |
| afterEach( () => console.log( 'afterEach', 'Level 0' ) ); | |
| describe( 'level 1A', () => { | |
| beforeAll( () => console.log( 'beforeAll', 'Level 1A' ) ); | |
| afterAll( () => console.log( 'afterAll', 'Level 1A' ) ); | |
| beforeEach( () => console.log( 'beforeEach', 'Level 1A' ) ); |
| <?php // Save this in a file called "ray.php" | |
| return [ | |
| /* | |
| * The host used to communicate with the Ray app. | |
| */ | |
| 'host' => 'host.docker.internal', | |
| /* | |
| * The port number used to communicate with the Ray app. |
| <?php | |
| /** | |
| * Plugin Name: Site Kit by Google – IPv6 Support Helper | |
| * Description: Helper plugin for sites impacted by IPv6 connection issues. | |
| * Author: Evan Mattson | |
| * Version: 0.2 | |
| */ | |
| add_action( | |
| 'plugins_loaded', |