Added computation ideas
[sixth.git] / doc / index.org
index 1a43b2f..c537d4d 100644 (file)
   - Homepage: http://svjatoslav.eu
   - Email: mailto://svjatoslav@svjatoslav.eu
 
-- [[http://svjatoslav.eu/programs.jsp][other applications hosted at svjatoslav.eu]]
+- [[http://www.svjatoslav.eu/programs.jsp][other applications hosted at svjatoslav.eu]]
+
+* (document settings) :noexport:
+** use dark style for TWBS-HTML exporter
+#+HTML_HEAD: <link href="https://bootswatch.com/darkly/bootstrap.min.css" rel="stylesheet">
+#+HTML_HEAD: <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
+#+HTML_HEAD: <script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.1/js/bootstrap.min.js"></script>"
+#+HTML_HEAD: <style type="text/css">
+#+HTML_HEAD:   footer {background-color: #111 !important;}
+#+HTML_HEAD:   pre {background-color: #111; color: #ccc;}
+#+HTML_HEAD: </style>
+
+* Vision - A tool to amplify human ability
+  :PROPERTIES:
+  :ID:       1f4e1c17-d25f-4d92-aa9b-5785f1d86f4f
+  :END:
+#+BEGIN_VERSE
+Makes lots of complex data intuitive to:
+  - explore, understand
+  - manipulate and compute on
+
+by extensively relying on:
+  - [[http://www2.svjatoslav.eu/gitbrowse/sixth-3d/doc/index.html][realtime 3D graphics]] with immediate feedback loop
+  - [[http://www2.svjatoslav.eu/gitbrowse/sixth-data/doc/index.html][flexible and distributed computation and data storage]]
+#+END_VERSE
 
 
-* Current status
-There is nothing useful for regular people yet.
-
-Sixth is presently in research / prototyping and ideas collecting phase. Some
-working parts are already implemented:
+#+BEGIN_QUOTE
+“Virtual reality holds the key to the evolution of the human mind”
+Dr. Lawrence Angelo, The Lawnmower Man (1992)
+#+END_QUOTE
 
+* Current status
++ Formulated high-level [[id:1f4e1c17-d25f-4d92-aa9b-5785f1d86f4f][vision / goal]].
 
-+ Sub projects:
-  - [[http://www2.svjatoslav.eu/gitbrowse/sixth-data/doc/index.html][First layer of storage: Simple persistent key-value map.]]
++ In the process of implementing some of building blocks:
+  - [[http://www2.svjatoslav.eu/gitbrowse/sixth-data/doc/index.html][Data storage engine.]]
 
   - [[http://www2.svjatoslav.eu/gitbrowse/sixth-3d/doc/index.html][In software, pure Java realtime 3D rendering engine.]]
     - [[http://www2.svjatoslav.eu/gitbrowse/sixth-3d-demos/doc/index.html][3D engine demos]]
 
-* Vision
-- A tool to amplify human ability.
++ System is nowhere near complete (given magnitude of effort required
+  and my free time available). Contributions welcome ! :)
 
-- Properly visualizes and immerses user in completely various forms of
-  information and provides intuitive and powerful ways to explore, interact and
-  manipulate it with fast feedback loop to immediately see results.
+* Computation ideas
++ Program - stored instructions for execution by computer.
 
-#+BEGIN_QUOTE
-“Virtual reality holds the key to the evolution of the human mind”
-Dr. Lawrence Angelo, The Lawnmower Man (1992)
-#+END_QUOTE
++ Process - Currently running program.
+  + Process is self contained. Has a full copy of program code and
+    every dependent library.
 
-* Features to implement in the future
+    + Memory used by processes is content addressed/deduplicated at
+      low level in the system.
 
-- Semantic networks / knowledge trees.
-  - Is able to use natural language for knowledge mining and question answering.
-    This could potentially lead to self aware artificial intelligence. Because
-    of [[http://en.wikipedia.org/wiki/Three_Laws_of_Robotics]["Three laws safe"]] design, there is nothing that can go wrong.
+    + This allows:
+      + Upgrading software installed in the system without breaking
+        already running processes.
 
-- Become an alternative to KDE, Gnome, Canonical Unity or similar desktop user
-  interfaces.
+      + Easier migration of running processes between physical
+        computers.
 
-- Become an open source scientific computing engine of structured data as an
-  alternative to proprietary Wolfram Alpha.
+      + Possibility to suspend/resume arbitrary processes to permament
+        storage.
 
-- Become an open source solution for unstructured knowledge extraction and
-  processing, similar to IBM Watson.
+      + Possibility checkpoint/revert running process.
 
-- P2P (Peer to peer) distributed computation system.
+      + Possibility to clone/branch running process.
 
+* Frequently Given Answers
+- Why such name ?
+  - In short: it's just a number.
+  - Many years ago inspired by the ideas of [[https://en.wikipedia.org/wiki/Forth_(programming_language)][Forth (programming
+    language)]] I decided to create my own implementation [[http://www2.svjatoslav.eu/gitbrowse/fifth/doc/index.html][Fifth]]
+    (computing/programming environment).
+  - Then I realized I miss type safe object oriented capabilities. So
+    I updated the name to Sixth and switched to Java.