Fixed broken links.
[sixth.git] / doc / index.org
1 #+TITLE: Sixth - system for data storage, computation, exploration and interaction
2
3 -----
4 - Clone GIT repository using commanad:
5   : git clone http://www2.svjatoslav.eu/git/sixth.git
6
7 - [[http://www2.svjatoslav.eu/gitweb/?p=sixth.git;a=snapshot;h=HEAD;sf=tgz][Download latest snapshot in TAR GZ format]]
8
9 + This program is free software: you can redistribute it and/or modify
10   it under the terms of the [[https://www.gnu.org/licenses/lgpl.html][GNU Lesser General Public License]] as
11   published by the Free Software Foundation, either version 3 of the
12   License, or (at your option) any later version.
13
14 - Program author:
15   - Svjatoslav Agejenko
16   - Homepage: http://svjatoslav.eu
17   - Email: mailto://svjatoslav@svjatoslav.eu
18
19 - [[http://www.svjatoslav.eu/projects/][Other software projects hosted at svjatoslav.eu]]
20
21 * (document settings) :noexport:
22 ** use dark style for TWBS-HTML exporter
23 #+HTML_HEAD: <link href="https://bootswatch.com/4/darkly/bootstrap.min.css" rel="stylesheet">
24 #+HTML_HEAD: <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
25 #+HTML_HEAD: <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.1/js/bootstrap.min.js"></script>"
26 #+HTML_HEAD: <style type="text/css">
27 #+HTML_HEAD:   footer {background-color: #111 !important;}
28 #+HTML_HEAD:   pre {background-color: #111; color: #ccc;}
29 #+HTML_HEAD: </style>
30
31 * Vision - A tool to amplify human ability
32   :PROPERTIES:
33   :ID:       1f4e1c17-d25f-4d92-aa9b-5785f1d86f4f
34   :END:
35 #+BEGIN_VERSE
36 Makes lots of complex data intuitive to:
37   - explore, understand
38   - manipulate and compute on
39
40 by extensively relying on:
41   - [[http://www3.svjatoslav.eu/projects/sixth-3d/][Realtime 3D graphics]] with immediate feedback loop.
42   - [[http://www3.svjatoslav.eu/projects/sixth-data/][Flexible and distributed computation and data storage]].
43 #+END_VERSE
44
45
46 #+BEGIN_QUOTE
47 “Virtual reality holds the key to the evolution of the human mind”
48 Dr. Lawrence Angelo, The Lawnmower Man (1992)
49 #+END_QUOTE
50
51 * Current status
52 + Formulated high-level [[id:1f4e1c17-d25f-4d92-aa9b-5785f1d86f4f][vision / goal]].
53
54 + In the process of implementing some of building blocks:
55   - [[http://www3.svjatoslav.eu/projects/sixth-data/][Data storage engine.]]
56
57   - [[http://www3.svjatoslav.eu/projects/sixth-3d/][In software, pure Java realtime 3D rendering engine.]]
58     - [[http://www3.svjatoslav.eu/projects/sixth-3d-demos/][3D engine demos]]
59
60 + System is nowhere near complete (given magnitude of effort required
61   and my free time available). Contributions welcome ! :)
62
63 * Computation ideas
64 + Program - stored instructions for execution by computer.
65
66 + Process - Currently running program.
67   + Process is self contained. Has a full copy of program code and
68     every dependent library.
69
70     + Memory used by processes is content addressed/deduplicated at
71       low level in the system.
72
73     + This allows:
74       + Upgrading software installed in the system without breaking
75         already running processes.
76
77       + Easier migration of running processes between physical
78         computers.
79
80       + Possibility to suspend/resume arbitrary processes to permament
81         storage.
82
83       + Possibility checkpoint/revert running process.
84
85       + Possibility to clone/branch running process.
86
87 * Frequently Given Answers
88 - Why such name ?
89   - In short: it's just a number.
90   - Many years ago inspired by the ideas of [[https://en.wikipedia.org/wiki/Forth_(programming_language)][Forth (programming
91     language)]] I decided to create my own implementation [[http://www3.svjatoslav.eu/projects/fifth/][Fifth]]
92     (computing/programming environment).
93   - Then I realized I miss type safe object oriented capabilities. So
94     I updated the name to Sixth and switched to Java.