Skip to content

Commit bcda08b

Browse files
mastercybclaude
andcommitted
fix: resolve merge conflicts after cyb/ subgraph extraction
cyb/ pages deleted (moved to ~/git/cyb), proof.md kept concise HEAD version Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2 parents 6ec9e67 + 693cb9c commit bcda08b

File tree

220 files changed

+2437
-108
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

220 files changed

+2437
-108
lines changed

CLAUDE.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ Domain tags: `article`, `cybernomics`, `compound`, `ticker`, `person`,
7171

7272
Never write `[[term]]s` with a floating `s` outside the link. Every
7373
concept page that has a meaningful plural must include both forms in its
74-
`alias::` line (e.g. `alias:: isomorphisms` on the `isomorphism` page).
74+
`alias:` line (e.g. `alias: isomorphisms` on the `isomorphism` page).
7575
Then link the plural directly: `[[isomorphisms]]` instead of
7676
`[[isomorphism]]s`. This keeps links clean and resolvable.
7777
## Shell: Nushell
@@ -116,6 +116,7 @@ Scripts:
116116
- `analizer/trikernel.nu` — compute tri-kernel (diffusion, springs, heat) over wiki-link graph, write focus + gravity + density to frontmatter. Runs on new moon only (±1 day); use `--force` to override, `--dry-run` to preview
117117

118118
- `analizer/dangling.nu` — alias-aware dangling wiki-link detector (basenames, paths, alias: frontmatter; case-insensitive; top 50 + stats)
119+
- `analizer/add-footer.nu` — append `discover all [[concepts]]` footer to core-tagged pages missing it
119120
- `analizer/codematter.nu` — add comment-frontmatter to code files (.rs, .nu, .toml, .py, .sh, .yml), integrating source into cybergraph as particles
120121

121122
When adding a new script: place it in `analizer/`, accept `graph_path` as first

analizer/add-footer.nu

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
def main [graph_path: string] {
2+
let pages_subdir = if (($graph_path | path join "root") | path exists) { "root" } else if (($graph_path | path join "graph") | path exists) { "graph" } else { "pages" }
3+
let pages_dir = ($graph_path | path join $pages_subdir)
4+
5+
let files = (glob $"($pages_dir)/**/*.md" | where {|f|
6+
let content = (try { open --raw $f } catch { "" })
7+
let has_core = ($content =~ "tags:.*core")
8+
let has_discover = ($content =~ "discover all")
9+
$has_core and (not $has_discover)
10+
})
11+
12+
print $"found ($files | length) core pages without footer"
13+
14+
$files | each {|f|
15+
let content = (open --raw $f | str replace -r '\s+$' '')
16+
let new_content = ($content + "\n\ndiscover all [[concepts]]\n")
17+
$new_content | save -f $f
18+
let stem = ($f | path parse | get stem)
19+
print $" added footer: ($stem)"
20+
}
21+
22+
print "done"
23+
}

root/$ETH.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,16 @@ heat: 0.00014455737288700745
99
focus: 0.00018005462472170703
1010
gravity: 7
1111
density: 0
12-
---
12+
---
13+
14+
$ETH is the native token of the [[Ethereum]] network, serving as the fundamental unit of value for gas fees, [[staking]], and economic security across the ecosystem.
15+
16+
Validators stake $ETH to participate in [[proof of stake]] consensus, earning rewards for honest block production and facing slashing for misbehavior. Every transaction on [[Ethereum]] requires $ETH to pay for computational resources measured in gas.
17+
18+
$ETH functions as pristine collateral across [[DeFi]] protocols, underpinning lending markets, liquidity pools, and synthetic assets. Its monetary premium derives from simultaneous utility as fee currency, staking yield asset, and collateral backbone.
19+
20+
In the [[cyber]] ecosystem, $ETH is one of the external assets bridged into [[bostrom]] via [[IBC]] relayers. This bridge enables [[neurons]] to bring [[Ethereum]] liquidity into the [[cyber]] economy while maintaining exposure to the broader crypto ecosystem.
21+
22+
The EIP-1559 burn mechanism makes $ETH deflationary under sufficient network demand, aligning the token economics with long-term value accrual for holders and [[staking]] participants.
23+
24+
discover all [[concepts]]

root/Avogadro.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
---
2+
tags: article
3+
crystal-type: measure
4+
alias: Avogadro's number, mole
5+
---
6+
7+
# Avogadro
8+
9+
Avogadro's number (6.022 x 10^23) defines the count of constituent particles in one [[mole]] of substance.
10+
11+
Named after Amedeo Avogadro, this fundamental constant bridges atomic and macroscopic scales. One mole of [[carbon]]-12 atoms weighs exactly 12 grams, and each of those atoms contributes to the ensemble measured by this number.
12+
13+
The constant enables [[chemistry]] to translate between individual molecular events and laboratory-scale quantities. Stoichiometric calculations, gas laws, and [[thermodynamics]] all rely on Avogadro's number as a unit-conversion anchor.
14+
15+
In 2019, the SI redefinition fixed the value at exactly 6.02214076 x 10^23 mol^-1, removing its dependence on the kilogram prototype.
16+
17+
discover all [[concepts]]

root/CAP theorem.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
tags: comp, distributed systems
33
crystal-type: entity
44
crystal-domain: comp
5-
alias:: Brewer's theorem, CAP
5+
alias: Brewer's theorem, CAP
66
---
77
# CAP theorem
88

root/CRDT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
tags: comp, distributed systems
33
crystal-type: entity
44
crystal-domain: comp
5-
alias:: CRDTs, conflict-free replicated data type, conflict-free replicated data types
5+
alias: CRDTs, conflict-free replicated data type, conflict-free replicated data types
66
---
77
# CRDT
88

root/DAS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
tags: comp, data availability
33
crystal-type: entity
44
crystal-domain: comp
5-
alias:: data availability sampling
5+
alias: data availability sampling
66
---
77
# DAS
88

root/G-Set.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
tags: comp, distributed systems
33
crystal-type: entity
44
crystal-domain: comp
5-
alias:: G-Sets, grow-only set, grow-only sets
5+
alias: G-Sets, grow-only set, grow-only sets
66
---
77
# G-Set
88

root/Kurt Goedel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
tags: person
33
crystal-type: entity
44
crystal-domain: cybics
5-
alias:: Goedel
5+
alias: Goedel
66
stake: 7491202206265963
77
diffusion: 0.00028856545926880816
88
springs: 0.00024360512080315392

root/LogUp.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
tags: cyber, core
3+
crystal-type: pattern
4+
alias: logarithmic lookup, lookup argument
5+
---
6+
7+
# LogUp
8+
9+
A logarithmic derivative lookup argument used in [[starks]] and zero-knowledge proof systems.
10+
11+
LogUp reduces table lookup verification to a single randomized check using logarithmic derivatives.
12+
The prover demonstrates that a multiset of queried values is contained in a predefined lookup table.
13+
This technique replaces expensive permutation arguments with summation-based polynomial identities.
14+
Efficiency gains make LogUp suitable for circuits with millions of lookup gates.
15+
Applications include range checks, hash function decomposition, and memory consistency proofs.
16+
Integration with [[cyber]] proof infrastructure enables scalable verification of [[cyberlink]] validity.
17+
18+
discover all [[concepts]]

0 commit comments

Comments
 (0)