deploy: 0660137321
This commit is contained in:
parent
3a906e84ee
commit
6267559e48
@ -55,12 +55,14 @@ Economy as a form a expression</p>
|
||||
</main><footer>
|
||||
|
||||
</footer><!-- That file is not particularly elegant. This will need a refactor at some point. -->
|
||||
<div style="opacity: 0; display: none;" id='tooltip-wrapper' class="bg-white lh-copy">
|
||||
<div class="hide-child">
|
||||
<div id='tooltip-wrapper' class="bg-white lh-copy dn o-0 pa2 w5 f6 overflow-hidden absolute child">
|
||||
<div id='tooltip-content'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<iframe style="display: none; height: 0; width: 0;" id='link-preview-iframe' src="">
|
||||
<iframe class="dn" id="link-preview-iframe">
|
||||
</iframe>
|
||||
|
||||
<script src="/assets/js/d3.v6.min.js" defer></script>
|
||||
|
6
404.html
6
404.html
@ -29,12 +29,14 @@
|
||||
</main><footer>
|
||||
|
||||
</footer><!-- That file is not particularly elegant. This will need a refactor at some point. -->
|
||||
<div style="opacity: 0; display: none;" id='tooltip-wrapper' class="bg-white lh-copy">
|
||||
<div class="hide-child">
|
||||
<div id='tooltip-wrapper' class="bg-white lh-copy dn o-0 pa2 w5 f6 overflow-hidden absolute child">
|
||||
<div id='tooltip-content'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<iframe style="display: none; height: 0; width: 0;" id='link-preview-iframe' src="">
|
||||
<iframe class="dn" id="link-preview-iframe">
|
||||
</iframe>
|
||||
|
||||
<script src="/assets/js/d3.v6.min.js" defer></script>
|
||||
|
@ -19,12 +19,14 @@
|
||||
</main><footer>
|
||||
|
||||
</footer><!-- That file is not particularly elegant. This will need a refactor at some point. -->
|
||||
<div style="opacity: 0; display: none;" id='tooltip-wrapper' class="bg-white lh-copy">
|
||||
<div class="hide-child">
|
||||
<div id='tooltip-wrapper' class="bg-white lh-copy dn o-0 pa2 w5 f6 overflow-hidden absolute child">
|
||||
<div id='tooltip-content'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<iframe style="display: none; height: 0; width: 0;" id='link-preview-iframe' src="">
|
||||
<iframe class="dn" id="link-preview-iframe">
|
||||
</iframe>
|
||||
|
||||
<script src="/assets/js/d3.v6.min.js" defer></script>
|
||||
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -85,7 +85,7 @@ if (typeof graphData !== 'undefined') {
|
||||
const MAX_NODE_SIZE = 12
|
||||
const ACTIVE_RADIUS_FACTOR = 1.5
|
||||
const STROKE = 1
|
||||
const FONT_SIZE = 16
|
||||
const FONT_SIZE = 12
|
||||
const TICKS = 200
|
||||
const FONT_BASELINE = 40
|
||||
const MAX_LABEL_LENGTH = 50
|
||||
@ -120,35 +120,35 @@ if (typeof graphData !== 'undefined') {
|
||||
|
||||
const onMouseover = function (d) {
|
||||
const relatedNodesSet = new Set()
|
||||
const destinationID = d3.select(d.target).data()[0].id
|
||||
linksData
|
||||
.filter((n) => n.target.id === d.id || n.source.id === d.id)
|
||||
.filter((n) => n.target.id === destinationID || n.source.id === destinationID)
|
||||
.forEach((n) => {
|
||||
relatedNodesSet.add(n.target.id)
|
||||
relatedNodesSet.add(n.source.id)
|
||||
})
|
||||
|
||||
node.attr('class', (nodeD) => {
|
||||
if (nodeD.id !== d.id && !relatedNodesSet.has(nodeD.id)) {
|
||||
if (nodeD.id !== destinationID && !relatedNodesSet.has(nodeD.id)) {
|
||||
return 'inactive'
|
||||
}
|
||||
return ''
|
||||
})
|
||||
|
||||
link.attr('class', (linkD) => {
|
||||
if (linkD.source.id !== d.id && linkD.target.id !== d.id) {
|
||||
if (linkD.source.id !== destinationID && linkD.target.id !== destinationID) {
|
||||
return 'inactive'
|
||||
}
|
||||
return ''
|
||||
})
|
||||
|
||||
link.attr('stroke-width', (linkD) => {
|
||||
if (linkD.source.id === d.id || linkD.target.id === d.id) {
|
||||
if (linkD.source.id === destinationID || linkD.target.id === destinationID) {
|
||||
return STROKE * 2
|
||||
}
|
||||
return STROKE
|
||||
})
|
||||
text.attr('class', (textD) => {
|
||||
if (textD.id !== d.id && !relatedNodesSet.has(textD.id)) {
|
||||
if (textD.id !== destinationID && !relatedNodesSet.has(textD.id)) {
|
||||
return 'inactive'
|
||||
}
|
||||
return ''
|
||||
@ -166,6 +166,7 @@ if (typeof graphData !== 'undefined') {
|
||||
const element = document.createElementNS('http://www.w3.org/2000/svg', 'svg')
|
||||
element.setAttribute('width', graphWrapper.getBoundingClientRect().width)
|
||||
element.setAttribute('height', window.innerHeight * 0.8)
|
||||
element.classList.add('absolute', 'vh-100')
|
||||
graphWrapper.appendChild(element)
|
||||
|
||||
const reportWindowSize = () => {
|
||||
@ -190,7 +191,7 @@ if (typeof graphData !== 'undefined') {
|
||||
d3
|
||||
.forceLink(linksData)
|
||||
.id((d) => d.id)
|
||||
.distance(70)
|
||||
.distance(100)
|
||||
)
|
||||
.force('center', d3.forceCenter(width / 2, height / 2))
|
||||
.force('collision', d3.forceCollide().radius(80))
|
||||
@ -231,10 +232,17 @@ if (typeof graphData !== 'undefined') {
|
||||
.attr('x', (d) => d.x)
|
||||
.attr('y', (d) => d.y - (FONT_BASELINE - nodeSize[d.id]) / zoomLevel)
|
||||
link
|
||||
.attr('x1', (d) => d.source.x)
|
||||
.attr('y1', (d) => d.source.y)
|
||||
.attr('x2', (d) => d.target.x)
|
||||
.attr('y2', (d) => d.target.y)
|
||||
.attr('d', (d) => {
|
||||
const dx = d.target.x - d.source.x
|
||||
const dy = d.target.y - d.source.y
|
||||
const dr = Math.sqrt(dx * dx + dy * dy)
|
||||
return 'M' +
|
||||
d.source.x + ',' +
|
||||
d.source.y + 'A' +
|
||||
dr + ',' + dr + ' 0 0,1 ' +
|
||||
d.target.x + ',' +
|
||||
d.target.y
|
||||
})
|
||||
}
|
||||
|
||||
const restart = () => {
|
||||
@ -254,7 +262,7 @@ if (typeof graphData !== 'undefined') {
|
||||
|
||||
link = link.data(linksData, (d) => `${d.source.id}-${d.target.id}`)
|
||||
link.exit().remove()
|
||||
link = link.enter().append('line').attr('stroke-width', STROKE).merge(link)
|
||||
link = link.enter().append('path').attr('stroke-width', STROKE).merge(link)
|
||||
|
||||
text = text.data(nodesData, (d) => d.label)
|
||||
text.exit().remove()
|
||||
|
40
bentway.html
40
bentway.html
@ -8,13 +8,13 @@
|
||||
<link rel="stylesheet" href="/assets/css/style.css"><link type="application/atom+xml" rel="alternate" href="/feed.xml" title="Digital Garden" /></head><body class="dark-green sans-serif links-dark-green bg-washed-green"><header class="f-6 flex"><a class="no-underline-hover" rel="author" href="/">Digital Garden</a><nav>, <a class="no-underline-hover" href="/about/">About</a>, <a class="no-underline-hover" href="/colophon/">Colophon</a></nav></header><main aria-label="Content">
|
||||
<div class="flex">
|
||||
<article class="w-50">
|
||||
<div>
|
||||
<header class="mb2">
|
||||
<h1>Bentway</h1>
|
||||
<time datetime="2021-03-15T19:49:03+00:00">
|
||||
<time class="code dib f7 ph3 pv2 ba br-pill" datetime="2021-03-15T22:22:28+00:00">
|
||||
Last updated on March 15, 2021
|
||||
|
||||
</time>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div id="notes-entry-container">
|
||||
<div class="note-contents lh-copy">
|
||||
@ -22,28 +22,30 @@
|
||||
|
||||
</div>
|
||||
|
||||
<side>
|
||||
<h3>Notes mentioning this note</h3>
|
||||
<aside class="bt b--dark-green">
|
||||
<h3 class="mb3">Notes mentioning this note</h3>
|
||||
|
||||
<div class="flex">
|
||||
|
||||
<div>
|
||||
<p>
|
||||
There are no notes linking to this note.
|
||||
</p>
|
||||
<div class="w-50 mr2 pa2 ba b--dark-green br3">
|
||||
<h4 class="mt0 mb2"><a class="internal-link" href="/statement-of-intent">Statement of Intent</a></h4>
|
||||
<div class="f7 lh-copy">Hypha’s practice is situated across many topics that are present in the theme of Adaptive Reuse & Creative Misuse. Drawing...</div>
|
||||
</div>
|
||||
|
||||
</side>
|
||||
</div>
|
||||
|
||||
</aside>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="w-50">
|
||||
|
||||
<p>Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
|
||||
<div id="zoom"></div>
|
||||
<div id="graph-wrapper">
|
||||
<div class="absolute bottom-1">
|
||||
<p class="ma0 f7 measure-narrow lh-copy">Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
</div>
|
||||
<div id="zoom" class="absolute code f7 bottom-1 right-1"></div>
|
||||
<div id="graph-wrapper" class="code f6">
|
||||
<script>
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"24831158218"},{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
@ -51,12 +53,14 @@
|
||||
</main><footer>
|
||||
|
||||
</footer><!-- That file is not particularly elegant. This will need a refactor at some point. -->
|
||||
<div style="opacity: 0; display: none;" id='tooltip-wrapper' class="bg-white lh-copy">
|
||||
<div class="hide-child">
|
||||
<div id='tooltip-wrapper' class="bg-white lh-copy dn o-0 pa2 w5 f6 overflow-hidden absolute child">
|
||||
<div id='tooltip-content'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<iframe style="display: none; height: 0; width: 0;" id='link-preview-iframe' src="">
|
||||
<iframe class="dn" id="link-preview-iframe">
|
||||
</iframe>
|
||||
|
||||
<script src="/assets/js/d3.v6.min.js" defer></script>
|
||||
|
@ -17,12 +17,14 @@
|
||||
</main><footer>
|
||||
|
||||
</footer><!-- That file is not particularly elegant. This will need a refactor at some point. -->
|
||||
<div style="opacity: 0; display: none;" id='tooltip-wrapper' class="bg-white lh-copy">
|
||||
<div class="hide-child">
|
||||
<div id='tooltip-wrapper' class="bg-white lh-copy dn o-0 pa2 w5 f6 overflow-hidden absolute child">
|
||||
<div id='tooltip-content'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<iframe style="display: none; height: 0; width: 0;" id='link-preview-iframe' src="">
|
||||
<iframe class="dn" id="link-preview-iframe">
|
||||
</iframe>
|
||||
|
||||
<script src="/assets/js/d3.v6.min.js" defer></script>
|
||||
|
@ -8,13 +8,13 @@
|
||||
<link rel="stylesheet" href="/assets/css/style.css"><link type="application/atom+xml" rel="alternate" href="/feed.xml" title="Digital Garden" /></head><body class="dark-green sans-serif links-dark-green bg-washed-green"><header class="f-6 flex"><a class="no-underline-hover" rel="author" href="/">Digital Garden</a><nav>, <a class="no-underline-hover" href="/about/">About</a>, <a class="no-underline-hover" href="/colophon/">Colophon</a></nav></header><main aria-label="Content">
|
||||
<div class="flex">
|
||||
<article class="w-50">
|
||||
<div>
|
||||
<header class="mb2">
|
||||
<h1>Digital Public Garden</h1>
|
||||
<time datetime="2021-03-15T19:49:03+00:00">
|
||||
<time class="code dib f7 ph3 pv2 ba br-pill" datetime="2021-03-15T22:22:28+00:00">
|
||||
Last updated on March 15, 2021
|
||||
|
||||
</time>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div id="notes-entry-container">
|
||||
<div class="note-contents lh-copy">
|
||||
@ -22,30 +22,30 @@
|
||||
|
||||
</div>
|
||||
|
||||
<side>
|
||||
<h3>Notes mentioning this note</h3>
|
||||
<aside class="bt b--dark-green">
|
||||
<h3 class="mb3">Notes mentioning this note</h3>
|
||||
|
||||
<div>
|
||||
<div class="flex">
|
||||
|
||||
<div class="backlink-box">
|
||||
<a class="internal-link b" href="/statement-of-intent">Statement of Intent</a><br>
|
||||
<div class="lh-copy">[[Hypha]]’s practice is situated across many topics that are present in the theme of Adaptive Reuse & Creative Misuse. Drawing...</div>
|
||||
<div class="w-50 mr2 pa2 ba b--dark-green br3">
|
||||
<h4 class="mt0 mb2"><a class="internal-link" href="/statement-of-intent">Statement of Intent</a></h4>
|
||||
<div class="f7 lh-copy">Hypha’s practice is situated across many topics that are present in the theme of Adaptive Reuse & Creative Misuse. Drawing...</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</side>
|
||||
</aside>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="w-50">
|
||||
|
||||
<p>Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
|
||||
<div id="zoom"></div>
|
||||
<div id="graph-wrapper">
|
||||
<div class="absolute bottom-1">
|
||||
<p class="ma0 f7 measure-narrow lh-copy">Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
</div>
|
||||
<div id="zoom" class="absolute code f7 bottom-1 right-1"></div>
|
||||
<div id="graph-wrapper" class="code f6">
|
||||
<script>
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"24831158218"},{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
@ -53,12 +53,14 @@
|
||||
</main><footer>
|
||||
|
||||
</footer><!-- That file is not particularly elegant. This will need a refactor at some point. -->
|
||||
<div style="opacity: 0; display: none;" id='tooltip-wrapper' class="bg-white lh-copy">
|
||||
<div class="hide-child">
|
||||
<div id='tooltip-wrapper' class="bg-white lh-copy dn o-0 pa2 w5 f6 overflow-hidden absolute child">
|
||||
<div id='tooltip-content'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<iframe style="display: none; height: 0; width: 0;" id='link-preview-iframe' src="">
|
||||
<iframe class="dn" id="link-preview-iframe">
|
||||
</iframe>
|
||||
|
||||
<script src="/assets/js/d3.v6.min.js" defer></script>
|
||||
|
2
feed.xml
2
feed.xml
@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.2.0">Jekyll</generator><link href="/feed.xml" rel="self" type="application/atom+xml" /><link href="/" rel="alternate" type="text/html" /><updated>2021-03-15T19:49:27+00:00</updated><id>/feed.xml</id><title type="html">Digital Garden</title><subtitle>A digital garden or public notebook for The Bentway’s Digital and/as Public Space Micro-Residency.</subtitle><entry><title type="html">Initial Seeds</title><link href="/2021/03/01/initial-seeds/" rel="alternate" type="text/html" title="Initial Seeds" /><published>2021-03-01T00:00:00+00:00</published><updated>2021-03-15T19:49:03+00:00</updated><id>/2021/03/01/initial-seeds</id><content type="html" xml:base="/2021/03/01/initial-seeds/"><p>Set of areas that guide our reveries?</p>
|
||||
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.2.0">Jekyll</generator><link href="/feed.xml" rel="self" type="application/atom+xml" /><link href="/" rel="alternate" type="text/html" /><updated>2021-03-15T22:26:49+00:00</updated><id>/feed.xml</id><title type="html">Digital Garden</title><subtitle>A digital garden or public notebook for The Bentway’s Digital and/as Public Space Micro-Residency.</subtitle><entry><title type="html">Initial Seeds</title><link href="/2021/03/01/initial-seeds/" rel="alternate" type="text/html" title="Initial Seeds" /><published>2021-03-01T00:00:00+00:00</published><updated>2021-03-15T22:22:28+00:00</updated><id>/2021/03/01/initial-seeds</id><content type="html" xml:base="/2021/03/01/initial-seeds/"><p>Set of areas that guide our reveries?</p>
|
||||
|
||||
<ol>
|
||||
<li>The history of <a href="/hypertext">hypertext</a>, rss+adjacent protocols and standards.</li>
|
||||
|
@ -10,13 +10,13 @@
|
||||
<link rel="stylesheet" href="/assets/css/style.css"><link type="application/atom+xml" rel="alternate" href="/feed.xml" title="Digital Garden" /></head><body class="dark-green sans-serif links-dark-green bg-washed-green"><header class="f-6 flex"><a class="no-underline-hover" rel="author" href="/">Digital Garden</a><nav>, <a class="no-underline-hover" href="/about/">About</a>, <a class="no-underline-hover" href="/colophon/">Colophon</a></nav></header><main aria-label="Content">
|
||||
<div class="flex">
|
||||
<article class="w-50">
|
||||
<div>
|
||||
<header class="mb2">
|
||||
<h1>Hypercore</h1>
|
||||
<time datetime="2021-03-15T19:49:03+00:00">
|
||||
<time class="code dib f7 ph3 pv2 ba br-pill" datetime="2021-03-15T22:22:28+00:00">
|
||||
Last updated on March 15, 2021
|
||||
|
||||
</time>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div id="notes-entry-container">
|
||||
<div class="note-contents lh-copy">
|
||||
@ -26,21 +26,21 @@
|
||||
|
||||
</div>
|
||||
|
||||
<side>
|
||||
<h3>Notes mentioning this note</h3>
|
||||
<aside class="bt b--dark-green">
|
||||
<h3 class="mb3">Notes mentioning this note</h3>
|
||||
|
||||
<div>
|
||||
<div class="flex">
|
||||
|
||||
<div class="backlink-box">
|
||||
<a class="internal-link b" href="/hypercore">Hypercore</a><br>
|
||||
<div class="lh-copy">Hypercore [[Protocol]] is a peer-to-peer data network built on the Hypercore logs. Hypercores are signed, append-only logs. They’re like lightweight...</div>
|
||||
<div class="w-50 mr2 pa2 ba b--dark-green br3">
|
||||
<h4 class="mt0 mb2"><a class="internal-link" href="/hypercore">Hypercore</a></h4>
|
||||
<div class="f7 lh-copy">Hypercore Protocol is a peer-to-peer data network built on the Hypercore logs. Hypercores are signed, append-only logs. They’re like lightweight...</div>
|
||||
</div>
|
||||
|
||||
<div class="backlink-box">
|
||||
<a class="internal-link b" href="/peer-to-peer">peer-to-peer</a><br>
|
||||
<div class="lh-copy">
|
||||
[[Hypercore]]
|
||||
[[IPFS]]
|
||||
<div class="w-50 mr2 pa2 ba b--dark-green br3">
|
||||
<h4 class="mt0 mb2"><a class="internal-link" href="/peer-to-peer">peer-to-peer</a></h4>
|
||||
<div class="f7 lh-copy">
|
||||
Hypercore
|
||||
IPFS
|
||||
|
||||
|
||||
TBD
|
||||
@ -49,18 +49,18 @@ TBD
|
||||
|
||||
</div>
|
||||
|
||||
</side>
|
||||
</aside>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="w-50">
|
||||
|
||||
<p>Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
|
||||
<div id="zoom"></div>
|
||||
<div id="graph-wrapper">
|
||||
<div class="absolute bottom-1">
|
||||
<p class="ma0 f7 measure-narrow lh-copy">Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
</div>
|
||||
<div id="zoom" class="absolute code f7 bottom-1 right-1"></div>
|
||||
<div id="graph-wrapper" class="code f6">
|
||||
<script>
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"24831158218"},{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
@ -68,12 +68,14 @@ TBD
|
||||
</main><footer>
|
||||
|
||||
</footer><!-- That file is not particularly elegant. This will need a refactor at some point. -->
|
||||
<div style="opacity: 0; display: none;" id='tooltip-wrapper' class="bg-white lh-copy">
|
||||
<div class="hide-child">
|
||||
<div id='tooltip-wrapper' class="bg-white lh-copy dn o-0 pa2 w5 f6 overflow-hidden absolute child">
|
||||
<div id='tooltip-content'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<iframe style="display: none; height: 0; width: 0;" id='link-preview-iframe' src="">
|
||||
<iframe class="dn" id="link-preview-iframe">
|
||||
</iframe>
|
||||
|
||||
<script src="/assets/js/d3.v6.min.js" defer></script>
|
||||
|
@ -10,13 +10,13 @@
|
||||
<link rel="stylesheet" href="/assets/css/style.css"><link type="application/atom+xml" rel="alternate" href="/feed.xml" title="Digital Garden" /></head><body class="dark-green sans-serif links-dark-green bg-washed-green"><header class="f-6 flex"><a class="no-underline-hover" rel="author" href="/">Digital Garden</a><nav>, <a class="no-underline-hover" href="/about/">About</a>, <a class="no-underline-hover" href="/colophon/">Colophon</a></nav></header><main aria-label="Content">
|
||||
<div class="flex">
|
||||
<article class="w-50">
|
||||
<div>
|
||||
<header class="mb2">
|
||||
<h1>Hypertext Transfer Protocol</h1>
|
||||
<time datetime="2021-03-15T19:49:03+00:00">
|
||||
<time class="code dib f7 ph3 pv2 ba br-pill" datetime="2021-03-15T22:22:28+00:00">
|
||||
Last updated on March 15, 2021
|
||||
|
||||
</time>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div id="notes-entry-container">
|
||||
<div class="note-contents lh-copy">
|
||||
@ -26,28 +26,27 @@
|
||||
|
||||
</div>
|
||||
|
||||
<side>
|
||||
<h3>Notes mentioning this note</h3>
|
||||
|
||||
<aside class="bt b--dark-green">
|
||||
<h3 class="mb3">Notes mentioning this note</h3>
|
||||
|
||||
<div>
|
||||
<p>
|
||||
<p class="f7">
|
||||
There are no notes linking to this note.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</side>
|
||||
</aside>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="w-50">
|
||||
|
||||
<p>Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
|
||||
<div id="zoom"></div>
|
||||
<div id="graph-wrapper">
|
||||
<div class="absolute bottom-1">
|
||||
<p class="ma0 f7 measure-narrow lh-copy">Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
</div>
|
||||
<div id="zoom" class="absolute code f7 bottom-1 right-1"></div>
|
||||
<div id="graph-wrapper" class="code f6">
|
||||
<script>
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"24831158218"},{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
@ -55,12 +54,14 @@
|
||||
</main><footer>
|
||||
|
||||
</footer><!-- That file is not particularly elegant. This will need a refactor at some point. -->
|
||||
<div style="opacity: 0; display: none;" id='tooltip-wrapper' class="bg-white lh-copy">
|
||||
<div class="hide-child">
|
||||
<div id='tooltip-wrapper' class="bg-white lh-copy dn o-0 pa2 w5 f6 overflow-hidden absolute child">
|
||||
<div id='tooltip-content'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<iframe style="display: none; height: 0; width: 0;" id='link-preview-iframe' src="">
|
||||
<iframe class="dn" id="link-preview-iframe">
|
||||
</iframe>
|
||||
|
||||
<script src="/assets/js/d3.v6.min.js" defer></script>
|
||||
|
@ -10,13 +10,13 @@
|
||||
<link rel="stylesheet" href="/assets/css/style.css"><link type="application/atom+xml" rel="alternate" href="/feed.xml" title="Digital Garden" /></head><body class="dark-green sans-serif links-dark-green bg-washed-green"><header class="f-6 flex"><a class="no-underline-hover" rel="author" href="/">Digital Garden</a><nav>, <a class="no-underline-hover" href="/about/">About</a>, <a class="no-underline-hover" href="/colophon/">Colophon</a></nav></header><main aria-label="Content">
|
||||
<div class="flex">
|
||||
<article class="w-50">
|
||||
<div>
|
||||
<header class="mb2">
|
||||
<h1>Hypertext</h1>
|
||||
<time datetime="2021-03-15T19:49:03+00:00">
|
||||
<time class="code dib f7 ph3 pv2 ba br-pill" datetime="2021-03-15T22:22:28+00:00">
|
||||
Last updated on March 15, 2021
|
||||
|
||||
</time>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div id="notes-entry-container">
|
||||
<div class="note-contents lh-copy">
|
||||
@ -26,35 +26,35 @@
|
||||
|
||||
</div>
|
||||
|
||||
<side>
|
||||
<h3>Notes mentioning this note</h3>
|
||||
<aside class="bt b--dark-green">
|
||||
<h3 class="mb3">Notes mentioning this note</h3>
|
||||
|
||||
<div>
|
||||
<div class="flex">
|
||||
|
||||
<div class="backlink-box">
|
||||
<a class="internal-link b" href="/hypertext-transfer-protocol">Hypertext Transfer Protocol</a><br>
|
||||
<div class="lh-copy">The [[Hypertext]] Transfer [[Protocol]] (HTTP) is an application layer protocol for distributed, collaborative, hypermedia information systems. HTTP is the foundation...</div>
|
||||
<div class="w-50 mr2 pa2 ba b--dark-green br3">
|
||||
<h4 class="mt0 mb2"><a class="internal-link" href="/hypertext-transfer-protocol">Hypertext Transfer Protocol</a></h4>
|
||||
<div class="f7 lh-copy">The Hypertext Transfer Protocol (HTTP) is an application layer protocol for distributed, collaborative, hypermedia information systems. HTTP is the foundation...</div>
|
||||
</div>
|
||||
|
||||
<div class="backlink-box">
|
||||
<a class="internal-link b" href="/statement-of-intent">Statement of Intent</a><br>
|
||||
<div class="lh-copy">[[Hypha]]’s practice is situated across many topics that are present in the theme of Adaptive Reuse & Creative Misuse. Drawing...</div>
|
||||
<div class="w-50 mr2 pa2 ba b--dark-green br3">
|
||||
<h4 class="mt0 mb2"><a class="internal-link" href="/statement-of-intent">Statement of Intent</a></h4>
|
||||
<div class="f7 lh-copy">Hypha’s practice is situated across many topics that are present in the theme of Adaptive Reuse & Creative Misuse. Drawing...</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</side>
|
||||
</aside>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="w-50">
|
||||
|
||||
<p>Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
|
||||
<div id="zoom"></div>
|
||||
<div id="graph-wrapper">
|
||||
<div class="absolute bottom-1">
|
||||
<p class="ma0 f7 measure-narrow lh-copy">Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
</div>
|
||||
<div id="zoom" class="absolute code f7 bottom-1 right-1"></div>
|
||||
<div id="graph-wrapper" class="code f6">
|
||||
<script>
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"24831158218"},{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
@ -62,12 +62,14 @@
|
||||
</main><footer>
|
||||
|
||||
</footer><!-- That file is not particularly elegant. This will need a refactor at some point. -->
|
||||
<div style="opacity: 0; display: none;" id='tooltip-wrapper' class="bg-white lh-copy">
|
||||
<div class="hide-child">
|
||||
<div id='tooltip-wrapper' class="bg-white lh-copy dn o-0 pa2 w5 f6 overflow-hidden absolute child">
|
||||
<div id='tooltip-content'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<iframe style="display: none; height: 0; width: 0;" id='link-preview-iframe' src="">
|
||||
<iframe class="dn" id="link-preview-iframe">
|
||||
</iframe>
|
||||
|
||||
<script src="/assets/js/d3.v6.min.js" defer></script>
|
||||
|
38
hypha.html
38
hypha.html
@ -25,13 +25,13 @@
|
||||
<link rel="stylesheet" href="/assets/css/style.css"><link type="application/atom+xml" rel="alternate" href="/feed.xml" title="Digital Garden" /></head><body class="dark-green sans-serif links-dark-green bg-washed-green"><header class="f-6 flex"><a class="no-underline-hover" rel="author" href="/">Digital Garden</a><nav>, <a class="no-underline-hover" href="/about/">About</a>, <a class="no-underline-hover" href="/colophon/">Colophon</a></nav></header><main aria-label="Content">
|
||||
<div class="flex">
|
||||
<article class="w-50">
|
||||
<div>
|
||||
<header class="mb2">
|
||||
<h1>Hypha</h1>
|
||||
<time datetime="2021-03-15T19:49:03+00:00">
|
||||
<time class="code dib f7 ph3 pv2 ba br-pill" datetime="2021-03-15T22:22:28+00:00">
|
||||
Last updated on March 15, 2021
|
||||
|
||||
</time>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div id="notes-entry-container">
|
||||
<div class="note-contents lh-copy">
|
||||
@ -56,30 +56,30 @@
|
||||
|
||||
</div>
|
||||
|
||||
<side>
|
||||
<h3>Notes mentioning this note</h3>
|
||||
<aside class="bt b--dark-green">
|
||||
<h3 class="mb3">Notes mentioning this note</h3>
|
||||
|
||||
<div>
|
||||
<div class="flex">
|
||||
|
||||
<div class="backlink-box">
|
||||
<a class="internal-link b" href="/statement-of-intent">Statement of Intent</a><br>
|
||||
<div class="lh-copy">[[Hypha]]’s practice is situated across many topics that are present in the theme of Adaptive Reuse & Creative Misuse. Drawing...</div>
|
||||
<div class="w-50 mr2 pa2 ba b--dark-green br3">
|
||||
<h4 class="mt0 mb2"><a class="internal-link" href="/statement-of-intent">Statement of Intent</a></h4>
|
||||
<div class="f7 lh-copy">Hypha’s practice is situated across many topics that are present in the theme of Adaptive Reuse & Creative Misuse. Drawing...</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</side>
|
||||
</aside>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="w-50">
|
||||
|
||||
<p>Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
|
||||
<div id="zoom"></div>
|
||||
<div id="graph-wrapper">
|
||||
<div class="absolute bottom-1">
|
||||
<p class="ma0 f7 measure-narrow lh-copy">Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
</div>
|
||||
<div id="zoom" class="absolute code f7 bottom-1 right-1"></div>
|
||||
<div id="graph-wrapper" class="code f6">
|
||||
<script>
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"24831158218"},{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
@ -87,12 +87,14 @@
|
||||
</main><footer>
|
||||
|
||||
</footer><!-- That file is not particularly elegant. This will need a refactor at some point. -->
|
||||
<div style="opacity: 0; display: none;" id='tooltip-wrapper' class="bg-white lh-copy">
|
||||
<div class="hide-child">
|
||||
<div id='tooltip-wrapper' class="bg-white lh-copy dn o-0 pa2 w5 f6 overflow-hidden absolute child">
|
||||
<div id='tooltip-content'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<iframe style="display: none; height: 0; width: 0;" id='link-preview-iframe' src="">
|
||||
<iframe class="dn" id="link-preview-iframe">
|
||||
</iframe>
|
||||
|
||||
<script src="/assets/js/d3.v6.min.js" defer></script>
|
||||
|
@ -39,12 +39,14 @@
|
||||
</main><footer>
|
||||
|
||||
</footer><!-- That file is not particularly elegant. This will need a refactor at some point. -->
|
||||
<div style="opacity: 0; display: none;" id='tooltip-wrapper' class="bg-white lh-copy">
|
||||
<div class="hide-child">
|
||||
<div id='tooltip-wrapper' class="bg-white lh-copy dn o-0 pa2 w5 f6 overflow-hidden absolute child">
|
||||
<div id='tooltip-content'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<iframe style="display: none; height: 0; width: 0;" id='link-preview-iframe' src="">
|
||||
<iframe class="dn" id="link-preview-iframe">
|
||||
</iframe>
|
||||
|
||||
<script src="/assets/js/d3.v6.min.js" defer></script>
|
||||
|
@ -8,13 +8,13 @@
|
||||
<link rel="stylesheet" href="/assets/css/style.css"><link type="application/atom+xml" rel="alternate" href="/feed.xml" title="Digital Garden" /></head><body class="dark-green sans-serif links-dark-green bg-washed-green"><header class="f-6 flex"><a class="no-underline-hover" rel="author" href="/">Digital Garden</a><nav>, <a class="no-underline-hover" href="/about/">About</a>, <a class="no-underline-hover" href="/colophon/">Colophon</a></nav></header><main aria-label="Content">
|
||||
<div class="flex">
|
||||
<article class="w-50">
|
||||
<div>
|
||||
<header class="mb2">
|
||||
<h1>Infrastructure</h1>
|
||||
<time datetime="2021-03-15T19:49:03+00:00">
|
||||
<time class="code dib f7 ph3 pv2 ba br-pill" datetime="2021-03-15T22:22:28+00:00">
|
||||
Last updated on March 15, 2021
|
||||
|
||||
</time>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div id="notes-entry-container">
|
||||
<div class="note-contents lh-copy">
|
||||
@ -22,30 +22,30 @@
|
||||
|
||||
</div>
|
||||
|
||||
<side>
|
||||
<h3>Notes mentioning this note</h3>
|
||||
<aside class="bt b--dark-green">
|
||||
<h3 class="mb3">Notes mentioning this note</h3>
|
||||
|
||||
<div>
|
||||
<div class="flex">
|
||||
|
||||
<div class="backlink-box">
|
||||
<a class="internal-link b" href="/statement-of-intent">Statement of Intent</a><br>
|
||||
<div class="lh-copy">[[Hypha]]’s practice is situated across many topics that are present in the theme of Adaptive Reuse & Creative Misuse. Drawing...</div>
|
||||
<div class="w-50 mr2 pa2 ba b--dark-green br3">
|
||||
<h4 class="mt0 mb2"><a class="internal-link" href="/statement-of-intent">Statement of Intent</a></h4>
|
||||
<div class="f7 lh-copy">Hypha’s practice is situated across many topics that are present in the theme of Adaptive Reuse & Creative Misuse. Drawing...</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</side>
|
||||
</aside>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="w-50">
|
||||
|
||||
<p>Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
|
||||
<div id="zoom"></div>
|
||||
<div id="graph-wrapper">
|
||||
<div class="absolute bottom-1">
|
||||
<p class="ma0 f7 measure-narrow lh-copy">Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
</div>
|
||||
<div id="zoom" class="absolute code f7 bottom-1 right-1"></div>
|
||||
<div id="graph-wrapper" class="code f6">
|
||||
<script>
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"24831158218"},{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
@ -53,12 +53,14 @@
|
||||
</main><footer>
|
||||
|
||||
</footer><!-- That file is not particularly elegant. This will need a refactor at some point. -->
|
||||
<div style="opacity: 0; display: none;" id='tooltip-wrapper' class="bg-white lh-copy">
|
||||
<div class="hide-child">
|
||||
<div id='tooltip-wrapper' class="bg-white lh-copy dn o-0 pa2 w5 f6 overflow-hidden absolute child">
|
||||
<div id='tooltip-content'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<iframe style="display: none; height: 0; width: 0;" id='link-preview-iframe' src="">
|
||||
<iframe class="dn" id="link-preview-iframe">
|
||||
</iframe>
|
||||
|
||||
<script src="/assets/js/d3.v6.min.js" defer></script>
|
||||
|
42
ipfs.html
42
ipfs.html
@ -10,13 +10,13 @@
|
||||
<link rel="stylesheet" href="/assets/css/style.css"><link type="application/atom+xml" rel="alternate" href="/feed.xml" title="Digital Garden" /></head><body class="dark-green sans-serif links-dark-green bg-washed-green"><header class="f-6 flex"><a class="no-underline-hover" rel="author" href="/">Digital Garden</a><nav>, <a class="no-underline-hover" href="/about/">About</a>, <a class="no-underline-hover" href="/colophon/">Colophon</a></nav></header><main aria-label="Content">
|
||||
<div class="flex">
|
||||
<article class="w-50">
|
||||
<div>
|
||||
<header class="mb2">
|
||||
<h1>IPFS</h1>
|
||||
<time datetime="2021-03-15T19:49:03+00:00">
|
||||
<time class="code dib f7 ph3 pv2 ba br-pill" datetime="2021-03-15T22:22:28+00:00">
|
||||
Last updated on March 15, 2021
|
||||
|
||||
</time>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div id="notes-entry-container">
|
||||
<div class="note-contents lh-copy">
|
||||
@ -26,16 +26,16 @@
|
||||
|
||||
</div>
|
||||
|
||||
<side>
|
||||
<h3>Notes mentioning this note</h3>
|
||||
<aside class="bt b--dark-green">
|
||||
<h3 class="mb3">Notes mentioning this note</h3>
|
||||
|
||||
<div>
|
||||
<div class="flex">
|
||||
|
||||
<div class="backlink-box">
|
||||
<a class="internal-link b" href="/peer-to-peer">peer-to-peer</a><br>
|
||||
<div class="lh-copy">
|
||||
[[Hypercore]]
|
||||
[[IPFS]]
|
||||
<div class="w-50 mr2 pa2 ba b--dark-green br3">
|
||||
<h4 class="mt0 mb2"><a class="internal-link" href="/peer-to-peer">peer-to-peer</a></h4>
|
||||
<div class="f7 lh-copy">
|
||||
Hypercore
|
||||
IPFS
|
||||
|
||||
|
||||
TBD
|
||||
@ -44,18 +44,18 @@ TBD
|
||||
|
||||
</div>
|
||||
|
||||
</side>
|
||||
</aside>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="w-50">
|
||||
|
||||
<p>Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
|
||||
<div id="zoom"></div>
|
||||
<div id="graph-wrapper">
|
||||
<div class="absolute bottom-1">
|
||||
<p class="ma0 f7 measure-narrow lh-copy">Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
</div>
|
||||
<div id="zoom" class="absolute code f7 bottom-1 right-1"></div>
|
||||
<div id="graph-wrapper" class="code f6">
|
||||
<script>
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"24831158218"},{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
@ -63,12 +63,14 @@ TBD
|
||||
</main><footer>
|
||||
|
||||
</footer><!-- That file is not particularly elegant. This will need a refactor at some point. -->
|
||||
<div style="opacity: 0; display: none;" id='tooltip-wrapper' class="bg-white lh-copy">
|
||||
<div class="hide-child">
|
||||
<div id='tooltip-wrapper' class="bg-white lh-copy dn o-0 pa2 w5 f6 overflow-hidden absolute child">
|
||||
<div id='tooltip-content'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<iframe style="display: none; height: 0; width: 0;" id='link-preview-iframe' src="">
|
||||
<iframe class="dn" id="link-preview-iframe">
|
||||
</iframe>
|
||||
|
||||
<script src="/assets/js/d3.v6.min.js" defer></script>
|
||||
|
@ -13,13 +13,13 @@
|
||||
<link rel="stylesheet" href="/assets/css/style.css"><link type="application/atom+xml" rel="alternate" href="/feed.xml" title="Digital Garden" /></head><body class="dark-green sans-serif links-dark-green bg-washed-green"><header class="f-6 flex"><a class="no-underline-hover" rel="author" href="/">Digital Garden</a><nav>, <a class="no-underline-hover" href="/about/">About</a>, <a class="no-underline-hover" href="/colophon/">Colophon</a></nav></header><main aria-label="Content">
|
||||
<div class="flex">
|
||||
<article class="w-50">
|
||||
<div>
|
||||
<header class="mb2">
|
||||
<h1>peer-to-peer</h1>
|
||||
<time datetime="2021-03-15T19:49:03+00:00">
|
||||
<time class="code dib f7 ph3 pv2 ba br-pill" datetime="2021-03-15T22:22:28+00:00">
|
||||
Last updated on March 15, 2021
|
||||
|
||||
</time>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div id="notes-entry-container">
|
||||
<div class="note-contents lh-copy">
|
||||
@ -32,30 +32,30 @@
|
||||
|
||||
</div>
|
||||
|
||||
<side>
|
||||
<h3>Notes mentioning this note</h3>
|
||||
<aside class="bt b--dark-green">
|
||||
<h3 class="mb3">Notes mentioning this note</h3>
|
||||
|
||||
<div>
|
||||
<div class="flex">
|
||||
|
||||
<div class="backlink-box">
|
||||
<a class="internal-link b" href="/statement-of-intent">Statement of Intent</a><br>
|
||||
<div class="lh-copy">[[Hypha]]’s practice is situated across many topics that are present in the theme of Adaptive Reuse & Creative Misuse. Drawing...</div>
|
||||
<div class="w-50 mr2 pa2 ba b--dark-green br3">
|
||||
<h4 class="mt0 mb2"><a class="internal-link" href="/statement-of-intent">Statement of Intent</a></h4>
|
||||
<div class="f7 lh-copy">Hypha’s practice is situated across many topics that are present in the theme of Adaptive Reuse & Creative Misuse. Drawing...</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</side>
|
||||
</aside>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="w-50">
|
||||
|
||||
<p>Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
|
||||
<div id="zoom"></div>
|
||||
<div id="graph-wrapper">
|
||||
<div class="absolute bottom-1">
|
||||
<p class="ma0 f7 measure-narrow lh-copy">Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
</div>
|
||||
<div id="zoom" class="absolute code f7 bottom-1 right-1"></div>
|
||||
<div id="graph-wrapper" class="code f6">
|
||||
<script>
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"24831158218"},{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
@ -63,12 +63,14 @@
|
||||
</main><footer>
|
||||
|
||||
</footer><!-- That file is not particularly elegant. This will need a refactor at some point. -->
|
||||
<div style="opacity: 0; display: none;" id='tooltip-wrapper' class="bg-white lh-copy">
|
||||
<div class="hide-child">
|
||||
<div id='tooltip-wrapper' class="bg-white lh-copy dn o-0 pa2 w5 f6 overflow-hidden absolute child">
|
||||
<div id='tooltip-content'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<iframe style="display: none; height: 0; width: 0;" id='link-preview-iframe' src="">
|
||||
<iframe class="dn" id="link-preview-iframe">
|
||||
</iframe>
|
||||
|
||||
<script src="/assets/js/d3.v6.min.js" defer></script>
|
||||
|
@ -13,13 +13,13 @@
|
||||
<link rel="stylesheet" href="/assets/css/style.css"><link type="application/atom+xml" rel="alternate" href="/feed.xml" title="Digital Garden" /></head><body class="dark-green sans-serif links-dark-green bg-washed-green"><header class="f-6 flex"><a class="no-underline-hover" rel="author" href="/">Digital Garden</a><nav>, <a class="no-underline-hover" href="/about/">About</a>, <a class="no-underline-hover" href="/colophon/">Colophon</a></nav></header><main aria-label="Content">
|
||||
<div class="flex">
|
||||
<article class="w-50">
|
||||
<div>
|
||||
<header class="mb2">
|
||||
<h1>Protocol</h1>
|
||||
<time datetime="2021-03-15T19:49:03+00:00">
|
||||
<time class="code dib f7 ph3 pv2 ba br-pill" datetime="2021-03-15T22:22:28+00:00">
|
||||
Last updated on March 15, 2021
|
||||
|
||||
</time>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div id="notes-entry-container">
|
||||
<div class="note-contents lh-copy">
|
||||
@ -32,40 +32,40 @@
|
||||
|
||||
</div>
|
||||
|
||||
<side>
|
||||
<h3>Notes mentioning this note</h3>
|
||||
<aside class="bt b--dark-green">
|
||||
<h3 class="mb3">Notes mentioning this note</h3>
|
||||
|
||||
<div>
|
||||
<div class="flex">
|
||||
|
||||
<div class="backlink-box">
|
||||
<a class="internal-link b" href="/hypercore">Hypercore</a><br>
|
||||
<div class="lh-copy">Hypercore [[Protocol]] is a peer-to-peer data network built on the Hypercore logs. Hypercores are signed, append-only logs. They’re like lightweight...</div>
|
||||
<div class="w-50 mr2 pa2 ba b--dark-green br3">
|
||||
<h4 class="mt0 mb2"><a class="internal-link" href="/hypercore">Hypercore</a></h4>
|
||||
<div class="f7 lh-copy">Hypercore Protocol is a peer-to-peer data network built on the Hypercore logs. Hypercores are signed, append-only logs. They’re like lightweight...</div>
|
||||
</div>
|
||||
|
||||
<div class="backlink-box">
|
||||
<a class="internal-link b" href="/hypertext-transfer-protocol">Hypertext Transfer Protocol</a><br>
|
||||
<div class="lh-copy">The [[Hypertext]] Transfer [[Protocol]] (HTTP) is an application layer protocol for distributed, collaborative, hypermedia information systems. HTTP is the foundation...</div>
|
||||
<div class="w-50 mr2 pa2 ba b--dark-green br3">
|
||||
<h4 class="mt0 mb2"><a class="internal-link" href="/hypertext-transfer-protocol">Hypertext Transfer Protocol</a></h4>
|
||||
<div class="f7 lh-copy">The Hypertext Transfer Protocol (HTTP) is an application layer protocol for distributed, collaborative, hypermedia information systems. HTTP is the foundation...</div>
|
||||
</div>
|
||||
|
||||
<div class="backlink-box">
|
||||
<a class="internal-link b" href="/ipfs">IPFS</a><br>
|
||||
<div class="lh-copy">The InterPlanetary File System (IPFS) is a [[protocol]] and peer-to-peer network for storing and sharing data in a distributed file...</div>
|
||||
<div class="w-50 mr2 pa2 ba b--dark-green br3">
|
||||
<h4 class="mt0 mb2"><a class="internal-link" href="/ipfs">IPFS</a></h4>
|
||||
<div class="f7 lh-copy">The InterPlanetary File System (IPFS) is a protocol and peer-to-peer network for storing and sharing data in a distributed file...</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</side>
|
||||
</aside>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="w-50">
|
||||
|
||||
<p>Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
|
||||
<div id="zoom"></div>
|
||||
<div id="graph-wrapper">
|
||||
<div class="absolute bottom-1">
|
||||
<p class="ma0 f7 measure-narrow lh-copy">Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
</div>
|
||||
<div id="zoom" class="absolute code f7 bottom-1 right-1"></div>
|
||||
<div id="graph-wrapper" class="code f6">
|
||||
<script>
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"24831158218"},{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
@ -73,12 +73,14 @@
|
||||
</main><footer>
|
||||
|
||||
</footer><!-- That file is not particularly elegant. This will need a refactor at some point. -->
|
||||
<div style="opacity: 0; display: none;" id='tooltip-wrapper' class="bg-white lh-copy">
|
||||
<div class="hide-child">
|
||||
<div id='tooltip-wrapper' class="bg-white lh-copy dn o-0 pa2 w5 f6 overflow-hidden absolute child">
|
||||
<div id='tooltip-content'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<iframe style="display: none; height: 0; width: 0;" id='link-preview-iframe' src="">
|
||||
<iframe class="dn" id="link-preview-iframe">
|
||||
</iframe>
|
||||
|
||||
<script src="/assets/js/d3.v6.min.js" defer></script>
|
||||
|
44
public.html
44
public.html
@ -8,13 +8,13 @@
|
||||
<link rel="stylesheet" href="/assets/css/style.css"><link type="application/atom+xml" rel="alternate" href="/feed.xml" title="Digital Garden" /></head><body class="dark-green sans-serif links-dark-green bg-washed-green"><header class="f-6 flex"><a class="no-underline-hover" rel="author" href="/">Digital Garden</a><nav>, <a class="no-underline-hover" href="/about/">About</a>, <a class="no-underline-hover" href="/colophon/">Colophon</a></nav></header><main aria-label="Content">
|
||||
<div class="flex">
|
||||
<article class="w-50">
|
||||
<div>
|
||||
<header class="mb2">
|
||||
<h1>Public</h1>
|
||||
<time datetime="2021-03-15T19:49:03+00:00">
|
||||
<time class="code dib f7 ph3 pv2 ba br-pill" datetime="2021-03-15T22:22:28+00:00">
|
||||
Last updated on March 15, 2021
|
||||
|
||||
</time>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div id="notes-entry-container">
|
||||
<div class="note-contents lh-copy">
|
||||
@ -22,36 +22,36 @@
|
||||
|
||||
</div>
|
||||
|
||||
<side>
|
||||
<h3>Notes mentioning this note</h3>
|
||||
<aside class="bt b--dark-green">
|
||||
<h3 class="mb3">Notes mentioning this note</h3>
|
||||
|
||||
<div>
|
||||
<div class="flex">
|
||||
|
||||
<div class="backlink-box">
|
||||
<a class="internal-link b" href="/bentway">Bentway</a><br>
|
||||
<div class="lh-copy">The Bentway re-imagines how we build, experience, activate, and value [[public]] space together.
|
||||
<div class="w-50 mr2 pa2 ba b--dark-green br3">
|
||||
<h4 class="mt0 mb2"><a class="internal-link" href="/bentway">Bentway</a></h4>
|
||||
<div class="f7 lh-copy">The Bentway re-imagines how we build, experience, activate, and value public space together.
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="backlink-box">
|
||||
<a class="internal-link b" href="/statement-of-intent">Statement of Intent</a><br>
|
||||
<div class="lh-copy">[[Hypha]]’s practice is situated across many topics that are present in the theme of Adaptive Reuse & Creative Misuse. Drawing...</div>
|
||||
<div class="w-50 mr2 pa2 ba b--dark-green br3">
|
||||
<h4 class="mt0 mb2"><a class="internal-link" href="/statement-of-intent">Statement of Intent</a></h4>
|
||||
<div class="f7 lh-copy">Hypha’s practice is situated across many topics that are present in the theme of Adaptive Reuse & Creative Misuse. Drawing...</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</side>
|
||||
</aside>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="w-50">
|
||||
|
||||
<p>Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
|
||||
<div id="zoom"></div>
|
||||
<div id="graph-wrapper">
|
||||
<div class="absolute bottom-1">
|
||||
<p class="ma0 f7 measure-narrow lh-copy">Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
</div>
|
||||
<div id="zoom" class="absolute code f7 bottom-1 right-1"></div>
|
||||
<div id="graph-wrapper" class="code f6">
|
||||
<script>
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"24831158218"},{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
@ -59,12 +59,14 @@
|
||||
</main><footer>
|
||||
|
||||
</footer><!-- That file is not particularly elegant. This will need a refactor at some point. -->
|
||||
<div style="opacity: 0; display: none;" id='tooltip-wrapper' class="bg-white lh-copy">
|
||||
<div class="hide-child">
|
||||
<div id='tooltip-wrapper' class="bg-white lh-copy dn o-0 pa2 w5 f6 overflow-hidden absolute child">
|
||||
<div id='tooltip-content'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<iframe style="display: none; height: 0; width: 0;" id='link-preview-iframe' src="">
|
||||
<iframe class="dn" id="link-preview-iframe">
|
||||
</iframe>
|
||||
|
||||
<script src="/assets/js/d3.v6.min.js" defer></script>
|
||||
|
@ -8,13 +8,13 @@
|
||||
<link rel="stylesheet" href="/assets/css/style.css"><link type="application/atom+xml" rel="alternate" href="/feed.xml" title="Digital Garden" /></head><body class="dark-green sans-serif links-dark-green bg-washed-green"><header class="f-6 flex"><a class="no-underline-hover" rel="author" href="/">Digital Garden</a><nav>, <a class="no-underline-hover" href="/about/">About</a>, <a class="no-underline-hover" href="/colophon/">Colophon</a></nav></header><main aria-label="Content">
|
||||
<div class="flex">
|
||||
<article class="w-50">
|
||||
<div>
|
||||
<header class="mb2">
|
||||
<h1>Publishing</h1>
|
||||
<time datetime="2021-03-15T19:49:03+00:00">
|
||||
<time class="code dib f7 ph3 pv2 ba br-pill" datetime="2021-03-15T22:22:28+00:00">
|
||||
Last updated on March 15, 2021
|
||||
|
||||
</time>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div id="notes-entry-container">
|
||||
<div class="note-contents lh-copy">
|
||||
@ -22,35 +22,35 @@
|
||||
|
||||
</div>
|
||||
|
||||
<side>
|
||||
<h3>Notes mentioning this note</h3>
|
||||
<aside class="bt b--dark-green">
|
||||
<h3 class="mb3">Notes mentioning this note</h3>
|
||||
|
||||
<div>
|
||||
<div class="flex">
|
||||
|
||||
<div class="backlink-box">
|
||||
<a class="internal-link b" href="/rss">RSS</a><br>
|
||||
<div class="lh-copy">RSS (RDF Site Summary or Really Simple Syndication) is a web feed that allows users and applications to access updates...</div>
|
||||
<div class="w-50 mr2 pa2 ba b--dark-green br3">
|
||||
<h4 class="mt0 mb2"><a class="internal-link" href="/rss">RSS</a></h4>
|
||||
<div class="f7 lh-copy">RSS (RDF Site Summary or Really Simple Syndication) is a web feed that allows users and applications to access updates...</div>
|
||||
</div>
|
||||
|
||||
<div class="backlink-box">
|
||||
<a class="internal-link b" href="/statement-of-intent">Statement of Intent</a><br>
|
||||
<div class="lh-copy">[[Hypha]]’s practice is situated across many topics that are present in the theme of Adaptive Reuse & Creative Misuse. Drawing...</div>
|
||||
<div class="w-50 mr2 pa2 ba b--dark-green br3">
|
||||
<h4 class="mt0 mb2"><a class="internal-link" href="/statement-of-intent">Statement of Intent</a></h4>
|
||||
<div class="f7 lh-copy">Hypha’s practice is situated across many topics that are present in the theme of Adaptive Reuse & Creative Misuse. Drawing...</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</side>
|
||||
</aside>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="w-50">
|
||||
|
||||
<p>Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
|
||||
<div id="zoom"></div>
|
||||
<div id="graph-wrapper">
|
||||
<div class="absolute bottom-1">
|
||||
<p class="ma0 f7 measure-narrow lh-copy">Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
</div>
|
||||
<div id="zoom" class="absolute code f7 bottom-1 right-1"></div>
|
||||
<div id="graph-wrapper" class="code f6">
|
||||
<script>
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"24831158218"},{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
@ -58,12 +58,14 @@
|
||||
</main><footer>
|
||||
|
||||
</footer><!-- That file is not particularly elegant. This will need a refactor at some point. -->
|
||||
<div style="opacity: 0; display: none;" id='tooltip-wrapper' class="bg-white lh-copy">
|
||||
<div class="hide-child">
|
||||
<div id='tooltip-wrapper' class="bg-white lh-copy dn o-0 pa2 w5 f6 overflow-hidden absolute child">
|
||||
<div id='tooltip-content'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<iframe style="display: none; height: 0; width: 0;" id='link-preview-iframe' src="">
|
||||
<iframe class="dn" id="link-preview-iframe">
|
||||
</iframe>
|
||||
|
||||
<script src="/assets/js/d3.v6.min.js" defer></script>
|
||||
|
42
rss.html
42
rss.html
@ -5,51 +5,51 @@
|
||||
<title>RSS 🌱 Digital Garden</title>
|
||||
<meta name="description" content="<p>RSS (RDF Site Summary or Really Simple Syndication) is a web feed that allows users and applications to access updates to websites in a standardized, computer-readable format. These feeds can, for example, allow a user to keep track of many different websites in a single news aggregator. The news aggregator will automatically check the RSS feed for new content, allowing the list to be automatically passed from website to website or from website to user. This passing of content is called web syndication. Websites usually use RSS feeds to publish frequently updated information, such as blog entries, news headlines, or episodes of audio and video series. RSS is also used to distribute podcasts. An RSS document (called “feed”, “web feed”, or “channel”) includes full or summarized text, and metadata, like [[publishing]] date and author’s name.</p>
|
||||
|
||||
<p>https://en.wikipedia.org/wiki/RSS</p>
|
||||
<p><a href="https://en.wikipedia.org/wiki/RSS">https://en.wikipedia.org/wiki/RSS</a></p>
|
||||
">
|
||||
<link rel="stylesheet" href="/assets/css/style.css"><link type="application/atom+xml" rel="alternate" href="/feed.xml" title="Digital Garden" /></head><body class="dark-green sans-serif links-dark-green bg-washed-green"><header class="f-6 flex"><a class="no-underline-hover" rel="author" href="/">Digital Garden</a><nav>, <a class="no-underline-hover" href="/about/">About</a>, <a class="no-underline-hover" href="/colophon/">Colophon</a></nav></header><main aria-label="Content">
|
||||
<div class="flex">
|
||||
<article class="w-50">
|
||||
<div>
|
||||
<header class="mb2">
|
||||
<h1>RSS</h1>
|
||||
<time datetime="2021-03-15T19:49:03+00:00">
|
||||
<time class="code dib f7 ph3 pv2 ba br-pill" datetime="2021-03-15T22:22:28+00:00">
|
||||
Last updated on March 15, 2021
|
||||
|
||||
</time>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div id="notes-entry-container">
|
||||
<div class="note-contents lh-copy">
|
||||
<p>RSS (RDF Site Summary or Really Simple Syndication) is a web feed that allows users and applications to access updates to websites in a standardized, computer-readable format. These feeds can, for example, allow a user to keep track of many different websites in a single news aggregator. The news aggregator will automatically check the RSS feed for new content, allowing the list to be automatically passed from website to website or from website to user. This passing of content is called web syndication. Websites usually use RSS feeds to publish frequently updated information, such as blog entries, news headlines, or episodes of audio and video series. RSS is also used to distribute podcasts. An RSS document (called “feed”, “web feed”, or “channel”) includes full or summarized text, and metadata, like <a class="internal-link" href="./publishing">publishing</a> date and author’s name.</p>
|
||||
|
||||
<p>https://en.wikipedia.org/wiki/RSS</p>
|
||||
<p><a href="https://en.wikipedia.org/wiki/RSS">https://en.wikipedia.org/wiki/RSS</a></p>
|
||||
|
||||
</div>
|
||||
|
||||
<side>
|
||||
<h3>Notes mentioning this note</h3>
|
||||
<aside class="bt b--dark-green">
|
||||
<h3 class="mb3">Notes mentioning this note</h3>
|
||||
|
||||
<div>
|
||||
<div class="flex">
|
||||
|
||||
<div class="backlink-box">
|
||||
<a class="internal-link b" href="/statement-of-intent">Statement of Intent</a><br>
|
||||
<div class="lh-copy">[[Hypha]]’s practice is situated across many topics that are present in the theme of Adaptive Reuse & Creative Misuse. Drawing...</div>
|
||||
<div class="w-50 mr2 pa2 ba b--dark-green br3">
|
||||
<h4 class="mt0 mb2"><a class="internal-link" href="/statement-of-intent">Statement of Intent</a></h4>
|
||||
<div class="f7 lh-copy">Hypha’s practice is situated across many topics that are present in the theme of Adaptive Reuse & Creative Misuse. Drawing...</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</side>
|
||||
</aside>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="w-50">
|
||||
|
||||
<p>Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
|
||||
<div id="zoom"></div>
|
||||
<div id="graph-wrapper">
|
||||
<div class="absolute bottom-1">
|
||||
<p class="ma0 f7 measure-narrow lh-copy">Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
</div>
|
||||
<div id="zoom" class="absolute code f7 bottom-1 right-1"></div>
|
||||
<div id="graph-wrapper" class="code f6">
|
||||
<script>
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"24831158218"},{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
@ -57,12 +57,14 @@
|
||||
</main><footer>
|
||||
|
||||
</footer><!-- That file is not particularly elegant. This will need a refactor at some point. -->
|
||||
<div style="opacity: 0; display: none;" id='tooltip-wrapper' class="bg-white lh-copy">
|
||||
<div class="hide-child">
|
||||
<div id='tooltip-wrapper' class="bg-white lh-copy dn o-0 pa2 w5 f6 overflow-hidden absolute child">
|
||||
<div id='tooltip-content'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<iframe style="display: none; height: 0; width: 0;" id='link-preview-iframe' src="">
|
||||
<iframe class="dn" id="link-preview-iframe">
|
||||
</iframe>
|
||||
|
||||
<script src="/assets/js/d3.v6.min.js" defer></script>
|
||||
|
@ -7,7 +7,8 @@
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>[[Hypha]]’s practice is situated across many topics that are present in the theme of <em>Adaptive Reuse &amp; Creative Misuse</em>. Drawing from our collective experiences, histories, and methodologies, our goal for the micro-residency to investigate how notions of digital [[infrastructure]] can be reused, reinterpreted, and reconfigured, to realize a kind of public space. Our approach to this theme will be composed of a few, very preliminary, subjects that will ground the residency: the situated histories of digital infrastructure, the implications of protocols for [[publishing]] ([[Hypertext]], [[RSS]], [[Peer-to-peer]]) in defining public spaces, and the possibilities of cooperative approaches to maintenance and repair. Our intent is to make the process of this investigation [[public]] through online tools mapping our thinking about the theme (Open channels in Are.na as one example) and cultivating a [[Digital Public Garden]] as part of Hypha’s contributions to the initiative (a [[RSS</td>
|
||||
<td>resyndicatable]] adaptive online notebook). The outputs from the micro-residency will be a written contribution to the <a href="https://www.are.na/from-later/field-guide-to-the-digital-real"><em>Field Guide to the Digital Real</em></a> and a micro-website containing the synthesis of our investigations and our evolving practice. The outputs will be textual and visual, and draw from our collaborative practices as a cooperative. They will explore ways to represent relationships with existing and emergent technologies within our communities. Through our micro-residency we will capture a poetic interpretation of the theme and provide prompts for institutions in the city on how they could reconfigure technology to create radically creative platforms.</td>
|
||||
<td>resyndicatable]] adaptive online notebook). The outputs from the [[bentway</td>
|
||||
<td>micro-residency]] will be a written contribution to the <a href="https://www.are.na/from-later/field-guide-to-the-digital-real"><em>Field Guide to the Digital Real</em></a> and a micro-website containing the synthesis of our investigations and our evolving practice. The outputs will be textual and visual, and draw from our collaborative practices as a cooperative. They will explore ways to represent relationships with existing and emergent technologies within our communities. Through our micro-residency we will capture a poetic interpretation of the theme and provide prompts for institutions in the city on how they could reconfigure technology to create radically creative platforms.</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
@ -15,42 +16,41 @@
|
||||
<link rel="stylesheet" href="/assets/css/style.css"><link type="application/atom+xml" rel="alternate" href="/feed.xml" title="Digital Garden" /></head><body class="dark-green sans-serif links-dark-green bg-washed-green"><header class="f-6 flex"><a class="no-underline-hover" rel="author" href="/">Digital Garden</a><nav>, <a class="no-underline-hover" href="/about/">About</a>, <a class="no-underline-hover" href="/colophon/">Colophon</a></nav></header><main aria-label="Content">
|
||||
<div class="flex">
|
||||
<article class="w-50">
|
||||
<div>
|
||||
<header class="mb2">
|
||||
<h1>Statement of Intent</h1>
|
||||
<time datetime="2021-03-15T19:49:03+00:00">
|
||||
<time class="code dib f7 ph3 pv2 ba br-pill" datetime="2021-03-15T22:22:28+00:00">
|
||||
Last updated on March 15, 2021
|
||||
|
||||
</time>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div id="notes-entry-container">
|
||||
<div class="note-contents lh-copy">
|
||||
<p><a class="internal-link" href="./hypha">Hypha</a>’s practice is situated across many topics that are present in the theme of <em>Adaptive Reuse & Creative Misuse</em>. Drawing from our collective experiences, histories, and methodologies, our goal for the micro-residency to investigate how notions of digital <a class="internal-link" href="./infrastructure">infrastructure</a> can be reused, reinterpreted, and reconfigured, to realize a kind of public space. Our approach to this theme will be composed of a few, very preliminary, subjects that will ground the residency: the situated histories of digital infrastructure, the implications of protocols for <a class="internal-link" href="./publishing">publishing</a> (<a class="internal-link" href="./hypertext">Hypertext</a>, <a class="internal-link" href="./rss">RSS</a>, <a class="internal-link" href="./peer-to-peer">Peer-to-peer</a>) in defining public spaces, and the possibilities of cooperative approaches to maintenance and repair. Our intent is to make the process of this investigation <a class="internal-link" href="./public">public</a> through online tools mapping our thinking about the theme (Open channels in Are.na as one example) and cultivating a <a class="internal-link" href="./digital-public-garden">Digital Public Garden</a> as part of Hypha’s contributions to the initiative (a <a class="internal-link" href="./rss">resyndicatable</a> adaptive online notebook). The outputs from the micro-residency will be a written contribution to the <a href="https://www.are.na/from-later/field-guide-to-the-digital-real"><em>Field Guide to the Digital Real</em></a> and a micro-website containing the synthesis of our investigations and our evolving practice. The outputs will be textual and visual, and draw from our collaborative practices as a cooperative. They will explore ways to represent relationships with existing and emergent technologies within our communities. Through our micro-residency we will capture a poetic interpretation of the theme and provide prompts for institutions in the city on how they could reconfigure technology to create radically creative platforms.</p>
|
||||
<p><a class="internal-link" href="./hypha">Hypha</a>’s practice is situated across many topics that are present in the theme of <em>Adaptive Reuse & Creative Misuse</em>. Drawing from our collective experiences, histories, and methodologies, our goal for the micro-residency to investigate how notions of digital <a class="internal-link" href="./infrastructure">infrastructure</a> can be reused, reinterpreted, and reconfigured, to realize a kind of public space. Our approach to this theme will be composed of a few, very preliminary, subjects that will ground the residency: the situated histories of digital infrastructure, the implications of protocols for <a class="internal-link" href="./publishing">publishing</a> (<a class="internal-link" href="./hypertext">Hypertext</a>, <a class="internal-link" href="./rss">RSS</a>, <a class="internal-link" href="./peer-to-peer">Peer-to-peer</a>) in defining public spaces, and the possibilities of cooperative approaches to maintenance and repair. Our intent is to make the process of this investigation <a class="internal-link" href="./public">public</a> through online tools mapping our thinking about the theme (Open channels in Are.na as one example) and cultivating a <a class="internal-link" href="./digital-public-garden">Digital Public Garden</a> as part of Hypha’s contributions to the initiative (a <a class="internal-link" href="./rss">resyndicatable</a> adaptive online notebook). The outputs from the <a class="internal-link" href="./bentway">micro-residency</a> will be a written contribution to the <a href="https://www.are.na/from-later/field-guide-to-the-digital-real"><em>Field Guide to the Digital Real</em></a> and a micro-website containing the synthesis of our investigations and our evolving practice. The outputs will be textual and visual, and draw from our collaborative practices as a cooperative. They will explore ways to represent relationships with existing and emergent technologies within our communities. Through our micro-residency we will capture a poetic interpretation of the theme and provide prompts for institutions in the city on how they could reconfigure technology to create radically creative platforms.</p>
|
||||
|
||||
</div>
|
||||
|
||||
<side>
|
||||
<h3>Notes mentioning this note</h3>
|
||||
|
||||
<aside class="bt b--dark-green">
|
||||
<h3 class="mb3">Notes mentioning this note</h3>
|
||||
|
||||
<div>
|
||||
<p>
|
||||
<p class="f7">
|
||||
There are no notes linking to this note.
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</side>
|
||||
</aside>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="w-50">
|
||||
|
||||
<p>Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
|
||||
<div id="zoom"></div>
|
||||
<div id="graph-wrapper">
|
||||
<div class="absolute bottom-1">
|
||||
<p class="ma0 f7 measure-narrow lh-copy">Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
</div>
|
||||
<div id="zoom" class="absolute code f7 bottom-1 right-1"></div>
|
||||
<div id="graph-wrapper" class="code f6">
|
||||
<script>
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"24831158218"},{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
@ -58,12 +58,14 @@
|
||||
</main><footer>
|
||||
|
||||
</footer><!-- That file is not particularly elegant. This will need a refactor at some point. -->
|
||||
<div style="opacity: 0; display: none;" id='tooltip-wrapper' class="bg-white lh-copy">
|
||||
<div class="hide-child">
|
||||
<div id='tooltip-wrapper' class="bg-white lh-copy dn o-0 pa2 w5 f6 overflow-hidden absolute child">
|
||||
<div id='tooltip-content'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<iframe style="display: none; height: 0; width: 0;" id='link-preview-iframe' src="">
|
||||
<iframe class="dn" id="link-preview-iframe">
|
||||
</iframe>
|
||||
|
||||
<script src="/assets/js/d3.v6.min.js" defer></script>
|
||||
|
@ -8,13 +8,13 @@
|
||||
<link rel="stylesheet" href="/assets/css/style.css"><link type="application/atom+xml" rel="alternate" href="/feed.xml" title="Digital Garden" /></head><body class="dark-green sans-serif links-dark-green bg-washed-green"><header class="f-6 flex"><a class="no-underline-hover" rel="author" href="/">Digital Garden</a><nav>, <a class="no-underline-hover" href="/about/">About</a>, <a class="no-underline-hover" href="/colophon/">Colophon</a></nav></header><main aria-label="Content">
|
||||
<div class="flex">
|
||||
<article class="w-50">
|
||||
<div>
|
||||
<header class="mb2">
|
||||
<h1>World Wide Web</h1>
|
||||
<time datetime="2021-03-15T19:49:03+00:00">
|
||||
<time class="code dib f7 ph3 pv2 ba br-pill" datetime="2021-03-15T22:22:28+00:00">
|
||||
Last updated on March 15, 2021
|
||||
|
||||
</time>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div id="notes-entry-container">
|
||||
<div class="note-contents lh-copy">
|
||||
@ -22,35 +22,35 @@
|
||||
|
||||
</div>
|
||||
|
||||
<side>
|
||||
<h3>Notes mentioning this note</h3>
|
||||
<aside class="bt b--dark-green">
|
||||
<h3 class="mb3">Notes mentioning this note</h3>
|
||||
|
||||
<div>
|
||||
<div class="flex">
|
||||
|
||||
<div class="backlink-box">
|
||||
<a class="internal-link b" href="/hypertext-transfer-protocol">Hypertext Transfer Protocol</a><br>
|
||||
<div class="lh-copy">The [[Hypertext]] Transfer [[Protocol]] (HTTP) is an application layer protocol for distributed, collaborative, hypermedia information systems. HTTP is the foundation...</div>
|
||||
<div class="w-50 mr2 pa2 ba b--dark-green br3">
|
||||
<h4 class="mt0 mb2"><a class="internal-link" href="/hypertext-transfer-protocol">Hypertext Transfer Protocol</a></h4>
|
||||
<div class="f7 lh-copy">The Hypertext Transfer Protocol (HTTP) is an application layer protocol for distributed, collaborative, hypermedia information systems. HTTP is the foundation...</div>
|
||||
</div>
|
||||
|
||||
<div class="backlink-box">
|
||||
<a class="internal-link b" href="/hypertext">Hypertext</a><br>
|
||||
<div class="lh-copy">Hypertext is text displayed on a computer display or other electronic devices with references (hyperlinks) to other text that the...</div>
|
||||
<div class="w-50 mr2 pa2 ba b--dark-green br3">
|
||||
<h4 class="mt0 mb2"><a class="internal-link" href="/hypertext">Hypertext</a></h4>
|
||||
<div class="f7 lh-copy">Hypertext is text displayed on a computer display or other electronic devices with references (hyperlinks) to other text that the...</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</side>
|
||||
</aside>
|
||||
</div>
|
||||
</article>
|
||||
|
||||
<div class="w-50">
|
||||
|
||||
<p>Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
|
||||
<div id="zoom"></div>
|
||||
<div id="graph-wrapper">
|
||||
<div class="absolute bottom-1">
|
||||
<p class="ma0 f7 measure-narrow lh-copy">Here are all the notes in this garden, along with their links, visualized as a graph.</p>
|
||||
</div>
|
||||
<div id="zoom" class="absolute code f7 bottom-1 right-1"></div>
|
||||
<div id="graph-wrapper" class="code f6">
|
||||
<script>
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
const graphData = {"edges":[{"source":"229320080329284392969231993","target":"24831158218"},{"source":"229320080329284392969231993","target":"139376232583985260057851086495"},{"source":"50678562032474","target":"50678562032474"},{"source":"2579652121850163","target":"50678562032474"},{"source":"403333506966985812956264495103083930421","target":"50678562812897"},{"source":"229320080329284392969231993","target":"50678562812897"},{"source":"229320080329284392969231993","target":"30172798"},{"source":"229320080329284392969231993","target":"3181528016773134152954"},{"source":"2579652121850163","target":"872776"},{"source":"229320080329284392969231993","target":"2579652121850163"},{"source":"50678562032474","target":"2019378258741"},{"source":"403333506966985812956264495103083930421","target":"2019378258741"},{"source":"872776","target":"2019378258741"},{"source":"24831158218","target":"1562583972"},{"source":"229320080329284392969231993","target":"1562583972"},{"source":"36028","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"2624541068405932"},{"source":"229320080329284392969231993","target":"36028"},{"source":"403333506966985812956264495103083930421","target":"4302444777154252931"},{"source":"50678562812897","target":"4302444777154252931"}],"nodes":[{"id":"24831158218","path":"/bentway","label":"Bentway"},{"id":"139376232583985260057851086495","path":"/digital-public-garden","label":"Digital Public Garden"},{"id":"50678562032474","path":"/hypercore","label":"Hypercore"},{"id":"403333506966985812956264495103083930421","path":"/hypertext-transfer-protocol","label":"Hypertext Transfer Protocol"},{"id":"50678562812897","path":"/hypertext","label":"Hypertext"},{"id":"30172798","path":"/hypha","label":"Hypha"},{"id":"3181528016773134152954","path":"/infrastructure","label":"Infrastructure"},{"id":"872776","path":"/ipfs","label":"IPFS"},{"id":"2579652121850163","path":"/peer-to-peer","label":"peer-to-peer"},{"id":"2019378258741","path":"/protocol","label":"Protocol"},{"id":"1562583972","path":"/public","label":"Public"},{"id":"2624541068405932","path":"/publishing","label":"Publishing"},{"id":"36028","path":"/rss","label":"RSS"},{"id":"229320080329284392969231993","path":"/statement-of-intent","label":"Statement of Intent"},{"id":"4302444777154252931","path":"/world-wide-web","label":"World Wide Web"}]}
|
||||
</script>
|
||||
</div>
|
||||
</div>
|
||||
@ -58,12 +58,14 @@
|
||||
</main><footer>
|
||||
|
||||
</footer><!-- That file is not particularly elegant. This will need a refactor at some point. -->
|
||||
<div style="opacity: 0; display: none;" id='tooltip-wrapper' class="bg-white lh-copy">
|
||||
<div class="hide-child">
|
||||
<div id='tooltip-wrapper' class="bg-white lh-copy dn o-0 pa2 w5 f6 overflow-hidden absolute child">
|
||||
<div id='tooltip-content'>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<iframe style="display: none; height: 0; width: 0;" id='link-preview-iframe' src="">
|
||||
<iframe class="dn" id="link-preview-iframe">
|
||||
</iframe>
|
||||
|
||||
<script src="/assets/js/d3.v6.min.js" defer></script>
|
||||
|
Loading…
Reference in New Issue
Block a user