Fixed broken link to www.svjatoslav.eu
[sixth.git] / doc / index.org
1 #+TITLE: Sixth - system for data storage, computation, exploration and interaction
2
3 -----
4 - [[http://www2.svjatoslav.eu/gitweb/?p=sixth.git;a=snapshot;h=HEAD;sf=tgz][download latest snapshot]]
5
6 - This program is free software; you can redistribute it and/or modify it under
7   the terms of version 3 of the [[https://www.gnu.org/licenses/lgpl.html][GNU Lesser General Public License]] or later as
8   published by the Free Software Foundation.
9
10 - Program author:
11   - Svjatoslav Agejenko
12   - Homepage: http://svjatoslav.eu
13   - Email: mailto://svjatoslav@svjatoslav.eu
14
15 - [[http://www.svjatoslav.eu/programs.jsp][other applications hosted at svjatoslav.eu]]
16
17 * (document settings) :noexport:
18 ** use dark style for TWBS-HTML exporter
19 #+HTML_HEAD: <link href="https://bootswatch.com/darkly/bootstrap.min.css" rel="stylesheet">
20 #+HTML_HEAD: <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
21 #+HTML_HEAD: <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.1/js/bootstrap.min.js"></script>"
22 #+HTML_HEAD: <style type="text/css">
23 #+HTML_HEAD:   footer {background-color: #111 !important;}
24 #+HTML_HEAD:   pre {background-color: #111; color: #ccc;}
25 #+HTML_HEAD: </style>
26
27 * Vision / goal - A tool to amplify human ability
28   :PROPERTIES:
29   :ID:       1f4e1c17-d25f-4d92-aa9b-5785f1d86f4f
30   :END:
31 In short, this is what I want:
32
33 - [[id:4224d52c-2ee1-411a-bd89-77c286322b21][Perfect data storage and computation engine]]
34
35 - Feeds lots of complex data into your brain in intuitive to explore,
36   understand and manipulate form by extensively relying on realtime 3D
37   graphics and fast feedback loop. (including virtual reality support)
38
39     #+BEGIN_QUOTE
40     “Virtual reality holds the key to the evolution of the human mind”
41     Dr. Lawrence Angelo, The Lawnmower Man (1992)
42     #+END_QUOTE
43
44 - Why such name ?
45   - In short: it's just a number.
46   - Many years ago inspired by the ideas of [[https://en.wikipedia.org/wiki/Forth_(programming_language)][Forth (programming
47     language)]] I decided to create my own implementation [[http://www2.svjatoslav.eu/gitbrowse/fifth/doc/index.html][Fifth]]
48     (computing/programming environment).
49   - Then I realized I miss type safe object oriented capabilities. So
50     I updated the name to Sixth and switched to Java.
51
52 ** Perfect data storage and computation engine
53   :PROPERTIES:
54   :ID:       4224d52c-2ee1-411a-bd89-77c286322b21
55   :END:
56
57 I hate to choose between good things. Figuring out a way to combine
58 below properties in one system would be beyond awesome.
59
60 (That`s the high level overview, details are slowly being worked
61 out...)
62
63 + See: [[http://www2.svjatoslav.eu/gitbrowse/sixth-data/doc/index.html][Sixth data subproject]]
64
65 *** Computation
66 + Lisp (programming language):
67   + Almost no syntax.
68   + Code and data intercangeable.
69   + Easily self modifying.
70   + (The big Lisp idea: https://dev.to/ericnormand/the-idea-of-lisp )
71
72 + Smalltalk (programming language / runtime):
73   + Everything is object.
74   + On the fly modifiable / reprogrammable.
75   + Anything can be suspended/resumed from persistent storage on the
76     fly.
77   + [[http://esug.org/data/ESUG2015/3%20wednesday/1100-1130%20SQL%20Queries%20on%20Smalltalk%20Objects/SQL%20Queries%20in%20Smalltalk%20(James%20Foster).pdf][GemStone/S]]: Awesome feature list!
78
79 + Hadoop (computation system):
80   + Many individual connected computers behave as one big
81     computer. System is horizontally linearly scalable.
82   + Programming abstraction and execution model that naturally divides
83     problems te be solved in parallel and result easily combined.
84   + Data is spread across nodes, automatic failover, built in
85     resiliency.
86   + Small pieces of code are automatically transferred to the node
87     that contains relatively big data that needs processing (network
88     efficiency).
89
90 * Current status
91 + Formulated high-level [[id:1f4e1c17-d25f-4d92-aa9b-5785f1d86f4f][vision / goal]].
92
93 + In the process of implementing some of building blocks:
94   - [[http://www2.svjatoslav.eu/gitbrowse/sixth-data/doc/index.html][Data storage engine.]]
95
96   - [[http://www2.svjatoslav.eu/gitbrowse/sixth-3d/doc/index.html][In software, pure Java realtime 3D rendering engine.]]
97     - [[http://www2.svjatoslav.eu/gitbrowse/sixth-3d-demos/doc/index.html][3D engine demos]]
98
99 + System is nowhere near complete (given magnitude of effort required
100   and my free time available). Contributions welcome ! :)