Skip to content

Instantly share code, notes, and snippets.

@henshaw
henshaw / qrcode.css
Created August 23, 2021 23:07
QR code CSS
.qrcode { display:none; }
/* Printer Friendly */
@media print {
.qrcode { display:block;text-align:center; }
}
@henshaw
henshaw / qrcode-link.html
Created August 23, 2021 23:06
QR code HTML output
@henshaw
henshaw / qrcode-link.php
Created August 23, 2021 23:04
QR code for WordPress template
@henshaw
henshaw / block-floc-wordpress.php
Last active September 29, 2021 03:51
Block FLoC in WordPress
// Disable FLoC
function disable_floc($headers) {
$headers['Permissions-Policy'] = 'interest-cohort=()';
return $headers;
}
add_filter('wp_headers', 'disable_floc');
@henshaw
henshaw / functions.php
Last active October 19, 2021 14:25
The WordPress HTTP header must have cache-control set to must-revalidate for Signed Exchanges (SXG) to work with Cloudflare on Google Search. This code must be added to the theme's functions.php file. Additionally, the Browser Cache TTL on Cloudflare must be set to Respect Existing Headers.
/**
* Add cache-control headers to response
*/
function add_cache_control_headers() {
if (!is_admin()) {
header("Cache-Control: public, must-revalidate, max-age=3600");
}
}
add_action( 'template_redirect', 'add_cache_control_headers' );
@henshaw
henshaw / basic-semantic.html
Last active December 9, 2021 23:27
Basic Semantic HTML Example
<html>
<head> <!— Contains Metadata —>
<title>Page Title</title>
</head>
<body> <!— Contains the body of the page —>
<h1>Page Heading</h1>
<p>A paragraph related to the heading</p>
</body>
</html>
@henshaw
henshaw / abbreviation.html
Created December 9, 2021 23:28
Abbreviation HTML Example
<abbr title="User Experience">UX</abbr>
@henshaw
henshaw / q-element.html
Last active December 9, 2021 23:31
<q> element example
<p>In the article, <cite>Ookla adds free <abbr title="Virtual Private Network">VPN</abbr> to Speedtest app for iOS</cite>, Jon Henshaw stated, <q cite="https://www.coywolf.news/productivity/ookla-speedtest-vpn/">virtual private networks (<abbr title="Virtual Private Networks">VPN</abbr>) are starting to become commonplace.</q></p>
@henshaw
henshaw / blockquote.html
Created December 9, 2021 23:32
<blockquote> HTML example
<p>In the article, <cite>Domain prices are unregulated and rising at an alarming rate</cite>, Jon Henshaw warns registrants about higher <abbr title="Generic Top-Level Domain">gTLD</abbr> prices.</p>
<blockquote cite="https://www.coywolf.news/webmaster/unregulated-domain-prices-rising/">
<p>The days of enjoying reasonably priced domain names may be coming to an end. Generic top-level domain (<abbr title="Generic Top-Level Domain">gTLD</abbr>) owners have been significantly raising their annual fees as their extensions gain in popularity.</p>
</blockquote>
@henshaw
henshaw / log-files.txt
Created December 9, 2021 23:35
Log file examples
5.255.250.75 - - [18/Dec/2019:02:56:35 +0000] "GET /test/blockquote.html HTTP/1.0" 200 353 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)"
5.255.250.75 - - [18/Dec/2019:10:20:12 +0000] "GET /test/q.html HTTP/1.0" 200 116 "-" "Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)"