This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html><html lang="en"><meta charset="utf-8"> <title> Translation test </title> | |
| <style> | |
| body { margin: 1rem auto; max-width: 36rem; padding: 0 .3rem; } | |
| pre { font-size: x-small; } | |
| </style> | |
| <header> | |
| <h1> My translation test </h1> | |
| </header> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> <title> My-map </title> | |
| <h1> my-map Web Component </h1> | |
| <my-map lat="51.505" long="-0.09" zoom="13" caption="A map showing London landarks."></my-map> | |
| <template id="geojson"> | |
| { |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> <title> Pure CSS spinner </title> | |
| <style> | |
| /* | |
| https://developer.mozilla.org/en-US/docs/Web/CSS/color_value/hsl() | |
| https://developer.mozilla.org/en-US/docs/Web/CSS/color_value#fully_saturated_colors | |
| https://colordesigner.io/convert/hextohsl | |
| https://una.im/css-color-theming/ | |
| */ | |
| :root { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /*! Copyright © Nine Fives Software. | https://pinboard.in/tos/ | |
| */ | |
| javascript:q=location.href;if(document.getSelection){d=document.getSelection();}else{d='';};p=document.title;void(open('https://pinboard.in/add?url='+encodeURIComponent(q)+'&description='+encodeURIComponent(d)+'&title='+encodeURIComponent(p),'Pinboard','toolbar=no,width=700,height=350')); | |
| /* End. */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /** | |
| * A forward or reverse array iterator, with a test (PHP). | |
| * | |
| * @copyright Nick Freear, 12-July-2021. | |
| * | |
| * @see https://doc.wikimedia.org/mediawiki-core/master/php/ReverseArrayIterator_8php_source.html | |
| * @see https://github.com/wikimedia/mediawiki/blob/master/includes/libs/ReverseArrayIterator.php | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> <title> Chat & Bot icons </title> | |
| <style> | |
| body { margin: 1rem auto; max-width: 30rem; } | |
| svg { display: block; margin: 2rem auto; max-width: 125px; } | |
| .fa path, | |
| .icons8 path { fill: #014d4e; } /* Dark teal */ | |
| </style> | |
| <h1> Chat & Bot icons </h1> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!doctype html> <title> Alarm / notification in the background / JS </title> | |
| <style> | |
| body { margin: 1rem auto; max-width: 32rem; padding: 0 .5rem; } | |
| button { font-size: 1.5rem; padding: .5rem 3rem; } | |
| </style> | |
| <h1> Sending a notification when in background </h1> | |