├── .gitignore ├── LICENSE.md ├── README.md ├── analyze.py ├── download_pdfs.py ├── fetch_papers.py ├── make_cache.py ├── parse_pdf_to_text.py ├── requirements.txt ├── schema.sql ├── serve.py ├── static ├── as-common.js ├── d3.min.js ├── favicon.png ├── jquery-1.8.3.min.js ├── linkto.png ├── marked.min.js ├── missing.jpg ├── save.png ├── saved.png ├── search.png └── style.css ├── templates ├── account.html ├── discuss.html └── main.html ├── thumb_pdf.py ├── twitter_daemon.py ├── ui.jpeg └── utils.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/README.md -------------------------------------------------------------------------------- /analyze.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/analyze.py -------------------------------------------------------------------------------- /download_pdfs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/download_pdfs.py -------------------------------------------------------------------------------- /fetch_papers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/fetch_papers.py -------------------------------------------------------------------------------- /make_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/make_cache.py -------------------------------------------------------------------------------- /parse_pdf_to_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/parse_pdf_to_text.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/requirements.txt -------------------------------------------------------------------------------- /schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/schema.sql -------------------------------------------------------------------------------- /serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/serve.py -------------------------------------------------------------------------------- /static/as-common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/static/as-common.js -------------------------------------------------------------------------------- /static/d3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/static/d3.min.js -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/static/favicon.png -------------------------------------------------------------------------------- /static/jquery-1.8.3.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/static/jquery-1.8.3.min.js -------------------------------------------------------------------------------- /static/linkto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/static/linkto.png -------------------------------------------------------------------------------- /static/marked.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/static/marked.min.js -------------------------------------------------------------------------------- /static/missing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/static/missing.jpg -------------------------------------------------------------------------------- /static/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/static/save.png -------------------------------------------------------------------------------- /static/saved.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/static/saved.png -------------------------------------------------------------------------------- /static/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/static/search.png -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/static/style.css -------------------------------------------------------------------------------- /templates/account.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/templates/account.html -------------------------------------------------------------------------------- /templates/discuss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/templates/discuss.html -------------------------------------------------------------------------------- /templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/templates/main.html -------------------------------------------------------------------------------- /thumb_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/thumb_pdf.py -------------------------------------------------------------------------------- /twitter_daemon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/twitter_daemon.py -------------------------------------------------------------------------------- /ui.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/ui.jpeg -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/karpathy/arxiv-sanity-preserver/HEAD/utils.py --------------------------------------------------------------------------------