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:
- change from
yaml
tocsv
since it allows easier manipulation on local machine (filtering, sorting, ...) - 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
,sub
attributes- See available timezone strings here.
- Optionally add a
note
andabstract_deadline
in case the conference has a separate mandatory abstract deadline - Optionally add
hindex
(refers to h5-index from Google) or Guide2Research - Optionally add
ranking
from conference ranks - sort data ascending by deadline
- Send a pull request
- fork the repo
- adjust
_config.yml
with 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