2024 @ Sett Sarverott <[email protected]> (https://sarverott.com)
█▀▄ ▄▀█ █▀█ █▄▀ █▀█ █▀█ █ █▄░█ ▀█▀ framework of technomantic memory system
█▄▀ █▀█ █▀▄ █░█ █▀▀ █▄█ █ █░▀█ ░█░ for mnemonic forrest placed in darkness
published under terms of GNU_GPLv3 license
2024 @ Sett Sarverott
This Python framework aims to process information simply and universally. Idea of DarkPoint is based on my personal memorization structure and metaphorical explanation how it works.
Final version will be included in Mind Toolkit of Technomancer as Thought Model System with definition as Singular Principles that allows to create memory palace with startpoint in darkness.
This is my personal way of thinking, that as natural mechanism is my default non-verbal thought behaviour. It's automatic and acts as my lowest-level coding method of mindsets. After years in process of clearyfication through trial and error I learned to explain how I'm thinking and why perspective of mine can sometimes terrifyingly stand out from other people. I uses simplifying and metaphores to define in the readers' imagination basic core of things and fundamental rules how it works. This README.md
document is in my opinion still not enought clear, but i hope that soon I finally figure out how to close full fundations of mechanic's ruleset in human words.
These are basic rules that are essential
- Points have hooks: Each piece of information is represented as a point that has a hook.
- On the end of hooks are next points: The hooks lead to additional points, creating a chain of information.
- Every point is information: Each point represents a specific piece of information.
- Informations are related by hooking: The connections between points are established through hooks.
- Hooks are one-directional: The connections only go in one direction, leading from one point to another with evental resulting nature, not dimentional.
- Points can be extended by templates: Each point can have additional context or details added through templates.
- Set starting point: There is a designated starting point from which the connections begin.
- For The PALACE there is special starting point: this is root placed in the middle of memories, every time after reset or starting, the point of focus lands here. For example my palace is:
dark void
and reset for me runs through simply thinking aboutdarkness
. - All templates to work properly have to be accessible from the starting point: These are declared as points too so all relevant information have be reached from the starting point.
Install official release by using
pip
python package manager
pip install darkpoint
All examples can be tested at once, by using python ./examples/main.py
# using points
from darkpoint.Point import Point
#creating new mnemonic sanctuary
palace = Point("darkness")
palace["color"]="dark"
palace["color"]["time"]="dark time is night"
palace["color"]["time"]["always"]="night is always in space as default constant daytime"
palace["color"]["time"]["always"]["sun"]="local star for humanity"
palace["color"]["time"]["always"]["sun"]["far"]="suns in further space from our sun are simply called stars"
palace["color"]["time"]["always"]["sun"]["far"]["images"]="points created by stars on sky are constelations"
print(palace)
print(palace["color"])
# some hooking
palace *"time" +palace["color"]["time"]
palace *"space" +Point("natural state of space is darkness and empty void")
# more hooking
palace["space"] *"time" +palace["color"]["time"]["always"]
palace["space"] *"stars" +palace["color"]["time"]["always"]["sun"]["far"]
# single
palace/'DARK_VOID'
# this and repeat with every hook until reaches another than old context
palace["space"]//'###_SPACE_CONTEXT_INVASION_###'
- Documentation: https://darkpoint.readthedocs.io
- GitHub repository: https://github.com/sarverott/darkpoint
- Project on PyPi:
https://pypi.org/project/darkpoint(Not yet available - pending project publication) - Docker image: (Not yet available - until PyPi publication container developement suspended)
- CHANGELOG: https://github.com/Sarverott/darkpoint/blob/master/docs/changelog.md
Copyright (C) 2024 Sett Sarverott [email protected] (https://sarverott.com)
DarkPoint - technomantic framework for mnemonic toolkit that is in accordance with singular principles of thought model system
Copyright (C) 2024 Sett Sarverott <[email protected]> (https://sarverott.com)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
Copy of License can be found in "LICENSE" file.