Skip to content

Instantly share code, notes, and snippets.

View bsawyer's full-sized avatar

Ben Sawyer bsawyer

  • Wayfair
  • Rhode Island
View GitHub Profile
@bsawyer
bsawyer / blob-jump.js
Last active June 5, 2020 08:35
Blob Jump is a side scrolling game you can play in your browsers URL bar. Add as a bookmarklet to play on any page.
(function(){
let running = false;
const levelLength = 42;
const startLevel = new Array(levelLength + 1).join('_');
let level = startLevel;
const hurdle = '‗';
const air = '■';
let jump = false;
let frame = 0;
let score = 0;

This is a very informal RFC draft

tl;dr I'm trying to write a protocol and URL scheme, one that uses existing protocols to make it easier to find web resources. This is not intended as a replacement for any existing protocols

What problem are you trying to address?

Being able to access a web resource by its intended name.

I'll use Datadog (no affiliation) as an example.