Skip to content

Instantly share code, notes, and snippets.

@Kroc
Kroc / web0.md
Last active August 25, 2023 23:29
A web-page specification for computers that predate the World Wide Web

Web0; A Specification -- DRAFT

Web0 ("web zero") is a World Wide Web for computers that pre-date Web 1.0.

Web0 is intended for 8-bit computers; newer machines can participate, but the spec is designed around a baseline of 8-bit hardware. This is because, whilst most 16-bit computers already have web-browsers that can be fed basic HTML through a proxy service such as http://frogfind.com, few 8-bit systems have browsers and struggle with even simple HTML due to assumptions in the design of HTML itself.

INCOMPLETE, DRAFT DOCUMENT

File all suggestions / complaints to kroc@camendesign.com

@Kroc
Kroc / .editorconfig
Created May 5, 2016 13:02
My <editorconfig.org> file
# ".editorconfig" is the best attempt at a standard we've had so far for
# specifying portable settings in text-editors; some editors support this out
# of the box, many have plugins -- see the website for details:
# <editorconfig.org>
#===============================================================================
# LICENSE: I assert no copyright on this file at all,
# it should be considered within the Public Domain
@gruber
gruber / Liberal Regex Pattern for Web URLs
Last active April 22, 2024 19:02
Liberal, Accurate Regex Pattern for Matching Web URLs
The regex patterns in this gist are intended only to match web URLs -- http,
https, and naked domains like "example.com". For a pattern that attempts to
match all URLs, regardless of protocol, see: https://gist.github.com/gruber/249502
# Single-line version:
(?i)\b((?:https?:(?:/{1,3}|[a-z0-9%])|[a-z0-9.\-]+[.](?:com|net|org|edu|gov|mil|aero|asia|biz|cat|coop|info|int|jobs|mobi|museum|name|post|pro|tel|travel|xxx|ac|ad|ae|af|ag|ai|al|am|an|ao|aq|ar|as|at|au|aw|ax|az|ba|bb|bd|be|bf|bg|bh|bi|bj|bm|bn|bo|br|bs|bt|bv|bw|by|bz|ca|cc|cd|cf|cg|ch|ci|ck|cl|cm|cn|co|cr|cs|cu|cv|cx|cy|cz|dd|de|dj|dk|dm|do|dz|ec|ee|eg|eh|er|es|et|eu|fi|fj|fk|fm|fo|fr|ga|gb|gd|ge|gf|gg|gh|gi|gl|gm|gn|gp|gq|gr|gs|gt|gu|gw|gy|hk|hm|hn|hr|ht|hu|id|ie|il|im|in|io|iq|ir|is|it|je|jm|jo|jp|ke|kg|kh|ki|km|kn|kp|kr|kw|ky|kz|la|lb|lc|li|lk|lr|ls|lt|lu|lv|ly|ma|mc|md|me|mg|mh|mk|ml|mm|mn|mo|mp|mq|mr|ms|mt|mu|mv|mw|mx|my|mz|na|nc|ne|nf|ng|ni|nl|no|np|nr|nu|nz|om|pa|pe|pf|pg|ph|pk|pl|pm|pn|pr|ps|pt|pw|py|qa|re|ro|rs|ru|rw|sa|sb|sc|sd|se|sg|sh|si|s
@jonathantneal
jonathantneal / iDevice.viewport.scaling.js
Created April 6, 2012 17:05
iDevice Viewport Scaling
/iPad|iPhone/.test(navigator.platform) && (function (window, document) {
var
width = 'width', height = 'height',
// get <html>
documentElement = document.documentElement,
// get fake <head>
fakeHead = document.createElement('head'),
// get orientation
orientation = window.orientation % 180,
// get scaling
@komlenic
komlenic / DOMElement.innerHTML.php
Created November 17, 2011 18:54
Get innerHTML of a php DOMElement
<?php
// See http://www.php.net/manual/en/class.domelement.php#101243
function get_inner_html( $node ) {
$innerHTML= '';
$children = $node->childNodes;
foreach ($children as $child) {
$innerHTML .= $child->ownerDocument->saveXML( $child );
}
return $innerHTML;