Skip to content

Commit 9a55ea6

Browse files
author
=
committed
Initial commit - reset history
0 parents  commit 9a55ea6

File tree

165 files changed

+13189
-0
lines changed

Some content is hidden

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

165 files changed

+13189
-0
lines changed

.gitignore

Lines changed: 129 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,129 @@
1+
*.log
2+
*.pyc
3+
4+
# Byte-compiled / optimized / DLL files
5+
__pycache__/
6+
*.py[cod]
7+
*$py.class
8+
9+
# Distribution / packaging
10+
.Python
11+
env/
12+
venv/
13+
ENV/
14+
build/
15+
develop-eggs/
16+
dist/
17+
downloads/
18+
eggs/
19+
.eggs/
20+
lib/
21+
lib64/
22+
parts/
23+
sdist/
24+
var/
25+
wheels/
26+
*.egg-info/
27+
.installed.cfg
28+
*.egg
29+
MANIFEST
30+
31+
# PyInstaller
32+
# Usually these files are written by a python script from a template
33+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
34+
*.manifest
35+
*.spec
36+
37+
# Installer logs
38+
pip-log.txt
39+
pip-delete-this-directory.txt
40+
41+
# Unit test / coverage reports
42+
htmlcov/
43+
.tox/
44+
.nox/
45+
.coverage
46+
.coverage.*
47+
.cache
48+
nosetests.xml
49+
coverage.xml
50+
*.cover
51+
*.py,cover
52+
.hypothesis/
53+
.pytest_cache/
54+
55+
# Translations
56+
*.mo
57+
*.pot
58+
59+
# Django stuff:
60+
*.log
61+
local_settings.py
62+
db.sqlite3
63+
64+
# Flask stuff:
65+
instance/
66+
.webassets-cache
67+
68+
# Scrapy stuff:
69+
.scrapy
70+
71+
# Sphinx documentation
72+
docs/_build/
73+
74+
# Jupyter Notebook
75+
.ipynb_checkpoints
76+
77+
# IPython
78+
profile_default/
79+
ipython_config.py
80+
81+
# pyenv
82+
.python-version
83+
84+
# celery beat schedule file
85+
celerybeat-schedule
86+
87+
# SageMath parsed files
88+
*.sage.py
89+
90+
# Environments
91+
.env
92+
.venv
93+
env/
94+
venv/
95+
ENV/
96+
env.bak/
97+
venv.bak/
98+
99+
# Spyder project settings
100+
.spyderproject
101+
.spyproject
102+
103+
# Rope project settings
104+
.ropeproject
105+
106+
# mkdocs documentation
107+
/site
108+
109+
# mypy
110+
.mypy_cache/
111+
.dmypy.json
112+
dmypy.json
113+
114+
# Pyre type checker
115+
.pyre/
116+
117+
# Caches
118+
*.log
119+
*.out
120+
*.err
121+
122+
# IDEs and editors
123+
.vscode/
124+
.idea/
125+
*.sublime-project
126+
*.sublime-workspace
127+
128+
# CIMM log file
129+
cimm.log

INTENTIONS.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Intentions and Background
2+
3+
_A personal statement from the author of Dawn Field Theory._
4+
5+
---
6+
7+
## Table of Contents
8+
- [Background](#background)
9+
- [Motivation](#motivation)
10+
- [Vision](#vision)
11+
- [Navigation](#navigation)
12+
13+
---
14+
15+
## Background
16+
17+
My name is Lorne. I'm 30 years old and from New Brunswick, Canada. I'm a self-taught software engineer and researcher working in AI R&D. What you’ll find in this repository is the byproduct of years of independent exploration—nights and weekends spent thinking deeply about reality, information, intelligence, and balance.
18+
19+
---
20+
21+
## Motivation
22+
23+
This project is my hobby. It wasn’t built by a team, a lab, or a startup. It was built out of a quiet life, curiosity, and a relentless drive to explore questions that don’t often get asked. I live simply, and I value that simplicity deeply. That’s part of why I’m releasing this project publicly and under an open license.
24+
25+
I originally considered monetizing this or pitching to VCs or institutions. But I quickly realized that would compromise everything I care about: agency, control, and the ethical rollout of these ideas, which caused me extreme amounts of anxiety. I want to be involved in how this gets used, and that means staying outside the traditional power structures—at least at first.
26+
27+
---
28+
29+
## Vision
30+
31+
My hope is that this work contributes something genuinely new: a framework that helps us model intelligence not just as a tool or product, but as a living process grounded in balance, resonance, and entropy dynamics. I believe this framework could have implications for everything from AGI to physics, energy systems, policy, and even peacekeeping technologies.
32+
33+
I don’t seek fame or wealth from this. I seek clarity, collaboration, and ethical stewardship. I will continue to contribute, to publish, to commit weekly—even if it’s just from my small home, surrounded by pets. I hope this project opens doors for others to build, test, and evolve new paradigms. And I hope it serves as proof that a single individual, working quietly and honestly, can still make meaningful contributions to science and technology.
34+
35+
---
36+
37+
## Navigation
38+
- [README](./README.md)
39+
- [Timeline](./timeline.md)
40+
- [Intentions](./INTENTIONS.md)
41+
- [License Appendix](./LICENSE_APPENDIX.md)
42+
43+
---
44+
45+
© 2025 Dawn Field Theory. See [LICENSE_APPENDIX.md](./LICENSE_APPENDIX.md).
46+
47+
— Lorne

0 commit comments

Comments
 (0)