Countdown timers to keep track of a bunch of CV/NLP/ML/RO conference deadlines available at https://deadlines.info.
This is a fork with the following changes:
- add calendar overview for deadlines and conference dates (see here)
- some design changes, e.g.
- add direct link to conference website with Icons from IcoMoon
- add display of h-index and display of full conference name on hover (inspiration from ad-deadlines.com)
- add display of conference ranking
Contributions are very welcome!
To add or update a deadline:
- Fork the repository (you can also press
.to open this repo in VS Code in your browser) - Update
_data/conferences.csv(best done with MS Excel or similar) - Make sure it has the
title,year,id,link,deadline,timezone,date,place,subattributes- See available timezone strings here.
- Optionally add a
noteandabstract_deadlinein case the conference has a separate mandatory abstract deadline - Optionally add
hindex(refers to h5-index from here) - Optionally add
hindex(refers to h5-index from Google) or Guide2Research - Optionally add
rankingfrom conference ranks - sort data ascending by deadline
- Example:
- title: BestConf year: 2022 id: bestconf22 # title as lower case + last two digits of year full_name: Best Conference for Anything # full conference name link: link-to-website.com deadline: MM/DD/YYYY HH:SS abstract_deadline: MM/DD/YYYY timezone: Asia/Seoul place: Incheon, South Korea date: September, 18-22, 2022 start: MM/DD/YYYY end: MM/DD/YYYY paperslink: link-to-full-paper-list.com pwclink: link-to-papers-with-code.com hindex: 100.0 sub: SP note: Important
- Send a pull request
- fork the repo
- adjust
_config.ymlwith your URLsdomain: "https://<user-name>.github.io/" baseurl: "/<repo-name>"
- remove
CNAME - adjust or remove Impressum
- adjust the
_data/conferences.csv - if you want a domain different from Github, check this
To test/develop the site locally with Docker:
-
Build
docker build -t jekyll-cd . -
Run
docker run --mount type=bind,source=${PWD},target=/app -p 4000:4000 -it --rm --name conference-deadlines jekyll-cd