Skip to content

Instantly share code, notes, and snippets.

@michel47
michel47 / .gitattributes
Last active January 30, 2022 11:48
Timestamping artifacts (publication for hashes and verification data)
*.tgz filter=lfs diff=lfs merge=lfs -text
@michel47
michel47 / README.txt
Last active April 27, 2021 14:52
seed for a gist
seed for a gist !
@michel47
michel47 / README.md
Last active May 12, 2021 07:57
token discovery
@michel47
michel47 / README.md
Last active May 23, 2021 09:35
fairNet Charter
@michel47
michel47 / 200.html
Last active October 18, 2022 04:49
status code 200
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>200 - This page on your side of the Universe</title>
<!-- Google font -->
@michel47
michel47 / IRP-PromiseThen-example.html
Created June 3, 2021 20:03
Implicit Reference to Parameters (IRP)
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<script src=../lib/js/essential.js></script>
<title>Dependancy Acycling Graph using IRP method</title>
</head>
<body>
<h2>Dependancy Acycling Graph using IRP method</h2>
@michel47
michel47 / IRQ.yml
Last active June 8, 2021 08:38
IRQ line with IPFS
-
-
@michel47
michel47 / 200.html
Last active June 15, 2021 03:55
Redirected
<!DOCTTYPE html><meta charset=utf8><!-- white label redirector -->
<script>
console.info('location:',location)
let path= location.pathname.slice(1);
let fragment= location.hash.slice(1);
if (fragment.match(/^https?:/)) {
document.write(`redirect to: ${fragment}`)
location.href = fragment;
} else if (path.match(/^https?:/)) {
location.href = path;