Skip to content

Instantly share code, notes, and snippets.

View adamsilverstein's full-sized avatar
💭
Working remotely, as usual

Adam Silverstein adamsilverstein

💭
Working remotely, as usual
View GitHub Profile
@adamsilverstein
adamsilverstein / wp-image-tests.php
Last active July 22, 2024 14:24
test image processing
<?php
/**
* Profile image loading and resizing.
*
* @wordpress-plugin
* Plugin Name: Profile image processing
* Description: Profile image loading and resizing by mime format.
* Plugin URI: n/a
* Version: 1.0.0
* Author: Adam Silverstein, Google
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
<?php
/**
* Add Google tag to WordPress.
*
* @wordpress-plugin
* Plugin Name: google-tag-for-wp.
* Description: Add the Google tag to the header of a WordPress site.
* Plugin URI: n/a
* Version: 1.0.0
* Author: Adam Silverstein, Google
@adamsilverstein
adamsilverstein / output-webp-from-png.php
Last active June 5, 2024 15:49
Output WebP images from PNG uploads
<?php
/**
* Outout WebP sub size images from PNG uploads.
*
* @wordpress-plugin
* Plugin Name: WebP-from-PNG.
* Description: Output WebP sub size images for PNG uploads.
* Plugin URI:
* Version: 1.0.0
* Author: Adam Silverstein, Google
<?php
/**
* Disable password reset
*
* @wordpress-plugin
* Plugin Name: Disable password reset.
* Description: Disable password reset.
* Plugin URI:
* Version: 1.0.0
* Author: Adam Silverstein, Google
@adamsilverstein
adamsilverstein / yield-to-main.js
Last active January 9, 2024 20:59
Yield to main thread
/*
* Yielding method using scheduler.yield, falling back to setTimeout:
*/
async function yieldToMain() {
if('scheduler' in window && 'yield' in scheduler) {
return await scheduler.yield();
}
return new Promise(resolve => {
setTimeout(resolve, 0);
SELECT
*
FROM(
SELECT
JSON_VALUE(third_party, '$.entity') as entity,
CAST(APPROX_QUANTILES(CAST(JSON_QUERY(third_party, '$.blockingTime') AS FLOAT64), 100)[offset(75)] as INT64) as p75_blockingTime,
COUNT(page) as usage
FROM
`httparchive.all.pages`,
UNNEST(technologies) as technologies,
%%bigquery oembeds
WITH
WPEmbeds AS (
SELECT
url,
JSON_EXTRACT(payload, '$._cms.wordpress.has_embed_block') AS has_embed_block,
CAST( JSON_EXTRACT(payload, '$._cms.wordpress.embed_block_count.total') AS FLOAT64 ) AS embed_block_count_total,
JSON_EXTRACT_ARRAY(payload, '$._cms.wordpress.embed_block_count.total_by_type') AS embed_block_count_total_by_type,
FROM `httparchive.pages.2023_10_01_*`
%%bigquery bytype
WITH
embed_data AS (
SELECT
url,
JSON_EXTRACT(payload, '$._cms.wordpress.has_embed_block') AS has_embed_block,
CAST(JSON_EXTRACT(payload, '$._cms.wordpress.embed_block_count.total') AS FLOAT64)
AS embed_block_count_total,
JSON_EXTRACT(payload, '$._cms.wordpress.embed_block_count.total_by_type') AS embeds,
FROM `httparchive.pages.2023_10_01_desktop`