diff options
author | Eduardo Julian | 2020-05-09 02:12:56 -0400 |
---|---|---|
committer | Eduardo Julian | 2020-05-09 02:12:56 -0400 |
commit | 8d9fd8b34f8716be7fa1059eb9761330d9667753 (patch) | |
tree | aacc3fef52551c6b02f66435dedd5a0e5bfc18bc /documentation | |
parent | 3e524725cfb47cb56466a08ac290ed5a389748be (diff) |
Including runtime machinery in the cache.
Diffstat (limited to '')
-rw-r--r-- | documentation/research/Localization and Internationalization.md | 4 | ||||
-rw-r--r-- | documentation/research/Memory Management.md | 1 | ||||
-rw-r--r-- | documentation/research/Security.md | 4 | ||||
-rw-r--r-- | documentation/research/Type theory/Row polymorphism.md | 4 | ||||
-rw-r--r-- | documentation/research/text_editor & ide.md | 1 | ||||
-rw-r--r-- | documentation/research/tool/Diff.md | 4 | ||||
-rw-r--r-- | documentation/research/tool/build_system.md | 2 | ||||
-rw-r--r-- | documentation/research/web_framework.md | 1 |
8 files changed, 21 insertions, 0 deletions
diff --git a/documentation/research/Localization and Internationalization.md b/documentation/research/Localization and Internationalization.md new file mode 100644 index 000000000..198d768bd --- /dev/null +++ b/documentation/research/Localization and Internationalization.md @@ -0,0 +1,4 @@ +# Reference + +1. [CSS for internationalisation](https://chenhuijing.com/blog/css-for-i18n/) + diff --git a/documentation/research/Memory Management.md b/documentation/research/Memory Management.md index f6e59bca1..b1b10bb2c 100644 --- a/documentation/research/Memory Management.md +++ b/documentation/research/Memory Management.md @@ -17,6 +17,7 @@ # Garbage collection +1. [The Garbage Collection Handbook](http://gchandbook.org/) 1. [Baby's First Garbage Collector](http://journal.stuffwithstuff.com/2013/12/08/babys-first-garbage-collector/) # Reference diff --git a/documentation/research/Security.md b/documentation/research/Security.md index 33b37c373..799eb3543 100644 --- a/documentation/research/Security.md +++ b/documentation/research/Security.md @@ -1,3 +1,7 @@ +# Inspiration + +1. https://www.mailvelope.com + # Finger-printing 1. [How Browser Fingerprinting Works](https://kevq.uk/how-browser-fingerprinting-works/) diff --git a/documentation/research/Type theory/Row polymorphism.md b/documentation/research/Type theory/Row polymorphism.md new file mode 100644 index 000000000..3194405ff --- /dev/null +++ b/documentation/research/Type theory/Row polymorphism.md @@ -0,0 +1,4 @@ +# Reference + +1. [Row Polymorphism without the Jargon](https://jadon.io/blog/row-polymorphism) + diff --git a/documentation/research/text_editor & ide.md b/documentation/research/text_editor & ide.md index 4ad640a57..ad08c87b4 100644 --- a/documentation/research/text_editor & ide.md +++ b/documentation/research/text_editor & ide.md @@ -137,6 +137,7 @@ 1. https://github.com/gsilvamartin/RTCode 1. https://hackernoon.com/building-conclave-a-decentralized-real-time-collaborative-text-editor-a6ab438fe79f 1. https://github.com/xi-editor/xi-editor/issues/1187 +1. [Chronofold: a data structure for versioned text](https://arxiv.org/abs/2002.09511) # Exemplar diff --git a/documentation/research/tool/Diff.md b/documentation/research/tool/Diff.md new file mode 100644 index 000000000..61bea55d8 --- /dev/null +++ b/documentation/research/tool/Diff.md @@ -0,0 +1,4 @@ +# Structural diffing + +1. [Autochrome - Structural diffs for Clojure source code](https://fazzone.github.io/autochrome.html) + diff --git a/documentation/research/tool/build_system.md b/documentation/research/tool/build_system.md index 24fa96627..09f315732 100644 --- a/documentation/research/tool/build_system.md +++ b/documentation/research/tool/build_system.md @@ -1,5 +1,6 @@ # Exemplar +1. [Mill: A Build Tool based on Pure Functional Programming, Li Haoyi at Scala.Love 2020](https://vimeo.com/409165552) 1. [Pier: Yet another Haskell build tool](https://www.youtube.com/watch?v=JmenfeDVi0w) 1. https://buckbuild.com/ 1. http://boot-clj.com/ @@ -37,6 +38,7 @@ # Reference +1. [Falsehoods programmers believe about build systems](https://pozorvlak.livejournal.com/174763.html) 1. [Non-recursive Make Considered Harmful](https://ndmitchell.com/downloads/paper-non_recursive_make_considered_harmful-22_sep_2016.pdf) 1. https://www.microsoft.com/en-us/research/publication/build-systems-la-carte/ 1. [Build Systems à la Carte](https://www.youtube.com/watch?v=BQVT6wiwCxM) diff --git a/documentation/research/web_framework.md b/documentation/research/web_framework.md index 503f0cde0..4be27878c 100644 --- a/documentation/research/web_framework.md +++ b/documentation/research/web_framework.md @@ -8,6 +8,7 @@ # Reference +1. [Line-tracking using plain CSS](https://bubblin.io/blog/line-tracking) 1. [Redux is half of a pattern (1/2)](https://dev.to/davidkpiano/redux-is-half-of-a-pattern-1-2-1hd7) 1. [Introducing Concurrent Mode (Experimental)](https://reactjs.org/docs/concurrent-mode-intro.html) 1. https://github.com/daybrush/scenejs |