I hereby claim:
- I am jrtashjian on github.
- I am jrtashjian (https://keybase.io/jrtashjian) on keybase.
- I have a public key ASD3sj3gc-e2q-Zc83eigjc8OhJboImQ2Eejxj-tsu58aAo
To claim this, I am signing this object:
| <!-- wp:template-part {"slug":"header","theme":"h4x0r","tagName":"header","area":"header"} /--> | |
| <!-- wp:group {"tagName":"main","align":"full","layout":{"type":"constrained","justifyContent":"center"}} --> | |
| <main class="wp-block-group alignfull"><!-- wp:query-title {"type":"archive","textAlign":"center","showPrefix":false} /--> | |
| <!-- wp:query {"queryId":0,"query":{"perPage":18,"pages":0,"offset":"0","postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true},"align":"wide","layout":{"type":"default"}} --> | |
| <div class="wp-block-query alignwide"><!-- wp:query-no-results --> | |
| <!-- wp:paragraph --> | |
| <p>No posts were found.</p> | |
| <!-- /wp:paragraph --> |
| function pixelate( event ) { | |
| // Set pixel size. | |
| const pixelSize = 16; | |
| // Get original image dimensions. | |
| const element = event.target; | |
| const originalImageWidth = parseInt( element.getAttribute( 'width' ) ); | |
| const originalImageHeight = parseInt( element.getAttribute( 'height' ) ); | |
| // Create a canvas for rendering pixelated image. |
| #!/bin/sh | |
| NAGTOKEN="data.status.toLowerCase() !== 'active'" | |
| NAGFILE="/usr/share/javascript/proxmox-widget-toolkit/proxmoxlib.js" | |
| SCRIPT="$(basename "$0")" | |
| # Disable license nag | |
| if grep -qs "$NAGTOKEN" "$NAGFILE" > /dev/null 2>&1; then | |
| echo "$SCRIPT: Removing PVE Nag..." |
| registerBlockVariation( 'core/embed', { | |
| name: 'gist', | |
| title: 'Gist', | |
| patterns: [ /https?:\/\/gist\.github\.com.+/i ], | |
| attributes: { providerNameSlug: 'gist' }, | |
| isActive: () => [ 'providerNameSlug' ], | |
| } ); |
I hereby claim:
To claim this, I am signing this object:
| EVEONLINE_KEY=**your application key** | |
| EVEONLINE_SECRET=**your application secret** | |
| EVEONLINE_REDIRECT_URI=http://yourapp.tld/auth/eve/callback/ |
| <?php | |
| wp_register_script( | |
| 'gwg-block', | |
| GWG_ESNEXT_PLUGIN_URL . 'block.build.js', | |
| [ 'wp-blocks', 'wp-i18n', 'wp-data', 'wp-compose' ], | |
| GWG_ESNEXT_VERSION, | |
| true // Enqueue script in the footer. | |
| ); |
| > 1% | |
| ie >= 11 | |
| last 1 Android versions | |
| last 1 ChromeAndroid versions | |
| last 2 Chrome versions | |
| last 2 Firefox versions | |
| last 2 Safari versions | |
| last 2 iOS versions | |
| last 2 Edge versions | |
| last 2 Opera versions |
| <?php | |
| /** | |
| * Add a block category for "Get With Gutenberg" if it doesn't exist already. | |
| * | |
| * @param array $categories Array of block categories. | |
| * | |
| * @return array | |
| */ | |
| function gwg_block_categories( $categories ) { | |
| $category_slugs = wp_list_pluck( $categories, 'slug' ); |
| <?php | |
| function gwg_register_block_type() { | |
| if ( ! function_exists( 'register_block_type' ) ) { | |
| // Gutenberg is not active. | |
| return; | |
| } | |
| wp_register_style( | |
| 'gwg-style', |