diff options
author | Bryan Newbold <bnewbold@archive.org> | 2019-02-12 22:29:56 -0800 |
---|---|---|
committer | Bryan Newbold <bnewbold@archive.org> | 2019-02-12 22:29:56 -0800 |
commit | 8ef26736271651902ff5d57429148be6510c06ad (patch) | |
tree | ee257d4ed1a2fdef9b99ef1cba9de5b2ccf91117 /2016/julia_libs.txt | |
parent | 331fcc1484b55a76a962a3e874b7584dd0220ce3 (diff) | |
download | modelthought-8ef26736271651902ff5d57429148be6510c06ad.tar.gz modelthought-8ef26736271651902ff5d57429148be6510c06ad.zip |
old model thing notes from 2016-2017
Diffstat (limited to '2016/julia_libs.txt')
-rw-r--r-- | 2016/julia_libs.txt | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/2016/julia_libs.txt b/2016/julia_libs.txt new file mode 100644 index 0000000..3ab17c8 --- /dev/null +++ b/2016/julia_libs.txt @@ -0,0 +1,34 @@ + +##### Julia Web Framework + +Morsel.jl + Classic web framework paradigm. Use this for the wiki. + http://juliawebstack.org/ + +Escher.jl + Sort of PHP-like single-file UIs. + Might be good for exploration/visualization? + + +##### Julia Markdown Rendering + +Try using the Julia built-in stuff, which seems to support basic LaTeX +rendering. +If that isn't powerful enough, or seems to "custom", switch to pandoc as an +external tool. + + +##### Julia Computer Algebra Stuff + +Use Sims.jl for flattening, etc! Otherwise this will be really hard. + +##### Julia Parser Framework (eg, parser generator) + +Parsimonious.jl + Fairly close to BNF? Good tutorial. Start with this. + +PEGParser.jl + Also pretty BNF-like + +ParserCombinator.jl + More Haskell-like. Meh. |