├── .gitignore ├── .travis.yml ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── THOUGHTS ├── TODO ├── notes ├── architecture.md ├── bugs.txt ├── crypto.txt ├── crypto │ ├── ipython_log.py │ └── notes.txt ├── dat-spec-thoughts.md ├── drive.md ├── network.md ├── new_apis.md ├── process.md ├── refs.md ├── register.md ├── sleep.md ├── spec_todo.txt └── upstream_behavior.txt ├── src ├── bin │ ├── geniza-drive.rs │ ├── geniza-net.rs │ ├── geniza-sleep.rs │ └── geniza.rs ├── bitfield.rs ├── discovery.rs ├── drive.rs ├── helpers.rs ├── lib.rs ├── metadata_msgs.proto ├── metadata_msgs.rs ├── network_msgs.proto ├── network_msgs.rs ├── peer.rs ├── protocol.rs ├── sleep_file.rs ├── sleep_register.rs └── synchronizer.rs └── test-data ├── dat ├── README.md ├── alphabet │ ├── .dat │ │ ├── content.bitfield │ │ ├── content.key │ │ ├── content.secret_key │ │ ├── content.signatures │ │ ├── content.tree │ │ ├── metadata.bitfield │ │ ├── metadata.data │ │ ├── metadata.key │ │ ├── metadata.latest │ │ ├── metadata.ogd │ │ ├── metadata.secret_key │ │ ├── metadata.signatures │ │ └── metadata.tree │ ├── a │ ├── b │ ├── c │ ├── d │ ├── e │ └── f ├── removal │ ├── .dat │ │ ├── content.bitfield │ │ ├── content.key │ │ ├── content.secret_key │ │ ├── content.signatures │ │ ├── content.tree │ │ ├── metadata.bitfield │ │ ├── metadata.data │ │ ├── metadata.key │ │ ├── metadata.latest │ │ ├── metadata.ogd │ │ ├── metadata.signatures │ │ └── metadata.tree │ ├── README.md │ └── final.txt ├── simple │ ├── .dat │ │ ├── content.bitfield │ │ ├── content.key │ │ ├── content.secret_key │ │ ├── content.signatures │ │ ├── content.tree │ │ ├── metadata.bitfield │ │ ├── metadata.data │ │ ├── metadata.key │ │ ├── metadata.latest │ │ ├── metadata.ogd │ │ ├── metadata.secret_key │ │ ├── metadata.signatures │ │ └── metadata.tree │ └── README.md └── tree │ ├── .dat │ ├── content.bitfield │ ├── content.key │ ├── content.secret_key │ ├── content.signatures │ ├── content.tree │ ├── metadata.bitfield │ ├── metadata.data │ ├── metadata.key │ ├── metadata.latest │ ├── metadata.ogd │ ├── metadata.secret_key │ ├── metadata.signatures │ └── metadata.tree │ ├── Animalia │ └── Chordata │ │ └── Mammalia │ │ └── Carnivora │ │ ├── Caniformia │ │ └── Mustelidae │ │ │ └── Lutrinae │ │ │ └── Enhydra │ │ │ └── E_lutris.txt │ │ └── Feliformia │ │ └── Felidae │ │ └── Felis │ │ └── F_silvestris.txt │ ├── Fungi │ └── Basidiomycota │ │ └── Agaricormycetes │ │ └── Cantharellales │ │ └── Cantharellaceae │ │ └── Cantharellus │ │ ├── C_appalachiensis.txt │ │ └── C_cibarius.txt │ ├── README.md │ └── datapackage.json └── sleep └── empty ├── empty.hexdump ├── empty.py └── empty.sleep /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/README.md -------------------------------------------------------------------------------- /THOUGHTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/THOUGHTS -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/TODO -------------------------------------------------------------------------------- /notes/architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/notes/architecture.md -------------------------------------------------------------------------------- /notes/bugs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/notes/bugs.txt -------------------------------------------------------------------------------- /notes/crypto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/notes/crypto.txt -------------------------------------------------------------------------------- /notes/crypto/ipython_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/notes/crypto/ipython_log.py -------------------------------------------------------------------------------- /notes/crypto/notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/notes/crypto/notes.txt -------------------------------------------------------------------------------- /notes/dat-spec-thoughts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/notes/dat-spec-thoughts.md -------------------------------------------------------------------------------- /notes/drive.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/notes/drive.md -------------------------------------------------------------------------------- /notes/network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/notes/network.md -------------------------------------------------------------------------------- /notes/new_apis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/notes/new_apis.md -------------------------------------------------------------------------------- /notes/process.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/notes/process.md -------------------------------------------------------------------------------- /notes/refs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/notes/refs.md -------------------------------------------------------------------------------- /notes/register.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/notes/register.md -------------------------------------------------------------------------------- /notes/sleep.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/notes/sleep.md -------------------------------------------------------------------------------- /notes/spec_todo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/notes/spec_todo.txt -------------------------------------------------------------------------------- /notes/upstream_behavior.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/notes/upstream_behavior.txt -------------------------------------------------------------------------------- /src/bin/geniza-drive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/src/bin/geniza-drive.rs -------------------------------------------------------------------------------- /src/bin/geniza-net.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/src/bin/geniza-net.rs -------------------------------------------------------------------------------- /src/bin/geniza-sleep.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/src/bin/geniza-sleep.rs -------------------------------------------------------------------------------- /src/bin/geniza.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/src/bin/geniza.rs -------------------------------------------------------------------------------- /src/bitfield.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/src/bitfield.rs -------------------------------------------------------------------------------- /src/discovery.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/src/discovery.rs -------------------------------------------------------------------------------- /src/drive.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/src/drive.rs -------------------------------------------------------------------------------- /src/helpers.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/src/helpers.rs -------------------------------------------------------------------------------- /src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/src/lib.rs -------------------------------------------------------------------------------- /src/metadata_msgs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/src/metadata_msgs.proto -------------------------------------------------------------------------------- /src/metadata_msgs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/src/metadata_msgs.rs -------------------------------------------------------------------------------- /src/network_msgs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/src/network_msgs.proto -------------------------------------------------------------------------------- /src/network_msgs.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/src/network_msgs.rs -------------------------------------------------------------------------------- /src/peer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/src/peer.rs -------------------------------------------------------------------------------- /src/protocol.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/src/protocol.rs -------------------------------------------------------------------------------- /src/sleep_file.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/src/sleep_file.rs -------------------------------------------------------------------------------- /src/sleep_register.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/src/sleep_register.rs -------------------------------------------------------------------------------- /src/synchronizer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/src/synchronizer.rs -------------------------------------------------------------------------------- /test-data/dat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/README.md -------------------------------------------------------------------------------- /test-data/dat/alphabet/.dat/content.bitfield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/alphabet/.dat/content.bitfield -------------------------------------------------------------------------------- /test-data/dat/alphabet/.dat/content.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/alphabet/.dat/content.key -------------------------------------------------------------------------------- /test-data/dat/alphabet/.dat/content.secret_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/alphabet/.dat/content.secret_key -------------------------------------------------------------------------------- /test-data/dat/alphabet/.dat/content.signatures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/alphabet/.dat/content.signatures -------------------------------------------------------------------------------- /test-data/dat/alphabet/.dat/content.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/alphabet/.dat/content.tree -------------------------------------------------------------------------------- /test-data/dat/alphabet/.dat/metadata.bitfield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/alphabet/.dat/metadata.bitfield -------------------------------------------------------------------------------- /test-data/dat/alphabet/.dat/metadata.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/alphabet/.dat/metadata.data -------------------------------------------------------------------------------- /test-data/dat/alphabet/.dat/metadata.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/alphabet/.dat/metadata.key -------------------------------------------------------------------------------- /test-data/dat/alphabet/.dat/metadata.latest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-data/dat/alphabet/.dat/metadata.ogd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-data/dat/alphabet/.dat/metadata.secret_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/alphabet/.dat/metadata.secret_key -------------------------------------------------------------------------------- /test-data/dat/alphabet/.dat/metadata.signatures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/alphabet/.dat/metadata.signatures -------------------------------------------------------------------------------- /test-data/dat/alphabet/.dat/metadata.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/alphabet/.dat/metadata.tree -------------------------------------------------------------------------------- /test-data/dat/alphabet/a: -------------------------------------------------------------------------------- 1 | a -------------------------------------------------------------------------------- /test-data/dat/alphabet/b: -------------------------------------------------------------------------------- 1 | b -------------------------------------------------------------------------------- /test-data/dat/alphabet/c: -------------------------------------------------------------------------------- 1 | c -------------------------------------------------------------------------------- /test-data/dat/alphabet/d: -------------------------------------------------------------------------------- 1 | d -------------------------------------------------------------------------------- /test-data/dat/alphabet/e: -------------------------------------------------------------------------------- 1 | e -------------------------------------------------------------------------------- /test-data/dat/alphabet/f: -------------------------------------------------------------------------------- 1 | f -------------------------------------------------------------------------------- /test-data/dat/removal/.dat/content.bitfield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/removal/.dat/content.bitfield -------------------------------------------------------------------------------- /test-data/dat/removal/.dat/content.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/removal/.dat/content.key -------------------------------------------------------------------------------- /test-data/dat/removal/.dat/content.secret_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/removal/.dat/content.secret_key -------------------------------------------------------------------------------- /test-data/dat/removal/.dat/content.signatures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/removal/.dat/content.signatures -------------------------------------------------------------------------------- /test-data/dat/removal/.dat/content.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/removal/.dat/content.tree -------------------------------------------------------------------------------- /test-data/dat/removal/.dat/metadata.bitfield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/removal/.dat/metadata.bitfield -------------------------------------------------------------------------------- /test-data/dat/removal/.dat/metadata.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/removal/.dat/metadata.data -------------------------------------------------------------------------------- /test-data/dat/removal/.dat/metadata.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/removal/.dat/metadata.key -------------------------------------------------------------------------------- /test-data/dat/removal/.dat/metadata.latest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-data/dat/removal/.dat/metadata.ogd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-data/dat/removal/.dat/metadata.signatures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/removal/.dat/metadata.signatures -------------------------------------------------------------------------------- /test-data/dat/removal/.dat/metadata.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/removal/.dat/metadata.tree -------------------------------------------------------------------------------- /test-data/dat/removal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/removal/README.md -------------------------------------------------------------------------------- /test-data/dat/removal/final.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/removal/final.txt -------------------------------------------------------------------------------- /test-data/dat/simple/.dat/content.bitfield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/simple/.dat/content.bitfield -------------------------------------------------------------------------------- /test-data/dat/simple/.dat/content.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/simple/.dat/content.key -------------------------------------------------------------------------------- /test-data/dat/simple/.dat/content.secret_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/simple/.dat/content.secret_key -------------------------------------------------------------------------------- /test-data/dat/simple/.dat/content.signatures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/simple/.dat/content.signatures -------------------------------------------------------------------------------- /test-data/dat/simple/.dat/content.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/simple/.dat/content.tree -------------------------------------------------------------------------------- /test-data/dat/simple/.dat/metadata.bitfield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/simple/.dat/metadata.bitfield -------------------------------------------------------------------------------- /test-data/dat/simple/.dat/metadata.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/simple/.dat/metadata.data -------------------------------------------------------------------------------- /test-data/dat/simple/.dat/metadata.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/simple/.dat/metadata.key -------------------------------------------------------------------------------- /test-data/dat/simple/.dat/metadata.latest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-data/dat/simple/.dat/metadata.ogd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-data/dat/simple/.dat/metadata.secret_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/simple/.dat/metadata.secret_key -------------------------------------------------------------------------------- /test-data/dat/simple/.dat/metadata.signatures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/simple/.dat/metadata.signatures -------------------------------------------------------------------------------- /test-data/dat/simple/.dat/metadata.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/simple/.dat/metadata.tree -------------------------------------------------------------------------------- /test-data/dat/simple/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/simple/README.md -------------------------------------------------------------------------------- /test-data/dat/tree/.dat/content.bitfield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/tree/.dat/content.bitfield -------------------------------------------------------------------------------- /test-data/dat/tree/.dat/content.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/tree/.dat/content.key -------------------------------------------------------------------------------- /test-data/dat/tree/.dat/content.secret_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/tree/.dat/content.secret_key -------------------------------------------------------------------------------- /test-data/dat/tree/.dat/content.signatures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/tree/.dat/content.signatures -------------------------------------------------------------------------------- /test-data/dat/tree/.dat/content.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/tree/.dat/content.tree -------------------------------------------------------------------------------- /test-data/dat/tree/.dat/metadata.bitfield: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/tree/.dat/metadata.bitfield -------------------------------------------------------------------------------- /test-data/dat/tree/.dat/metadata.data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/tree/.dat/metadata.data -------------------------------------------------------------------------------- /test-data/dat/tree/.dat/metadata.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/tree/.dat/metadata.key -------------------------------------------------------------------------------- /test-data/dat/tree/.dat/metadata.latest: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-data/dat/tree/.dat/metadata.ogd: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test-data/dat/tree/.dat/metadata.secret_key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/tree/.dat/metadata.secret_key -------------------------------------------------------------------------------- /test-data/dat/tree/.dat/metadata.signatures: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/tree/.dat/metadata.signatures -------------------------------------------------------------------------------- /test-data/dat/tree/.dat/metadata.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/tree/.dat/metadata.tree -------------------------------------------------------------------------------- /test-data/dat/tree/Animalia/Chordata/Mammalia/Carnivora/Caniformia/Mustelidae/Lutrinae/Enhydra/E_lutris.txt: -------------------------------------------------------------------------------- 1 | Sea Otters are the best! 2 | -------------------------------------------------------------------------------- /test-data/dat/tree/Animalia/Chordata/Mammalia/Carnivora/Feliformia/Felidae/Felis/F_silvestris.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/tree/Animalia/Chordata/Mammalia/Carnivora/Feliformia/Felidae/Felis/F_silvestris.txt -------------------------------------------------------------------------------- /test-data/dat/tree/Fungi/Basidiomycota/Agaricormycetes/Cantharellales/Cantharellaceae/Cantharellus/C_appalachiensis.txt: -------------------------------------------------------------------------------- 1 | You know, from the Appalachian Mountains! 2 | -------------------------------------------------------------------------------- /test-data/dat/tree/Fungi/Basidiomycota/Agaricormycetes/Cantharellales/Cantharellaceae/Cantharellus/C_cibarius.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/dat/tree/Fungi/Basidiomycota/Agaricormycetes/Cantharellales/Cantharellaceae/Cantharellus/C_cibarius.txt -------------------------------------------------------------------------------- /test-data/dat/tree/README.md: -------------------------------------------------------------------------------- 1 | 2 | Welcome to the Tree of Life! 3 | -------------------------------------------------------------------------------- /test-data/dat/tree/datapackage.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tree test dat" 3 | } 4 | -------------------------------------------------------------------------------- /test-data/sleep/empty/empty.hexdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/sleep/empty/empty.hexdump -------------------------------------------------------------------------------- /test-data/sleep/empty/empty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/sleep/empty/empty.py -------------------------------------------------------------------------------- /test-data/sleep/empty/empty.sleep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bnewbold/geniza/HEAD/test-data/sleep/empty/empty.sleep --------------------------------------------------------------------------------