├── npm ├── index.js ├── package-lock.json ├── package.json ├── LICENSE ├── jsdoc.json └── README.md ├── py ├── this.document.egg-info │ ├── top_level.txt │ ├── dependency_links.txt │ ├── SOURCES.txt │ └── PKG-INFO ├── this.document │ └── __init__.py ├── README.md ├── dist │ ├── this_document-0.1.0.tar.gz │ └── this_document-0.1.0-py3-none-any.whl └── setup.py ├── crate ├── target │ └── package │ │ ├── this-document-0.1.0 │ │ ├── target │ │ │ ├── debug │ │ │ │ ├── .cargo-lock │ │ │ │ ├── incremental │ │ │ │ │ └── this_document-3lgizcjo40hkq │ │ │ │ │ │ ├── s-h8m60l1ni8-078m1c8.lock │ │ │ │ │ │ └── s-h8m60l1ni8-078m1c8-9rumf1uoqm0gncr8nsylazgc5 │ │ │ │ │ │ ├── dep-graph.bin │ │ │ │ │ │ ├── query-cache.bin │ │ │ │ │ │ ├── work-products.bin │ │ │ │ │ │ ├── 0sfzxivz86krm69d9j3l4wmon.o │ │ │ │ │ │ ├── 15zt8kkkj7rq0b08q7zc1juac.o │ │ │ │ │ │ ├── 2vdxwuff46vb4ctq4fo8cdhjm.o │ │ │ │ │ │ ├── 3aktjtktsjd5l2pfh6nzox93m.o │ │ │ │ │ │ ├── 8nugpymq31kugxi2ig3xxj19u.o │ │ │ │ │ │ └── e8sqliacg0ywvw2j1p3j7scim.o │ │ │ │ ├── .fingerprint │ │ │ │ │ └── this-document-514efffd4413392f │ │ │ │ │ │ ├── bin-this-document │ │ │ │ │ │ ├── invoked.timestamp │ │ │ │ │ │ ├── dep-bin-this-document │ │ │ │ │ │ └── bin-this-document.json │ │ │ │ ├── this-document │ │ │ │ ├── deps │ │ │ │ │ ├── this_document-514efffd4413392f │ │ │ │ │ ├── this_document-514efffd4413392f.0sfzxivz86krm69d9j3l4wmon.rcgu.o │ │ │ │ │ ├── this_document-514efffd4413392f.15zt8kkkj7rq0b08q7zc1juac.rcgu.o │ │ │ │ │ ├── this_document-514efffd4413392f.2vdxwuff46vb4ctq4fo8cdhjm.rcgu.o │ │ │ │ │ ├── this_document-514efffd4413392f.3aktjtktsjd5l2pfh6nzox93m.rcgu.o │ │ │ │ │ ├── this_document-514efffd4413392f.8nugpymq31kugxi2ig3xxj19u.rcgu.o │ │ │ │ │ ├── this_document-514efffd4413392f.e8sqliacg0ywvw2j1p3j7scim.rcgu.o │ │ │ │ │ └── this_document-514efffd4413392f.d │ │ │ │ └── this-document.d │ │ │ ├── package │ │ │ │ └── this-document-0.1.0.crate │ │ │ └── .rustc_info.json │ │ ├── src │ │ │ └── main.rs │ │ ├── .cargo_vcs_info.json │ │ ├── Cargo.lock │ │ ├── README.md │ │ ├── Cargo.toml.orig │ │ └── Cargo.toml │ │ └── this-document-0.1.0.crate ├── src │ └── main.rs ├── README.md └── Cargo.toml ├── .gitignore └── README.md /npm/index.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py/this.document.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /py/this.document.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/debug/.cargo-lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /crate/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, document!"); 3 | } 4 | -------------------------------------------------------------------------------- /py/this.document/__init__.py: -------------------------------------------------------------------------------- 1 | def greet(): 2 | return "Hello from this.documents" -------------------------------------------------------------------------------- /py/README.md: -------------------------------------------------------------------------------- 1 | ## this.document 2 | For Python 3 | https://neurons.me 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/src/main.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("Hello, document!"); 3 | } 4 | -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/debug/incremental/this_document-3lgizcjo40hkq/s-h8m60l1ni8-078m1c8.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /py/dist/this_document-0.1.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurons-me/this.document/HEAD/py/dist/this_document-0.1.0.tar.gz -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/debug/.fingerprint/this-document-514efffd4413392f/bin-this-document: -------------------------------------------------------------------------------- 1 | 0570ff219373699c -------------------------------------------------------------------------------- /py/dist/this_document-0.1.0-py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurons-me/this.document/HEAD/py/dist/this_document-0.1.0-py3-none-any.whl -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0.crate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurons-me/this.document/HEAD/crate/target/package/this-document-0.1.0.crate -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/debug/.fingerprint/this-document-514efffd4413392f/invoked.timestamp: -------------------------------------------------------------------------------- 1 | This file has an mtime of when this was started. -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/.cargo_vcs_info.json: -------------------------------------------------------------------------------- 1 | { 2 | "git": { 3 | "sha1": "6402ee5a7f16102ef239b420dba64c202ea1440f" 4 | }, 5 | "path_in_vcs": "crate" 6 | } -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/debug/this-document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurons-me/this.document/HEAD/crate/target/package/this-document-0.1.0/target/debug/this-document -------------------------------------------------------------------------------- /crate/README.md: -------------------------------------------------------------------------------- 1 | # this.document 2 | 3 | ### Status 4 | Early development — foundational structures are being defined. 5 | 6 | --- 7 | 8 | Maintained by [neurons.me](https://neurons.me) • Authored by suiGn -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/package/this-document-0.1.0.crate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurons-me/this.document/HEAD/crate/target/package/this-document-0.1.0/target/package/this-document-0.1.0.crate -------------------------------------------------------------------------------- /py/this.document.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- 1 | README.md 2 | setup.py 3 | this.document.egg-info/PKG-INFO 4 | this.document.egg-info/SOURCES.txt 5 | this.document.egg-info/dependency_links.txt 6 | this.document.egg-info/top_level.txt -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/Cargo.lock: -------------------------------------------------------------------------------- 1 | # This file is automatically @generated by Cargo. 2 | # It is not intended for manual editing. 3 | version = 4 4 | 5 | [[package]] 6 | name = "this-document" 7 | version = "0.1.0" 8 | -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/debug/deps/this_document-514efffd4413392f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurons-me/this.document/HEAD/crate/target/package/this-document-0.1.0/target/debug/deps/this_document-514efffd4413392f -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/README.md: -------------------------------------------------------------------------------- 1 | # this.document 2 | 3 | ### Status 4 | Early development — foundational structures are being defined. 5 | 6 | --- 7 | 8 | Maintained by [neurons.me](https://neurons.me) • Authored by suiGn -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/debug/.fingerprint/this-document-514efffd4413392f/dep-bin-this-document: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurons-me/this.document/HEAD/crate/target/package/this-document-0.1.0/target/debug/.fingerprint/this-document-514efffd4413392f/dep-bin-this-document -------------------------------------------------------------------------------- /npm/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "this.document", 3 | "version": "1.0.2", 4 | "lockfileVersion": 3, 5 | "requires": true, 6 | "packages": { 7 | "": { 8 | "name": "this.document", 9 | "version": "1.0.2", 10 | "license": "MIT" 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/debug/deps/this_document-514efffd4413392f.0sfzxivz86krm69d9j3l4wmon.rcgu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurons-me/this.document/HEAD/crate/target/package/this-document-0.1.0/target/debug/deps/this_document-514efffd4413392f.0sfzxivz86krm69d9j3l4wmon.rcgu.o -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/debug/deps/this_document-514efffd4413392f.15zt8kkkj7rq0b08q7zc1juac.rcgu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurons-me/this.document/HEAD/crate/target/package/this-document-0.1.0/target/debug/deps/this_document-514efffd4413392f.15zt8kkkj7rq0b08q7zc1juac.rcgu.o -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/debug/deps/this_document-514efffd4413392f.2vdxwuff46vb4ctq4fo8cdhjm.rcgu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurons-me/this.document/HEAD/crate/target/package/this-document-0.1.0/target/debug/deps/this_document-514efffd4413392f.2vdxwuff46vb4ctq4fo8cdhjm.rcgu.o -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/debug/deps/this_document-514efffd4413392f.3aktjtktsjd5l2pfh6nzox93m.rcgu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurons-me/this.document/HEAD/crate/target/package/this-document-0.1.0/target/debug/deps/this_document-514efffd4413392f.3aktjtktsjd5l2pfh6nzox93m.rcgu.o -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/debug/deps/this_document-514efffd4413392f.8nugpymq31kugxi2ig3xxj19u.rcgu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurons-me/this.document/HEAD/crate/target/package/this-document-0.1.0/target/debug/deps/this_document-514efffd4413392f.8nugpymq31kugxi2ig3xxj19u.rcgu.o -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/debug/deps/this_document-514efffd4413392f.e8sqliacg0ywvw2j1p3j7scim.rcgu.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurons-me/this.document/HEAD/crate/target/package/this-document-0.1.0/target/debug/deps/this_document-514efffd4413392f.e8sqliacg0ywvw2j1p3j7scim.rcgu.o -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/debug/this-document.d: -------------------------------------------------------------------------------- 1 | /Users/abellae/Desktop/Neuroverse/all.this/packages-src/this.document/crate/target/package/this-document-0.1.0/target/debug/this-document: /Users/abellae/Desktop/Neuroverse/all.this/packages-src/this.document/crate/target/package/this-document-0.1.0/src/main.rs 2 | -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/debug/incremental/this_document-3lgizcjo40hkq/s-h8m60l1ni8-078m1c8-9rumf1uoqm0gncr8nsylazgc5/dep-graph.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurons-me/this.document/HEAD/crate/target/package/this-document-0.1.0/target/debug/incremental/this_document-3lgizcjo40hkq/s-h8m60l1ni8-078m1c8-9rumf1uoqm0gncr8nsylazgc5/dep-graph.bin -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/debug/incremental/this_document-3lgizcjo40hkq/s-h8m60l1ni8-078m1c8-9rumf1uoqm0gncr8nsylazgc5/query-cache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurons-me/this.document/HEAD/crate/target/package/this-document-0.1.0/target/debug/incremental/this_document-3lgizcjo40hkq/s-h8m60l1ni8-078m1c8-9rumf1uoqm0gncr8nsylazgc5/query-cache.bin -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/debug/incremental/this_document-3lgizcjo40hkq/s-h8m60l1ni8-078m1c8-9rumf1uoqm0gncr8nsylazgc5/work-products.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurons-me/this.document/HEAD/crate/target/package/this-document-0.1.0/target/debug/incremental/this_document-3lgizcjo40hkq/s-h8m60l1ni8-078m1c8-9rumf1uoqm0gncr8nsylazgc5/work-products.bin -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/debug/incremental/this_document-3lgizcjo40hkq/s-h8m60l1ni8-078m1c8-9rumf1uoqm0gncr8nsylazgc5/0sfzxivz86krm69d9j3l4wmon.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurons-me/this.document/HEAD/crate/target/package/this-document-0.1.0/target/debug/incremental/this_document-3lgizcjo40hkq/s-h8m60l1ni8-078m1c8-9rumf1uoqm0gncr8nsylazgc5/0sfzxivz86krm69d9j3l4wmon.o -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/debug/incremental/this_document-3lgizcjo40hkq/s-h8m60l1ni8-078m1c8-9rumf1uoqm0gncr8nsylazgc5/15zt8kkkj7rq0b08q7zc1juac.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurons-me/this.document/HEAD/crate/target/package/this-document-0.1.0/target/debug/incremental/this_document-3lgizcjo40hkq/s-h8m60l1ni8-078m1c8-9rumf1uoqm0gncr8nsylazgc5/15zt8kkkj7rq0b08q7zc1juac.o -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/debug/incremental/this_document-3lgizcjo40hkq/s-h8m60l1ni8-078m1c8-9rumf1uoqm0gncr8nsylazgc5/2vdxwuff46vb4ctq4fo8cdhjm.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurons-me/this.document/HEAD/crate/target/package/this-document-0.1.0/target/debug/incremental/this_document-3lgizcjo40hkq/s-h8m60l1ni8-078m1c8-9rumf1uoqm0gncr8nsylazgc5/2vdxwuff46vb4ctq4fo8cdhjm.o -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/debug/incremental/this_document-3lgizcjo40hkq/s-h8m60l1ni8-078m1c8-9rumf1uoqm0gncr8nsylazgc5/3aktjtktsjd5l2pfh6nzox93m.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurons-me/this.document/HEAD/crate/target/package/this-document-0.1.0/target/debug/incremental/this_document-3lgizcjo40hkq/s-h8m60l1ni8-078m1c8-9rumf1uoqm0gncr8nsylazgc5/3aktjtktsjd5l2pfh6nzox93m.o -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/debug/incremental/this_document-3lgizcjo40hkq/s-h8m60l1ni8-078m1c8-9rumf1uoqm0gncr8nsylazgc5/8nugpymq31kugxi2ig3xxj19u.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurons-me/this.document/HEAD/crate/target/package/this-document-0.1.0/target/debug/incremental/this_document-3lgizcjo40hkq/s-h8m60l1ni8-078m1c8-9rumf1uoqm0gncr8nsylazgc5/8nugpymq31kugxi2ig3xxj19u.o -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/debug/incremental/this_document-3lgizcjo40hkq/s-h8m60l1ni8-078m1c8-9rumf1uoqm0gncr8nsylazgc5/e8sqliacg0ywvw2j1p3j7scim.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/neurons-me/this.document/HEAD/crate/target/package/this-document-0.1.0/target/debug/incremental/this_document-3lgizcjo40hkq/s-h8m60l1ni8-078m1c8-9rumf1uoqm0gncr8nsylazgc5/e8sqliacg0ywvw2j1p3j7scim.o -------------------------------------------------------------------------------- /crate/Cargo.toml: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "this-document" 3 | version = "0.1.0" 4 | authors = ["suiGn "] 5 | edition = "2021" 6 | description = "This.Dir Data Formatter" 7 | license = "MIT OR Apache-2.0" 8 | repository = "https://github.com/neurons-me/this.audio" 9 | homepage = "https://neurons.me" 10 | readme = "README.md" 11 | keywords = ["Documents", "Data"] 12 | categories = ["command-line-utilities", "encoding"] 13 | [dependencies] 14 | -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/debug/deps/this_document-514efffd4413392f.d: -------------------------------------------------------------------------------- 1 | /Users/abellae/Desktop/Neuroverse/all.this/packages-src/this.document/crate/target/package/this-document-0.1.0/target/debug/deps/this_document-514efffd4413392f: src/main.rs 2 | 3 | /Users/abellae/Desktop/Neuroverse/all.this/packages-src/this.document/crate/target/package/this-document-0.1.0/target/debug/deps/this_document-514efffd4413392f.d: src/main.rs 4 | 5 | src/main.rs: 6 | -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/debug/.fingerprint/this-document-514efffd4413392f/bin-this-document.json: -------------------------------------------------------------------------------- 1 | {"rustc":15497389221046826682,"features":"[]","declared_features":"[]","target":6257069881939939308,"profile":6675295047989516842,"path":4942398508502643691,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug/.fingerprint/this-document-514efffd4413392f/dep-bin-this-document","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/Cargo.toml.orig: -------------------------------------------------------------------------------- 1 | [package] 2 | name = "this-document" 3 | version = "0.1.0" 4 | authors = ["suiGn "] 5 | edition = "2021" 6 | description = "This.Dir Data Formatter" 7 | license = "MIT OR Apache-2.0" 8 | repository = "https://github.com/neurons-me/this.audio" 9 | homepage = "https://neurons.me" 10 | readme = "README.md" 11 | keywords = ["Documents", "Data"] 12 | categories = ["command-line-utilities", "encoding"] 13 | [dependencies] 14 | -------------------------------------------------------------------------------- /py/setup.py: -------------------------------------------------------------------------------- 1 | from setuptools import setup, find_packages 2 | 3 | setup( 4 | name='this.document', 5 | version='0.1.0', 6 | author='suiGn', 7 | description='this.dir library for Python', 8 | long_description=open('README.md').read(), 9 | long_description_content_type='text/markdown', 10 | url="https://neurons.me", 11 | packages=find_packages(), 12 | classifiers=[ 13 | 'Programming Language :: Python :: 3', 14 | ], 15 | python_requires='>=3.6', 16 | ) -------------------------------------------------------------------------------- /py/this.document.egg-info/PKG-INFO: -------------------------------------------------------------------------------- 1 | Metadata-Version: 2.4 2 | Name: this.document 3 | Version: 0.1.0 4 | Summary: this.dir library for Python 5 | Home-page: https://neurons.me 6 | Author: suiGn 7 | Classifier: Programming Language :: Python :: 3 8 | Requires-Python: >=3.6 9 | Description-Content-Type: text/markdown 10 | Dynamic: author 11 | Dynamic: classifier 12 | Dynamic: description 13 | Dynamic: description-content-type 14 | Dynamic: home-page 15 | Dynamic: requires-python 16 | Dynamic: summary 17 | 18 | ## this.document 19 | For Python 20 | https://neurons.me 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /npm/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "this.document", 3 | "version": "1.0.2", 4 | "description": "Data Structuring Document.", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/neurons-me/this.file.git" 12 | }, 13 | "keywords": [ 14 | "machineLearning" 15 | ], 16 | "author": "suiGn", 17 | "license": "MIT", 18 | "bugs": { 19 | "url": "https://github.com/neurons-me/this.file/issues" 20 | }, 21 | "homepage": "https://github.com/neurons-me/this.file#readme" 22 | } 23 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # ─── System Files ───────────────────────────── 2 | .DS_Store 3 | **/.DS_Store 4 | *.log 5 | *.tmp 6 | 7 | # ─── General Ignore ─────────────────────────── 8 | .env 9 | .vscode/ 10 | .idea/ 11 | 12 | # ─── Node (JavaScript / npm) ────────────────── 13 | npm/node_modules/ 14 | npm/dist/ 15 | npm/build/ 16 | npm/coverage/ 17 | npm/package-lock.json 18 | npm/yarn.lock 19 | 20 | # ─── Python (py) ───────────────────────────── 21 | py/__pycache__/ 22 | py/**/*.pyc 23 | py/**/*.pyo 24 | py/**/*.egg-info/ 25 | py/dist/ 26 | py/build/ 27 | py/*.egg 28 | py/venv/ 29 | py/.venv/ 30 | py/Pipfile.lock 31 | py/poetry.lock 32 | 33 | # ─── Rust (crate) ───────────────────────────── 34 | crate/target/ 35 | crate/Cargo.lock -------------------------------------------------------------------------------- /npm/LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2025 neurons.me 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /npm/jsdoc.json: -------------------------------------------------------------------------------- 1 | { 2 | "source": { 3 | "include": ["./src", "./index.js", "./README.md"] 4 | }, 5 | "opts": { 6 | "destination": "/mnt/neuroverse/https-neurons/subDomains/docs/public/this.document", 7 | "template": "../../../suign.github.io/Sandbox/better-docs/", 8 | "readme": "./README.md" 9 | }, 10 | "templates": { 11 | "cleverLinks": false, 12 | "monospaceLinks": false, 13 | "search": true, 14 | "default": { 15 | "staticFiles": { 16 | "include": [ 17 | "./README.md" 18 | ] 19 | } 20 | }, 21 | "better-docs": { 22 | "name": "This.Document", 23 | "title": "This.Document Docs", 24 | "css": "style.css", 25 | "trackingCode": "-", 26 | "hideGenerator": false, 27 | "navLinks": [ 28 | { 29 | "label": "All.This", 30 | "href": "https://docs.neurons.me/all.this/" 31 | }, 32 | { 33 | "label": "Neurons.me", 34 | "href": "https://neurons.me" 35 | }, 36 | { 37 | "label": "Github", 38 | "href": "https://github.com/neurons-me/this.document" 39 | } 40 | ] 41 | } 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/Cargo.toml: -------------------------------------------------------------------------------- 1 | # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO 2 | # 3 | # When uploading crates to the registry Cargo will automatically 4 | # "normalize" Cargo.toml files for maximal compatibility 5 | # with all versions of Cargo and also rewrite `path` dependencies 6 | # to registry (e.g., crates.io) dependencies. 7 | # 8 | # If you are reading this file be aware that the original Cargo.toml 9 | # will likely look very different (and much more reasonable). 10 | # See Cargo.toml.orig for the original contents. 11 | 12 | [package] 13 | edition = "2021" 14 | name = "this-document" 15 | version = "0.1.0" 16 | authors = ["suiGn "] 17 | build = false 18 | autolib = false 19 | autobins = false 20 | autoexamples = false 21 | autotests = false 22 | autobenches = false 23 | description = "This.Dir Data Formatter" 24 | homepage = "https://neurons.me" 25 | readme = "README.md" 26 | keywords = [ 27 | "Documents", 28 | "Data", 29 | ] 30 | categories = [ 31 | "command-line-utilities", 32 | "encoding", 33 | ] 34 | license = "MIT OR Apache-2.0" 35 | repository = "https://github.com/neurons-me/this.audio" 36 | 37 | [[bin]] 38 | name = "this-document" 39 | path = "src/main.rs" 40 | 41 | [dependencies] 42 | -------------------------------------------------------------------------------- /crate/target/package/this-document-0.1.0/target/.rustc_info.json: -------------------------------------------------------------------------------- 1 | {"rustc_fingerprint":1457510363776104018,"outputs":{"7971740275564407648":{"success":true,"status":"","code":0,"stdout":"___\nlib___.rlib\nlib___.dylib\nlib___.dylib\nlib___.a\nlib___.dylib\n/Users/abellae/.rustup/toolchains/stable-aarch64-apple-darwin\noff\npacked\nunpacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"aarch64\"\ntarget_endian=\"little\"\ntarget_env=\"\"\ntarget_family=\"unix\"\ntarget_feature=\"aes\"\ntarget_feature=\"crc\"\ntarget_feature=\"dit\"\ntarget_feature=\"dotprod\"\ntarget_feature=\"dpb\"\ntarget_feature=\"dpb2\"\ntarget_feature=\"fcma\"\ntarget_feature=\"fhm\"\ntarget_feature=\"flagm\"\ntarget_feature=\"fp16\"\ntarget_feature=\"frintts\"\ntarget_feature=\"jsconv\"\ntarget_feature=\"lor\"\ntarget_feature=\"lse\"\ntarget_feature=\"neon\"\ntarget_feature=\"paca\"\ntarget_feature=\"pacg\"\ntarget_feature=\"pan\"\ntarget_feature=\"pmuv3\"\ntarget_feature=\"ras\"\ntarget_feature=\"rcpc\"\ntarget_feature=\"rcpc2\"\ntarget_feature=\"rdm\"\ntarget_feature=\"sb\"\ntarget_feature=\"sha2\"\ntarget_feature=\"sha3\"\ntarget_feature=\"ssbs\"\ntarget_feature=\"vh\"\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"macos\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"apple\"\nunix\n","stderr":""},"17747080675513052775":{"success":true,"status":"","code":0,"stdout":"rustc 1.87.0 (17067e9ac 2025-05-09)\nbinary: rustc\ncommit-hash: 17067e9ac6d7ecb70e50f92c1944e545188d2359\ncommit-date: 2025-05-09\nhost: aarch64-apple-darwin\nrelease: 1.87.0\nLLVM version: 20.1.1\n","stderr":""}},"successes":{}} -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | SVG Image 2 | 3 | # this.document 4 | DataStructuring Documents 5 | 6 | # What is All.This? 7 | 8 | ###### Modular Data Structures: 9 | **Each module** in **[all.this](https://neurons.me/all-this)** represents a specific **datastructure**. These **classes** encapsulate the functionalities and **data specific to their domain.** 10 | 11 | **[this.me](https://docs.neurons.me/this.me/index.html) - [this.audio](https://docs.neurons.me/this.audio/index.html) - [this.text](https://docs.neurons.me/this.text/index.html) - [this.wallet](https://docs.neurons.me/this.wallet/index.html) - [this.img](https://docs.neurons.me/this.img/index.html) - [this.pixel](https://docs.neurons.me/this.pixel/index.html) - [be.this](https://docs.neurons.me/be.this/index.html) - [this.DOM](https://docs.neurons.me/this.DOM/index.html) - [this.env](https://docs.neurons.me/this.env/index.html) - [this.GUI](https://docs.neurons.me/this.GUI/index.html) - [this.be](https://docs.neurons.me/this.be/index.html) - [this.video](https://docs.neurons.me/this.video/index.html) - [this.dictionaries](https://docs.neurons.me/this.dictionaries/index.html)** 12 | 13 | #### Contribution 14 | If you are interested in collaborating or wish to share your insights, please feel free to reach out or contribute to the project. 15 | 16 | #### License & Policies 17 | - **License**: MIT License (see LICENSE for details). 18 | - **Learn more** at **https://docs.neurons.me** 19 | [Terms](https://docs.neurons.me/terms-and-conditions) | [Privacy](https://docs.neurons.me/privacy-policy) 20 | 21 | neurons.me logo 22 | -------------------------------------------------------------------------------- /npm/README.md: -------------------------------------------------------------------------------- 1 | SVG Image 2 | 3 | # this.document 4 | DataStructuring Documents 5 | 6 | # What is All.This? 7 | 8 | ###### Modular Data Structures: 9 | **Each module** in **[all.this](https://neurons.me/all-this)** represents a specific **datastructure**. These **classes** encapsulate the functionalities and **data specific to their domain.** 10 | 11 | **[this.me](https://docs.neurons.me/this.me/index.html) - [this.audio](https://docs.neurons.me/this.audio/index.html) - [this.text](https://docs.neurons.me/this.text/index.html) - [this.wallet](https://docs.neurons.me/this.wallet/index.html) - [this.img](https://docs.neurons.me/this.img/index.html) - [this.pixel](https://docs.neurons.me/this.pixel/index.html) - [be.this](https://docs.neurons.me/be.this/index.html) - [this.DOM](https://docs.neurons.me/this.DOM/index.html) - [this.env](https://docs.neurons.me/this.env/index.html) - [this.GUI](https://docs.neurons.me/this.GUI/index.html) - [this.be](https://docs.neurons.me/this.be/index.html) - [this.video](https://docs.neurons.me/this.video/index.html) - [this.dictionaries](https://docs.neurons.me/this.dictionaries/index.html)** 12 | 13 | #### Contribution 14 | If you are interested in collaborating or wish to share your insights, please feel free to reach out or contribute to the project. 15 | 16 | #### License & Policies 17 | - **License**: MIT License (see LICENSE for details). 18 | - **Learn more** at **https://docs.neurons.me** 19 | [Terms](https://docs.neurons.me/terms-and-conditions) | [Privacy](https://docs.neurons.me/privacy-policy) 20 | 21 | neurons.me logo 22 | --------------------------------------------------------------------------------