From 01c17c68277ff88fab812920732d9bbe9e6bb571 Mon Sep 17 00:00:00 2001 From: murilo ijanc Date: Tue, 24 Mar 2026 21:45:05 -0300 Subject: Simplify website to single-page Remove old Zola-generated content, keep only the essential landing page with about, contact, and license sections. --- book/en/commands/export.html | 307 ------------------------------------------- 1 file changed, 307 deletions(-) delete mode 100644 book/en/commands/export.html (limited to 'book/en/commands/export.html') diff --git a/book/en/commands/export.html b/book/en/commands/export.html deleted file mode 100644 index e6ba75b..0000000 --- a/book/en/commands/export.html +++ /dev/null @@ -1,307 +0,0 @@ - - - - - - export - Tesseras User Guide - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
-
-

Keyboard shortcuts

-
-

Press or to navigate between chapters

-

Press S or / to search in the book

-

Press ? to show this help

-

Press Esc to hide this help

-
-
-
-
- - - - - - - - - - - - - -
- -
-
- - - - - - - -
-
-

tes export

-

Export a tessera as a self-contained directory.

-

Usage

-
tes export <HASH> <DEST>
-
-

Arguments

-
- - - - - - - - -
ArgumentDescription
<HASH>Tessera content hash (64 hex characters)
<DEST>Destination directory
-
-

Options

-
- - - - - - - -
OptionDescription
--data-dir <PATH>Base directory for data storage (default: ~/.tesseras)
-
-

Output structure

-

The export creates a directory named tessera-<hash> inside the destination:

-
tessera-9f2c4a1b.../
-├── MANIFEST                    # Plain text index with checksums
-├── README.decode               # Human-readable decoding instructions
-├── identity/
-│   ├── creator.pub.ed25519     # Creator's public key
-│   └── signature.ed25519.sig   # Signature of the MANIFEST
-├── memories/
-│   ├── <content-hash>/
-│   │   ├── media.jpg           # Primary media file
-│   │   ├── context.txt         # Human context in plain UTF-8
-│   │   └── meta.json           # Structured metadata
-│   └── .../
-├── schema/
-│   └── v1.json                 # JSON schema for metadata validation
-└── decode/
-    ├── formats.txt             # Explanation of all formats used
-    ├── jpeg.txt                # How to decode JPEG
-    ├── wav.txt                 # How to decode WAV
-    └── json.txt                # How to decode JSON
-
-

Example

-
tes export 9f2c4a1b3e7d8f0cabc123def4567890... ./backup
-
-
Exported to ./backup/tessera-9f2c4a1b3e7d8f0cabc123def4567890...
-
-

Key feature: self-contained

-

The exported directory is designed to be readable without Tesseras software. It includes:

-
    -
  • MANIFEST — a plain-text file listing every file with its BLAKE3 checksum, readable by any text editor
  • -
  • README.decode — human-readable instructions for understanding the contents
  • -
  • decode/ — detailed explanations of every file format used (JPEG, WAV, JSON, UTF-8)
  • -
-

This means someone thousands of years from now, with no knowledge of Tesseras, can still understand and access the memories.

-

Use cases

-
    -
  • Backup — export to an external drive, USB stick, or cloud storage
  • -
  • Sharing — give someone a complete copy of a tessera
  • -
  • Archival — store on write-once media (DVD, Blu-ray, tape)
  • -
  • Migration — move tesseras between machines without needing the database
  • -
- -
- - -
-
- - - -
- - - - - - - - - - - - - - - - - - - - - - - - -
- - -- cgit v1.2.3