added hugo-deploy
This commit is contained in:
parent
3dbb2738da
commit
0cbb624217
|
@ -0,0 +1,39 @@
|
||||||
|
name: Deploy to GitHub Pages
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- hugo
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
deploy:
|
||||||
|
runs-on: ubuntu-18.04
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
with:
|
||||||
|
fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod
|
||||||
|
|
||||||
|
- name: Build Link Index
|
||||||
|
uses: jackyzha0/hugo-obsidian@v2.13
|
||||||
|
with:
|
||||||
|
index: true
|
||||||
|
input: content
|
||||||
|
output: assets/indices
|
||||||
|
root: .
|
||||||
|
|
||||||
|
- name: Setup Hugo
|
||||||
|
uses: peaceiris/actions-hugo@v2
|
||||||
|
with:
|
||||||
|
hugo-version: '0.96.0'
|
||||||
|
extended: true
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: hugo --minify
|
||||||
|
|
||||||
|
- name: Deploy
|
||||||
|
uses: peaceiris/actions-gh-pages@v3
|
||||||
|
with:
|
||||||
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
publish_dir: ./public
|
||||||
|
publish_branch: master # deploying branch
|
||||||
|
cname: quartz.jzhao.xyz
|
|
@ -17,6 +17,19 @@
|
||||||
},
|
},
|
||||||
"pinned": true
|
"pinned": true
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "0d60344ada5bb757",
|
||||||
|
"type": "leaf",
|
||||||
|
"state": {
|
||||||
|
"type": "markdown",
|
||||||
|
"state": {
|
||||||
|
"file": "pages/Project Logos.md",
|
||||||
|
"mode": "source",
|
||||||
|
"backlinks": false,
|
||||||
|
"source": false
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"direction": "vertical"
|
"direction": "vertical"
|
||||||
|
@ -73,7 +86,7 @@
|
||||||
"state": {
|
"state": {
|
||||||
"type": "backlink",
|
"type": "backlink",
|
||||||
"state": {
|
"state": {
|
||||||
"file": "pages/Start Here.md",
|
"file": "pages/Project Logos.md",
|
||||||
"collapseAll": false,
|
"collapseAll": false,
|
||||||
"extraContext": false,
|
"extraContext": false,
|
||||||
"sortOrder": "alphabetical",
|
"sortOrder": "alphabetical",
|
||||||
|
@ -102,17 +115,17 @@
|
||||||
"width": 300,
|
"width": 300,
|
||||||
"collapsed": true
|
"collapsed": true
|
||||||
},
|
},
|
||||||
"active": "8143718c5f145084",
|
"active": "0d60344ada5bb757",
|
||||||
"lastOpenFiles": [
|
"lastOpenFiles": [
|
||||||
"pages/Start Here.md",
|
|
||||||
"pages/Project Logos.md",
|
"pages/Project Logos.md",
|
||||||
|
"pages/Bootstrapping or Factory.md",
|
||||||
|
"pages/Tokenomics.md",
|
||||||
|
"pages/Network Layer.md",
|
||||||
|
"pages/Consensus.md",
|
||||||
|
"pages/BBA.md",
|
||||||
|
"pages/Tags.md",
|
||||||
|
"pages/Logos Program.md",
|
||||||
"pages/Project Codex.md",
|
"pages/Project Codex.md",
|
||||||
"pages/Remote Auditing.md",
|
"pages/erasure-coding.md"
|
||||||
"pages/Project Waku.md",
|
|
||||||
"pages/Set of Implementations.md",
|
|
||||||
"pages/Network of Nodes.md",
|
|
||||||
"pages/Set of Protocols.md",
|
|
||||||
"pages/Decentralized Storage.md",
|
|
||||||
"pages/Redundancy.md"
|
|
||||||
]
|
]
|
||||||
}
|
}
|
|
@ -0,0 +1,15 @@
|
||||||
|
Phrase: Confidence
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition: How confident am I with each round or iteration of questioning that I am getting or have gotten to the right answer (convergence of iterative process)? Interpretation (economic, reputation (see [Ikingut (Reputation Algorithm)](Ikingut%20(Reputation%20Algorithm).md), et al) of accumulated data in order to reach a certain probabalistic threshold of agreement. Poll network based on your local view of "weight" instead of Avalanche's "staked weight". The amount of staked weight, or weight a given node has, dictates the probability of when it is polled in the network. When you increase stake in the network, you get polled more often for your decisions in the network. In PBFT you need to have complete knowledge of who is participating in each round of consensus.
|
||||||
|
|
||||||
|
Current Implementation: Research ongoing.
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,14 @@
|
||||||
|
Phrase: Directed Acyclic Graph (DAG)
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
A data structure that allows for branching to occur. A blockchain is just a linear DAG. A DAG is a generalization of that dynamic which can allow for other parts can branch off and continue to exist.
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,15 @@
|
||||||
|
Phrase:
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,15 @@
|
||||||
|
Phrase:
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,14 @@
|
||||||
|
Phrase:
|
||||||
|
Finality
|
||||||
|
|
||||||
|
Operating Definition: The ability for a network to come to agreement on a block of information quickly (hopefully around sub-second to 2 second range). 10 minute block times are out of the question (too slow i.e., Bitcoin).
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,22 @@
|
||||||
|
Phrase: Glacier
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition: Better Avalanche consensus lol.
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
1. Querying
|
||||||
|
2. Computing
|
||||||
|
1. Confidence
|
||||||
|
2. Evidence
|
||||||
|
3. Accumulated Evidence
|
||||||
|
3. Transition
|
||||||
|
4. Opinion & Decision (Flip or Settle)
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,15 @@
|
||||||
|
Phrase: Highly-Partitioned Blockchains with Local Views
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition: Concept that you can have Basically looking at how you can have a network of nodes coming into agreement upon multiple different types of data at the same time (subnets in Avalanche). Then, with any given piece of information, we look at how much you can partition that information within that group (parallelization of information) to try to minimize the amount of work any given node needs to do. Parallelization of work between heavier nodes and lighter nodes can allow both to be relevant within the group.
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,18 @@
|
||||||
|
Phrase: Ikingut
|
||||||
|
Meaning & History
|
||||||
|
Means **"friend" in Greenlandic**.
|
||||||
|
[https://www.imdb.com/title/tt0271003/plotsummary?ref_=tt_ov_pl](https://www.imdb.com/title/tt0271003/plotsummary?ref_=tt_ov_pl)
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,15 @@
|
||||||
|
Phrase:
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,15 @@
|
||||||
|
Phrase:
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,15 @@
|
||||||
|
Phrase:
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,15 @@
|
||||||
|
Phrase:
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,15 @@
|
||||||
|
Phrase:
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,15 @@
|
||||||
|
Phrase:
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,15 @@
|
||||||
|
Phrase:
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,15 @@
|
||||||
|
Phrase:
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,15 @@
|
||||||
|
Phrase:
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,15 @@
|
||||||
|
Phrase:
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,15 @@
|
||||||
|
Phrase:
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,15 @@
|
||||||
|
Phrase:
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,15 @@
|
||||||
|
Phrase:
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,15 @@
|
||||||
|
Phrase:
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,18 @@
|
||||||
|
Phrase: Scalability
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
With PBFT or Paxos-like consensus-like algorithms as you scale the number of validators the messages that need to be passed scales exponentially and that limits the number of validators close to around 100 or so because that message complexity gets too high. Bandwidth too high which affects how fast you can come to finality. As you increase the # of validators you increase the amount of work each validator has to do. This doesn't work for us, we want to keep the amount of work per individual as low as possible so we don't make it difficult for people to get access to available resources to be able to participate. We want to give more people the ability to participate within a network.
|
||||||
|
|
||||||
|
We want individual communties to be able to start with a low node count and eventually grow into a large node count. This may require the transition from a specific type of consensus mechanism into a different one or a combination of the two. A small network can join us and use our consensus infrastructure to start and grow off.
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,15 @@
|
||||||
|
Phrase:
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,15 @@
|
||||||
|
Phrase:
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,15 @@
|
||||||
|
Phrase:
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,15 @@
|
||||||
|
Phrase:
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,15 @@
|
||||||
|
Phrase:
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,15 @@
|
||||||
|
Phrase:
|
||||||
|
Sybil Resistance (also related to Sybil Defense Mechanisms)
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
Need some "weight" to decision-making otherwise it becomes easy for other people to spin up a bunch of identities that can become "threat actors" to your system by swaying your consensus mechanism.
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
|
@ -0,0 +1,15 @@
|
||||||
|
Phrase:
|
||||||
|
|
||||||
|
Related:
|
||||||
|
|
||||||
|
Operating Definition:
|
||||||
|
|
||||||
|
Current Implementation:
|
||||||
|
|
||||||
|
The Idea(l):
|
||||||
|
|
||||||
|
Logos Implementation:
|
||||||
|
|
||||||
|
IMPORTANT Differentiators:
|
||||||
|
|
||||||
|
Trash Heap:
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1 @@
|
||||||
|
-
|
Loading…
Reference in New Issue