├── .Rhistory ├── .gitignore ├── .index.Rmd.swp ├── .nojekyll ├── LICENSE ├── README.md ├── assets ├── graphs │ └── grad-student-vs-cpu │ │ ├── README │ │ ├── cpu-prices.csv │ │ ├── gradstudents-per-cpu.png │ │ ├── makeplot.R │ │ └── nsf_gfrp.csv └── img │ ├── .DS_Store │ ├── chpl-ipe.png │ ├── chpl-jacobi.png │ ├── chpl-tree.png │ ├── collectives.png │ ├── cray-stream-triad-1.png │ ├── cray-stream-triad-2.png │ ├── cray-stream-triad-3.png │ ├── domain-maps.png │ ├── fpga.png │ ├── graphx.png │ ├── mpi-ex.png │ ├── mpi-io.png │ ├── new-communities.png │ ├── oicr-trans.png │ ├── osi-1.png │ ├── osi-2.png │ ├── spark-dataframes.png │ ├── spark-interest.png │ ├── spark-rdd.png │ ├── spark-rdds-diffusion.png │ ├── tensors_flowing.gif │ ├── tf_mandelbrot.png │ ├── tf_regression_code.png │ ├── tf_regression_fit.png │ ├── tf_wave_eqn.png │ └── unstructured-mesh.png ├── bin ├── init.sh ├── setup.sh └── shutdown.sh ├── examples ├── Spark 1 - Heat Diffusion.ipynb ├── Spark 2 - Data Frames.ipynb ├── Spark 3 - Unstructured Mesh.ipynb ├── Spark 4 - Unstructured Mesh - Dataframes.ipynb ├── TensorFlow 1 - Regression.ipynb ├── TensorFlow 2 - Mandelbrot.ipynb ├── TensorFlow 3 - Wave Propagation.ipynb ├── chapel_examples │ ├── jacobi.chpl │ ├── stream.chpl │ └── tree.chpl ├── hadoop_examples │ ├── diffusion │ │ ├── mapreduce │ │ │ ├── Makefile │ │ │ ├── java │ │ │ │ ├── Diffuse.java │ │ │ │ └── Makefile │ │ │ ├── map.py │ │ │ ├── plot.gp │ │ │ ├── reduce.py │ │ │ ├── test │ │ │ ├── testclean │ │ │ └── timestep-0 │ │ │ │ └── part-00000 │ │ └── spark │ │ │ ├── Makefile │ │ │ └── diffusion-spark.py │ ├── document-similarity │ │ ├── Makefile │ │ ├── Similarity.java │ │ ├── WordCount.java │ │ └── input │ ├── hdfs-test │ │ ├── README │ │ ├── data.dat │ │ └── readfile.py │ ├── histogram │ │ ├── Makefile │ │ ├── data.py │ │ ├── hist-combine-reduce.py │ │ ├── hist-map.py │ │ ├── mmm-combine.py │ │ ├── mmm-map.py │ │ ├── mmm-reduce.py │ │ └── nbins │ ├── inverted-index │ │ ├── InvertedIndex.java │ │ ├── Makefile │ │ ├── WordCount.java │ │ ├── answer │ │ │ └── InvertedIndex.java │ │ ├── input │ │ │ ├── astro_01 │ │ │ ├── astro_02 │ │ │ ├── astro_03 │ │ │ ├── astro_04 │ │ │ ├── astro_05 │ │ │ ├── astro_06 │ │ │ ├── astro_07 │ │ │ ├── astro_08 │ │ │ ├── astro_09 │ │ │ ├── astro_10 │ │ │ ├── cell_bio_01 │ │ │ ├── cell_bio_02 │ │ │ ├── cell_bio_03 │ │ │ ├── cell_bio_04 │ │ │ ├── cell_bio_05 │ │ │ ├── computational_finance_01 │ │ │ ├── computational_finance_02 │ │ │ ├── computational_finance_03 │ │ │ ├── computational_finance_04 │ │ │ ├── computational_finance_05 │ │ │ ├── computational_finance_06 │ │ │ ├── computational_finance_07 │ │ │ ├── computational_finance_08 │ │ │ ├── computational_finance_09 │ │ │ ├── crypto_01 │ │ │ ├── crypto_02 │ │ │ ├── crypto_03 │ │ │ ├── crypto_04 │ │ │ ├── crypto_05 │ │ │ ├── crypto_06 │ │ │ ├── crypto_07 │ │ │ ├── crypto_08 │ │ │ ├── crypto_09 │ │ │ ├── crypto_10 │ │ │ ├── databases_01 │ │ │ ├── databases_02 │ │ │ ├── databases_03 │ │ │ ├── databases_04 │ │ │ ├── databases_05 │ │ │ ├── databases_06 │ │ │ ├── databases_07 │ │ │ ├── databases_08 │ │ │ ├── databases_09 │ │ │ ├── genomics_01 │ │ │ ├── genomics_02 │ │ │ ├── genomics_03 │ │ │ ├── genomics_04 │ │ │ ├── genomics_05 │ │ │ ├── genomics_06 │ │ │ ├── genomics_07 │ │ │ ├── genomics_08 │ │ │ ├── pdes_01 │ │ │ ├── pdes_02 │ │ │ ├── pdes_03 │ │ │ ├── pdes_04 │ │ │ ├── pdes_05 │ │ │ ├── pdes_06 │ │ │ ├── pdes_07 │ │ │ ├── pdes_08 │ │ │ ├── pdes_09 │ │ │ ├── pdes_10 │ │ │ ├── robotics_01 │ │ │ ├── robotics_02 │ │ │ ├── robotics_03 │ │ │ ├── robotics_04 │ │ │ ├── robotics_05 │ │ │ └── robotics_06 │ │ ├── wordcount-map.py │ │ └── wordcount-reduce.py │ ├── matmult │ │ ├── Makefile │ │ ├── input │ │ │ └── part-00000 │ │ ├── java │ │ │ ├── MatMult-scaffold.java │ │ │ └── MatMult.java │ │ ├── map.py │ │ └── reduce.py │ ├── minmeanmax │ │ ├── Makefile │ │ ├── combine.py │ │ ├── data.py │ │ ├── input │ │ │ └── .foo │ │ ├── map.py │ │ └── reduce.py │ ├── ols │ │ ├── 1d-pig │ │ │ ├── Makefile │ │ │ ├── data.py │ │ │ ├── input │ │ │ │ └── .foo │ │ │ └── ols.pig │ │ ├── 1d │ │ │ ├── Makefile │ │ │ ├── combine.py │ │ │ ├── data.py │ │ │ ├── input │ │ │ │ └── .foo │ │ │ ├── map.py │ │ │ ├── ols.pig │ │ │ └── reduce.py │ │ └── 3d │ │ │ ├── Makefile │ │ │ ├── combine.py │ │ │ ├── data.py │ │ │ ├── input │ │ │ └── .foo │ │ │ ├── map.py │ │ │ └── reduce.py │ └── wordcount │ │ ├── input-large │ │ ├── input-small │ │ ├── file01 │ │ └── file02 │ │ ├── java │ │ ├── Makefile │ │ └── WordCount.java │ │ ├── pig │ │ ├── Makefile │ │ └── wordcount.pig │ │ └── streaming │ │ ├── Makefile │ │ ├── map.py │ │ └── reduce.py └── nlls │ ├── data.py │ ├── input │ └── .foo │ ├── mapreduce │ ├── Makefile │ ├── combine.py │ ├── map.py │ ├── orig.params │ └── reduce.py │ └── spark │ ├── Makefile │ └── nlls-spark.py ├── hadoop-config └── etc │ └── hadoop │ ├── core-site.xml │ ├── hdfs-site.xml │ ├── mapred-site.xml │ └── yarn-site.xml ├── index.Rmd ├── index.html ├── index.md ├── libraries ├── frameworks │ └── io2012 │ │ ├── README.md │ │ ├── config.yml │ │ ├── css │ │ ├── default.css │ │ ├── fonts.css │ │ ├── phone.css │ │ └── slidify.css │ │ ├── images │ │ ├── google_developers_icon_128.png │ │ └── io2012_logo.png │ │ ├── js │ │ ├── hammer.js │ │ ├── modernizr.custom.45394.js │ │ ├── order.js │ │ ├── polyfills │ │ │ ├── classList.min.js │ │ │ ├── dataset.min.js │ │ │ └── history.min.js │ │ ├── prettify │ │ │ ├── lang-apollo.js │ │ │ ├── lang-clj.js │ │ │ ├── lang-css.js │ │ │ ├── lang-go.js │ │ │ ├── lang-hs.js │ │ │ ├── lang-lisp.js │ │ │ ├── lang-lua.js │ │ │ ├── lang-ml.js │ │ │ ├── lang-n.js │ │ │ ├── lang-proto.js │ │ │ ├── lang-scala.js │ │ │ ├── lang-sql.js │ │ │ ├── lang-tex.js │ │ │ ├── lang-vb.js │ │ │ ├── lang-vhdl.js │ │ │ ├── lang-wiki.js │ │ │ ├── lang-xq.js │ │ │ ├── lang-yaml.js │ │ │ ├── prettify.css │ │ │ └── prettify.js │ │ ├── require-1.0.8.min.js │ │ ├── slide-controller.js │ │ ├── slide-deck.js │ │ ├── slide_config.js │ │ └── slides.js │ │ ├── layouts │ │ ├── default.html │ │ ├── slide.html │ │ ├── twocol.html │ │ └── vcenter.html │ │ └── partials │ │ ├── head.html │ │ ├── logoslide.html │ │ ├── pagination.html │ │ ├── titleslide.html │ │ └── toc.html ├── highlighters │ └── highlight.js │ │ ├── README.md │ │ ├── css │ │ ├── arta.css │ │ ├── ascetic.css │ │ ├── brown_paper.css │ │ ├── brown_papersq.png │ │ ├── dark.css │ │ ├── default.css │ │ ├── far.css │ │ ├── github.css │ │ ├── googlecode.css │ │ ├── hemisu-light.css │ │ ├── idea.css │ │ ├── ir_black.css │ │ ├── magula.css │ │ ├── monokai.css │ │ ├── pojoaque.css │ │ ├── pojoaque.jpg │ │ ├── school_book.css │ │ ├── school_book.png │ │ ├── solarized_dark.css │ │ ├── solarized_light.css │ │ ├── sunburst.css │ │ ├── tomorrow.css │ │ ├── tomorrow_night.css │ │ ├── vs.css │ │ ├── xcode.css │ │ └── zenburn.css │ │ ├── highlight.js.html │ │ └── highlight.pack.js └── widgets │ └── mathjax │ ├── LICENSE │ ├── MathJax.js │ ├── config │ ├── MMLorHTML.js │ ├── TeX-AMS-MML_HTMLorMML.js │ ├── TeX-AMS-MML_SVG-full.js │ └── TeX-AMS-MML_SVG.js │ ├── extensions │ ├── FontWarnings.js │ ├── HTML-CSS │ │ └── handle-floats.js │ ├── MathEvents.js │ ├── MathMenu.js │ ├── MathZoom.js │ ├── TeX │ │ ├── AMSmath.js │ │ ├── AMSsymbols.js │ │ ├── HTML.js │ │ ├── action.js │ │ ├── autobold.js │ │ ├── autoload-all.js │ │ ├── bbox.js │ │ ├── begingroup.js │ │ ├── boldsymbol.js │ │ ├── cancel.js │ │ ├── color.js │ │ ├── enclose.js │ │ ├── extpfeil.js │ │ ├── mathchoice.js │ │ ├── mhchem.js │ │ ├── newcommand.js │ │ ├── noErrors.js │ │ ├── noUndefined.js │ │ ├── unicode.js │ │ └── verb.js │ ├── asciimath2jax.js │ ├── jsMath2jax.js │ ├── mml2jax.js │ ├── tex2jax.js │ ├── toMathML.js │ └── v1.0-warning.js │ ├── fonts │ └── HTML-CSS │ │ └── TeX │ │ └── otf │ │ ├── MathJax_AMS-Regular.otf │ │ ├── MathJax_Caligraphic-Bold.otf │ │ ├── MathJax_Caligraphic-Regular.otf │ │ ├── MathJax_Fraktur-Bold.otf │ │ ├── MathJax_Fraktur-Regular.otf │ │ ├── MathJax_Main-Bold.otf │ │ ├── MathJax_Main-Italic.otf │ │ ├── MathJax_Main-Regular.otf │ │ ├── MathJax_Math-BoldItalic.otf │ │ ├── MathJax_Math-Italic.otf │ │ ├── MathJax_Math-Regular.otf │ │ ├── MathJax_SansSerif-Bold.otf │ │ ├── MathJax_SansSerif-Italic.otf │ │ ├── MathJax_SansSerif-Regular.otf │ │ ├── MathJax_Script-Regular.otf │ │ ├── MathJax_Size1-Regular.otf │ │ ├── MathJax_Size2-Regular.otf │ │ ├── MathJax_Size3-Regular.otf │ │ ├── MathJax_Size4-Regular.otf │ │ ├── MathJax_Typewriter-Regular.otf │ │ ├── MathJax_WinChrome-Regular.otf │ │ └── MathJax_WinIE6-Regular.otf │ ├── images │ ├── CloseX-31.png │ └── MenuArrow-15.png │ ├── jax │ ├── element │ │ └── mml │ │ │ ├── jax.js │ │ │ └── optable │ │ │ ├── Arrows.js │ │ │ ├── BasicLatin.js │ │ │ ├── CombDiacritMarks.js │ │ │ ├── CombDiactForSymbols.js │ │ │ ├── Dingbats.js │ │ │ ├── GeneralPunctuation.js │ │ │ ├── GeometricShapes.js │ │ │ ├── GreekAndCoptic.js │ │ │ ├── Latin1Supplement.js │ │ │ ├── LetterlikeSymbols.js │ │ │ ├── MathOperators.js │ │ │ ├── MiscMathSymbolsA.js │ │ │ ├── MiscMathSymbolsB.js │ │ │ ├── MiscSymbolsAndArrows.js │ │ │ ├── MiscTechnical.js │ │ │ ├── SpacingModLetters.js │ │ │ ├── SuppMathOperators.js │ │ │ ├── SupplementalArrowsA.js │ │ │ └── SupplementalArrowsB.js │ ├── input │ │ ├── AsciiMath │ │ │ ├── config.js │ │ │ └── jax.js │ │ ├── MathML │ │ │ ├── config.js │ │ │ ├── entities │ │ │ │ ├── a.js │ │ │ │ ├── b.js │ │ │ │ ├── c.js │ │ │ │ ├── d.js │ │ │ │ ├── e.js │ │ │ │ ├── f.js │ │ │ │ ├── fr.js │ │ │ │ ├── g.js │ │ │ │ ├── h.js │ │ │ │ ├── i.js │ │ │ │ ├── j.js │ │ │ │ ├── k.js │ │ │ │ ├── l.js │ │ │ │ ├── m.js │ │ │ │ ├── n.js │ │ │ │ ├── o.js │ │ │ │ ├── opf.js │ │ │ │ ├── p.js │ │ │ │ ├── q.js │ │ │ │ ├── r.js │ │ │ │ ├── s.js │ │ │ │ ├── scr.js │ │ │ │ ├── t.js │ │ │ │ ├── u.js │ │ │ │ ├── v.js │ │ │ │ ├── w.js │ │ │ │ ├── x.js │ │ │ │ ├── y.js │ │ │ │ └── z.js │ │ │ └── jax.js │ │ └── TeX │ │ │ ├── config.js │ │ │ └── jax.js │ └── output │ │ ├── HTML-CSS │ │ ├── autoload │ │ │ ├── annotation-xml.js │ │ │ ├── maction.js │ │ │ ├── menclose.js │ │ │ ├── mglyph.js │ │ │ ├── mmultiscripts.js │ │ │ ├── ms.js │ │ │ ├── mtable.js │ │ │ └── multiline.js │ │ ├── config.js │ │ ├── fonts │ │ │ ├── STIX │ │ │ │ ├── General │ │ │ │ │ ├── Bold │ │ │ │ │ │ ├── AlphaPresentForms.js │ │ │ │ │ │ ├── Arrows.js │ │ │ │ │ │ ├── BBBold.js │ │ │ │ │ │ ├── BoldFraktur.js │ │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ │ ├── ControlPictures.js │ │ │ │ │ │ ├── CurrencySymbols.js │ │ │ │ │ │ ├── Cyrillic.js │ │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ ├── GreekBold.js │ │ │ │ │ │ ├── GreekSSBold.js │ │ │ │ │ │ ├── IPAExtensions.js │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ ├── LatinExtendedAdditional.js │ │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ │ ├── LatinExtendedD.js │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ ├── MathBold.js │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ ├── MathSSBold.js │ │ │ │ │ │ ├── MiscMathSymbolsA.js │ │ │ │ │ │ ├── MiscMathSymbolsB.js │ │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ │ ├── NumberForms.js │ │ │ │ │ │ ├── PhoneticExtensions.js │ │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ │ ├── SuperAndSubscripts.js │ │ │ │ │ │ └── SuppMathOperators.js │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ ├── AlphaPresentForms.js │ │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ │ ├── ControlPictures.js │ │ │ │ │ │ ├── CurrencySymbols.js │ │ │ │ │ │ ├── Cyrillic.js │ │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ ├── GreekBoldItalic.js │ │ │ │ │ │ ├── GreekSSBoldItalic.js │ │ │ │ │ │ ├── IPAExtensions.js │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ ├── LatinExtendedAdditional.js │ │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ ├── MathBoldItalic.js │ │ │ │ │ │ ├── MathBoldScript.js │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ ├── MathSSItalicBold.js │ │ │ │ │ │ └── SpacingModLetters.js │ │ │ │ │ ├── Italic │ │ │ │ │ │ ├── AlphaPresentForms.js │ │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ │ ├── ControlPictures.js │ │ │ │ │ │ ├── CurrencySymbols.js │ │ │ │ │ │ ├── Cyrillic.js │ │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ ├── GreekItalic.js │ │ │ │ │ │ ├── IPAExtensions.js │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ ├── LatinExtendedAdditional.js │ │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ ├── MathItalic.js │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ ├── MathSSItalic.js │ │ │ │ │ │ ├── MathScript.js │ │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ │ └── ij.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── AlphaPresentForms.js │ │ │ │ │ │ ├── Arrows.js │ │ │ │ │ │ ├── BBBold.js │ │ │ │ │ │ ├── BlockElements.js │ │ │ │ │ │ ├── BoldFraktur.js │ │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ │ ├── CJK.js │ │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ │ ├── ControlPictures.js │ │ │ │ │ │ ├── CurrencySymbols.js │ │ │ │ │ │ ├── Cyrillic.js │ │ │ │ │ │ ├── Dingbats.js │ │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ │ ├── Fraktur.js │ │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ │ ├── GreekBold.js │ │ │ │ │ │ ├── GreekBoldItalic.js │ │ │ │ │ │ ├── GreekItalic.js │ │ │ │ │ │ ├── GreekSSBold.js │ │ │ │ │ │ ├── GreekSSBoldItalic.js │ │ │ │ │ │ ├── Hiragana.js │ │ │ │ │ │ ├── IPAExtensions.js │ │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ │ ├── LatinExtendedAdditional.js │ │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ │ ├── LatinExtendedD.js │ │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ ├── MathBold.js │ │ │ │ │ │ ├── MathBoldItalic.js │ │ │ │ │ │ ├── MathBoldScript.js │ │ │ │ │ │ ├── MathItalic.js │ │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ │ ├── MathSS.js │ │ │ │ │ │ ├── MathSSBold.js │ │ │ │ │ │ ├── MathSSItalic.js │ │ │ │ │ │ ├── MathSSItalicBold.js │ │ │ │ │ │ ├── MathScript.js │ │ │ │ │ │ ├── MathTT.js │ │ │ │ │ │ ├── MiscMathSymbolsA.js │ │ │ │ │ │ ├── MiscMathSymbolsB.js │ │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ │ ├── MiscSymbolsAndArrows.js │ │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ │ ├── NumberForms.js │ │ │ │ │ │ ├── PhoneticExtensions.js │ │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ │ ├── Specials.js │ │ │ │ │ │ ├── SuperAndSubscripts.js │ │ │ │ │ │ ├── SuppMathOperators.js │ │ │ │ │ │ ├── SupplementalArrowsA.js │ │ │ │ │ │ ├── SupplementalArrowsB.js │ │ │ │ │ │ └── ij.js │ │ │ │ ├── IntegralsD │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── All.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ ├── IntegralsSm │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── All.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ ├── IntegralsUp │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── All.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ ├── IntegralsUpD │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── All.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ ├── IntegralsUpSm │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── All.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ ├── NonUnicode │ │ │ │ │ ├── Bold │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ └── PrivateUse.js │ │ │ │ │ ├── BoldItalic │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ └── PrivateUse.js │ │ │ │ │ ├── Italic │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ └── PrivateUse.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ ├── Main.js │ │ │ │ │ │ └── PrivateUse.js │ │ │ │ ├── SizeFiveSym │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ ├── SizeFourSym │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ ├── SizeOneSym │ │ │ │ │ ├── Bold │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ ├── SizeThreeSym │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ ├── SizeTwoSym │ │ │ │ │ ├── Bold │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ ├── Variants │ │ │ │ │ ├── Bold │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ │ └── Regular │ │ │ │ │ │ ├── All.js │ │ │ │ │ │ └── Main.js │ │ │ │ ├── fontdata-1.0.js │ │ │ │ ├── fontdata-beta.js │ │ │ │ ├── fontdata-extra.js │ │ │ │ └── fontdata.js │ │ │ └── TeX │ │ │ │ ├── AMS │ │ │ │ └── Regular │ │ │ │ │ ├── Arrows.js │ │ │ │ │ ├── BBBold.js │ │ │ │ │ ├── BoxDrawing.js │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── Dingbats.js │ │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ ├── Main.js │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ ├── MiscMathSymbolsB.js │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ ├── PUA.js │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ └── SuppMathOperators.js │ │ │ │ ├── Caligraphic │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ │ ├── Fraktur │ │ │ │ ├── Bold │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ ├── Main.js │ │ │ │ │ ├── Other.js │ │ │ │ │ └── PUA.js │ │ │ │ └── Regular │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ ├── Main.js │ │ │ │ │ ├── Other.js │ │ │ │ │ └── PUA.js │ │ │ │ ├── Greek │ │ │ │ ├── Bold │ │ │ │ │ └── Main.js │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ ├── Italic │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ │ ├── Main │ │ │ │ ├── Bold │ │ │ │ │ ├── Arrows.js │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ ├── LatinExtendedA.js │ │ │ │ │ ├── LatinExtendedB.js │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ ├── Main.js │ │ │ │ │ ├── MathOperators.js │ │ │ │ │ ├── MiscMathSymbolsA.js │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ ├── MiscTechnical.js │ │ │ │ │ ├── SpacingModLetters.js │ │ │ │ │ ├── SuppMathOperators.js │ │ │ │ │ └── SupplementalArrowsA.js │ │ │ │ ├── Italic │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ │ ├── Latin1Supplement.js │ │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ │ └── Main.js │ │ │ │ └── Regular │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── GeometricShapes.js │ │ │ │ │ ├── Main.js │ │ │ │ │ ├── MiscSymbols.js │ │ │ │ │ └── SpacingModLetters.js │ │ │ │ ├── Math │ │ │ │ ├── BoldItalic │ │ │ │ │ └── Main.js │ │ │ │ └── Italic │ │ │ │ │ └── Main.js │ │ │ │ ├── SansSerif │ │ │ │ ├── Bold │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── Main.js │ │ │ │ │ └── Other.js │ │ │ │ ├── Italic │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── Main.js │ │ │ │ │ └── Other.js │ │ │ │ └── Regular │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── Main.js │ │ │ │ │ └── Other.js │ │ │ │ ├── Script │ │ │ │ └── Regular │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ ├── Main.js │ │ │ │ │ └── Other.js │ │ │ │ ├── Size1 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ │ ├── Size2 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ │ ├── Size3 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ │ ├── Size4 │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ │ ├── Typewriter │ │ │ │ └── Regular │ │ │ │ │ ├── BasicLatin.js │ │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ │ ├── Main.js │ │ │ │ │ └── Other.js │ │ │ │ ├── WinChrome │ │ │ │ └── Regular │ │ │ │ │ └── Main.js │ │ │ │ ├── WinIE6 │ │ │ │ └── Regular │ │ │ │ │ ├── AMS.js │ │ │ │ │ ├── Bold.js │ │ │ │ │ └── Main.js │ │ │ │ ├── fontdata-extra.js │ │ │ │ └── fontdata.js │ │ ├── imageFonts.js │ │ └── jax.js │ │ ├── NativeMML │ │ ├── config.js │ │ └── jax.js │ │ └── SVG │ │ ├── autoload │ │ ├── annotation-xml.js │ │ ├── maction.js │ │ ├── menclose.js │ │ ├── mglyph.js │ │ ├── mmultiscripts.js │ │ ├── ms.js │ │ ├── mtable.js │ │ └── multiline.js │ │ ├── config.js │ │ ├── fonts │ │ └── TeX │ │ │ ├── AMS │ │ │ └── Regular │ │ │ │ ├── Arrows.js │ │ │ │ ├── BoxDrawing.js │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── Dingbats.js │ │ │ │ ├── EnclosedAlphanum.js │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ ├── GeometricShapes.js │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ ├── Latin1Supplement.js │ │ │ │ ├── LatinExtendedA.js │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ ├── Main.js │ │ │ │ ├── MathOperators.js │ │ │ │ ├── MiscMathSymbolsB.js │ │ │ │ ├── MiscSymbols.js │ │ │ │ ├── MiscTechnical.js │ │ │ │ ├── PUA.js │ │ │ │ ├── SpacingModLetters.js │ │ │ │ └── SuppMathOperators.js │ │ │ ├── Caligraphic │ │ │ ├── Bold │ │ │ │ └── Main.js │ │ │ └── Regular │ │ │ │ └── Main.js │ │ │ ├── Fraktur │ │ │ ├── Bold │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── Main.js │ │ │ │ ├── Other.js │ │ │ │ └── PUA.js │ │ │ └── Regular │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── Main.js │ │ │ │ ├── Other.js │ │ │ │ └── PUA.js │ │ │ ├── Main │ │ │ ├── Bold │ │ │ │ ├── Arrows.js │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── CombDiactForSymbols.js │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ ├── GeometricShapes.js │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ ├── Latin1Supplement.js │ │ │ │ ├── LatinExtendedA.js │ │ │ │ ├── LatinExtendedB.js │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ ├── Main.js │ │ │ │ ├── MathOperators.js │ │ │ │ ├── MiscMathSymbolsA.js │ │ │ │ ├── MiscSymbols.js │ │ │ │ ├── MiscTechnical.js │ │ │ │ ├── SpacingModLetters.js │ │ │ │ ├── SuppMathOperators.js │ │ │ │ └── SupplementalArrowsA.js │ │ │ ├── Italic │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── GeneralPunctuation.js │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ ├── LatinExtendedA.js │ │ │ │ ├── LatinExtendedB.js │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ ├── Main.js │ │ │ │ └── MathOperators.js │ │ │ └── Regular │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── GeometricShapes.js │ │ │ │ ├── GreekAndCoptic.js │ │ │ │ ├── LatinExtendedA.js │ │ │ │ ├── LatinExtendedB.js │ │ │ │ ├── LetterlikeSymbols.js │ │ │ │ ├── Main.js │ │ │ │ ├── MathOperators.js │ │ │ │ ├── MiscSymbols.js │ │ │ │ ├── SpacingModLetters.js │ │ │ │ └── SuppMathOperators.js │ │ │ ├── Math │ │ │ ├── BoldItalic │ │ │ │ └── Main.js │ │ │ └── Italic │ │ │ │ └── Main.js │ │ │ ├── SansSerif │ │ │ ├── Bold │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── Main.js │ │ │ │ └── Other.js │ │ │ ├── Italic │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── Main.js │ │ │ │ └── Other.js │ │ │ └── Regular │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── Main.js │ │ │ │ └── Other.js │ │ │ ├── Script │ │ │ └── Regular │ │ │ │ ├── BasicLatin.js │ │ │ │ └── Main.js │ │ │ ├── Size1 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ │ ├── Size2 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ │ ├── Size3 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ │ ├── Size4 │ │ │ └── Regular │ │ │ │ └── Main.js │ │ │ ├── Typewriter │ │ │ └── Regular │ │ │ │ ├── BasicLatin.js │ │ │ │ ├── CombDiacritMarks.js │ │ │ │ ├── Main.js │ │ │ │ └── Other.js │ │ │ ├── fontdata-extra.js │ │ │ └── fontdata.js │ │ └── jax.js │ └── mathjax.html └── vm ├── README.md ├── Vagrantfile ├── install-sw.sh ├── jupyter └── shellinabox /.Rhistory: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/.Rhistory -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | vm/examples/ 3 | .vagrant/* 4 | -------------------------------------------------------------------------------- /.index.Rmd.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/.index.Rmd.swp -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/README.md -------------------------------------------------------------------------------- /assets/graphs/grad-student-vs-cpu/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/graphs/grad-student-vs-cpu/README -------------------------------------------------------------------------------- /assets/graphs/grad-student-vs-cpu/cpu-prices.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/graphs/grad-student-vs-cpu/cpu-prices.csv -------------------------------------------------------------------------------- /assets/graphs/grad-student-vs-cpu/gradstudents-per-cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/graphs/grad-student-vs-cpu/gradstudents-per-cpu.png -------------------------------------------------------------------------------- /assets/graphs/grad-student-vs-cpu/makeplot.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/graphs/grad-student-vs-cpu/makeplot.R -------------------------------------------------------------------------------- /assets/graphs/grad-student-vs-cpu/nsf_gfrp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/graphs/grad-student-vs-cpu/nsf_gfrp.csv -------------------------------------------------------------------------------- /assets/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/.DS_Store -------------------------------------------------------------------------------- /assets/img/chpl-ipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/chpl-ipe.png -------------------------------------------------------------------------------- /assets/img/chpl-jacobi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/chpl-jacobi.png -------------------------------------------------------------------------------- /assets/img/chpl-tree.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/chpl-tree.png -------------------------------------------------------------------------------- /assets/img/collectives.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/collectives.png -------------------------------------------------------------------------------- /assets/img/cray-stream-triad-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/cray-stream-triad-1.png -------------------------------------------------------------------------------- /assets/img/cray-stream-triad-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/cray-stream-triad-2.png -------------------------------------------------------------------------------- /assets/img/cray-stream-triad-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/cray-stream-triad-3.png -------------------------------------------------------------------------------- /assets/img/domain-maps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/domain-maps.png -------------------------------------------------------------------------------- /assets/img/fpga.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/fpga.png -------------------------------------------------------------------------------- /assets/img/graphx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/graphx.png -------------------------------------------------------------------------------- /assets/img/mpi-ex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/mpi-ex.png -------------------------------------------------------------------------------- /assets/img/mpi-io.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/mpi-io.png -------------------------------------------------------------------------------- /assets/img/new-communities.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/new-communities.png -------------------------------------------------------------------------------- /assets/img/oicr-trans.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/oicr-trans.png -------------------------------------------------------------------------------- /assets/img/osi-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/osi-1.png -------------------------------------------------------------------------------- /assets/img/osi-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/osi-2.png -------------------------------------------------------------------------------- /assets/img/spark-dataframes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/spark-dataframes.png -------------------------------------------------------------------------------- /assets/img/spark-interest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/spark-interest.png -------------------------------------------------------------------------------- /assets/img/spark-rdd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/spark-rdd.png -------------------------------------------------------------------------------- /assets/img/spark-rdds-diffusion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/spark-rdds-diffusion.png -------------------------------------------------------------------------------- /assets/img/tensors_flowing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/tensors_flowing.gif -------------------------------------------------------------------------------- /assets/img/tf_mandelbrot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/tf_mandelbrot.png -------------------------------------------------------------------------------- /assets/img/tf_regression_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/tf_regression_code.png -------------------------------------------------------------------------------- /assets/img/tf_regression_fit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/tf_regression_fit.png -------------------------------------------------------------------------------- /assets/img/tf_wave_eqn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/tf_wave_eqn.png -------------------------------------------------------------------------------- /assets/img/unstructured-mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/assets/img/unstructured-mesh.png -------------------------------------------------------------------------------- /bin/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/bin/init.sh -------------------------------------------------------------------------------- /bin/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/bin/setup.sh -------------------------------------------------------------------------------- /bin/shutdown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/bin/shutdown.sh -------------------------------------------------------------------------------- /examples/Spark 1 - Heat Diffusion.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/Spark 1 - Heat Diffusion.ipynb -------------------------------------------------------------------------------- /examples/Spark 2 - Data Frames.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/Spark 2 - Data Frames.ipynb -------------------------------------------------------------------------------- /examples/Spark 3 - Unstructured Mesh.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/Spark 3 - Unstructured Mesh.ipynb -------------------------------------------------------------------------------- /examples/Spark 4 - Unstructured Mesh - Dataframes.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/Spark 4 - Unstructured Mesh - Dataframes.ipynb -------------------------------------------------------------------------------- /examples/TensorFlow 1 - Regression.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/TensorFlow 1 - Regression.ipynb -------------------------------------------------------------------------------- /examples/TensorFlow 2 - Mandelbrot.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/TensorFlow 2 - Mandelbrot.ipynb -------------------------------------------------------------------------------- /examples/TensorFlow 3 - Wave Propagation.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/TensorFlow 3 - Wave Propagation.ipynb -------------------------------------------------------------------------------- /examples/chapel_examples/jacobi.chpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/chapel_examples/jacobi.chpl -------------------------------------------------------------------------------- /examples/chapel_examples/stream.chpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/chapel_examples/stream.chpl -------------------------------------------------------------------------------- /examples/chapel_examples/tree.chpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/chapel_examples/tree.chpl -------------------------------------------------------------------------------- /examples/hadoop_examples/diffusion/mapreduce/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/diffusion/mapreduce/Makefile -------------------------------------------------------------------------------- /examples/hadoop_examples/diffusion/mapreduce/java/Diffuse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/diffusion/mapreduce/java/Diffuse.java -------------------------------------------------------------------------------- /examples/hadoop_examples/diffusion/mapreduce/java/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/diffusion/mapreduce/java/Makefile -------------------------------------------------------------------------------- /examples/hadoop_examples/diffusion/mapreduce/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/diffusion/mapreduce/map.py -------------------------------------------------------------------------------- /examples/hadoop_examples/diffusion/mapreduce/plot.gp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/diffusion/mapreduce/plot.gp -------------------------------------------------------------------------------- /examples/hadoop_examples/diffusion/mapreduce/reduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/diffusion/mapreduce/reduce.py -------------------------------------------------------------------------------- /examples/hadoop_examples/diffusion/mapreduce/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/diffusion/mapreduce/test -------------------------------------------------------------------------------- /examples/hadoop_examples/diffusion/mapreduce/testclean: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/diffusion/mapreduce/testclean -------------------------------------------------------------------------------- /examples/hadoop_examples/diffusion/mapreduce/timestep-0/part-00000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/diffusion/mapreduce/timestep-0/part-00000 -------------------------------------------------------------------------------- /examples/hadoop_examples/diffusion/spark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/diffusion/spark/Makefile -------------------------------------------------------------------------------- /examples/hadoop_examples/diffusion/spark/diffusion-spark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/diffusion/spark/diffusion-spark.py -------------------------------------------------------------------------------- /examples/hadoop_examples/document-similarity/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/document-similarity/Makefile -------------------------------------------------------------------------------- /examples/hadoop_examples/document-similarity/Similarity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/document-similarity/Similarity.java -------------------------------------------------------------------------------- /examples/hadoop_examples/document-similarity/WordCount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/document-similarity/WordCount.java -------------------------------------------------------------------------------- /examples/hadoop_examples/document-similarity/input: -------------------------------------------------------------------------------- 1 | ../inverted-index/input/ -------------------------------------------------------------------------------- /examples/hadoop_examples/hdfs-test/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/hdfs-test/README -------------------------------------------------------------------------------- /examples/hadoop_examples/hdfs-test/data.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/hdfs-test/data.dat -------------------------------------------------------------------------------- /examples/hadoop_examples/hdfs-test/readfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/hdfs-test/readfile.py -------------------------------------------------------------------------------- /examples/hadoop_examples/histogram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/histogram/Makefile -------------------------------------------------------------------------------- /examples/hadoop_examples/histogram/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/histogram/data.py -------------------------------------------------------------------------------- /examples/hadoop_examples/histogram/hist-combine-reduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/histogram/hist-combine-reduce.py -------------------------------------------------------------------------------- /examples/hadoop_examples/histogram/hist-map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/histogram/hist-map.py -------------------------------------------------------------------------------- /examples/hadoop_examples/histogram/mmm-combine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/histogram/mmm-combine.py -------------------------------------------------------------------------------- /examples/hadoop_examples/histogram/mmm-map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/histogram/mmm-map.py -------------------------------------------------------------------------------- /examples/hadoop_examples/histogram/mmm-reduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/histogram/mmm-reduce.py -------------------------------------------------------------------------------- /examples/hadoop_examples/histogram/nbins: -------------------------------------------------------------------------------- 1 | 15 2 | -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/InvertedIndex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/InvertedIndex.java -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/Makefile -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/WordCount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/WordCount.java -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/answer/InvertedIndex.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/answer/InvertedIndex.java -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/astro_01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/astro_01 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/astro_02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/astro_02 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/astro_03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/astro_03 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/astro_04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/astro_04 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/astro_05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/astro_05 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/astro_06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/astro_06 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/astro_07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/astro_07 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/astro_08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/astro_08 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/astro_09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/astro_09 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/astro_10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/astro_10 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/cell_bio_01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/cell_bio_01 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/cell_bio_02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/cell_bio_02 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/cell_bio_03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/cell_bio_03 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/cell_bio_04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/cell_bio_04 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/cell_bio_05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/cell_bio_05 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/computational_finance_01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/computational_finance_01 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/computational_finance_02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/computational_finance_02 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/computational_finance_03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/computational_finance_03 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/computational_finance_04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/computational_finance_04 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/computational_finance_05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/computational_finance_05 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/computational_finance_06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/computational_finance_06 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/computational_finance_07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/computational_finance_07 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/computational_finance_08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/computational_finance_08 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/computational_finance_09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/computational_finance_09 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/crypto_01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/crypto_01 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/crypto_02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/crypto_02 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/crypto_03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/crypto_03 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/crypto_04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/crypto_04 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/crypto_05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/crypto_05 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/crypto_06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/crypto_06 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/crypto_07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/crypto_07 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/crypto_08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/crypto_08 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/crypto_09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/crypto_09 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/crypto_10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/crypto_10 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/databases_01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/databases_01 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/databases_02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/databases_02 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/databases_03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/databases_03 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/databases_04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/databases_04 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/databases_05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/databases_05 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/databases_06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/databases_06 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/databases_07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/databases_07 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/databases_08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/databases_08 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/databases_09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/databases_09 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/genomics_01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/genomics_01 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/genomics_02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/genomics_02 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/genomics_03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/genomics_03 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/genomics_04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/genomics_04 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/genomics_05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/genomics_05 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/genomics_06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/genomics_06 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/genomics_07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/genomics_07 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/genomics_08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/genomics_08 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/pdes_01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/pdes_01 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/pdes_02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/pdes_02 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/pdes_03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/pdes_03 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/pdes_04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/pdes_04 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/pdes_05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/pdes_05 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/pdes_06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/pdes_06 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/pdes_07: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/pdes_07 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/pdes_08: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/pdes_08 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/pdes_09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/pdes_09 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/pdes_10: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/pdes_10 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/robotics_01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/robotics_01 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/robotics_02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/robotics_02 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/robotics_03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/robotics_03 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/robotics_04: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/robotics_04 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/robotics_05: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/robotics_05 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/input/robotics_06: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/input/robotics_06 -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/wordcount-map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/wordcount-map.py -------------------------------------------------------------------------------- /examples/hadoop_examples/inverted-index/wordcount-reduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/inverted-index/wordcount-reduce.py -------------------------------------------------------------------------------- /examples/hadoop_examples/matmult/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/matmult/Makefile -------------------------------------------------------------------------------- /examples/hadoop_examples/matmult/input/part-00000: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/matmult/input/part-00000 -------------------------------------------------------------------------------- /examples/hadoop_examples/matmult/java/MatMult-scaffold.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/matmult/java/MatMult-scaffold.java -------------------------------------------------------------------------------- /examples/hadoop_examples/matmult/java/MatMult.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/matmult/java/MatMult.java -------------------------------------------------------------------------------- /examples/hadoop_examples/matmult/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/matmult/map.py -------------------------------------------------------------------------------- /examples/hadoop_examples/matmult/reduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/matmult/reduce.py -------------------------------------------------------------------------------- /examples/hadoop_examples/minmeanmax/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/minmeanmax/Makefile -------------------------------------------------------------------------------- /examples/hadoop_examples/minmeanmax/combine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/minmeanmax/combine.py -------------------------------------------------------------------------------- /examples/hadoop_examples/minmeanmax/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/minmeanmax/data.py -------------------------------------------------------------------------------- /examples/hadoop_examples/minmeanmax/input/.foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/hadoop_examples/minmeanmax/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/minmeanmax/map.py -------------------------------------------------------------------------------- /examples/hadoop_examples/minmeanmax/reduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/minmeanmax/reduce.py -------------------------------------------------------------------------------- /examples/hadoop_examples/ols/1d-pig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/ols/1d-pig/Makefile -------------------------------------------------------------------------------- /examples/hadoop_examples/ols/1d-pig/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/ols/1d-pig/data.py -------------------------------------------------------------------------------- /examples/hadoop_examples/ols/1d-pig/input/.foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/hadoop_examples/ols/1d-pig/ols.pig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/ols/1d-pig/ols.pig -------------------------------------------------------------------------------- /examples/hadoop_examples/ols/1d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/ols/1d/Makefile -------------------------------------------------------------------------------- /examples/hadoop_examples/ols/1d/combine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/ols/1d/combine.py -------------------------------------------------------------------------------- /examples/hadoop_examples/ols/1d/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/ols/1d/data.py -------------------------------------------------------------------------------- /examples/hadoop_examples/ols/1d/input/.foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/hadoop_examples/ols/1d/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/ols/1d/map.py -------------------------------------------------------------------------------- /examples/hadoop_examples/ols/1d/ols.pig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/ols/1d/ols.pig -------------------------------------------------------------------------------- /examples/hadoop_examples/ols/1d/reduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/ols/1d/reduce.py -------------------------------------------------------------------------------- /examples/hadoop_examples/ols/3d/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/ols/3d/Makefile -------------------------------------------------------------------------------- /examples/hadoop_examples/ols/3d/combine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/ols/3d/combine.py -------------------------------------------------------------------------------- /examples/hadoop_examples/ols/3d/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/ols/3d/data.py -------------------------------------------------------------------------------- /examples/hadoop_examples/ols/3d/input/.foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/hadoop_examples/ols/3d/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/ols/3d/map.py -------------------------------------------------------------------------------- /examples/hadoop_examples/ols/3d/reduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/ols/3d/reduce.py -------------------------------------------------------------------------------- /examples/hadoop_examples/wordcount/input-large: -------------------------------------------------------------------------------- 1 | ../document-similarity/input/ -------------------------------------------------------------------------------- /examples/hadoop_examples/wordcount/input-small/file01: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/wordcount/input-small/file01 -------------------------------------------------------------------------------- /examples/hadoop_examples/wordcount/input-small/file02: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/wordcount/input-small/file02 -------------------------------------------------------------------------------- /examples/hadoop_examples/wordcount/java/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/wordcount/java/Makefile -------------------------------------------------------------------------------- /examples/hadoop_examples/wordcount/java/WordCount.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/wordcount/java/WordCount.java -------------------------------------------------------------------------------- /examples/hadoop_examples/wordcount/pig/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/wordcount/pig/Makefile -------------------------------------------------------------------------------- /examples/hadoop_examples/wordcount/pig/wordcount.pig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/wordcount/pig/wordcount.pig -------------------------------------------------------------------------------- /examples/hadoop_examples/wordcount/streaming/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/wordcount/streaming/Makefile -------------------------------------------------------------------------------- /examples/hadoop_examples/wordcount/streaming/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/wordcount/streaming/map.py -------------------------------------------------------------------------------- /examples/hadoop_examples/wordcount/streaming/reduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/hadoop_examples/wordcount/streaming/reduce.py -------------------------------------------------------------------------------- /examples/nlls/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/nlls/data.py -------------------------------------------------------------------------------- /examples/nlls/input/.foo: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/nlls/mapreduce/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/nlls/mapreduce/Makefile -------------------------------------------------------------------------------- /examples/nlls/mapreduce/combine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/nlls/mapreduce/combine.py -------------------------------------------------------------------------------- /examples/nlls/mapreduce/map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/nlls/mapreduce/map.py -------------------------------------------------------------------------------- /examples/nlls/mapreduce/orig.params: -------------------------------------------------------------------------------- 1 | 1.5 2.0 2 | -------------------------------------------------------------------------------- /examples/nlls/mapreduce/reduce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/nlls/mapreduce/reduce.py -------------------------------------------------------------------------------- /examples/nlls/spark/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/nlls/spark/Makefile -------------------------------------------------------------------------------- /examples/nlls/spark/nlls-spark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/examples/nlls/spark/nlls-spark.py -------------------------------------------------------------------------------- /hadoop-config/etc/hadoop/core-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/hadoop-config/etc/hadoop/core-site.xml -------------------------------------------------------------------------------- /hadoop-config/etc/hadoop/hdfs-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/hadoop-config/etc/hadoop/hdfs-site.xml -------------------------------------------------------------------------------- /hadoop-config/etc/hadoop/mapred-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/hadoop-config/etc/hadoop/mapred-site.xml -------------------------------------------------------------------------------- /hadoop-config/etc/hadoop/yarn-site.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/hadoop-config/etc/hadoop/yarn-site.xml -------------------------------------------------------------------------------- /index.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/index.Rmd -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/index.html -------------------------------------------------------------------------------- /index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/index.md -------------------------------------------------------------------------------- /libraries/frameworks/io2012/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/README.md -------------------------------------------------------------------------------- /libraries/frameworks/io2012/config.yml: -------------------------------------------------------------------------------- 1 | io2012: 2 | theme: NULL 3 | layout: default 4 | -------------------------------------------------------------------------------- /libraries/frameworks/io2012/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/css/default.css -------------------------------------------------------------------------------- /libraries/frameworks/io2012/css/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/css/fonts.css -------------------------------------------------------------------------------- /libraries/frameworks/io2012/css/phone.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/css/phone.css -------------------------------------------------------------------------------- /libraries/frameworks/io2012/css/slidify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/css/slidify.css -------------------------------------------------------------------------------- /libraries/frameworks/io2012/images/google_developers_icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/images/google_developers_icon_128.png -------------------------------------------------------------------------------- /libraries/frameworks/io2012/images/io2012_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/images/io2012_logo.png -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/hammer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/hammer.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/modernizr.custom.45394.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/modernizr.custom.45394.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/order.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/polyfills/classList.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/polyfills/classList.min.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/polyfills/dataset.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/polyfills/dataset.min.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/polyfills/history.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/polyfills/history.min.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/prettify/lang-apollo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/prettify/lang-apollo.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/prettify/lang-clj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/prettify/lang-clj.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/prettify/lang-css.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/prettify/lang-go.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/prettify/lang-go.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/prettify/lang-hs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/prettify/lang-hs.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/prettify/lang-lisp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/prettify/lang-lisp.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/prettify/lang-lua.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/prettify/lang-lua.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/prettify/lang-ml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/prettify/lang-ml.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/prettify/lang-n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/prettify/lang-n.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/prettify/lang-proto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/prettify/lang-proto.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/prettify/lang-scala.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/prettify/lang-scala.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/prettify/lang-sql.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/prettify/lang-sql.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/prettify/lang-tex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/prettify/lang-tex.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/prettify/lang-vb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/prettify/lang-vb.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/prettify/lang-vhdl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/prettify/lang-vhdl.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/prettify/lang-wiki.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/prettify/lang-wiki.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/prettify/lang-xq.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/prettify/lang-xq.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/prettify/lang-yaml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/prettify/lang-yaml.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/prettify/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/prettify/prettify.css -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/prettify/prettify.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/require-1.0.8.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/require-1.0.8.min.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/slide-controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/slide-controller.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/slide-deck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/slide-deck.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/slide_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/slide_config.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/js/slides.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/js/slides.js -------------------------------------------------------------------------------- /libraries/frameworks/io2012/layouts/default.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/layouts/default.html -------------------------------------------------------------------------------- /libraries/frameworks/io2012/layouts/slide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/layouts/slide.html -------------------------------------------------------------------------------- /libraries/frameworks/io2012/layouts/twocol.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/layouts/twocol.html -------------------------------------------------------------------------------- /libraries/frameworks/io2012/layouts/vcenter.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/layouts/vcenter.html -------------------------------------------------------------------------------- /libraries/frameworks/io2012/partials/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/partials/head.html -------------------------------------------------------------------------------- /libraries/frameworks/io2012/partials/logoslide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/partials/logoslide.html -------------------------------------------------------------------------------- /libraries/frameworks/io2012/partials/pagination.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/partials/pagination.html -------------------------------------------------------------------------------- /libraries/frameworks/io2012/partials/titleslide.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/partials/titleslide.html -------------------------------------------------------------------------------- /libraries/frameworks/io2012/partials/toc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/frameworks/io2012/partials/toc.html -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/README.md -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/arta.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/arta.css -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/ascetic.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/ascetic.css -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/brown_paper.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/brown_paper.css -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/brown_papersq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/brown_papersq.png -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/dark.css -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/default.css -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/far.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/far.css -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/github.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/github.css -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/googlecode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/googlecode.css -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/hemisu-light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/hemisu-light.css -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/idea.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/idea.css -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/ir_black.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/ir_black.css -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/magula.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/magula.css -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/monokai.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/monokai.css -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/pojoaque.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/pojoaque.css -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/pojoaque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/pojoaque.jpg -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/school_book.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/school_book.css -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/school_book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/school_book.png -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/solarized_dark.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/solarized_dark.css -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/solarized_light.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/solarized_light.css -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/sunburst.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/sunburst.css -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/tomorrow.css -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/tomorrow_night.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/tomorrow_night.css -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/vs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/vs.css -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/xcode.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/xcode.css -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/css/zenburn.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/css/zenburn.css -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/highlight.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/highlight.js.html -------------------------------------------------------------------------------- /libraries/highlighters/highlight.js/highlight.pack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/highlighters/highlight.js/highlight.pack.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/LICENSE -------------------------------------------------------------------------------- /libraries/widgets/mathjax/MathJax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/MathJax.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/config/MMLorHTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/config/MMLorHTML.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/config/TeX-AMS-MML_HTMLorMML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/config/TeX-AMS-MML_HTMLorMML.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/config/TeX-AMS-MML_SVG-full.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/config/TeX-AMS-MML_SVG-full.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/config/TeX-AMS-MML_SVG.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/config/TeX-AMS-MML_SVG.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/FontWarnings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/FontWarnings.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/HTML-CSS/handle-floats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/HTML-CSS/handle-floats.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/MathEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/MathEvents.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/MathMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/MathMenu.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/MathZoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/MathZoom.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/TeX/AMSmath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/TeX/AMSmath.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/TeX/AMSsymbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/TeX/AMSsymbols.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/TeX/HTML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/TeX/HTML.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/TeX/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/TeX/action.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/TeX/autobold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/TeX/autobold.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/TeX/autoload-all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/TeX/autoload-all.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/TeX/bbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/TeX/bbox.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/TeX/begingroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/TeX/begingroup.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/TeX/boldsymbol.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/TeX/boldsymbol.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/TeX/cancel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/TeX/cancel.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/TeX/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/TeX/color.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/TeX/enclose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/TeX/enclose.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/TeX/extpfeil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/TeX/extpfeil.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/TeX/mathchoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/TeX/mathchoice.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/TeX/mhchem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/TeX/mhchem.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/TeX/newcommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/TeX/newcommand.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/TeX/noErrors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/TeX/noErrors.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/TeX/noUndefined.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/TeX/noUndefined.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/TeX/unicode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/TeX/unicode.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/TeX/verb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/TeX/verb.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/asciimath2jax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/asciimath2jax.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/jsMath2jax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/jsMath2jax.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/mml2jax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/mml2jax.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/tex2jax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/tex2jax.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/toMathML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/toMathML.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/extensions/v1.0-warning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/extensions/v1.0-warning.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf -------------------------------------------------------------------------------- /libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Bold.otf -------------------------------------------------------------------------------- /libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Caligraphic-Regular.otf -------------------------------------------------------------------------------- /libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Bold.otf -------------------------------------------------------------------------------- /libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Fraktur-Regular.otf -------------------------------------------------------------------------------- /libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Bold.otf -------------------------------------------------------------------------------- /libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Italic.otf -------------------------------------------------------------------------------- /libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Main-Regular.otf -------------------------------------------------------------------------------- /libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-BoldItalic.otf -------------------------------------------------------------------------------- /libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Italic.otf -------------------------------------------------------------------------------- /libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Math-Regular.otf -------------------------------------------------------------------------------- /libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Bold.otf -------------------------------------------------------------------------------- /libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Italic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Italic.otf -------------------------------------------------------------------------------- /libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_SansSerif-Regular.otf -------------------------------------------------------------------------------- /libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Script-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Script-Regular.otf -------------------------------------------------------------------------------- /libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size1-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size1-Regular.otf -------------------------------------------------------------------------------- /libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size2-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size2-Regular.otf -------------------------------------------------------------------------------- /libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size3-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size3-Regular.otf -------------------------------------------------------------------------------- /libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size4-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Size4-Regular.otf -------------------------------------------------------------------------------- /libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Typewriter-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_Typewriter-Regular.otf -------------------------------------------------------------------------------- /libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinChrome-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinChrome-Regular.otf -------------------------------------------------------------------------------- /libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinIE6-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_WinIE6-Regular.otf -------------------------------------------------------------------------------- /libraries/widgets/mathjax/images/CloseX-31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/images/CloseX-31.png -------------------------------------------------------------------------------- /libraries/widgets/mathjax/images/MenuArrow-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/images/MenuArrow-15.png -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/element/mml/jax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/element/mml/jax.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/element/mml/optable/Arrows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/element/mml/optable/Arrows.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/element/mml/optable/BasicLatin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/element/mml/optable/BasicLatin.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/element/mml/optable/CombDiacritMarks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/element/mml/optable/CombDiacritMarks.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/element/mml/optable/CombDiactForSymbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/element/mml/optable/CombDiactForSymbols.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/element/mml/optable/Dingbats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/element/mml/optable/Dingbats.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/element/mml/optable/GeneralPunctuation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/element/mml/optable/GeneralPunctuation.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/element/mml/optable/GeometricShapes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/element/mml/optable/GeometricShapes.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/element/mml/optable/GreekAndCoptic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/element/mml/optable/GreekAndCoptic.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/element/mml/optable/Latin1Supplement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/element/mml/optable/Latin1Supplement.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/element/mml/optable/LetterlikeSymbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/element/mml/optable/LetterlikeSymbols.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/element/mml/optable/MathOperators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/element/mml/optable/MathOperators.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/element/mml/optable/MiscMathSymbolsA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/element/mml/optable/MiscMathSymbolsA.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/element/mml/optable/MiscMathSymbolsB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/element/mml/optable/MiscMathSymbolsB.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/element/mml/optable/MiscSymbolsAndArrows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/element/mml/optable/MiscSymbolsAndArrows.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/element/mml/optable/MiscTechnical.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/element/mml/optable/MiscTechnical.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/element/mml/optable/SpacingModLetters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/element/mml/optable/SpacingModLetters.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/element/mml/optable/SuppMathOperators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/element/mml/optable/SuppMathOperators.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/element/mml/optable/SupplementalArrowsA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/element/mml/optable/SupplementalArrowsA.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/element/mml/optable/SupplementalArrowsB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/element/mml/optable/SupplementalArrowsB.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/AsciiMath/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/AsciiMath/config.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/AsciiMath/jax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/AsciiMath/jax.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/config.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/a.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/b.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/b.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/c.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/d.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/e.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/e.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/f.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/fr.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/g.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/g.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/h.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/h.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/i.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/i.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/j.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/j.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/k.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/k.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/l.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/l.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/m.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/m.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/n.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/o.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/o.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/opf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/opf.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/p.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/p.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/q.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/q.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/r.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/r.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/s.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/s.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/scr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/scr.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/t.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/t.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/u.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/u.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/v.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/v.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/w.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/w.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/x.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/x.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/y.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/y.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/entities/z.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/entities/z.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/MathML/jax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/MathML/jax.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/TeX/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/TeX/config.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/input/TeX/jax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/input/TeX/jax.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/autoload/annotation-xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/autoload/annotation-xml.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/autoload/maction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/autoload/maction.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/autoload/menclose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/autoload/menclose.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/autoload/mglyph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/autoload/mglyph.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/autoload/mmultiscripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/autoload/mmultiscripts.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/autoload/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/autoload/ms.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/autoload/mtable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/autoload/mtable.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/autoload/multiline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/autoload/multiline.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/config.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Arrows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Arrows.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/BBBold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/BBBold.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoldFraktur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoldFraktur.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoxDrawing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/BoxDrawing.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiacritMarks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CombDiacritMarks.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/ControlPictures.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/CurrencySymbols.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Cyrillic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Cyrillic.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/EnclosedAlphanum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/EnclosedAlphanum.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GeometricShapes.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekAndCoptic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekAndCoptic.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekBold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekBold.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekSSBold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/GreekSSBold.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/IPAExtensions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/IPAExtensions.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Latin1Supplement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Latin1Supplement.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedA.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/LatinExtendedB.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathBold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathBold.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathOperators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathOperators.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathSSBold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MathSSBold.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscSymbols.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscTechnical.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/MiscTechnical.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/NumberForms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Bold/NumberForms.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/BoldItalic/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/BoxDrawing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/BoxDrawing.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/Cyrillic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/Cyrillic.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekItalic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/GreekItalic.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathItalic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathItalic.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/MathScript.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Italic/ij.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Arrows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Arrows.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BBBold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BBBold.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoxDrawing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/BoxDrawing.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/CJK.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Cyrillic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Cyrillic.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Dingbats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Dingbats.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Fraktur.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Fraktur.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/GreekBold.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Hiragana.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathBold.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathItalic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathItalic.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSS.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSBold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathSSBold.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathScript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathScript.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathTT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/MathTT.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/Specials.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/General/Regular/ij.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Bold/All.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Bold/All.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/All.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/All.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsD/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Bold/All.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Bold/All.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/All.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/All.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsSm/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Bold/All.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Bold/All.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/All.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/All.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUp/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Bold/All.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Bold/All.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/All.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/All.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpD/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Bold/All.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Bold/All.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/All.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/All.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/IntegralsUpSm/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/All.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/PrivateUse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Bold/PrivateUse.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/All.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/BoldItalic/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/All.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Italic/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/All.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/NonUnicode/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/All.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/All.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeFiveSym/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Bold/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Bold/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/All.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/All.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeFourSym/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/All.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Bold/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/All.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/All.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeOneSym/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Bold/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Bold/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/All.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/All.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeThreeSym/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Bold/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Bold/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/All.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/All.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/SizeTwoSym/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/All.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/All.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/Variants/Bold/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/All.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/All.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/Variants/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/fontdata-1.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/fontdata-1.0.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/fontdata-beta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/fontdata-beta.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/fontdata-extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/fontdata-extra.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/fontdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/STIX/fontdata.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Arrows.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BBBold.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/BoxDrawing.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Dingbats.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GeometricShapes.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/GreekAndCoptic.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/LatinExtendedA.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MathOperators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MathOperators.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscSymbols.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/MiscTechnical.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/PUA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/AMS/Regular/PUA.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Bold/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Bold/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Caligraphic/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/BasicLatin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/BasicLatin.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/Other.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Bold/PUA.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/BasicLatin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/BasicLatin.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/Other.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Fraktur/Regular/PUA.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/Bold/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/Bold/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/BoldItalic/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/BoldItalic/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/Italic/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/Italic/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Greek/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Arrows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Arrows.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiacritMarks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/CombDiacritMarks.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/GeometricShapes.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Latin1Supplement.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedA.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LatinExtendedB.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/LetterlikeSymbols.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MathOperators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MathOperators.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscMathSymbolsA.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscSymbols.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/MiscTechnical.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SpacingModLetters.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Bold/SuppMathOperators.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Italic/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Main/Regular/MiscSymbols.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Math/BoldItalic/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Math/BoldItalic/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Math/Italic/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Math/Italic/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/BasicLatin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/BasicLatin.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Bold/Other.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/BasicLatin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/BasicLatin.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Italic/Other.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/SansSerif/Regular/Other.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/BasicLatin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/BasicLatin.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Script/Regular/Other.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Size1/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Size1/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Size2/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Size2/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Size3/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Size3/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Size4/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Size4/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/Typewriter/Regular/Other.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/WinChrome/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/WinChrome/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/AMS.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Bold.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/WinIE6/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/fontdata-extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/fontdata-extra.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/fontdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/fonts/TeX/fontdata.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/imageFonts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/imageFonts.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/HTML-CSS/jax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/HTML-CSS/jax.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/NativeMML/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/NativeMML/config.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/NativeMML/jax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/NativeMML/jax.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/autoload/annotation-xml.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/autoload/annotation-xml.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/autoload/maction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/autoload/maction.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/autoload/menclose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/autoload/menclose.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/autoload/mglyph.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/autoload/mglyph.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/autoload/mmultiscripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/autoload/mmultiscripts.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/autoload/ms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/autoload/ms.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/autoload/mtable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/autoload/mtable.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/autoload/multiline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/autoload/multiline.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/config.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/Arrows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/Arrows.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/BoxDrawing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/BoxDrawing.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/CombDiacritMarks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/CombDiacritMarks.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/Dingbats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/Dingbats.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/EnclosedAlphanum.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/EnclosedAlphanum.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/GeneralPunctuation.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/GeometricShapes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/GeometricShapes.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/GreekAndCoptic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/GreekAndCoptic.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/Latin1Supplement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/Latin1Supplement.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/LatinExtendedA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/LatinExtendedA.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/LetterlikeSymbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/LetterlikeSymbols.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/MathOperators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/MathOperators.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscMathSymbolsB.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscSymbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscSymbols.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscTechnical.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/MiscTechnical.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/PUA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/PUA.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/SpacingModLetters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/SpacingModLetters.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/SuppMathOperators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/AMS/Regular/SuppMathOperators.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Caligraphic/Bold/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Caligraphic/Bold/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Caligraphic/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Caligraphic/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Bold/BasicLatin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Bold/BasicLatin.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Bold/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Bold/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Bold/Other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Bold/Other.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Bold/PUA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Bold/PUA.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Regular/BasicLatin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Regular/BasicLatin.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Regular/Other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Regular/Other.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Regular/PUA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Fraktur/Regular/PUA.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/Arrows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/Arrows.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/BasicLatin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/BasicLatin.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/CombDiacritMarks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/CombDiacritMarks.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/CombDiactForSymbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/CombDiactForSymbols.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/GeneralPunctuation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/GeneralPunctuation.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/GeometricShapes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/GeometricShapes.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/GreekAndCoptic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/GreekAndCoptic.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/Latin1Supplement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/Latin1Supplement.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedA.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/LatinExtendedB.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/LetterlikeSymbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/LetterlikeSymbols.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/MathOperators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/MathOperators.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/MiscMathSymbolsA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/MiscMathSymbolsA.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/MiscSymbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/MiscSymbols.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/MiscTechnical.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/MiscTechnical.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/SpacingModLetters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/SpacingModLetters.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/SuppMathOperators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/SuppMathOperators.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/SupplementalArrowsA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Bold/SupplementalArrowsA.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/BasicLatin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/BasicLatin.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/CombDiacritMarks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/CombDiacritMarks.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/GeneralPunctuation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/GeneralPunctuation.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/GreekAndCoptic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/GreekAndCoptic.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedA.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/LatinExtendedB.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/LetterlikeSymbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/LetterlikeSymbols.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/MathOperators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Italic/MathOperators.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/BasicLatin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/BasicLatin.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/CombDiacritMarks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/CombDiacritMarks.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/GeometricShapes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/GeometricShapes.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/GreekAndCoptic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/GreekAndCoptic.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedA.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/LatinExtendedB.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/LetterlikeSymbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/LetterlikeSymbols.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/MathOperators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/MathOperators.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/MiscSymbols.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/MiscSymbols.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/SpacingModLetters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/SpacingModLetters.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/SuppMathOperators.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Main/Regular/SuppMathOperators.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Math/BoldItalic/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Math/BoldItalic/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Math/Italic/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Math/Italic/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Bold/BasicLatin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Bold/BasicLatin.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Bold/CombDiacritMarks.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Bold/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Bold/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Bold/Other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Bold/Other.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Italic/BasicLatin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Italic/BasicLatin.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Italic/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Italic/Other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Italic/Other.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Regular/BasicLatin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Regular/BasicLatin.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Regular/Other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/SansSerif/Regular/Other.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Script/Regular/BasicLatin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Script/Regular/BasicLatin.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Script/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Script/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Size1/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Size1/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Size2/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Size2/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Size3/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Size3/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Size4/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Size4/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Typewriter/Regular/BasicLatin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Typewriter/Regular/BasicLatin.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Typewriter/Regular/Main.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Typewriter/Regular/Other.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/Typewriter/Regular/Other.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/fontdata-extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/fontdata-extra.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/fontdata.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/fonts/TeX/fontdata.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/jax/output/SVG/jax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/jax/output/SVG/jax.js -------------------------------------------------------------------------------- /libraries/widgets/mathjax/mathjax.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/libraries/widgets/mathjax/mathjax.html -------------------------------------------------------------------------------- /vm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/vm/README.md -------------------------------------------------------------------------------- /vm/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/vm/Vagrantfile -------------------------------------------------------------------------------- /vm/install-sw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/vm/install-sw.sh -------------------------------------------------------------------------------- /vm/jupyter: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/vm/jupyter -------------------------------------------------------------------------------- /vm/shellinabox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljdursi/Spark-Chapel-TF-UMich-2016/HEAD/vm/shellinabox --------------------------------------------------------------------------------