├── .github └── workflows │ └── main.yml ├── README.md ├── config.yaml ├── daily_arxiv.py └── docs ├── README.md ├── _config.yml ├── cv-arxiv-daily-web.json ├── cv-arxiv-daily-wechat.json ├── cv-arxiv-daily.json ├── index.md └── wechat.md /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuYingJessica/cv-daily/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuYingJessica/cv-daily/HEAD/README.md -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuYingJessica/cv-daily/HEAD/config.yaml -------------------------------------------------------------------------------- /daily_arxiv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuYingJessica/cv-daily/HEAD/daily_arxiv.py -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | #new folder 2 | -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuYingJessica/cv-daily/HEAD/docs/_config.yml -------------------------------------------------------------------------------- /docs/cv-arxiv-daily-web.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuYingJessica/cv-daily/HEAD/docs/cv-arxiv-daily-web.json -------------------------------------------------------------------------------- /docs/cv-arxiv-daily-wechat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuYingJessica/cv-daily/HEAD/docs/cv-arxiv-daily-wechat.json -------------------------------------------------------------------------------- /docs/cv-arxiv-daily.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuYingJessica/cv-daily/HEAD/docs/cv-arxiv-daily.json -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuYingJessica/cv-daily/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/wechat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhuYingJessica/cv-daily/HEAD/docs/wechat.md --------------------------------------------------------------------------------