## 2017-04-26 Migrated Journal into lively4-core repository #Jens

Bring the documentation, ideas, drafts and code together in one repository. 

Script for splitting up old single markdown file:

```
fetch("https://lively-kernel.org/lively4/lively4-jens/doc/journal/2016.md")
  .then(r => r.text()).then(text => {
    text.split(/\n(?=\#\# (20[0-9][0-9]-[0-9][0-9]-[0-9][0-9]))/).map(ea => {
      var m = ea.match(/\#\# (20[0-9][0-9]-[0-9][0-9]-[0-9][0-9])/)
      if (m) {
        var url = "https://lively-kernel.org/lively4/lively4-jens/doc/journal/" + m[1] + ".md"
        lively.notify("create " + url, + " " + ea.length)
        lively.files.saveFile(url, ea)
      }
    })
})
```


