├── public ├── favicon.ico ├── ai-lab-logo.png ├── conference │ ├── types.yml │ ├── CGM │ │ ├── mmm.yml │ │ ├── vr.yml │ │ ├── vrst.yml │ │ ├── eg.yml │ │ ├── gmp.yml │ │ ├── pacificvis.yml │ │ ├── eurovis.yml │ │ ├── icmr.yml │ │ ├── ismar.yml │ │ ├── pg.yml │ │ ├── ieeevis.yml │ │ ├── icme.yml │ │ ├── siggraph.yml │ │ └── acmmm.yml │ ├── TC │ │ ├── stoc.yml │ │ ├── cec.yml │ │ ├── esa.yml │ │ ├── ccc.yml │ │ ├── focs.yml │ │ ├── wine.yml │ │ ├── icalp.yml │ │ ├── random.yml │ │ ├── cocoon.yml │ │ ├── sagt.yml │ │ ├── stacs.yml │ │ ├── approx.yml │ │ ├── tamc.yml │ │ ├── faw.yml │ │ ├── itcs.yml │ │ ├── socg.yml │ │ ├── spaa.yml │ │ ├── isaac.yml │ │ └── soda.yml │ ├── NIS │ │ ├── crypto.yml │ │ ├── eurocrypt.yml │ │ ├── icccn.yml │ │ ├── mass.yml │ │ ├── asiacrypt.yml │ │ ├── acisp.yml │ │ ├── secon.yml │ │ ├── mobihoc.yml │ │ ├── trustcom.yml │ │ ├── icnp.yml │ │ ├── ches.yml │ │ ├── wcnc.yml │ │ ├── esorics.yml │ │ ├── asiaccs.yml │ │ ├── mobicom.yml │ │ ├── icics.yml │ │ ├── www.yml │ │ ├── infocom.yml │ │ ├── fse.yml │ │ ├── ccs.yml │ │ └── sp.yml │ ├── SE │ │ ├── apsec.yml │ │ ├── qrs.yml │ │ ├── icfeme.yml │ │ ├── re.yml │ │ ├── icpc.yml │ │ ├── icsoc.yml │ │ ├── seke.yml │ │ ├── icws.yml │ │ ├── models.yml │ │ ├── oopsla.yml │ │ ├── ase.yml │ │ ├── icse.yml │ │ └── fse.yml │ ├── PDC │ │ ├── socc.yml │ │ ├── hpcc.yml │ │ ├── ispa.yml │ │ ├── icpads.yml │ │ ├── ipdps.yml │ │ ├── ics.yml │ │ ├── sc.yml │ │ ├── ica3pp.yml │ │ ├── pact.yml │ │ ├── usenix-atc.yml │ │ └── ppopp.yml │ ├── AI │ │ ├── naacl.yml │ │ ├── coling.yml │ │ ├── kr.yml │ │ ├── nips_db.yml │ │ ├── conll.yml │ │ ├── uai.yml │ │ ├── colt.yml │ │ ├── ictai.yml │ │ ├── ijcai.yml │ │ ├── ecai.yml │ │ ├── ijcnn.yml │ │ ├── icann.yml │ │ ├── acl.yml │ │ ├── emnlp.yml │ │ ├── nips.yml │ │ ├── iclr.yml │ │ ├── icml.yml │ │ └── aaai.yml │ └── DBIR │ │ ├── iswc.yml │ │ ├── icdt.yml │ │ ├── sigir_short.yml │ │ ├── icdm.yml │ │ ├── edbt.yml │ │ ├── wsdm.yml │ │ ├── sdm.yml │ │ ├── cikm_short.yml │ │ ├── ecml-pkdd.yml │ │ ├── sigir.yml │ │ ├── dasfaa.yml │ │ ├── cikm.yml │ │ ├── sigkdd.yml │ │ ├── icde.yml │ │ ├── sigmod.yml │ │ ├── pods.yml │ │ └── vldb.yml └── index.html ├── babel.config.js ├── .conf_list ├── screenshot.png └── SIME_tenure_CCF.xlsx ├── plugins └── element.js ├── .editorconfig ├── jsconfig.json ├── src ├── components │ ├── GithubButton.vue │ ├── Header.vue │ ├── TimeLine.vue │ └── Home.vue ├── main.js └── App.vue ├── vue.config.js ├── scripts ├── pre-commit └── validate ├── LICENSE ├── merge_all.py ├── fuzzymatching.py ├── .gitignore ├── package.json ├── README.zh-CN.md ├── conference-yaml-schema.yml └── README.md /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUFE-CS-CONF-DDL/sufe-cs-conf-ddl/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: [ 3 | '@vue/cli-plugin-babel/preset', 4 | ], 5 | }; 6 | -------------------------------------------------------------------------------- /public/ai-lab-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUFE-CS-CONF-DDL/sufe-cs-conf-ddl/HEAD/public/ai-lab-logo.png -------------------------------------------------------------------------------- /.conf_list/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUFE-CS-CONF-DDL/sufe-cs-conf-ddl/HEAD/.conf_list/screenshot.png -------------------------------------------------------------------------------- /.conf_list/SIME_tenure_CCF.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SUFE-CS-CONF-DDL/sufe-cs-conf-ddl/HEAD/.conf_list/SIME_tenure_CCF.xlsx -------------------------------------------------------------------------------- /plugins/element.js: -------------------------------------------------------------------------------- 1 | import Vue from "vue" 2 | import Element from "element-ui" 3 | import 'element-ui/lib/theme-chalk/index.css' 4 | 5 | Vue.use(Element) -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | [*.{js,jsx,ts,tsx,vue}] 2 | indent_style = space 3 | indent_size = 2 4 | end_of_line = lf 5 | trim_trailing_whitespace = true 6 | insert_final_newline = true 7 | max_line_length = 100 8 | -------------------------------------------------------------------------------- /public/conference/types.yml: -------------------------------------------------------------------------------- 1 | --- 2 | - name: 并行与分布计算 3 | sub: PDC 4 | - name: 计算机图形学与多媒体 5 | sub: CGM 6 | - name: 理论计算机 7 | sub: TC 8 | - name: 人工智能 9 | sub: AI 10 | - name: 软件工程 11 | sub: SE 12 | - name: 数据库与信息检索 13 | sub: DBIR 14 | - name: 网络与信息安全 15 | sub: NIS -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es5", 4 | "module": "esnext", 5 | "baseUrl": "./", 6 | "moduleResolution": "node", 7 | "paths": { 8 | "@/*": [ 9 | "src/*" 10 | ] 11 | }, 12 | "lib": [ 13 | "esnext", 14 | "dom", 15 | "dom.iterable", 16 | "scripthost" 17 | ] 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /src/components/GithubButton.vue: -------------------------------------------------------------------------------- 1 | 4 | 5 | 10 | 11 | 14 | -------------------------------------------------------------------------------- /public/conference/CGM/mmm.yml: -------------------------------------------------------------------------------- 1 | - title: MMM 2 | description: International Conference on Multimedia Modeling 3 | sub: CGM 4 | rank: C 5 | TierLevel: Third 6 | dblp: mmm 7 | confs: 8 | - year: 2022 9 | id: mmm22 10 | link: https://mmm2022.org/ 11 | timeline: 12 | - deadline: '2021-09-13 23:59:59' 13 | timezone: UTC+7 14 | date: June 6-10, 2022 15 | place: Phu Quoc, Vietnam -------------------------------------------------------------------------------- /public/conference/TC/stoc.yml: -------------------------------------------------------------------------------- 1 | - title: STOC 2 | description: ACM Symposium on the Theory of Computing 3 | sub: TC 4 | rank: A 5 | TierLevel: First 6 | dblp: stoc 7 | confs: 8 | - year: 2022 9 | id: stoc22 10 | link: http://acm-stoc.org/stoc2022/ 11 | timeline: 12 | - deadline: '2021-11-04 16:59:59' 13 | timezone: UTC-5 14 | date: June 20-24, 2022 15 | place: Rome, Italy -------------------------------------------------------------------------------- /public/conference/NIS/crypto.yml: -------------------------------------------------------------------------------- 1 | - title: CRYPTO 2 | description: International Cryptology Conference 3 | sub: NIS 4 | rank: A 5 | TierLevel: First 6 | dblp: crypto 7 | confs: 8 | - year: 2022 9 | id: crypto22 10 | link: https://crypto.iacr.org/2022/ 11 | timeline: 12 | - deadline: '2022-02-17 23:59:59' 13 | timezone: AoE 14 | date: August 13-18 2022 15 | place: Santa Barbara, USA -------------------------------------------------------------------------------- /public/conference/TC/cec.yml: -------------------------------------------------------------------------------- 1 | - title: ACM EC 2 | description: ACM Conference on Economics and Computation 3 | sub: TC 4 | rank: / 5 | TierLevel: Second 6 | dblp: stoc 7 | confs: 8 | - year: 2021 9 | id: stoc21 10 | link: http://acm-stoc.org/stoc2021/ 11 | timeline: 12 | - deadline: '2022-02-10 23:59:59' 13 | timezone: UTC-5 14 | date: July 11-15, 2022 15 | place: Colorado, America. -------------------------------------------------------------------------------- /public/conference/TC/esa.yml: -------------------------------------------------------------------------------- 1 | - title: ESA 2 | description: European Symposium on Algorithms 3 | sub: TC 4 | rank: B 5 | TierLevel: Third 6 | dblp: esa 7 | confs: 8 | - year: 2022 9 | id: esa22 10 | link: https://www.esa.org/montreal2022 11 | timeline: 12 | - deadline: '2022-03-03 23:59:59' 13 | timezone: AoE 14 | date: August 14-19, 2022 15 | place: Montréal, Québec, Canada 16 | -------------------------------------------------------------------------------- /public/conference/TC/ccc.yml: -------------------------------------------------------------------------------- 1 | - title: CCC 2 | description: IEEE Conference on Computational Complexity 3 | sub: TC 4 | rank: B 5 | TierLevel: Second 6 | dblp: coco 7 | confs: 8 | - year: 2022 9 | id: ccc22 10 | link: https://computationalcomplexity.org/ 11 | timeline: 12 | - deadline: '2022-02-14 16:59:59' 13 | timezone: UTC-5 14 | date: July 21–23, 2022 15 | place: Philadelphia, USA -------------------------------------------------------------------------------- /public/conference/TC/focs.yml: -------------------------------------------------------------------------------- 1 | - title: FOCS 2 | description: Annual IEEE Symposium on Foundations of Computer Science 3 | sub: TC 4 | rank: A 5 | TierLevel: First 6 | dblp: focs 7 | confs: 8 | - year: 2021 9 | id: focs21 10 | link: http://ieee-focs.org/ 11 | timeline: 12 | - deadline: '2021-06-03 16:59:59' 13 | timezone: UTC-5 14 | date: October 31 - November 3, 2022 15 | place: Virtual -------------------------------------------------------------------------------- /public/conference/TC/wine.yml: -------------------------------------------------------------------------------- 1 | - title: WINE 2 | description: International Workshop on Internet and Network Economics 3 | sub: TC 4 | rank: / 5 | TierLevel: Third 6 | dblp: wine 7 | confs: 8 | - year: 2021 9 | id: wine21 10 | link: https://hpi.de/wine2021/ 11 | timeline: 12 | - deadline: '2021-06-12 23:59:59' 13 | timezone: UTC 14 | date: December 14-17, 2021 15 | place: Potsdam, Germany -------------------------------------------------------------------------------- /public/conference/SE/apsec.yml: -------------------------------------------------------------------------------- 1 | - title: APSEC 2 | description: Asia-Pacific Software Engineering Conference 3 | sub: SE 4 | rank: A 5 | TierLevel: Third 6 | dblp: apsec 7 | confs: 8 | - year: 2021 9 | id: apsec21 10 | link: https://apsec2021.seat.org.tw/ 11 | timeline: 12 | - deadline: '2021-07-26 23:59:59' 13 | timezone: AoE 14 | date: September 6-9, 2021 15 | place: Taipei, Taiwan 16 | -------------------------------------------------------------------------------- /public/conference/CGM/vr.yml: -------------------------------------------------------------------------------- 1 | - title: VR 2 | description: IEEE Virtual Reality 3 | sub: CGM 4 | rank: A 5 | TierLevel: Second 6 | dblp: vr 7 | confs: 8 | - year: 2022 9 | id: vr22 10 | link: https://ieeevr.org/2022/ 11 | timeline: 12 | - abstract_deadline: '2021-11-01 22:00:00' 13 | deadline: '2021-11-05 22:00:00' 14 | timezone: AoE 15 | date: March 12–16, 2022 16 | place: Virtual 17 | -------------------------------------------------------------------------------- /public/conference/CGM/vrst.yml: -------------------------------------------------------------------------------- 1 | - title: VRST 2 | description: ACM Symposium on Virtual Reality Software and Technology 3 | sub: CGM 4 | rank: C 5 | TierLevel: Third 6 | dblp: vrst 7 | confs: 8 | - year: 2021 9 | id: vrst21 10 | link: https://vrst.acm.org/vrst2021/ 11 | timeline: 12 | - deadline: '2021-07-19 23:59:00' 13 | timezone: AoE 14 | date: December 8-10, 2021 15 | place: Osaka, Japan 16 | -------------------------------------------------------------------------------- /public/conference/NIS/eurocrypt.yml: -------------------------------------------------------------------------------- 1 | - title: EUROCRYPT 2 | description: European Cryptology Conference 3 | sub: NIS 4 | rank: A 5 | TierLevel: Second 6 | dblp: eurocrypt 7 | confs: 8 | - year: 2022 9 | id: eurocrypt22 10 | link: https://eurocrypt.iacr.org/2022 11 | timeline: 12 | - deadline: '2021-10-01 23:59:59' 13 | timezone: UTC+2 14 | date: May 30-June 3, 2022 15 | place: Trondheim, Norway -------------------------------------------------------------------------------- /public/conference/PDC/socc.yml: -------------------------------------------------------------------------------- 1 | - title: SoCC 2 | description: ACM Symposium on Cloud Computing 3 | sub: PDC 4 | rank: B 5 | TierLevel: Third 6 | dblp: cloud 7 | confs: 8 | - year: 2021 9 | id: socc2021 10 | link: https://conf.researchr.org/home/vee-2022 11 | timeline: 12 | - deadline: '2021-05-28 17:00:00' 13 | timezone: UTC-4 14 | date: November 1-4, 2021 15 | place: Seattle, WA & Online 16 | -------------------------------------------------------------------------------- /public/conference/TC/icalp.yml: -------------------------------------------------------------------------------- 1 | - title: ICALP 2 | description: International Colloquium on Automata, Languages, and Programming 3 | sub: TC 4 | rank: B 5 | TierLevel: Second 6 | dblp: icalp 7 | confs: 8 | - year: 2022 9 | id: icalp22 10 | link: https://icalp2022.irif.fr/ 11 | timeline: 12 | - deadline: '2022-02-10 23:59:59' 13 | timezone: AoE 14 | date: July 4-8, 2022 15 | place: Paris, France -------------------------------------------------------------------------------- /public/conference/TC/random.yml: -------------------------------------------------------------------------------- 1 | - title: RANDOM 2 | description: International Workshop on Randomization and Computation 3 | sub: TC 4 | rank: / 5 | TierLevel: Third 6 | dblp: random 7 | confs: 8 | - year: 2022 9 | id: random22 10 | link: https://randomconference.com/ 11 | timeline: 12 | - deadline: '2022-05-04 17:59:59' 13 | timezone: UTC-5 14 | date: September 19-21, 2022 15 | place: Virtual -------------------------------------------------------------------------------- /public/conference/NIS/icccn.yml: -------------------------------------------------------------------------------- 1 | - title: ICCCN 2 | description: IEEE International Conference on Computer Communications and Networks 3 | sub: NIS 4 | rank: C 5 | TierLevel: Third 6 | dblp: icccn 7 | confs: 8 | - year: 2022 9 | id: icccn22 10 | link: http://www.icccn.org/ 11 | timeline: 12 | - deadline: '2022-03-20 23:59:59' 13 | timezone: UTC-5 14 | date: July 25-28, 2022 15 | place: Virtual 16 | -------------------------------------------------------------------------------- /public/conference/NIS/mass.yml: -------------------------------------------------------------------------------- 1 | - title: MASS 2 | description: IEEE International Conference on Mobile Ad-Hoc and Smart Systems 3 | sub: NIS 4 | TierLevel: Third 5 | rank: C 6 | dblp: mass 7 | confs: 8 | - year: 2021 9 | id: mass21 10 | link: https://eng.auburn.edu/conference/ieee-mass2021/ 11 | timeline: 12 | - deadline: '2021-05-15 23:59:59' 13 | timezone: UTC-12 14 | date: October 4-7, 2021 15 | place: Virtual -------------------------------------------------------------------------------- /public/conference/TC/cocoon.yml: -------------------------------------------------------------------------------- 1 | - title: COCOON 2 | description: International Computing and Combinatorics Conference 3 | sub: TC 4 | rank: / 5 | TierLevel: Third 6 | dblp: cocoon 7 | confs: 8 | - year: 2021 9 | id: cocoon21 10 | link: http://cocoon-conference.org/2021/Program.php 11 | timeline: 12 | - deadline: '2021-06-30 23:59:59' 13 | timezone: UTC+8 14 | date: October 24-26, 2021 15 | place: Tainan, Taiwan -------------------------------------------------------------------------------- /public/conference/TC/sagt.yml: -------------------------------------------------------------------------------- 1 | - title: SAGT 2 | description: International Symposium on Algorithmic Game Theory 3 | sub: TC 4 | rank: / 5 | TierLevel: Third 6 | dblp: sagt 7 | confs: 8 | - year: 2022 9 | id: sagt22 10 | link: https://www.essex.ac.uk/events/2022/09/11/sagt-2022 11 | timeline: 12 | - deadline: '2022-05-10 23:59:59' 13 | timezone: UTC+0 14 | date: September 12-15, 2022 15 | place: Colchester, UK -------------------------------------------------------------------------------- /public/conference/TC/stacs.yml: -------------------------------------------------------------------------------- 1 | - title: STACS 2 | description: International Symposium on Theoretical Aspects of Computer Science 3 | sub: TC 4 | rank: C 5 | TierLevel: Third 6 | dblp: stacs 7 | confs: 8 | - year: 2022 9 | id: stacs22 10 | link: https://stacs2022.sciencesconf.org/ 11 | timeline: 12 | - deadline: '2021-10-01 23:59:59' 13 | timezone: AoE 14 | date: March 15-18 2022 15 | place: Marseille, France -------------------------------------------------------------------------------- /vue.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | pages: { 3 | index: { 4 | entry: 'src/main.js', 5 | template: 'public/index.html', 6 | filename: 'index.html', 7 | title: 'sufe-cs-conf-ddl', 8 | }, 9 | }, 10 | runtimeCompiler: true, 11 | }; 12 | 13 | // Annotation 14 | // const { defineConfig } = require('@vue/cli-service') 15 | // module.exports = defineConfig({ 16 | // transpileDependencies: true, 17 | // lintOnSave:false 18 | // }) 19 | -------------------------------------------------------------------------------- /public/conference/CGM/eg.yml: -------------------------------------------------------------------------------- 1 | - title: EG 2 | description: Eurographics 3 | sub: CGM 4 | rank: B 5 | TierLevel: Second 6 | dblp: eurographics 7 | confs: 8 | - year: 2022 9 | id: eg22 10 | link: https://eg2022.univ-reims.fr/index.html 11 | timeline: 12 | - abstract_deadline: '2021-09-26 23:59:59' 13 | deadline: '2021-10-03 23:59:59' 14 | timezone: UTC 15 | date: April 25-29, 2022 16 | place: Reims, France 17 | -------------------------------------------------------------------------------- /public/conference/CGM/gmp.yml: -------------------------------------------------------------------------------- 1 | - title: GMP 2 | description: Geometric Modeling and Processing 3 | sub: CGM 4 | rank: C 5 | TierLevel: Third 6 | dblp: gmp 7 | confs: 8 | - year: 2022 9 | id: gmp22 10 | link: https://indico.oist.jp/event/13/ 11 | timeline: 12 | - abstract_deadline: '2021-12-17 23:59:59' 13 | deadline: '2022-12-21 23:59:59' 14 | timezone: UTC+0 15 | date: May 11-13, 2022 16 | place: Okinawa, JAPAN -------------------------------------------------------------------------------- /public/conference/PDC/hpcc.yml: -------------------------------------------------------------------------------- 1 | - title: HPCC 2 | description: IEEE International Conference on High Performance Computing and Communications 3 | sub: PDC 4 | rank: B 5 | TierLevel: Third 6 | dblp: hpcc 7 | confs: 8 | - year: 2021 9 | id: hpcc21 10 | link: http://www.ieee-hpcc.org/2021/index.html 11 | timeline: 12 | - deadline: '2021-09-15 23:59:59' 13 | timezone: UTC+8 14 | date: December 20-22, 2021 15 | place: Haikou, Hainan -------------------------------------------------------------------------------- /public/conference/PDC/ispa.yml: -------------------------------------------------------------------------------- 1 | - title: ISPA 2 | description: IEEE International Symposium on Parallel and Distributed Processing with Applications 3 | sub: PDC 4 | rank: C 5 | TierLevel: Third 6 | dblp: ispa 7 | confs: 8 | - year: 2021 9 | id: ispa21 10 | link: http://www.cloud-conf.net/ispa2021/ 11 | timeline: 12 | - deadline: '2021-07-09 23:59:59' 13 | timezone: AoE 14 | date: September 30-October 3, 2021 15 | place: New York, USA -------------------------------------------------------------------------------- /public/conference/TC/approx.yml: -------------------------------------------------------------------------------- 1 | - title: APPROX 2 | description: International Workshop on Approximation Algorithms for Combinatorial Optimization Problems 3 | sub: TC 4 | TierLevel: Third 5 | rank: / 6 | dblp: approx 7 | confs: 8 | - year: 2022 9 | id: approx22 10 | link: https://approxconference.wordpress.com/ 11 | timeline: 12 | - deadline: '2022-05-04 17:59:59' 13 | timezone: UTC-5 14 | date: September 19-21, 2022 15 | place: Virtual -------------------------------------------------------------------------------- /public/conference/TC/tamc.yml: -------------------------------------------------------------------------------- 1 | - title: TAMC 2 | description: ACM Symposium on the Theory of Computing 3 | sub: TC 4 | rank: / 5 | TierLevel: Third 6 | dblp: tamc 7 | confs: 8 | - year: 2022 9 | id: stoc22 10 | link: https://lxy.tjut.edu.cn/TAMC2022.htm 11 | timeline: 12 | - abstract_deadline: '2022-04-24 23:59:59' 13 | deadline: '2022-05-01 23:59:59' 14 | timezone: UTC+8 15 | date: September 16-18, 2022 16 | place: Tianjin, China -------------------------------------------------------------------------------- /public/conference/CGM/pacificvis.yml: -------------------------------------------------------------------------------- 1 | - title: PacificVis 2 | description: IEEE Pacific Visualization Symposium 3 | sub: CGM 4 | rank: C 5 | TierLevel: Third 6 | dblp: apvis 7 | confs: 8 | - year: 2022 9 | id: pacificvis22 10 | link: https://pvis2022.github.io/pvis2022/ 11 | timeline: 12 | - abstract_deadline: '2021-10-15 23:59:59' 13 | deadline: '2021-10-22 23:59:59' 14 | timezone: UTC-7 15 | date: April 11-14, 2022 16 | place: Virtual -------------------------------------------------------------------------------- /public/conference/TC/faw.yml: -------------------------------------------------------------------------------- 1 | - title: FAW 2 | description: Frontiers of Algorithmics 3 | sub: TC 4 | rank: / 5 | TierLevel: Third 6 | dblp: faw 7 | confs: 8 | - year: 2019 9 | id: faw19 10 | link: https://people.iiis.tsinghua.edu.cn/~jianli/FAW2019/FAW2019.html 11 | timeline: 12 | - abstract_deadline: '2018-12-28 23:59:59' 13 | deadline: '2019-01-07 23:59:59' 14 | timezone: AoE 15 | date: April 29 – May 3, 2019 16 | place: Sanya, China -------------------------------------------------------------------------------- /public/conference/TC/itcs.yml: -------------------------------------------------------------------------------- 1 | - title: ITCS 2 | description: ACM Symposium on the Theory of Computing 3 | sub: TC 4 | rank: / 5 | TierLevel: Second 6 | dblp: itcs 7 | confs: 8 | - year: 2022 9 | id: itcs22 10 | link: http://itcs-conf.org/itcs22/itcs22-cfp.html 11 | timeline: 12 | - abstract_deadline: '2021-09-06 19:59:59' 13 | deadline: '2021-09-13 19:59:59' 14 | timezone: UTC-4 15 | date: January 31-February 3, 2022 16 | place: Virtual -------------------------------------------------------------------------------- /public/conference/TC/socg.yml: -------------------------------------------------------------------------------- 1 | - title: SOCG 2 | description: ACM Symposium on Computational Geometry 3 | sub: TC 4 | rank: B 5 | TierLevel: Second 6 | dblp: socg 7 | confs: 8 | - year: 2022 9 | id: socg22 10 | link: https://www.inf.fu-berlin.de/inst/ag-ti/socg22/socg.html 11 | timeline: 12 | - deadline: '2021-11-25 23:59:59' 13 | deadline: '2021-12-02 23:59:59' 14 | timezone: AoE 15 | date: June 7-10, 2022 16 | place: Berlin, Germany -------------------------------------------------------------------------------- /public/conference/TC/spaa.yml: -------------------------------------------------------------------------------- 1 | - title: SPAA 2 | description: ACM Symposium on Parallelism in Algorithms and Architectures 3 | sub: TC 4 | rank: B 5 | TierLevel: Second 6 | dblp: spaa 7 | confs: 8 | - year: 2022 9 | id: spaa22 10 | link: https://spaa.acm.org/ 11 | timeline: 12 | - abstract_deadline: '2022-02-21 23:59:59' 13 | deadline: '2022-02-28 23:59:59' 14 | timezone: AoE 15 | date: July 11-14, 2022 16 | place: Philadelphia, U.S. -------------------------------------------------------------------------------- /public/conference/NIS/asiacrypt.yml: -------------------------------------------------------------------------------- 1 | - title: ASIACRYPT 2 | description: International Conference on the Theory and Application of Cryptology and Information Security 3 | sub: NIS 4 | rank: B 5 | TierLevel: Second 6 | dblp: asiacrypt 7 | confs: 8 | - year: 2021 9 | id: asiacrypt21 10 | link: https://asiacrypt.iacr.org/2021/ 11 | timeline: 12 | - deadline: '2021-05-27 11:59:59' 13 | timezone: UTC-12 14 | date: December 5-9, 2021 15 | place: Singapore -------------------------------------------------------------------------------- /public/conference/TC/isaac.yml: -------------------------------------------------------------------------------- 1 | - title: ISAAC 2 | description: International Symposium on Algorithms and Computation 3 | sub: TC 4 | rank: C 5 | TierLevel: Third 6 | dblp: isaac 7 | confs: 8 | - year: 2022 9 | id: isaac22 10 | link: https://www.issac-conference.org/2022/ 11 | timeline: 12 | - abstract_deadline: '2022-02-07 23:59:59' 13 | deadline: '2022-02-11 23:59:59' 14 | timezone: AoE 15 | date: July 4-7, 2022 16 | place: Lille, France -------------------------------------------------------------------------------- /public/conference/CGM/eurovis.yml: -------------------------------------------------------------------------------- 1 | - title: EuroVis 2 | description: Eurographics Conference on Visualization 3 | sub: CGM 4 | rank: B 5 | TierLevel: Third 6 | dblp: vissym 7 | confs: 8 | - year: 2022 9 | id: eurovis22 10 | link: hhttps://conferences.eg.org/eurovis2022/ 11 | timeline: 12 | - abstract_deadline: '2021-11-24 23:59:59' 13 | deadline: '2021-12-02 23:59:59' 14 | timezone: UTC+0 15 | date: June 13-17, 2022 16 | place: Rome, Italy 17 | -------------------------------------------------------------------------------- /public/conference/PDC/icpads.yml: -------------------------------------------------------------------------------- 1 | - title: ICPADS 2 | description: International Conference on Parallel and Distributed Systems 3 | sub: PDC 4 | rank: B 5 | TierLevel: Third 6 | dblp: icpads 7 | confs: 8 | - year: 2021 9 | id: icpads21 10 | link: http://ieee-icpads.net/2021/ 11 | timeline: 12 | - abstract_deadline: '2021-07-09 23:59:59' 13 | deadline: '2021-07-16 23:59:59' 14 | timezone: UTC+8 15 | date: December 14-16, 2021 16 | place: Beijing -------------------------------------------------------------------------------- /public/conference/TC/soda.yml: -------------------------------------------------------------------------------- 1 | - title: SODA 2 | description: ACM-SIAM Symposium on Discrete Algorithms 3 | sub: TC 4 | rank: A 5 | TierLevel: First 6 | dblp: soda 7 | confs: 8 | - year: 2022 9 | id: soda22 10 | link: https://www.siam.org/conferences/cm/conference/soda22 11 | timeline: 12 | - abstract_deadline: '2021-07-05 16:59:59' 13 | deadline: '2021-07-12 16:59:59' 14 | timezone: UTC-5 15 | date: January 9-12, 2022 16 | place: Virginia, U.S. -------------------------------------------------------------------------------- /public/conference/NIS/acisp.yml: -------------------------------------------------------------------------------- 1 | - title: ACISP 2 | description: Australasia Conference on Information Security and Privacy 3 | sub: NIS 4 | rank: C 5 | TierLevel: Third 6 | dblp: acisp 7 | confs: 8 | - year: 2021 9 | id: acisp21 10 | link: https://uow-ic2.github.io/acisp2022/ 11 | timeline: 12 | - deadline: '2022-02-11 23:59:59' 13 | comment: 'Paper submission Deadline' 14 | timezone: AoE 15 | date: July 13-17, 2022 16 | place: Wollongong, Australia -------------------------------------------------------------------------------- /public/conference/PDC/ipdps.yml: -------------------------------------------------------------------------------- 1 | - title: IPDPS 2 | description: IEEE International Parallel and Distributed Processing Symposium 3 | sub: PDC 4 | rank: B 5 | TierLevel: Second 6 | dblp: ipps 7 | confs: 8 | - year: 2022 9 | id: ipdps22 10 | link: https://www.ipdps.org/ipdps2022/ 11 | timeline: 12 | - abstract_deadline: '2021-10-01 23:59:59' 13 | deadline: '2021-10-08 23:59:59' 14 | timezone: AoE 15 | date: May 30-June 3, 2022 16 | place: Lyon, France -------------------------------------------------------------------------------- /public/conference/NIS/secon.yml: -------------------------------------------------------------------------------- 1 | - title: SECON 2 | description: IEEE International Conference on Sensing, Communication and Networking 3 | sub: NIS 4 | rank: B 5 | TierLevel: Second 6 | dblp: secon 7 | confs: 8 | - year: 2022 9 | id: secon22 10 | link: https://secon2022.ieee-secon.org/ 11 | timeline: 12 | - abstract_deadline: '2022-05-02 23:59:59' 13 | deadline: '2022-05-09 23:59:59' 14 | timezone: AoE 15 | date: September 20–23, 2022 16 | place: Virtual -------------------------------------------------------------------------------- /public/conference/SE/qrs.yml: -------------------------------------------------------------------------------- 1 | - title: QRS 2 | description: IEEE International Conference on Software Quality, Reliability and Security 3 | sub: SE 4 | rank: C 5 | TierLevel: Third 6 | dblp: qrs 7 | confs: 8 | - year: 2021 9 | id: qrs21 10 | link: https://qrs21.techconf.org/ 11 | timeline: 12 | - abstract_deadline: '2021-08-15 23:59:59' 13 | deadline: '2021-08-22 23:59:59' 14 | timezone: AoE 15 | date: December 6-10, 2021 16 | place: Hainan Island, China -------------------------------------------------------------------------------- /public/conference/NIS/mobihoc.yml: -------------------------------------------------------------------------------- 1 | - title: MobiHoc 2 | description: International Symposium on Mobile Ad Hoc Networking and Computing 3 | sub: NIS 4 | rank: B 5 | TierLevel: Second 6 | dblp: mobihoc 7 | confs: 8 | - year: 2022 9 | id: mobihoc22 10 | link: https://www.sigmobile.org/mobihoc/2022/ 11 | timeline: 12 | - abstract_deadline: '2022-02-25 23:59:59' 13 | deadline: '2022-03-04 23:59:59' 14 | timezone: UTC-12 15 | date: October 17-22, 2022 16 | place: Seoul, South Korea -------------------------------------------------------------------------------- /public/conference/NIS/trustcom.yml: -------------------------------------------------------------------------------- 1 | - title: TrustCom 2 | description: IEEE International Conference on Trust, Security and Privacy in Computing and Communications 3 | sub: NIS 4 | rank: C 5 | TierLevel: Third 6 | dblp: trustcom 7 | confs: 8 | - year: 2021 9 | id: trustcom21 10 | link: https://trustcom2021.sau.edu.cn/ 11 | timeline: 12 | - deadline: '2021-04-30 23:59:59' 13 | comment: 'Paper Submission Deadline' 14 | timezone: UTC+8 15 | date: October 20-22, 2021 16 | place: Shenyang, China -------------------------------------------------------------------------------- /public/conference/SE/icfeme.yml: -------------------------------------------------------------------------------- 1 | - title: icfeme 2 | description: International Conference on Formal Engineering Methods 3 | sub: SE 4 | rank: / 5 | TierLevel: Third 6 | dblp: icfem 7 | confs: 8 | - year: 2022 9 | id: icpc22 10 | link: http://maude.ucm.es/ICFEM22/c_impd.html 11 | timeline: 12 | - deadline: '2022-04-10 23:59:59' 13 | comment: 'Abstract Submission' 14 | - deadline: '2022-04-17 23:59:59' 15 | comment: 'Paper Submission' 16 | timezone: AoE 17 | date: October 24-27, 2022 18 | place: Madrid, Spain -------------------------------------------------------------------------------- /public/conference/SE/re.yml: -------------------------------------------------------------------------------- 1 | - title: RE 2 | description: IEEE International Requirement Engineering Conference 3 | sub: SE 4 | rank: B 5 | TierLevel: Second 6 | dblp: re 7 | confs: 8 | - year: 2022 9 | id: re22 10 | link: https://conf.researchr.org/home/RE-2022 11 | timeline: 12 | - deadline: '2022-02-17 23:59:59' 13 | comment: 'Abstract Submission Deadline' 14 | - deadline: '2022-02-24 23:59:59' 15 | comment: 'Paper Submission Deadline' 16 | timezone: AoE 17 | date: August 15-19, 2022 18 | place: Melbourne, Australia 19 | -------------------------------------------------------------------------------- /public/conference/SE/icpc.yml: -------------------------------------------------------------------------------- 1 | - title: ICPC 2 | description: IEEE International Conference on Program Comprehension 3 | sub: SE 4 | rank: B 5 | TierLevel: Second 6 | dblp: icpc 7 | confs: 8 | - year: 2022 9 | id: icpc22 10 | link: https://conf.researchr.org/home/icpc-2022 11 | timeline: 12 | - deadline: '2022-01-13 23:59:59' 13 | comment: 'Abstract Submission' 14 | - deadline: '2022-01-18 23:59:59' 15 | comment: 'Paper Submission' 16 | timezone: AoE 17 | date: May 21-22, 2022 18 | place: Pittsburgh, Pennsylvania, United States -------------------------------------------------------------------------------- /scripts/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/sh 2 | 3 | command_exists () { 4 | command -v "$1" >/dev/null 2>&1 5 | } 6 | 7 | 8 | python_module_exists () { 9 | /usr/bin/env python -c "import $1" >/dev/null 2>&1 10 | } 11 | 12 | command_exists python || { 13 | echo 14 | echo "No python found, skip pre-commit hook." 15 | echo 16 | exit 0 17 | } 18 | 19 | python_module_exists yaml && python_module_exists jsonschema || { 20 | echo 21 | echo "To run pre-commit hook, please install the following modules." 22 | echo "\$ pip install PyYAML jsonschema" 23 | echo 24 | exit 0 25 | } 26 | 27 | exec "`dirname -- "$0"`/validate" $@ 28 | -------------------------------------------------------------------------------- /public/conference/SE/icsoc.yml: -------------------------------------------------------------------------------- 1 | - title: ICSOC 2 | description: International Conference on Service Oriented Computing 3 | sub: SE 4 | rank: B 5 | TierLevel: Third 6 | dblp: icsoc 7 | confs: 8 | - year: 2022 9 | id: icsoc22 10 | link: http://www.icsoc.org/ 11 | timeline: 12 | - deadline: '2022-03-01 23:59:59' 13 | comment: 'Abstracts/Full-Text Paper Submission Deadline' 14 | - deadline: '2022-04-23 23:59:59' 15 | comment: 'Final Paper (Camera Ready) Submission & Early Bird Registration Deadline' 16 | timezone: AoE 17 | date: May 26-27, 2022 18 | place: Barcelona, Spain 19 | -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | <%= htmlWebpackPlugin.options.title %> 9 | 10 | 11 | 14 |
15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- 1 | import Vue from 'vue/dist/vue'; 2 | import ElementUI from 'element-ui'; 3 | 4 | import 'element-ui/lib/theme-chalk/index.css'; 5 | 6 | import VueResource from 'vue-resource'; 7 | 8 | import VueCountdown from '@chenfengyuan/vue-countdown'; 9 | 10 | import Storage from 'vue-ls'; 11 | 12 | import App from './App.vue'; 13 | 14 | Vue.use(ElementUI); 15 | Vue.use(VueResource); 16 | Vue.component(VueCountdown.name, VueCountdown); 17 | 18 | const options = { 19 | namespace: 'vuejs__', 20 | name: 'ls', 21 | storage: 'local', 22 | }; 23 | Vue.use(Storage, options); 24 | Vue.config.productionTip = false; 25 | 26 | new Vue({ 27 | render: (h) => h(App), 28 | }).$mount('#app'); 29 | -------------------------------------------------------------------------------- /public/conference/CGM/icmr.yml: -------------------------------------------------------------------------------- 1 | - title: ICMR 2 | description: ACM SIGMM International Conference on Multimedia Retrieval 3 | sub: CGM 4 | rank: B 5 | TierLevel: Second 6 | dblp: mir 7 | confs: 8 | - year: 2022 9 | id: icmr22 10 | link: http://2022.ieeeicme.org/paper.html 11 | timeline: 12 | - deadline: '2022-01-30 23:59:59' 13 | timezone: UTC-5 14 | date: June 27-30, 2022 15 | place: Newark, NewJersy, USA 16 | - year: 2024 17 | id: icmr24 18 | link: https://icmr2024.org/index.html 19 | timeline: 20 | - deadline: '2024-02-01 23:59:59' 21 | timezone: UTC-12 22 | date: June 11-13, 2024 23 | place: Phuket, Thailand -------------------------------------------------------------------------------- /public/conference/AI/naacl.yml: -------------------------------------------------------------------------------- 1 | - title: NAACL 2 | description: The Annual Conference of the North American Chapter of the Association for Computational Linguistics 3 | sub: AI 4 | rank: C 5 | TierLevel: Third 6 | dblp: naacl 7 | confs: 8 | - year: 2022 9 | id: naacl22 10 | link: https://2022.naacl.org/ 11 | timeline: 12 | - deadline: '2022-01-15 23:59:59' 13 | timezone: UTC-12 14 | date: July 10-15, 2022 15 | place: Washington DC, USA 16 | - year: 2024 17 | id: naacl24 18 | link: https://2024.naacl.org/ 19 | timeline: 20 | - deadline: '2023-12-15 23:59:59' 21 | timezone: UTC-12 22 | date: June 16-21, 2024 23 | place: Mexico City, Mexico -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- 1 | 7 | 8 | 18 | 19 | 36 | -------------------------------------------------------------------------------- /public/conference/CGM/ismar.yml: -------------------------------------------------------------------------------- 1 | - title: ISMAR 2 | description: International Symposium on Mixed and Augmented Reality 3 | sub: CGM 4 | rank: B 5 | TierLevel: Third 6 | dblp: ismar 7 | confs: 8 | - year: 2022 9 | id: ismar22 10 | link: https://ismar2022.org/ 11 | timeline: 12 | - abstract_deadline: '2022-05-27 23:59:59' 13 | deadline: '2022-06-03 23:59:59' 14 | timezone: AoE 15 | date: October 17-21, 2022 16 | place: Singapore 17 | - year: 2023 18 | id: ismar2023 19 | link: https://ismar23.org/ 20 | timeline: 21 | - abstract_deadline: '2023-06-05 23:59:59' 22 | deadline: '2023-06-12 23:59:59' 23 | timezone: AoE 24 | date: Oct 16-20, 2023 25 | place: Sydney, Australia -------------------------------------------------------------------------------- /public/conference/CGM/pg.yml: -------------------------------------------------------------------------------- 1 | - title: PG 2 | description: The Pacific Conference on Computer Graphics and Applications 3 | sub: CGM 4 | rank: B 5 | TierLevel: Third 6 | dblp: pg 7 | confs: 8 | - year: 2021 9 | id: pg21 10 | link: https://www.pg2021.org/ 11 | timeline: 12 | - deadline: '2021-06-01 23:59:59' 13 | deadline: '2021-06-02 23:59:59' 14 | timezone: UTC+0 15 | date: October 18–21, 2021 16 | place: Wellington, New Zealand 17 | - year: 2023 18 | id: pg23 19 | link: https://pg2023.org/ 20 | timeline: 21 | - abstract_deadline: '2023-06-01 23:59:59' 22 | deadline: '2023-06-06 23:59:59' 23 | timezone: AoE 24 | date: October 10-13, 2023 25 | place: Daejeon, South Korea -------------------------------------------------------------------------------- /public/conference/PDC/ics.yml: -------------------------------------------------------------------------------- 1 | - title: ICS 2 | description: International Conference on Supercomputing 3 | sub: PDC 4 | rank: B 5 | TierLevel: Second 6 | dblp: ics 7 | confs: 8 | - year: 2022 9 | id: ics22 10 | link: https://ics2022.github.io/index.html 11 | timeline: 12 | - abstract_deadline: '2022-01-28 23:59:59' 13 | deadline: '2022-02-04 23:59:59' 14 | timezone: AoE 15 | date: June 27-30, 2022 16 | place: Virtually 17 | - year: 2024 18 | id: ics24 19 | link: https://ics2024.github.io/ 20 | timeline: 21 | - abstract_deadline: '2024-01-11 23:59:59' 22 | deadline: '2024-01-18 23:59:59' 23 | timezone: AoE 24 | date: June 4-7, 2024 25 | place: Kyoto University, Kyoto, Japan -------------------------------------------------------------------------------- /public/conference/PDC/sc.yml: -------------------------------------------------------------------------------- 1 | - title: SC 2 | description: International Conference for High Performance Computing, Networking, Storage, and Analysis 3 | sub: PDC 4 | rank: B 5 | TierLevel: Second 6 | dblp: sc 7 | confs: 8 | - year: 2022 9 | id: sc22 10 | link: https://sc22.supercomputing.org/ 11 | timeline: 12 | - abstract_deadline: '2022-03-25 23:59:59' 13 | deadline: '2021-04-01 23:59:59' 14 | timezone: AoE 15 | date: November 13–18, 2022 16 | place: Dallas, American 17 | - year: 2023 18 | id: sc23 19 | link: https://sc23.supercomputing.org/ 20 | timeline: 21 | - deadline: '2023-04-06 23:59:00' 22 | timezone: AoE 23 | date: November 12-17, 2023 24 | place: DENVER, CO, USA 25 | -------------------------------------------------------------------------------- /public/conference/PDC/ica3pp.yml: -------------------------------------------------------------------------------- 1 | - title: ICA3PP 2 | description: International Conference on Algorithms and Architectures for Parallel Processing 3 | sub: PDC 4 | rank: B 5 | TierLevel: Third 6 | dblp: ica3pp 7 | confs: 8 | - year: 2022 9 | id: ica3pp22 10 | link: https://ica3pp2022.compute.dtu.dk/index.html 11 | timeline: 12 | - deadline: '2022-05-15 23:59:59' 13 | timezone: AoE 14 | date: October 10-12, 2022 15 | place: Copenhagen, Denmark 16 | - year: 2023 17 | id: ica3pp 18 | link: http://tjutanklab.com/ica3pp2023/ 19 | timeline: 20 | - deadline: '2023-05-30 23:59:00' 21 | comment: 'Paper Submission Due' 22 | timezone: UTC-8 23 | date: October 20-22, 2022 24 | place: Tianjin, China -------------------------------------------------------------------------------- /public/conference/DBIR/iswc.yml: -------------------------------------------------------------------------------- 1 | - title: ISWC 2 | description: IEEE International Semantic Web Conference 3 | sub: DBIR 4 | rank: B 5 | dblp: semweb 6 | TierLevel: Third 7 | confs: 8 | - year: 2022 9 | id: iswc22 10 | link: https://iswc2022.semanticweb.org/ 11 | timeline: 12 | - abstract_deadline: '2022-04-28 23:59:59' 13 | deadline: '2022-05-05 23:59:59' 14 | timezone: AoE 15 | date: October 23-27, 2022 16 | place: Hangzhou, China 17 | - year: 2023 18 | id: iswc23 19 | link: https://iswc2023.semanticweb.org/ 20 | timeline: 21 | - abstract_deadline: '2023-05-02 23:59:59' 22 | deadline: '2023-05-09 23:59:59' 23 | timezone: AoE 24 | date: November 6-10, 2023 25 | place: Athens, Greece -------------------------------------------------------------------------------- /public/conference/AI/coling.yml: -------------------------------------------------------------------------------- 1 | - title: COLING 2 | description: INTERNATIONNAL CONFERENCE ON COMPUTATIONAL LINGUISTICS 3 | sub: AI 4 | rank: B 5 | TierLevel: / 6 | dblp: coling 7 | confs: 8 | - year: 2022 9 | id: coling22 10 | link: https://coling2022.org/ 11 | timeline: 12 | - deadline: '2022-05-17 23:59:00' 13 | comment: 'Papers Due' 14 | timezone: AoE 15 | date: June 12-17, 2022 16 | place: Gyeongju, Republic of Korea 17 | - year: 2024 18 | id: coling24 19 | link: https://lrec-coling-2024.lrec-conf.org/ 20 | timeline: 21 | - deadline: '2023-10-13 23:59:59' 22 | comment: 'Long, short and position papers due' 23 | timezone: UTC-12 24 | date: May 20 - May 25, 2024 25 | place: Torino, Italy -------------------------------------------------------------------------------- /public/conference/NIS/icnp.yml: -------------------------------------------------------------------------------- 1 | - title: ICNP 2 | description: International Conference on Network Protocols 3 | sub: NIS 4 | rank: C 5 | TierLevel: Second 6 | dblp: icnp 7 | confs: 8 | - year: 2022 9 | id: icnp22 10 | link: https://icnp22.cs.ucr.edu/ 11 | timeline: 12 | - abstract_deadline: '2022-05-19 20:00:00' 13 | deadline: '2022-05-26 20:00:00' 14 | timezone: UTC-4 15 | date: October 30-November 2, 2022 16 | place: Lexington, Kentucky, USA 17 | - year: 2024 18 | id: icnp24 19 | link: https://icnp24.cs.ucr.edu/index.html 20 | timeline: 21 | - abstract_deadline: '2024-05-17 23:59:59' 22 | deadline: '2024-05-24 23:59:59' 23 | timezone: AoE 24 | date: October 28-31, 2024 25 | place: Charleroi, Belgium -------------------------------------------------------------------------------- /public/conference/CGM/ieeevis.yml: -------------------------------------------------------------------------------- 1 | - title: IEEE VIS 2 | description: IEEE Visualization Conference 3 | sub: CGM 4 | rank: A 5 | TierLevel: Second 6 | dblp: visualization 7 | confs: 8 | - year: 2022 9 | id: ieeevis22 10 | link: http://ieeevis.org/year/2022/welcome 11 | timeline: 12 | - abstract_deadline: '2022-03-21 16:59:59' 13 | deadline: '2022-03-22 16:59:59' 14 | timezone: UTC-8 15 | date: October 16-21, 2022 16 | place: Oklahoma City, USA 17 | - year: 2023 18 | id: vis23 19 | link: https://ieeevis.org/year/2023/welcome 20 | timeline: 21 | - abstract_deadline: '2023-03-21 23:59:59' 22 | deadline: '2023-03-31 23:59:59' 23 | timezone: AoE 24 | date: October 22-27, 2023 25 | place: Melbourne, Australia 26 | -------------------------------------------------------------------------------- /public/conference/NIS/ches.yml: -------------------------------------------------------------------------------- 1 | - title: CHES 2 | description: International Conference on Cryptographic Hardware and Embedded Systems 3 | sub: NIS 4 | rank: B 5 | TierLevel: Third 6 | dblp: ches 7 | confs: 8 | - year: 2022 9 | id: ches22 10 | link: https://ches.iacr.org/2022/ 11 | timeline: 12 | - deadline: '2021-07-15 23:59:59' 13 | comment: 'Schedule for TCHES Volume 2022/1' 14 | - deadline: '2021-10-15 23:59:59' 15 | comment: 'Schedule for TCHES Volume 2022/2' 16 | - deadline: '2022-01-15 23:59:59' 17 | comment: 'Schedule for TCHES Volume 2022/3' 18 | - deadline: '2022-04-15 23:59:59' 19 | comment: 'Schedule for TCHES Volume 2022/4' 20 | timezone: AoE 21 | date: September , 2022 22 | place: Beijing, China -------------------------------------------------------------------------------- /public/conference/NIS/wcnc.yml: -------------------------------------------------------------------------------- 1 | - title: WCNC 2 | description: IEEE Wireless Communications and Networking Conference 3 | sub: NIS 4 | rank: C 5 | TierLevel: Third 6 | dblp: wcnc 7 | confs: 8 | - year: 2022 9 | id: wcnc22 10 | link: https://wcnc2022.ieee-wcnc.org/ 11 | timeline: 12 | - deadline: '2021-10-15 23:59:59' 13 | timezone: AoE 14 | date: April 10–13, 2022 15 | place: Austin, TX, USA 16 | - year: 2023 17 | id: wcnc23 18 | link: https://wcnc2023.ieee-wcnc.org/ 19 | timeline: 20 | - deadline: '2022-10-10 23:59:59' 21 | comment: 'Paper Submission' 22 | - deadline: '2022-12-01 23:59:59' 23 | comment: 'Notification' 24 | timezone: AoE 25 | date: 26–29 March, 2023 26 | place: Glasgow, Scotland, UK -------------------------------------------------------------------------------- /public/conference/SE/seke.yml: -------------------------------------------------------------------------------- 1 | - title: SEKE 2 | description: International Conference on Software Engineering and Knowledge Engineering 3 | sub: SE 4 | rank: C 5 | TierLevel: Third 6 | dblp: seke 7 | confs: 8 | - year: 2022 9 | id: seke22 10 | link: http://ksiresearch.org/seke/seke22.html 11 | timeline: 12 | - deadline: '2022-03-15 23:59:59' 13 | comment: 'Submission deadline' 14 | timezone: UTC-5 15 | date: July 1-10, 2022 16 | place: Pittsburgh, USA 17 | - year: 2023 18 | id: seke23 19 | link: https://ksiresearch.org/seke/seke23.html 20 | timeline: 21 | - deadline: '2023-03-01 23:59:59' 22 | timezone: UTC-5 23 | date: July 1-10, 2023 24 | place: San Francisco Bay, USA and KSIR Virtual Conference Center, USA 25 | -------------------------------------------------------------------------------- /public/conference/DBIR/icdt.yml: -------------------------------------------------------------------------------- 1 | - title: ICDT 2 | description: International Conference on Database Theory 3 | sub: DBIR 4 | rank: B 5 | TierLevel: Third 6 | dblp: icdt 7 | confs: 8 | - year: 2023 9 | id: icdt23 10 | link: https://www.cs.uoi.gr/~edbticdt2023/ 11 | timeline: 12 | - deadline: '2022-03-14 23:59:59' 13 | comment: 'Submission of Abstract Deadline Round 1' 14 | - deadline: '2022-03-21 23:59:59' 15 | comment: 'Submission of Full Paper Deadline Round 1' 16 | - deadline: '2022-09-14 23:59:59' 17 | comment: 'Submission of Abstract Deadline Round 2' 18 | - deadline: '2022-09-30 23:59:59' 19 | comment: 'Submission of Full Paper Deadline Round 2' 20 | timezone: AoE 21 | date: March 28-31, 2023 22 | place: Ioannina, Greece -------------------------------------------------------------------------------- /public/conference/NIS/esorics.yml: -------------------------------------------------------------------------------- 1 | - title: ESORICS 2 | description: European Symposium on Research in Computer Security 3 | sub: NIS 4 | rank: B 5 | TierLevel: Second 6 | dblp: esorics 7 | confs: 8 | - year: 2022 9 | id: esorics22 10 | link: https://esorics2022.compute.dtu.dk/ 11 | timeline: 12 | - deadline: '2022-01-31 23:59:59' 13 | comment: 'Winter Cycle Title and Abstract' 14 | - deadline: '2022-01-31 23:59:59' 15 | comment: 'Winter Cycle Full Paper Submission' 16 | - deadline: '2022-05-15 23:59:59' 17 | comment: 'Spring Cycle Title and Abstract' 18 | - deadline: '2022-05-22 23:59:59' 19 | comment: 'Spring Cycle Full Paper Submission' 20 | timezone: UTC+1 21 | date: September 26–30, 2022 22 | place: Copenhagen, Denmark -------------------------------------------------------------------------------- /public/conference/SE/icws.yml: -------------------------------------------------------------------------------- 1 | - title: ICWS 2 | description: International Conference on Web Services (Research Track) 3 | sub: SE 4 | rank: B 5 | TierLevel: Third 6 | dblp: icws 7 | confs: 8 | - year: 2022 9 | id: icws22 10 | link: https://conferences.computer.org/icws/2022/ 11 | timeline: 12 | - deadline: '2022-04-01 23:59:59' 13 | comment: 'Abstracts/Full-Text Paper Submission Deadline' 14 | timezone: AoE 15 | date: JULY 10-16, 2022 16 | place: Barcelona, Spain 17 | - year: 2023 18 | id: icws23 19 | link: https://conferences.computer.org/icws/2023/ 20 | timeline: 21 | - deadline: '2023-03-25 23:59:59' 22 | comment: 'Submission deadline' 23 | timezone: AoE 24 | date: July 2-8, 2023 25 | place: CHICAGO, ILLINOIS US 26 | -------------------------------------------------------------------------------- /public/conference/SE/models.yml: -------------------------------------------------------------------------------- 1 | - title: MoDELS 2 | description: International Conference on Model Driven Engineering Languages and Systems 3 | sub: SE 4 | rank: B 5 | TierLevel: Second 6 | dblp: models 7 | confs: 8 | - year: 2022 9 | id: models22 10 | link: https://conf.researchr.org/home/models-2022 11 | timeline: 12 | - abstract_deadline: '2022-05-11 23:59:59' 13 | deadline: '2022-05-18 23:59:59' 14 | timezone: AoE 15 | date: October 16-21, 2022 16 | place: Montréal, Canada 17 | - year: 2023 18 | id: models23 19 | link: https://conf.researchr.org/home/models-2023 20 | timeline: 21 | - abstract_deadline: '2023-06-26 23:59:59' 22 | deadline: '2023-07-05 23:59:59' 23 | timezone: AoE 24 | date: October 1-6, 2023 25 | place: Västerås, Sweden -------------------------------------------------------------------------------- /public/conference/AI/kr.yml: -------------------------------------------------------------------------------- 1 | - title: KR 2 | description: International Conference on Principles of Knowledge Representation and Reasoning 3 | sub: AI 4 | rank: B 5 | TierLevel: Third 6 | dblp: kr 7 | confs: 8 | - year: 2022 9 | id: kr2022 10 | link: https://kr2022.cs.tu-dortmund.de/ 11 | timeline: 12 | - deadline: '2022-02-02 23:59:59' 13 | comments: 'title and abstract' 14 | - deadline: '2022-02-11 23:59:59' 15 | comments: 'full paper' 16 | timezone: AoE 17 | date: July 31-August 29, 2022 18 | place: Haifa, Israel 19 | - year: 2023 20 | id: kr2023 21 | link: https://kr.org/KR2023/ 22 | timeline: 23 | - abstract_deadline: '2023-03-03 00:00:00' 24 | deadline: '2023-03-14 00:00:00' 25 | timezone: UTC-8 26 | date: Sep 2-8, 2023 27 | place: Rhodes, Greece -------------------------------------------------------------------------------- /public/conference/PDC/pact.yml: -------------------------------------------------------------------------------- 1 | - title: PACT 2 | description: Parallel Architectures and Compilation Techniques 3 | sub: PDC 4 | rank: B 5 | TierLevel: Second 6 | dblp: pact 7 | confs: 8 | - year: 2022 9 | id: pact22 10 | link: https://pact22.cs.illinois.edu/ 11 | timeline: 12 | - abstract_deadline: '2022-04-18 23:59:59' 13 | deadline: '2022-04-25 23:59:59' 14 | timezone: AoE 15 | date: October 10–12, 2022 16 | place: Chicago, American 17 | - year: 2023 18 | id: pact23 19 | link: https://pact2023.github.io/ 20 | timeline: 21 | - deadline: '2023-03-25 23:59:59' 22 | comment: 'Abstract submission deadline' 23 | - deadline: '2023-04-01 23:59:59' 24 | comment: 'Paper submission deadline' 25 | timezone: AoE 26 | date: October 21-October 25, 2023 27 | place: Vienna, Austria -------------------------------------------------------------------------------- /public/conference/DBIR/sigir_short.yml: -------------------------------------------------------------------------------- 1 | - title: SIGIR Short Paper 2 | description: International Conference on Research on Development in Information Retrieval 3 | sub: DBIR 4 | rank: A 5 | TierLevel: Second 6 | dblp: sigir 7 | confs: 8 | - year: 2023 9 | id: sigirshort23 10 | link: https://sigir.org/sigir2023/submit/call-for-short-papers 11 | timeline: 12 | - abstract_deadline: '2023-02-14 23:59:59' 13 | deadline: '2023-02-21 23:59:59' 14 | timezone: AoE 15 | date: July 23-27, 2023 16 | place: Taipei, Taiwan 17 | - year: 2024 18 | id: sigirshort24 19 | link: https://sigir.org/sigir2024/submit/call-for-short-papers 20 | timeline: 21 | - abstract_deadline: '2024-02-1 23:59:59' 22 | deadline: '2024-02-7 23:59:59' 23 | timezone: AoE 24 | date: July 23-27, 2024 25 | place: Washington D.C., USA 26 | -------------------------------------------------------------------------------- /public/conference/AI/nips_db.yml: -------------------------------------------------------------------------------- 1 | - title: NeurIPS Datasets and Benchmarks Track 2 | description: Conference on Neural Information Processing Systems 3 | sub: AI 4 | rank: A 5 | dblp: nips 6 | TierLevel: First 7 | confs: 8 | - year: 2022 9 | id: nipsdbtrack22 10 | link: https://nips.cc/Conferences/2022/CallForDatasetsBenchmarks 11 | timeline: 12 | - abstract_deadline: '2022-06-06 13:00:00' 13 | deadline: '2022-06-09 13:00:00' 14 | timezone: UTC-7 15 | date: November 28-December 9, 2022 16 | place: New Orleans, U.S. 17 | - year: 2023 18 | id: nipsdbtrack23 19 | link: https://neurips.cc/Conferences/2023/CallForDatasetsBenchmarks 20 | timeline: 21 | - abstract_deadline: '2023-06-01 13:00:00' 22 | deadline: '2023-06-07 13:00:00' 23 | timezone: UTC-7 24 | date: Dec 10 to Dec 16, 2023 25 | place: New Orleans, U.S. -------------------------------------------------------------------------------- /public/conference/AI/conll.yml: -------------------------------------------------------------------------------- 1 | - title: CoNLL 2 | description: Conference on Natural Language Learning 3 | sub: AI 4 | rank: C 5 | TierLevel: Third 6 | dblp: conll 7 | confs: 8 | - year: 2021 9 | id: conll21 10 | link: https://www.conll.org/2021 11 | timeline: 12 | - abstract_deadline: '2021-05-10 23:59:00' 13 | deadline: '2021-05-17 23:59:00' 14 | timezone: AoE 15 | date: November 10-11, 2021 16 | place: Virtual 17 | - year: 2022 18 | id: conll22 19 | link: https://www.conll.org/2022 20 | timeline: 21 | - deadline: '2022-06-30 23:59:00' 22 | timezone: AoE 23 | date: December 7-8, 2022 24 | place: Virtual 25 | - year: 2023 26 | id: conll23 27 | link: https://www.conll.org/2023 28 | timeline: 29 | - deadline: '2023-06-30 23:59:00' 30 | timezone: AoE 31 | date: December 6-7, 2023 32 | place: Virtual -------------------------------------------------------------------------------- /public/conference/AI/uai.yml: -------------------------------------------------------------------------------- 1 | - title: UAI 2 | description: Conference on Uncertainty in Artificial Intelligence 3 | sub: AI 4 | rank: B 5 | TierLevel: Second 6 | dblp: uai 7 | confs: 8 | - year: 2021 9 | id: uai21 10 | link: http://auai.org/uai2021/ 11 | timeline: 12 | - deadline: '2021-02-19 23:59:59' 13 | timezone: UTC+0 14 | date: July 27-29, 2021 15 | place: Virtual 16 | - year: 2022 17 | id: uai22 18 | link: http://auai.org/uai2022/ 19 | timeline: 20 | - deadline: '2022-02-25 23:59:00' 21 | timezone: AoE 22 | date: August 1-5, 2022 23 | place: Eindhoven,Netherlands 24 | - year: 2023 25 | id: uai23 26 | link: http://auai.org/uai2023/ 27 | timeline: 28 | - deadline: '2023-02-17 23:59:00' 29 | timezone: AoE 30 | date: ugust 1st - August 3rd, 2023 31 | place: Carnegie Mellon University, Pittsburgh, PA, USA -------------------------------------------------------------------------------- /public/conference/CGM/icme.yml: -------------------------------------------------------------------------------- 1 | - title: ICME 2 | description: The IEEE International Conference on Multimedia & Expo 3 | sub: CGM 4 | rank: B 5 | TierLevel: Second 6 | dblp: icmcs 7 | confs: 8 | - year: 2022 9 | id: icme22 10 | link: http://2022.ieeeicme.org/paper.html 11 | timeline: 12 | - deadline: '2021-12-12 23:59:59' 13 | timezone: UTC-8 14 | date: July 18-22, 2022 15 | place: Taipei, Taiwan, China 16 | - year: 2023 17 | id: icme23 18 | link: https://www.2023.ieeeicme.org/ 19 | timeline: 20 | - deadline: '2022-12-22 23:59:59' 21 | timezone: UTC+0 22 | date: July 10-14, 2023 23 | place: Brisbane, Australia 24 | - year: 2024 25 | id: icme24 26 | link: https://2024.ieeeicme.org/ 27 | timeline: 28 | - deadline: '2023-12-30 23:59:59' 29 | timezone: UTC+0 30 | date: July 15-19, 2024 31 | place: Niagra Falls, Canada -------------------------------------------------------------------------------- /public/conference/AI/colt.yml: -------------------------------------------------------------------------------- 1 | - title: COLT 2 | description: Annual Conference on Learning Theory 3 | sub: AI 4 | rank: B 5 | TierLevel: Second 6 | dblp: colt 7 | confs: 8 | - year: 2022 9 | id: colt22 10 | link: https://learningtheory.org/colt2022/index.html 11 | timeline: 12 | - deadline: '2022-02-09 15:59:59' 13 | timezone: UTC-8 14 | date: July 2-5, 2022 15 | place: London, UK 16 | - year: 2023 17 | id: colt23 18 | link: https://learningtheory.org/colt2023/index.html 19 | timeline: 20 | - deadline: '2023-02-10 15:59:59' 21 | timezone: UTC-8 22 | date: July 12-15, 2023 23 | place: Bangalore, India 24 | - year: 2024 25 | id: colt24 26 | link: https://www.learningtheory.org/colt2024/ 27 | timeline: 28 | - deadline: '2024-02-09 15:59:59' 29 | timezone: UTC-5 30 | date: June 30 - July 3, 2024 31 | place: Edmonton, Canada -------------------------------------------------------------------------------- /public/conference/DBIR/icdm.yml: -------------------------------------------------------------------------------- 1 | - title: ICDM 2 | description: IEEE International Conference on Data Mining 3 | sub: DBIR 4 | rank: B 5 | TierLevel: Second 6 | dblp: icdm 7 | confs: 8 | - year: 2022 9 | id: icdm22 10 | link: https://icdm22.cse.usf.edu/index.html 11 | timeline: 12 | - deadline: '2022-06-10 23:59:00' 13 | timezone: UTC-7 14 | date: November 30-December 3, 2022 15 | place: Orlando,FL,USA 16 | - year: 2023 17 | id: icdm23 18 | link: http://cloud-conf.net/icdm2023/index.html 19 | timeline: 20 | - deadline: '2023-07-01 23:59:59' 21 | timezone: UTC+8 22 | date: December 1-4, 2023 23 | place: Shanghai, China 24 | - year: 2024 25 | id: icdm2024 26 | link: http://18.133.154.107/dates/ 27 | timeline: 28 | - deadline: '2024-07-01 23:59:59' 29 | timezone: AoE 30 | date: December 9-12, 2024 31 | place: Abu Dhabi,UAE -------------------------------------------------------------------------------- /public/conference/DBIR/edbt.yml: -------------------------------------------------------------------------------- 1 | - title: EDBT 2 | description: International Conference on Extending Database Technology 3 | sub: DBIR 4 | rank: B 5 | TierLevel: Second 6 | dblp: edbt 7 | confs: 8 | - year: 2022 9 | id: edbt22 10 | link: https://conferences.inf.ed.ac.uk/edbticdt2022/ 11 | timeline: 12 | - deadline: '2021-10-01 23:59:59' 13 | timezone: AoE 14 | date: Mar 29-April 01, 2022 15 | place: Edinburgh, UK 16 | - year: 2023 17 | id: edbt23 18 | link: https://www.cs.uoi.gr/~edbticdt2023/ 19 | timeline: 20 | - deadline: '2022-06-01 23:59:59' 21 | comment: 'Submission Deadline Round 1' 22 | - deadline: '2022-09-30 23:59:59' 23 | comment: 'Submission Deadline Round 2' 24 | - deadline: '2023-02-15 23:59:59' 25 | comment: 'Submission Deadline Round 3' 26 | timezone: AoE 27 | date: March 28-31, 2023 28 | place: Ioannina, Greece 29 | -------------------------------------------------------------------------------- /public/conference/AI/ictai.yml: -------------------------------------------------------------------------------- 1 | - title: ICTAI 2 | description: International Conference on Tools with Artificial Intellignce 3 | sub: AI 4 | rank: C 5 | TierLevel: Third 6 | dblp: ictai 7 | confs: 8 | - year: 2021 9 | id: ictai21 10 | link: https://ictai.computer.org/ 11 | timeline: 12 | - deadline: '2021-06-20 23:59:00' 13 | timezone: AoE 14 | date: November 01-03, 2021 15 | place: Washington DC, USA 16 | - year: 2022 17 | id: ictai22 18 | link: https://ictai.computer.org/2022/ 19 | timeline: 20 | - deadline: '2022-08-08 23:59:59' 21 | timezone: AoE 22 | date: October 31 - November 02, 2022 23 | place: Washington DC, USA 24 | - year: 2023 25 | id: ictai23 26 | link: https://ictai.computer.org/2023/ 27 | timeline: 28 | - deadline: '2023-07-21 23:59:59' 29 | timezone: UTC-8 30 | date: 6-8 November 2023 31 | place: Atlanta, Georgia, USA -------------------------------------------------------------------------------- /public/conference/DBIR/wsdm.yml: -------------------------------------------------------------------------------- 1 | - title: WSDM 2 | description: International Conference on Web Search and Data Mining 3 | sub: DBIR 4 | rank: B 5 | dblp: wsdm 6 | TierLevel: Third 7 | confs: 8 | - year: 2022 9 | id: wsdm22 10 | link: https://www.wsdm-conference.org/2022/ 11 | timeline: 12 | - deadline: '2021-08-13 23:59:59' 13 | timezone: AoE 14 | date: February 21-25, 2022 15 | place: Phoenix, Arizona, USA 16 | - year: 2023 17 | id: wsdm23 18 | link: https://www.wsdm-conference.org/2023/ 19 | timeline: 20 | - deadline: '2022-08-12 23:59:59' 21 | timezone: AoE 22 | date: February 27 - March 3, 2023 23 | place: Singapore 24 | - year: 2024 25 | id: wsdm24 26 | link: https://www.wsdm-conference.org/2024/ 27 | timeline: 28 | - deadline: '2023-08-10 23:59:59' 29 | timezone: UTC-12 30 | date: March 4 - March 8, 2024 31 | place: Mexico 32 | -------------------------------------------------------------------------------- /public/conference/NIS/asiaccs.yml: -------------------------------------------------------------------------------- 1 | - title: AsiaCCS 2 | description: Asia Conference on Computer and Communications Security 3 | sub: NIS 4 | rank: C 5 | TierLevel: Third 6 | dblp: ccs 7 | confs: 8 | - year: 2022 9 | id: asiaccs22 10 | link: https://asiaccs2022.conferenceservice.jp/ 11 | timeline: 12 | - deadline: '2021-07-30 23:59:59' 13 | comment: '1st round Deadline' 14 | - deadline: '2021-11-19 23:59:59' 15 | comment: '2nd round Deadline' 16 | timezone: AoE 17 | date: May 30-June 3, 2022 18 | place: Nagasaki, Japan 19 | - year: 2023 20 | id: asiaccs23 21 | link: https://asiaccs2023.org/ 22 | timeline: 23 | - deadline: '2022-09-01 23:59:59' 24 | comment: '1st round Deadline' 25 | - deadline: '2022-12-15 23:59:59' 26 | comment: '2nd round Deadline' 27 | timezone: AoE 28 | date: 10-14th July, 2023 29 | place: Melbourne, Australia -------------------------------------------------------------------------------- /public/conference/NIS/mobicom.yml: -------------------------------------------------------------------------------- 1 | - title: MobiCom 2 | description: ACM Annual International Conference On Mobile Computing And Networking 3 | sub: NIS 4 | rank: A 5 | TierLevel: First 6 | dblp: mobicom 7 | confs: 8 | - year: 2022 9 | id: mobicom22 10 | link: https://www.sigmobile.org/mobicom/2022/ 11 | timeline: 12 | - abstract_deadline: '2021-08-13 23:59:59' 13 | deadline: '2021-08-20 23:59:59' 14 | comment: 'Summer Deadlines' 15 | - abstract_deadline: '2022-03-18 23:59:59' 16 | deadline: '2022-03-25 23:59:59' 17 | comment: 'Winter Deadlines' 18 | timezone: UTC-7 19 | date: Oct 2022 20 | place: Sydney, Australia 21 | - year: 2023 22 | id: mobicom23 23 | link: https://www.sigmobile.org/mobicom/2023/ 24 | timeline: 25 | - abstract_deadline: '2023-03-10 23:59:59' 26 | deadline: '2023-03-17 23:59:59' 27 | timezone: UTC-7 28 | date: Oct 2-6, 2023 29 | place: Madrid, Spain -------------------------------------------------------------------------------- /public/conference/NIS/icics.yml: -------------------------------------------------------------------------------- 1 | - title: ICICS 2 | description: International Conference on Information and Communications Security 3 | sub: NIS 4 | rank: C 5 | TierLevel: Third 6 | dblp: icics 7 | confs: 8 | - year: 2022 9 | id: icics22 10 | link: https://icics2022.cyber.kent.ac.uk/ 11 | timeline: 12 | - deadline: '2022-03-21 23:59:59' 13 | comment: 'Paper Submission deadline' 14 | timezone: AoE 15 | date: September 5-8, 2021 16 | place: Canterbury, Kent, UK 17 | - year: 2023 18 | id: icics23 19 | link: https://icics23.nankai.edu.cn/ 20 | timeline: 21 | - deadline: '2023-03-30 23:59:59' 22 | timezone: AoE 23 | date: November 18-20, 2023 24 | place: Nankai University, Tianjin, China 25 | - year: 2024 26 | id: icics24 27 | link: http://icics2024.aegean.gr/ 28 | timeline: 29 | - deadline: '2024-02-02 23:59:59' 30 | timezone: AoE 31 | date: August 26-28, 2024 32 | place: Mytilene, Greece -------------------------------------------------------------------------------- /public/conference/AI/ijcai.yml: -------------------------------------------------------------------------------- 1 | - title: IJCAI 2 | description: International Joint Conference on Artificial Intelligence 3 | sub: AI 4 | rank: A 5 | TierLevel: Second 6 | dblp: ijcai 7 | confs: 8 | - year: 2022 9 | id: ijcai22 10 | link: https://ijcai-22.org 11 | timeline: 12 | - deadline: '2022-01-14 23:59:59' 13 | timezone: UTC+1 14 | date: July 23-29, 2022. 15 | place: Vienna, Austria. 16 | - year: 2023 17 | id: ijcai23 18 | link: https://ijcai-23.org 19 | timeline: 20 | - abstract_deadline: '2023-01-11 23:59:59' 21 | deadline: '2023-01-18 23:59:59' 22 | timezone: UTC-12 23 | date: August 19-25, 2023 24 | place: Cape Town, South Africa. 25 | - year: 2024 26 | id: ijcai24 27 | link: https://ijcai24.org/ 28 | timeline: 29 | - abstract_deadline: '2024-01-10 23:59:59' 30 | deadline: '2024-01-17 23:59:59' 31 | timezone: UTC-12 32 | date: August 3-9, 2024 33 | place: Jeju Island, South Korea. -------------------------------------------------------------------------------- /public/conference/PDC/usenix-atc.yml: -------------------------------------------------------------------------------- 1 | - title: USENIX ATC 2 | description: USENIX Annual Technical Conference 3 | sub: PDC 4 | rank: A 5 | TierLevel: First 6 | dblp: usenix 7 | confs: 8 | - year: 2021 9 | id: atc2021 10 | link: https://www.usenix.org/conference/atc21/ 11 | timeline: 12 | - deadline: '2021-01-12 23:59:59' 13 | timezone: AoE 14 | date: July 14–16, 2021 15 | place: SANTA CLARA, USA 16 | - year: 2022 17 | id: atc2022 18 | link: https://www.usenix.org/conference/atc22/ 19 | timeline: 20 | - deadline: '2022-01-13 23:59:59' 21 | timezone: UTC+0 22 | date: July 11–13, 2022 23 | place: Omni La Costa Resort & Spa in Carlsbad, CA, USA 24 | - year: 2024 25 | id: atc2024 26 | link: https://www.usenix.org/conference/atc24/ 27 | timeline: 28 | - abstract_deadline: '2024-01-09 23:59:59' 29 | deadline: '2024-01-16 23:59:59' 30 | timezone: UTC+0 31 | date: July 10-12, 2024 32 | place: Santa Clara, CA, USA -------------------------------------------------------------------------------- /public/conference/DBIR/sdm.yml: -------------------------------------------------------------------------------- 1 | - title: SDM 2 | description: SIAM International Conference on Data Mining 3 | sub: DBIR 4 | rank: B 5 | TierLevel: Third 6 | dblp: sdm 7 | confs: 8 | - year: 2022 9 | id: sdm22 10 | link: https://www.siam.org/conferences/cm/conference/sdm22 11 | timeline: 12 | - deadline: '2021-10-12 23:59:00' 13 | timezone: UTC-8 14 | date: April 28-30, 2022 15 | place: Alexandria, Virginia, U.S. 16 | - year: 2023 17 | id: sdm23 18 | link: https://www.siam.org/conferences/cm/conference/sdm23 19 | timeline: 20 | - abstract_deadline: '2022-09-30 23:59:00' 21 | deadline: '2022-10-07 23:59:00' 22 | timezone: UTC-7 23 | date: April 27-29, 2023 24 | place: Minneapolis, Minnesota, U.S. 25 | - year: 2024 26 | id: sdm2024 27 | link: https://www.siam.org/conferences/cm/conference/sdm24 28 | timeline: 29 | - deadline: '2023-09-16 15:00:00' 30 | timezone: UTC-8 31 | date: April 18-20, 2024 32 | place: Houston, TX, USA -------------------------------------------------------------------------------- /public/conference/AI/ecai.yml: -------------------------------------------------------------------------------- 1 | - title: ECAI 2 | description: European Conference on Artificial Intelligence 3 | sub: AI 4 | rank: B 5 | TierLevel: Third 6 | dblp: ecai 7 | confs: 8 | - year: 2022 9 | id: ecai2022 10 | link: https://ijcai-22.org/ 11 | timeline: 12 | - abstract_deadline: '2022-01-07 23:59:59' 13 | deadline: '2022-01-14 23:59:59' 14 | timezone: AoE 15 | date: July 23-29, 2022 16 | place: Messe Wien, Vienna, Austria 17 | - year: 2023 18 | id: ecai23 19 | link: https://ecai2023.eu/ 20 | timeline: 21 | - abstract_deadline: '2023-05-02 23:59:59' 22 | deadline: '2023-05-8 23:59:59' 23 | timezone: AoE 24 | date: 1-6 October, 2023 25 | place: Kraków, Poland 26 | - year: 2024 27 | id: ecai24 28 | link: https://www.ecai2024.eu/ 29 | timeline: 30 | - abstract_deadline: '2024-04-19 23:59:59' 31 | deadline: '2024-04-25 23:59:59' 32 | timezone: UTC-12 33 | date: October 19-24, 2024 34 | place: Santiago de Compostela -------------------------------------------------------------------------------- /public/conference/CGM/siggraph.yml: -------------------------------------------------------------------------------- 1 | - title: ACM SIGGRAPH 2 | description: ACM SIGGRAPH Annual Conference 3 | sub: CGM 4 | rank: A 5 | TierLevel: First 6 | dblp: siggraph 7 | confs: 8 | - year: 2022 9 | id: siggraph22 10 | link: https://s2022.siggraph.org/ 11 | timeline: 12 | - abstract_deadline: '2022-01-26 22:00:00' 13 | deadline: '2022-01-27 22:00:00' 14 | timezone: UTC+0 15 | date: August 7-11, 2022 16 | place: Vancouver 17 | - year: 2021 18 | id: siggraph21 19 | link: https://s2021.siggraph.org/ 20 | timeline: 21 | - abstract_deadline: '2021-01-27 22:00:00' 22 | deadline: '2021-01-28 22:00:00' 23 | timezone: UTC+0 24 | date: August 9-13, 2021 25 | place: Virtual 26 | - year: 2024 27 | id: siggraph24 28 | link: https://s2024.siggraph.org/ 29 | timeline: 30 | - abstract_deadline: '2024-01-23 22:00:00' 31 | deadline: '2024-01-24 22:00:00' 32 | timezone: UTC+0 33 | date: July 28 - August 1, 2024 34 | place: Denver 35 | -------------------------------------------------------------------------------- /public/conference/AI/ijcnn.yml: -------------------------------------------------------------------------------- 1 | - title: IJCNN 2 | description: International Joint Conference on Neural Networks 3 | sub: AI 4 | rank: C 5 | TierLevel: Third 6 | dblp: ijcnn 7 | confs: 8 | - year: 2022 9 | id: ijcnn22 10 | link: https://wcci2022.org/ 11 | timeline: 12 | - deadline: '2022-01-31 23:59:00' 13 | comment: 'title and abstrct' 14 | - deadline: '2022-02-14 23:59:00' 15 | comment: 'full paper' 16 | timezone: AoE 17 | date: July 18-23, 2022. 18 | place: Centro Congressi Padova, Italy 19 | - year: 2023 20 | id: ijcnn23 21 | link: https://2023.ijcnn.org/ 22 | timeline: 23 | - deadline: '2023-01-31 23:59:59' 24 | comment: 'full paper' 25 | timezone: AoE 26 | date: July 18-23, 2023. 27 | place: Queensland, Australia 28 | - year: 2024 29 | id: ijcnn2024 30 | link: https://2024.ieeewcci.org/ 31 | timeline: 32 | - deadline: '2024-01-29 23:59:59' 33 | timezone: UTC-12 34 | date: June 30 - July 5, 2024 35 | place: Yokohama, Japan -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022 SUFEHeisenberg 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /public/conference/AI/icann.yml: -------------------------------------------------------------------------------- 1 | - title: ICANN 2 | description: International Conference on Artificial Neural Networks 3 | sub: AI 4 | rank: C 5 | TierLevel: Third 6 | dblp: icann 7 | confs: 8 | - year: 2022 9 | id: icann22 10 | link: https://e-nns.org/icann2022/ 11 | timeline: 12 | - deadline: '2022-04-23 23:59:00' 13 | comment: 'full paper and extended abstract submission' 14 | timezone: UTC+0 15 | date: September 6-9, 2022 16 | place: Bristol, United Kingdom 17 | - year: 2023 18 | id: icann23 19 | link: https://e-nns.org/icann2023/ 20 | timeline: 21 | - deadline: '2023-04-09 23:59:00' 22 | comment: 'full paper and extended abstract submission' 23 | timezone: UTC+0 24 | date: 26 – 29 September 2023 25 | place: Heraklion city, Crete, Greece 26 | - year: 2024 27 | id: icann24 28 | link: https://e-nns.org/icann2024/ 29 | timeline: 30 | - deadline: '2024-03-15 23:59:59' 31 | comment: 'full paper submission' 32 | timezone: UTC-12 33 | date: Sep 17 – 19 2024 34 | place: Switzerland -------------------------------------------------------------------------------- /public/conference/DBIR/cikm_short.yml: -------------------------------------------------------------------------------- 1 | - title: CIKM Short Papers 2 | description: ACM International Conference on Information and Knowledge Management 3 | sub: DBIR 4 | rank: B 5 | TierLevel: Second 6 | dblp: cikm 7 | confs: 8 | - year: 2022 9 | id: cikm22short 10 | link: https://www.cikm2022.org/calls/call-for-short-papers 11 | timeline: 12 | - abstract_deadline: '2022-05-26 23:59:59' 13 | deadline: '2022-06-02 23:59:59' 14 | timezone: AoE 15 | date: October 17-22, 2022 16 | place: Atlanta, Georgia, USA 17 | - year: 2023 18 | id: cikm23short 19 | link: https://cikm2023.github.io/ 20 | timeline: 21 | - abstract_deadline: '2023-06-09 23:59:59' 22 | deadline: '2023-06-16 23:59:59' 23 | timezone: AoE 24 | date: October 21-25, 2023 25 | place: Birmingham, UK 26 | - year: 2025 27 | id: cikm25 28 | link: https://cikm2025.org/ 29 | timeline: 30 | - abstract_deadline: '2025-05-30 23:59:59' 31 | deadline: '2023-06-06 23:59:59' 32 | timezone: AoE 33 | date: October 10-14, 2025 34 | place: Coex, Seoul, Korea -------------------------------------------------------------------------------- /public/conference/DBIR/ecml-pkdd.yml: -------------------------------------------------------------------------------- 1 | - title: ECML-PKDD 2 | description: European Conference on Machine Learning and 25th Principles and Practice of Knowledge Discovery in Databases 3 | sub: DBIR 4 | rank: B 5 | dblp: pkdd 6 | TierLevel: Third 7 | confs: 8 | - year: 2022 9 | id: ecmlpkdd22 10 | link: https://2022.ecmlpkdd.org/ 11 | timeline: 12 | - abstract_deadline: '2022-03-20 23:59:59' 13 | deadline: '2022-04-06 23:59:59' 14 | timezone: AoE 15 | date: September 19-23, 2022 16 | place: Grenoble, France. 17 | - year: 2023 18 | id: ecmlpkdd23 19 | link: https://2023.ecmlpkdd.org/submissions/key-dates-deadlines/ 20 | timeline: 21 | - abstract_deadline: '2023-03-26 23:59:59' 22 | deadline: '2023-04-02 23:59:59' 23 | timezone: AoE 24 | date: September 18-22, 2023 25 | place: Turin, Italy 26 | - year: 2024 27 | id: ecmlpkdd2024 28 | link: https://2024.ecmlpkdd.org/submissions/key-dates-and-deadlines/ 29 | timeline: 30 | - abstract_deadline: '2024-03-15 23:59:59' 31 | deadline: '2024-03-22 23:59:59' 32 | timezone: AoE 33 | date: September 9-13, 2024 34 | place: Vilnius, Lithuania 35 | -------------------------------------------------------------------------------- /public/conference/SE/oopsla.yml: -------------------------------------------------------------------------------- 1 | - title: OOPSLA 2 | description: Conference on Object-Oriented Programming Systems, Languages, and Applications 3 | sub: SE 4 | rank: A 5 | TierLevel: Second 6 | dblp: oopsla 7 | confs: 8 | - year: 2022 9 | id: oopsla22 10 | link: https://2022.splashcon.org/track/splash-2022-oopsla 11 | timeline: 12 | - deadline: '2021-10-12 23:59:59' 13 | comment: 'Submission Deadline Round 1' 14 | - deadline: '2022-02-11 23:59:59' 15 | comment: 'Submission of Revisions Round 1' 16 | - deadline: '2022-04-15 23:59:59' 17 | comment: 'Submission Deadline Round 2' 18 | - deadline: '2022-08-15 23:59:59' 19 | comment: 'Submission of Revisions Round 2' 20 | timezone: AoE 21 | date: November 14-19, 2022 22 | place: Auckland, New Zealand 23 | - year: 2023 24 | id: oopsla22 25 | link: https://2022.splashcon.org/track/splash-2022-oopsla 26 | timeline: 27 | - deadline: '2022-10-28 23:59:59' 28 | comment: 'Submission Deadline Round 1' 29 | - deadline: '2023-04-14 23:59:59' 30 | comment: 'Submission Deadline Round 2' 31 | timezone: AoE 32 | date: November 14-19, 2022 33 | place: Auckland, New Zealand -------------------------------------------------------------------------------- /merge_all.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Time : 2022/3/15 3:00 下午 3 | # @Author : heisenberg 4 | # @File : merge_all.py 5 | # @Project : sufe-cs-conf-ddl 6 | # @Targert : concatenate all conf yaml format files. 7 | 8 | import os 9 | import yaml 10 | 11 | HOME_DIR = os.path.dirname(os.path.realpath('__file__')) 12 | all_conf_path = os.path.join(HOME_DIR,'public/conference') #update public path 13 | all_conf_type = ['PDC','CGM','TC','AI','SE','DBIR','NIS'] 14 | 15 | # delete the original allconf file. 16 | os.system('rm '+os.path.join(all_conf_path,'allconf.yml')) 17 | 18 | i=0 19 | for conf_type in all_conf_type: 20 | pdc_path = os.path.join(all_conf_path, conf_type) 21 | pdc_conf_list = [f for f in os.listdir(pdc_path) if not f.startswith('.')] 22 | for conf in pdc_conf_list: 23 | f = open(os.path.join(pdc_path,conf),'r', encoding='utf-8') 24 | print('now we processing %s conf in %s'%(conf,conf_type)) 25 | c = f.read() 26 | x = yaml.full_load(c) 27 | i+=1 28 | with open('public/conference/allconf.yml','a',encoding='utf-8') as f: 29 | f.write(yaml.dump(x,allow_unicode=True, default_flow_style=False,sort_keys=False)) 30 | print('Sum %s confs in SUFE CS tenure conf'%i) 31 | # Sum 110 confs in SUFE CS tenure conf 32 | 33 | 34 | -------------------------------------------------------------------------------- /public/conference/PDC/ppopp.yml: -------------------------------------------------------------------------------- 1 | - title: PPoPP 2 | description: ACM SIGPLAN Symposium on Principles & Practice of Parallel Programming 3 | sub: PDC 4 | rank: A 5 | TierLevel: First 6 | dblp: ppopp 7 | confs: 8 | - year: 2021 9 | id: ppopp21 10 | link: https://ppopp21.sigplan.org/ 11 | timeline: 12 | - abstract_deadline: '2020-08-06 23:59:59' 13 | deadline: '2020-08-13 23:59:59' 14 | timezone: AoE 15 | date: Feburary 27-Mar 3, 2021 16 | place: Virtual 17 | - year: 2022 18 | id: ppopp22 19 | link: https://ppopp22.sigplan.org/ 20 | timeline: 21 | - abstract_deadline: '2021-08-09 23:59:59' 22 | deadline: '2021-08-13 23:59:59' 23 | timezone: AoE 24 | date: Feburary 12-16, 2022 25 | place: Seoul, S. Korea 26 | - year: 2023 27 | id: ppopp23 28 | link: https://ppopp23.sigplan.org/ 29 | timeline: 30 | - deadline: '2022-08-17 23:59:59' 31 | timezone: AoE 32 | date: Feburary 25- March 1, 2023 33 | place: Montreal, Canada 34 | - year: 2024 35 | id: ppopp24 36 | link: https://conf.researchr.org/home/ppopp-2024 37 | timeline: 38 | - deadline: '2023-08-04 23:59:59' 39 | timezone: AoE 40 | date: Mar 2-Mar 6, 2024 41 | place: Edinburgh, United Kingdom -------------------------------------------------------------------------------- /public/conference/SE/ase.yml: -------------------------------------------------------------------------------- 1 | - title: ASE 2 | description: International Conference on Automated Software Engineering 3 | sub: SE 4 | rank: A 5 | TierLevel: First 6 | dblp: kbse 7 | confs: 8 | - year: 2022 9 | id: ase22 10 | link: https://conf.researchr.org/home/ase-2022 11 | timeline: 12 | - deadline: '2022-04-29 23:59:59' 13 | comment: 'Abstract Submission' 14 | - deadline: '2022-05-06 23:59:59' 15 | comment: 'Paper Submission' 16 | timezone: AoE 17 | date: September 26- October 01, 2022 18 | place: Ann Arbor, Michigan, United States 19 | - year: 2023 20 | id: ase23 21 | link: https://conf.researchr.org/home/ase-2023 22 | timeline: 23 | - deadline: '2023-04-28 23:59:59' 24 | comment: 'Abstract Submission' 25 | - deadline: '2023-05-05 23:59:59' 26 | comment: 'Paper Submission' 27 | timezone: AoE 28 | date: September 11-15, 2023 29 | place: Kirchberg, Luxembourg 30 | - year: 2024 31 | id: ase24 32 | link: https://conf.researchr.org/home/ase-2024 33 | timeline: 34 | - abstract_deadline: '2024-05-31 23:59:59' 35 | deadline: '2024-06-07 23:59:59' 36 | timezone: AoE 37 | date: October 27- November 01, 2024 38 | place: Sacramento, California, United States -------------------------------------------------------------------------------- /public/conference/AI/acl.yml: -------------------------------------------------------------------------------- 1 | - title: ACL 2 | description: Annual Meeting of the Association for Computational Linguistics 3 | sub: AI 4 | rank: A 5 | TierLevel: Second 6 | dblp: acl 7 | confs: 8 | - year: 2022 9 | id: acl22 10 | link: https://www.2022.aclweb.org/ 11 | timeline: 12 | - deadline: '2021-09-15 23:59:59' 13 | - deadline: '2021-10-15 23:59:59' 14 | - deadline: '2021-11-15 23:59:59' 15 | comment: 'final submission deadline' 16 | timezone: UTC-12 17 | date: May 22-27, 2022 18 | place: Dublin, Ireland 19 | - year: 2023 20 | id: acl23 21 | link: https://2023.aclweb.org/ 22 | timeline: 23 | - abstract_deadline: '2023-01-13 23:59:59' 24 | deadline: '2023-01-20 23:59:59' 25 | timezone: UTC-12 26 | date: July 9-14, 2023 27 | place: Toronto, Canada 28 | - year: 2024 29 | id: acl24 30 | link: https://2024.aclweb.org/ 31 | timeline: 32 | - deadline: '2024-02-15 23:59:59' 33 | timezone: UTC-12 34 | date: August 11-16, 2024 35 | place: Bangkok, Thailand 36 | - year: 2025 37 | id: acl25 38 | link: https://2025.aclweb.org/ 39 | timeline: 40 | - deadline: '2025-02-15 23:59:59' 41 | timezone: UTC-12 42 | date: July 27–August 1st, 2025 43 | place: Vienna, Austria -------------------------------------------------------------------------------- /public/conference/NIS/www.yml: -------------------------------------------------------------------------------- 1 | - title: WWW 2 | description: International World Wide Web Conferences 3 | sub: NIS 4 | rank: A 5 | TierLevel: Second 6 | dblp: www 7 | confs: 8 | - year: 2021 9 | id: www21 10 | link: https://www2021.thewebconf.org/ 11 | timeline: 12 | - abstract_deadline: '2020-10-12 23:59:59' 13 | deadline: '2020-10-19 23:59:59' 14 | timezone: AoE 15 | date: April 19-23, 2021 16 | place: Ljubljana, Slovenia 17 | - year: 2022 18 | id: www22 19 | link: https://www2022.thewebconf.org/ 20 | timeline: 21 | - abstract_deadline: '2021-10-14 23:59:59' 22 | deadline: '2021-10-21 23:59:59' 23 | timezone: AoE 24 | date: April 25-29, 2022 25 | place: Lyon, France 26 | - year: 2023 27 | id: www23 28 | link: https://www2023.thewebconf.org/ 29 | timeline: 30 | - abstract_deadline: '2022-10-6 23:59:59' 31 | deadline: '2022-10-13 23:59:59' 32 | timezone: AoE 33 | date: May 1-5, 2023 34 | place: Austin, TEXAS, USA 35 | - year: 2024 36 | id: www24 37 | link: https://www2024.thewebconf.org/ 38 | timeline: 39 | - abstract_deadline: '2023-10-05 23:59:59' 40 | deadline: '2023-10-12 23:59:59' 41 | timezone: AoE 42 | date: May 13-17, 2024 43 | place: Singapore -------------------------------------------------------------------------------- /public/conference/CGM/acmmm.yml: -------------------------------------------------------------------------------- 1 | - title: ACM MM 2 | description: ACM International Conference on Multimedia 3 | sub: CGM 4 | TierLevel: Third 5 | rank: A 6 | dblp: mm 7 | confs: 8 | - year: 2021 9 | id: mm21 10 | link: https://2021.acmmm.org/ 11 | timeline: 12 | - abstract_deadline: '2021-04-10 23:59:59' 13 | deadline: '2021-04-17 23:59:59' 14 | timezone: AoE 15 | date: October 21-24, 2021 16 | place: Chengdu, China 17 | - year: 2022 18 | id: mm22 19 | link: https://2022.acmmm.org/ 20 | timeline: 21 | - abstract_deadline: '2022-03-31 23:59:59' 22 | deadline: '2022-04-07 23:59:59' 23 | timezone: UTC-12 24 | date: October 10-14, 2022 25 | place: Lisbon, Portugal 26 | - year: 2023 27 | id: mm23 28 | link: https://www.acmmm2023.org/ 29 | timeline: 30 | - abstract_deadline: '2023-04-23 23:59:59' 31 | deadline: '2023-04-30 23:59:59' 32 | timezone: UTC-12 33 | date: October 29-November 02, 2023 34 | place: Ottawa, Ontario, Canada 35 | - year: 2024 36 | id: mm24 37 | link: https://2024.acmmm.org/ 38 | timeline: 39 | - abstract_deadline: '2024-04-08 23:59:59' 40 | deadline: '2024-04-12 23:59:59' 41 | timezone: UTC-12 42 | date: October 28-November 01, 2024 43 | place: Melbourne, Australia -------------------------------------------------------------------------------- /public/conference/DBIR/sigir.yml: -------------------------------------------------------------------------------- 1 | - title: SIGIR 2 | description: International Conference on Research on Development in Information Retrieval 3 | sub: DBIR 4 | rank: A 5 | TierLevel: Second 6 | dblp: sigir 7 | confs: 8 | - year: 2021 9 | id: sigir21 10 | link: http://sigir.org/sigir2021/ 11 | timeline: 12 | - abstract_deadline: '2021-02-02 23:59:59' 13 | deadline: '2021-02-09 23:59:59' 14 | timezone: AoE 15 | date: July 11-15, 2021 16 | place: Virtual 17 | - year: 2022 18 | id: sigir22 19 | link: https://sigir.org/sigir2022/ 20 | timeline: 21 | - abstract_deadline: '2022-01-21 23:59:59' 22 | deadline: '2022-01-28 23:59:59' 23 | timezone: AoE 24 | date: July 11-15, 2022 25 | place: Madrid 26 | - year: 2023 27 | id: sigir23 28 | link: https://sigir.org/sigir2023/ 29 | timeline: 30 | - abstract_deadline: '2023-01-24 23:59:59' 31 | deadline: '2023-01-31 23:59:59' 32 | timezone: AoE 33 | date: July 23-27, 2023 34 | place: Taipei, Taiwan 35 | - year: 2024 36 | id: sigir24 37 | link: https://sigir-2024.github.io/index.html 38 | timeline: 39 | - abstract_deadline: '2024-01-18 23:59:59' 40 | deadline: '2024-01-25 23:59:59' 41 | timezone: AoE 42 | date: July 14-18, 2024 43 | place: Washington D.C., USA 44 | -------------------------------------------------------------------------------- /public/conference/NIS/infocom.yml: -------------------------------------------------------------------------------- 1 | - title: INFOCOM 2 | description: IEEE International Conference on Computer Communications 3 | sub: NIS 4 | rank: A 5 | TierLevel: Second 6 | dblp: infocom 7 | confs: 8 | - year: 2021 9 | id: infocom21 10 | link: https://infocom2021.ieee-infocom.org/ 11 | timeline: 12 | - abstract_deadline: '2020-08-08 23:59:59' 13 | deadline: '2020-08-15 23:59:59' 14 | timezone: UTC-4 15 | date: May 10-13, 2021 16 | place: Virtual 17 | - year: 2022 18 | id: infocom22 19 | link: https://infocom2022.ieee-infocom.org/ 20 | timeline: 21 | - abstract_deadline: '2021-07-24 23:59:59' 22 | deadline: '2021-07-31 23:59:59' 23 | timezone: UTC-4 24 | date: May 2-5, 2022 25 | place: Virtual 26 | - year: 2023 27 | id: infocom23 28 | link: https://infocom2023.ieee-infocom.org/ 29 | timeline: 30 | - abstract_deadline: '2022-07-25 23:59:59' 31 | deadline: '2022-08-1 23:59:59' 32 | timezone: UTC-4 33 | date: May 17-20, 2022 34 | place: New York area, USA 35 | - year: 2024 36 | id: infocom24 37 | link: https://infocom2024.ieee-infocom.org/ 38 | timeline: 39 | - abstract_deadline: '2023-07-24 23:59:59' 40 | deadline: '2022-07-31 23:59:59' 41 | timezone: AoE 42 | date: May 20-23, 2023 43 | place: Vancouver, Canada -------------------------------------------------------------------------------- /public/conference/NIS/fse.yml: -------------------------------------------------------------------------------- 1 | - title: FSE 2 | description: Fast Software Encryption 3 | sub: NIS 4 | rank: B 5 | TierLevel: Third 6 | dblp: fse 7 | confs: 8 | - year: 2022 9 | id: fse22 10 | link: https://2022.esec-fse.org/ 11 | timeline: 12 | - deadline: '2022-03-11 23:59:59' 13 | comment: 'Paper registration' 14 | - deadline: '2022-03-18 23:59:59' 15 | comment: 'Full paper submission' 16 | - deadline: '2022-05-20 23:59:59' 17 | comment: '1st Rebuttal period (all papers)' 18 | - deadline: '2022-05-31 23:59:59' 19 | comment: '2nd Additional short response period (selected papers)' 20 | - deadline: '2022-06-08 23:59:59' 21 | comment: 'Author notification' 22 | - deadline: '2022-09-16 23:59:59' 23 | comment: 'Camera ready' 24 | timezone: UTC-12 25 | date: November 14-18, 2022 26 | place: Singapore 27 | - year: 2023 28 | id: fse23 29 | link: https://fse.iacr.org/2023/ 30 | timeline: 31 | - deadline: '2022-03-01 11:59:59' 32 | comment: 'Submission deadline' 33 | - deadline: '2022-06-01 11:59:59' 34 | comment: 'Submission deadline' 35 | - deadline: '2022-09-01 11:59:59' 36 | comment: 'Submission deadline' 37 | - deadline: '2022-11-23 11:59:59' 38 | comment: 'Submission deadline' 39 | timezone: UTC+0 40 | date: March 20-24, 2023 41 | place: Beijing, China -------------------------------------------------------------------------------- /public/conference/AI/emnlp.yml: -------------------------------------------------------------------------------- 1 | - title: EMNLP 2 | description: Conference on Empirical Methods in Natural Language Processing 3 | sub: AI 4 | rank: B 5 | TierLevel: Second 6 | dblp: emnlp 7 | confs: 8 | - year: 2021 9 | id: emnlp21 10 | link: https://2021.emnlp.org/ 11 | timeline: 12 | - abstract_deadline: '2021-05-10 23:59:00' 13 | deadline: '2021-05-17 23:59:00' 14 | timezone: AoE 15 | date: November 7-11, 2021 16 | place: Barceló Bávaro Convention Centre, Punta Cana, Dominican Republic 17 | - year: 2022 18 | id: emnlp22 19 | link: https://2022.emnlp.org/ 20 | timeline: 21 | - abstract_deadline: '2022-06-17 23:59:00' 22 | deadline: '2022-06-24 23:59:00' 23 | comment: long&short same DDL. 24 | - deadline: '2022-06-24 23:59:00' 25 | comment: DDL for ARR track. 26 | timezone: AoE 27 | date: December 7–11, 2022 28 | place: Abu Dhabi 29 | - year: 2023 30 | id: emnlp23 31 | link: https://2023.emnlp.org 32 | timeline: 33 | - abstract_deadline: '2023-06-16 23:59:59' 34 | deadline: '2023-06-23 23:59:59' 35 | timezone: UTC-12 36 | date: December 6 - 10, 2023 37 | place: Singapore 38 | - year: 2025 39 | id: emnlp25 40 | link: https://2025.emnlp.org 41 | timeline: 42 | - deadline: '2025-05-19 23:59:59' 43 | timezone: UTC-12 44 | date: November 5 - 9, 2025 45 | place: Suzhou, China -------------------------------------------------------------------------------- /public/conference/DBIR/dasfaa.yml: -------------------------------------------------------------------------------- 1 | - title: DASFAA 2 | description: Database Systems for Advanced Applications 3 | sub: DBIR 4 | rank: B 5 | TierLevel: Third 6 | dblp: dasfaa 7 | confs: 8 | - year: 2021 9 | id: dasfaa21 10 | link: http://dm.iis.sinica.edu.tw/DASFAA2021/ 11 | timeline: 12 | - deadline: '2020-10-28 23:59:59' 13 | timezone: UTC-7 14 | date: April 11-14, 2021 15 | place: Taipei, China 16 | - year: 2022 17 | id: dasfaa22 18 | link: https://www.dasfaa2022.org/ 19 | timeline: 20 | - abstract_deadline: '2021-10-28 23:59:59' 21 | deadline: '2021-11-04 23:59:59' 22 | timezone: AoE 23 | date: April 11-14, 2022 24 | place: Hyderabad, India 25 | - year: 2023 26 | id: dasfaa23 27 | link: http://www.tjudb.cn/dasfaa2023/ 28 | timeline: 29 | - abstract_deadline: '2022-10-28 23:59:59' 30 | deadline: '2022-11-04 23:59:59' 31 | - deadline: '2023-01-09 11:59:59' 32 | comment: 'Acceptance notification' 33 | - deadline: '2023-01-23 11:59:59' 34 | comment: 'Camera Ready' 35 | timezone: AoE 36 | date: April 17-20, 2022 37 | place: Tianjin, China 38 | - year: 2024 39 | id: dasfaa24 40 | link: https://www.dasfaa2024.org/ 41 | timeline: 42 | - abstract_deadline: '2023-12-15 23:59:59' 43 | deadline: '2023-12-22 23:59:59' 44 | timezone: AoE 45 | date: July 3-5, 2024 46 | place: Gifu, Japan -------------------------------------------------------------------------------- /public/conference/AI/nips.yml: -------------------------------------------------------------------------------- 1 | - title: NeurIPS 2 | description: Conference on Neural Information Processing Systems 3 | sub: AI 4 | rank: A 5 | dblp: nips 6 | TierLevel: First 7 | confs: 8 | - year: 2021 9 | id: nips21 10 | link: https://neurips.cc/Conferences/2021/ 11 | timeline: 12 | - abstract_deadline: '2021-05-21 20:00:00' 13 | deadline: '2021-05-28 20:00:00' 14 | timezone: UTC+0 15 | date: December 5-14, 2021 16 | place: Virtual 17 | - year: 2022 18 | id: nips22 19 | link: https://neurips.cc/Conferences/2022 20 | timeline: 21 | - abstract_deadline: '2022-05-16 13:00:00' 22 | deadline: '2022-05-19 13:00:00' 23 | timezone: UTC-7 24 | date: November 28-December 9, 2022 25 | place: New Orleans, U.S. 26 | - year: 2023 27 | id: nips23 28 | link: https://neurips.cc/Conferences/2023 29 | timeline: 30 | - abstract_deadline: '2023-05-11 20:00:00' 31 | deadline: '2023-05-17 20:00:00' 32 | timezone: UTC+0 33 | date: November 28-December 9, 2023 34 | place: New Orleans, Louisiana, USA 35 | - year: 2025 36 | id: nips25 37 | link: https://neurips.cc/Conferences/2025 38 | timeline: 39 | - abstract_deadline: '2025-05-11 23:59:59' 40 | full paper deadline: '2025-05-15 23:59:59' 41 | supplement material deadline: '2025-05-22 23:59:59' 42 | timezone: AoE 43 | date: December 2 - 7, 2025 44 | place: San Diego Convention Center, San Diego, USA -------------------------------------------------------------------------------- /public/conference/AI/iclr.yml: -------------------------------------------------------------------------------- 1 | - title: ICLR 2 | description: International Conference on Learning Representations 3 | sub: AI 4 | rank: / 5 | TierLevel: / 6 | dblp: iclr 7 | confs: 8 | - year: 2022 9 | id: iclr22 10 | link: https://iclr.cc/Conferences/2022 11 | timeline: 12 | - abstract_deadline: '2021-09-29 12:00:00' 13 | deadline: '2021-10-21 12:00:00' 14 | comment: 'Mandatory abstract deadline on Sep 29, 2021.' 15 | timezone: UTC-12 16 | date: April 25-29, 2022 17 | place: Virtual conference 18 | - year: 2023 19 | id: iclr23 20 | link: https://iclr.cc/Conferences/2023 21 | timeline: 22 | - abstract_deadline: '2022-09-21 23:59:59' 23 | deadline: '2022-09-28 23:59:59' 24 | comment: 'Mandatory abstract deadline on Sep. 11, 2022.' 25 | timezone: UTC-12 26 | date: May 01-05, 2023 27 | place: Kigali, Rwanda 28 | - year: 2024 29 | id: iclr24 30 | link: https://iclr.cc/Conferences/2024 31 | timeline: 32 | - abstract_deadline: '2023-09-21 23:59:59' 33 | deadline: '2023-09-28 23:59:59' 34 | comment: 'Mandatory abstract deadline on Sep. 21, 2023.' 35 | timezone: UTC-12 36 | date: May 07-11, 2024 37 | place: Vienna, Austria 38 | - year: 2025 39 | id: iclr25 40 | link: https://iclr.cc/Conferences/2025/CallForPapers 41 | timeline: 42 | - abstract_deadline: '2024-09-27 23:59:59' 43 | deadline: '2024-10-01 23:59:59' 44 | timezone: UTC-12 45 | date: Apr 24-28, 2025 46 | place: Singapore -------------------------------------------------------------------------------- /public/conference/DBIR/cikm.yml: -------------------------------------------------------------------------------- 1 | - title: CIKM Full Papers 2 | description: ACM International Conference on Information and Knowledge Management 3 | sub: DBIR 4 | rank: B 5 | TierLevel: Second 6 | dblp: cikm 7 | confs: 8 | - year: 2020 9 | id: cikm20 10 | link: https://www.cikm2020.org/ 11 | timeline: 12 | - deadline: '2020-05-01 23:59:59' 13 | timezone: UTC-12 14 | date: October 19-23, 2021 15 | place: Galway, Ireland 16 | - year: 2021 17 | id: cikm21 18 | link: https://www.cikm2021.org/ 19 | timeline: 20 | - deadline: '2021-05-26 23:59:59' 21 | timezone: AoE 22 | date: November 01-05, 2021 23 | place: Queensland, Australia 24 | - year: 2022 25 | id: cikm22 26 | link: https://www.cikm2022.org/calls/call-for-full-papers 27 | timeline: 28 | - abstract_deadline: '2022-05-09 23:59:59' 29 | deadline: '2022-05-16 23:59:59' 30 | timezone: AoE 31 | date: October 17-22, 2022 32 | place: Atlanta, Georgia, USA 33 | - year: 2023 34 | id: cikm23 35 | link: https://cikm2023.github.io/ 36 | timeline: 37 | - abstract_deadline: '2023-05-26 23:59:59' 38 | deadline: '2023-06-02 23:59:59' 39 | timezone: AoE 40 | date: October 21-25, 2023 41 | place: Birmingham, UK 42 | - year: 2025 43 | id: cikm25 44 | link: https://cikm2025.org/ 45 | timeline: 46 | - abstract_deadline: '2025-05-16 23:59:59' 47 | deadline: '2023-05-23 23:59:59' 48 | timezone: AoE 49 | date: October 10-14, 2025 50 | place: Coex, Seoul, Korea -------------------------------------------------------------------------------- /public/conference/AI/icml.yml: -------------------------------------------------------------------------------- 1 | - title: ICML 2 | description: International Conference on Machine Learning 3 | sub: AI 4 | rank: A 5 | TierLevel: First 6 | dblp: icml 7 | confs: 8 | - year: 2022 9 | id: icml22 10 | link: https://icml.cc/Conferences/2022 11 | timeline: 12 | - abstract_deadline: '2022-01-20 23:59:00' 13 | deadline: '2022-01-27 23:59:00' 14 | comment: 'Mandatory abstract deadline on Jan 20, 2022.' 15 | timezone: UTC-12 16 | date: July 17-23, 2022 17 | place: Baltimore, Maryland USA 18 | - year: 2023 19 | id: icml23 20 | link: https://icml.cc/Conferences/2023 21 | timeline: 22 | - abstract_deadline: '2023-01-09 07:59:59' 23 | deadline: '2023-01-26 07:59:59' 24 | comment: 'Paper Submissions Open on OpenReview Jan 09 2023 02:00 PM UTC' 25 | timezone: UTC-12 26 | date: July 23-29, 2023 27 | place: Hawaii Convention Center,Hawaii, USA 28 | - year: 2024 29 | id: icml24 30 | link: https://icml.cc/Conferences/2024 31 | timeline: 32 | - deadline: '2024-02-01 23:59:59' 33 | comment: 'Paper Submissions Open on OpenReview Jan 09 2024 02:00 PM UTC' 34 | timezone: UTC-12 35 | date: July 21-27, 2024 36 | place: Messe Wien Exhibition Congress Center, Vienna, Austria 37 | - year: 2025 38 | id: icml25 39 | link: https://icml.cc/Conferences/2025/CallForPapers 40 | timeline: 41 | - abstract_deadline: '2025-01-23 23:59:59.' 42 | deadline: '2025-01-30 23:59:59.' 43 | timezone: AoE 44 | date: July 13-19, 2025 45 | place: Vancouver Convention Center 46 | -------------------------------------------------------------------------------- /public/conference/SE/icse.yml: -------------------------------------------------------------------------------- 1 | - title: ICSE 2 | description: International Conference on Software Engineering 3 | sub: SE 4 | rank: A 5 | TierLevel: First 6 | dblp: icse 7 | confs: 8 | - year: 2022 9 | id: icse22 10 | link: https://conf.researchr.org/home/icse-2022 11 | timeline: 12 | - abstract_deadline: '2021-08-27 23:59:59' 13 | deadline: '2021-09-03 23:59:59' 14 | timezone: AoE 15 | date: May 21-29, 2022 16 | place: Pittsburgh, PA, USA 17 | - year: 2023 18 | id: icse23 19 | link: https://conf.researchr.org/home/icse-2023 20 | timeline: 21 | - deadline: '2022-09-01 23:59:59' 22 | timezone: AoE 23 | date: May 14-20, 2023 24 | place: Melbourne, Australia 25 | - year: 2024 26 | id: icse24 27 | link: https://conf.researchr.org/home/icse-2024 28 | timeline: 29 | - deadline: '2023-03-29 23:59:59' 30 | comment: 'Technical Papers First round submission deadline' 31 | - deadline: '2023-08-01 23:59:59' 32 | comment: 'Technical Papers Second round submission deadline' 33 | timezone: AoE 34 | date: April 12-21, 2024 35 | place: Lisbon, Portugal 36 | - year: 2025 37 | id: icse25 38 | link: https://conf.researchr.org/home/icse-2025 39 | timeline: 40 | - abstract_deadline: '2024-03-15 23:59:59' 41 | deadline: '2024-03-22 23:59:59' 42 | comment: 'First Cycle: Submission' 43 | - abstract_deadline: '2024-07-26 23:59:59' 44 | deadline: '2024-08-02 23:59:59' 45 | comment: 'Second Cycle: Submission' 46 | timezone: AoE 47 | date: April 26- May 04, 2025 48 | place: Ottawa, Ontario, Canada -------------------------------------------------------------------------------- /fuzzymatching.py: -------------------------------------------------------------------------------- 1 | # -*- coding: utf-8 -*- 2 | # @Time : 2022/3/8 9:00 上午 3 | # @Author : heisenberg 4 | # @File : fuzzymatching.py 5 | # @Project : sufe-cs-conf-ddl 6 | # @Target : matching CCF info with Tenure Track info from short titles, likes v-lookup opreartion. 7 | 8 | 9 | # 提前要安装的package 10 | # pip install fuzzywuzzy 11 | # pip install python-Levenshtein 12 | 13 | import pandas as pd 14 | from fuzzywuzzy import fuzz 15 | from fuzzywuzzy import process 16 | 17 | def fuzzy_merge(df_1, df_2, key1, key2, threshold=90, limit=2): 18 | s = df_2[key2].tolist() 19 | m = df_1[key1].apply(lambda x: process.extract(x, s, limit=limit)) 20 | df_1['matches'] = m 21 | m2 = df_1['matches'].apply(lambda x: ', '.join([i[0] for i in x if i[1] >= threshold])) 22 | df_1['matches'] = m2 23 | df_1['merge_key'] = df_1['matches'] 24 | df_2['merge_key'] = df_2[key2] 25 | df = pd.merge(df_1, df_2, how='left',on='merge_key') 26 | return df 27 | 28 | df1 = pd.DataFrame([['Apple','A'],['Banana','B'],['Orange','C'],['Strawberry','D'],['Mango','G']], columns=['Fruits','AA']) 29 | df2 = pd.DataFrame([['Aple','a'],['Bannanna','b'],['Orag','c'],['Strawb','d']], columns=['Fruits','aa']) 30 | all_CCF_path = r'C:\Users\Administrator.WIN-T57L97EEQAK\Desktop\博士毕业\中国计算机学会CCF推荐会议.xlsx' 31 | sime_tenure_path = r'F:\VSCodeProjects\SIME-conference-DDL\.readme_assets\SIME-Tenure-CS-Conference.xlsx' 32 | all_CCF_pd = pd.read_excel(all_CCF_path) 33 | sime_tenure_pd = pd.read_excel(sime_tenure_path) 34 | all_CCF_pd['会议全称'] = all_CCF_pd['会议全称'].str.replace('_x000D_',' ') 35 | sime_tenure_pd.rename(columns={'刊物名称':'会议全称'},inplace=True) 36 | # df = fuzzy_merge(sime_tenure_pd, all_CCF_pd.loc[:,['CCF-Level','会议简称','会议全称','出版社', '网址']], '会议全称', '会议全称', 90) 37 | df = fuzzy_merge(sime_tenure_pd, all_CCF_pd, '会议全称', '会议全称', 90) -------------------------------------------------------------------------------- /public/conference/AI/aaai.yml: -------------------------------------------------------------------------------- 1 | - title: AAAI 2 | description: AAAI Conference on Artificial Intelligence 3 | sub: AI 4 | rank: A 5 | TierLevel: Second 6 | dblp: aaai 7 | confs: 8 | - year: 2022 9 | id: aaai22 10 | link: https://aaai.org/Conferences/AAAI-22/ 11 | timeline: 12 | - abstract_deadline: '2021-08-30 23:59:59' 13 | deadline: '2021-09-08 23:59:59' 14 | timezone: UTC-12 15 | date: February 22 - March 1, 2022 16 | place: Vancouver, British Columbia, Canada 17 | - year: 2023 18 | id: aaai23 19 | link: https://aaai.org/Conferences/AAAI-23/ 20 | timeline: 21 | - abstract_deadline: '2022-08-08 23:59:00' 22 | deadline: '2022-08-15 23:59:00' 23 | timezone: UTC-12 24 | date: February 7-14, 2023 25 | place: Washington, DC, USA 26 | - year: 2024 27 | id: aaai24 28 | link: https://aaai.org/aaai-conference/ 29 | timeline: 30 | - abstract_deadline: '2023-08-08 23:59:00' 31 | deadline: '2023-08-15 23:59:00' 32 | timezone: UTC-12 33 | date: February 20-27, 2024 34 | place: Vancouver, Canada 35 | - year: 2025 36 | id: aaai25 37 | link: https://aaai.org/conference/aaai/aaai-25/ 38 | timeline: 39 | - abstract_deadline: '2024-08-07 23:59:00' 40 | deadline: '2024-08-15 23:59:00' 41 | timezone: UTC-12 42 | date: February 25 – March 4, 2025 43 | place: Philadelphia, Pennsylvania, USA 44 | - year: 2026 45 | id: aaai26 46 | link: https://aaai.org/conference/aaai/aaai-26/ 47 | timeline: 48 | - abstract_deadline: '2025-07-25 23:59:00' 49 | deadline: '2025-08-01 23:59:00' 50 | timezone: UTC-12 51 | date: January 20 – January 27, 2026 52 | place: Singapore -------------------------------------------------------------------------------- /public/conference/DBIR/sigkdd.yml: -------------------------------------------------------------------------------- 1 | - title: SIGKDD 2 | description: ACM Knowledge Discovery and Data Mining 3 | sub: DBIR 4 | rank: A 5 | dblp: kdd 6 | TierLevel: First 7 | confs: 8 | - year: 2021 9 | id: sigkdd21 10 | link: https://www.kdd.org/kdd2021/ 11 | timeline: 12 | - deadline: '2021-02-08 23:59:59' 13 | timezone: AoE 14 | date: August 14-18, 2021 15 | place: Singapore 16 | - year: 2022 17 | id: sigkdd22 18 | link: https://www.kdd.org/kdd2022/ 19 | timeline: 20 | - deadline: '2022-02-10 23:59:59' 21 | timezone: AoE 22 | date: August 14-18, 2022 23 | place: Washington DC Convention Center, USA 24 | - year: 2023 25 | id: sigkdd23 26 | link: https://kdd.org/kdd2023/ 27 | timeline: 28 | - deadline: '2023-02-02 23:59:59' 29 | timezone: AoE 30 | date: August 6-10, 2023 31 | place: Long Beach Convention & Entertainment Center, USA 32 | - year: 2024 33 | id: sigkdd24 34 | link: https://kdd.org/kdd2024/ 35 | timeline: 36 | - abstract_deadline: '2024-02-01 23:59:59' 37 | deadline: '2024-02-08 23:59:59' 38 | comment: '1st deadline' 39 | - abstract_deadline: '2024-07-25 23:59:59' 40 | deadline: '2024-08-01 23:59:59' 41 | comment: '1st deadline' 42 | timezone: AoE 43 | date: August 18-22, 2023 44 | place: Barcelona, Spain 45 | - year: 2025 46 | id: sigkdd25 47 | link: https://kdd2025.kdd.org/ 48 | timeline: 49 | - abstract_deadline: '2024-08-01 23:59:59' 50 | deadline: '2024-08-08 23:59:59' 51 | comment: 'Cycle 1 deadline' 52 | - abstract_deadline: '2025-02-03 23:59:59' 53 | deadline: '2025-02-10 23:59:59' 54 | comment: 'Cycle 2 deadline' 55 | timezone: AoE 56 | date: August 3-7, 2025 57 | place: Toronto, ON, Canada -------------------------------------------------------------------------------- /src/components/Header.vue: -------------------------------------------------------------------------------- 1 | 17 | 18 | 50 | 51 | 61 | -------------------------------------------------------------------------------- /public/conference/DBIR/icde.yml: -------------------------------------------------------------------------------- 1 | - title: ICDE 2 | description: IEEE International Conference on Data Engineering 3 | sub: DBIR 4 | rank: A 5 | dblp: icde 6 | TierLevel: Second 7 | confs: 8 | - year: 2021 9 | id: icde21 10 | link: https://icde2021.gr/ 11 | timeline: 12 | - deadline: '2020-10-01 23:59:59' 13 | timezone: AoE 14 | date: April 19-22, 2021 15 | place: Virtual 16 | - year: 2022 17 | id: icde22 18 | link: https://icde2022.ieeecomputer.my 19 | timeline: 20 | - deadline: '2021-07-21 23:59:59' 21 | comment: 'first round' 22 | - deadline: '2021-11-17 23:59:59' 23 | comment: 'second round' 24 | timezone: UTC-8 25 | date: May 9-12, 2022 26 | place: Kuala Lumpur, Malaysia 27 | - year: 2023 28 | id: icde23 29 | link: https://icde2023.ics.uci.edu/ 30 | timeline: 31 | - deadline: '2022-04-25 23:59:59' 32 | comment: 'first round' 33 | - deadline: '2022-07-08 23:59:59' 34 | comment: 'second round' 35 | - deadline: '2022-10-08 23:59:59' 36 | comment: 'third round' 37 | timezone: UTC-8 38 | date: April 3–7, 2023 39 | place: Anaheim, California, USA 40 | - year: 2024 41 | id: icde24 42 | link: https://icde2024.github.io/ 43 | timeline: 44 | - deadline: '2023-07-28 23:59:59' 45 | comment: 'first round' 46 | - deadline: '2023-11-24 23:59:59' 47 | comment: 'second round' 48 | timezone: UTC-12 49 | date: April 16–19, 2024 50 | place: Utrecht, Netherlands 51 | - year: 2024 52 | id: icde24 53 | link: https://icde2024.github.io/ 54 | timeline: 55 | - deadline: '2023-07-28 23:59:59' 56 | comment: 'first round' 57 | - deadline: '2023-12-03 23:59:59' 58 | comment: 'second round' 59 | timezone: AoE 60 | date: April 16-19, 2024 61 | place: Utrecht, Netherlands -------------------------------------------------------------------------------- /public/conference/SE/fse.yml: -------------------------------------------------------------------------------- 1 | - title: ESEC/FSE 2 | description: ACM Joint European Software Engineering Conference and Symposium on the Foundations of Software Engineering 3 | sub: SE 4 | rank: A 5 | TierLevel: Second 6 | dblp: sigsoft 7 | confs: 8 | - year: 2022 9 | id: fse22 10 | link: https://2022.esec-fse.org/ 11 | timeline: 12 | - deadline: '2022-03-10 23:59:59' 13 | comment: 'paper registration deadline' 14 | - deadline: '2022-03-17 23:59:59' 15 | comment: 'full paper submission deadline' 16 | timezone: AoE 17 | date: November 14-18, 2022 18 | place: Singapore 19 | - year: 2023 20 | id: fse23 21 | link: https://2023.esec-fse.org/ 22 | timeline: 23 | - deadline: '2023-01-26 23:59:59' 24 | comment: 'paper registration deadline' 25 | - deadline: '2023-02-02 23:59:59' 26 | comment: 'full paper submission deadline' 27 | timezone: AoE 28 | date: November 11-17, 2023 29 | place: United States 30 | - year: 2024 31 | id: fse24 32 | link: https://2024.esec-fse.org/ 33 | timeline: 34 | - deadline: '2023-09-21 23:59:59' 35 | comment: 'paper registration deadline' 36 | - deadline: '2023-09-28 23:59:59' 37 | comment: 'full paper submission deadline' 38 | timezone: AoE 39 | date: July 15-19, 2024 40 | place: Porto de Galinas, Brazil 41 | - year: 2024 42 | id: fse24 43 | link: https://fse.iacr.org/2024/ 44 | timeline: 45 | - deadline: '2023-03-01 11:59:59' 46 | comment: 'Submission deadline' 47 | - deadline: '2023-06-01 11:59:59' 48 | comment: 'Submission deadline' 49 | - deadline: '2023-09-01 11:59:59' 50 | comment: 'Submission deadline' 51 | - deadline: '2023-11-23 11:59:59' 52 | comment: 'Submission deadline' 53 | timezone: UTC+0 54 | date: March 25-29, 2024 55 | place: Leuven, Belgium -------------------------------------------------------------------------------- /public/conference/NIS/ccs.yml: -------------------------------------------------------------------------------- 1 | - title: CCS 2 | description: ACM Conference on Computer and Communications Security 3 | sub: NIS 4 | rank: A 5 | TierLevel: Second 6 | dblp: ccs 7 | confs: 8 | - year: 2020 9 | id: ccs20 10 | link: https://www.sigsac.org/ccs/CCS2020/ 11 | timeline: 12 | - deadline: '2020-01-20 23:59:59' 13 | comment: '2 review cycles' 14 | timezone: UTC-12 15 | date: November 9-13, 2020 16 | place: Orlando, USA 17 | - year: 2021 18 | id: ccs21 19 | link: https://www.sigsac.org/ccs/CCS2021/ 20 | timeline: 21 | - deadline: '2021-01-20 23:59:59' 22 | comment: '2 review cycles' 23 | - deadline: '2021-05-06 23:59:59' 24 | comment: 'spring' 25 | timezone: UTC-12 26 | date: November 15-19, 2021 27 | place: Seoul, South Korea 28 | - year: 2022 29 | id: ccs22 30 | link: https://www.sigsac.org/ccs/CCS2022/ 31 | timeline: 32 | - deadline: '2022-01-14 23:59:59' 33 | comment: '2 review cycles' 34 | - deadline: '2022-05-02 23:59:59' 35 | comment: 'the second review cycle' 36 | timezone: UTC-12 37 | date: November 14-19, 2022 38 | place: Los Angeles, U.S.A. 39 | - year: 2023 40 | id: ccs23 41 | link: https://www.sigsac.org/ccs/CCS2023/ 42 | timeline: 43 | - deadline: '2023-01-19 23:59:59' 44 | comment: 'First Review Cycle' 45 | - deadline: '2023-05-04 23:59:59' 46 | comment: 'Second Review Cycle' 47 | timezone: UTC-12 48 | date: November 26-30, 2023 49 | place: Copenhagen, Denmark 50 | - year: 2024 51 | id: ccs24 52 | link: https://www.sigsac.org/ccs/CCS2024/ 53 | timeline: 54 | - deadline: '2024-01-28 23:59:59' 55 | comment: 'First Round Submission' 56 | - deadline: '2024-04-14 23:59:59' 57 | comment: 'Second Round Submission (tentative)' 58 | timezone: UTC-12 59 | date: October 14-18, 2024 60 | place: Salt Lake City, U.S.A -------------------------------------------------------------------------------- /public/conference/NIS/sp.yml: -------------------------------------------------------------------------------- 1 | - title: S&P 2 | description: IEEE Symposium on Security and Privacy 3 | sub: NIS 4 | rank: A 5 | TierLevel: First 6 | dblp: sp 7 | confs: 8 | - year: 2022 9 | id: sp22 10 | link: https://www.ieee-security.org/TC/SP2022/ 11 | timeline: 12 | - deadline: '2021-04-15 23:59:59' 13 | comment: 'First Paper submission deadline' 14 | - deadline: '2021-08-19 23:59:59' 15 | comment: 'Second Paper submission deadline' 16 | - deadline: '2021-12-02 23:59:59' 17 | comment: 'Third Paper submission deadline' 18 | timezone: UTC-12 19 | date: May 22-26, 2022 20 | place: None 21 | - year: 2023 22 | id: sp23 23 | link: https://www.ieee-security.org/TC/SP2023/ 24 | timeline: 25 | - deadline: '2022-04-01 23:59:59' 26 | comment: 'First Paper submission deadline' 27 | - deadline: '2022-08-19 23:59:59' 28 | comment: 'Second Paper submission deadline' 29 | - deadline: '2022-12-02 23:59:59' 30 | comment: 'Third Paper submission deadline' 31 | timezone: UTC-12 32 | date: May 23-26, 2023 33 | place: SAN FRANCISCO, U.S. 34 | - year: 2024 35 | id: sp24 36 | link: https://www.ieee-security.org/TC/SP2024/ 37 | timeline: 38 | - deadline: '2023-04-13 23:59:59' 39 | comment: 'First Paper submission deadline' 40 | - deadline: '2023-08-03 23:59:59' 41 | comment: 'Second Paper submission deadline' 42 | - deadline: '2023-12-06 23:59:59' 43 | comment: 'Third Paper submission deadline' 44 | timezone: UTC-12 45 | date: MAY 20-23, 2024 46 | place: SAN FRANCISCO, CA 47 | - year: 2024 48 | id: sp24 49 | link: https://www.ieee-security.org/TC/SP2024/ 50 | timeline: 51 | - deadline: '2023-04-13 23:59:59' 52 | comment: 'First Paper submission deadline' 53 | - deadline: '2023-08-03 23:59:59' 54 | comment: 'Second Paper submission deadline' 55 | - deadline: '2023-12-06 23:59:59' 56 | comment: 'Third Paper submission deadline' 57 | timezone: UTC-12 58 | date: MAY 20-23, 2024 59 | place: SAN FRANCISCO, CA -------------------------------------------------------------------------------- /public/conference/DBIR/sigmod.yml: -------------------------------------------------------------------------------- 1 | - title: SIGMOD 2 | description: ACM Conference on Management of Data 3 | sub: DBIR 4 | rank: A 5 | dblp: sigmod 6 | TierLevel: First 7 | confs: 8 | - year: 2021 9 | id: sigmod21 10 | link: http://2021.sigmod.org/ 11 | timeline: 12 | - deadline: '2020-09-22 17:00:00' 13 | comment: 'second round' 14 | timezone: UTC-8 15 | date: June 20-25, 2021 16 | place: Xi'an, China 17 | - year: 2022 18 | id: sigmod22 19 | link: http://2022.sigmod.org/ 20 | timeline: 21 | - deadline: '2021-07-02 17:00:00' 22 | comment: 'first round' 23 | - deadline: '2021-09-15 17:00:00' 24 | comment: 'second round' 25 | timezone: UTC-8 26 | date: June 12-17, 2022 27 | place: Philadelphia, PA, USA 28 | - year: 2023 29 | id: sigmod23 30 | link: http://2023.sigmod.org/ 31 | timeline: 32 | - deadline: '2022-04-15 23:59:00' 33 | comment: 'first round' 34 | - deadline: '2022-07-15 23:59:00' 35 | comment: 'second round' 36 | - deadline: '2022-10-15 23:59:00' 37 | comment: 'third round' 38 | timezone: UTC-8 39 | date: June 18-23, 2022 40 | place: Seattle, WA, USA 41 | - year: 2024 42 | id: sigmod24 43 | link: http://2024.sigmod.org/ 44 | timeline: 45 | - deadline: '2023-01-15 23:59:00' 46 | comment: 'round 1' 47 | - deadline: '2023-04-15 23:59:00' 48 | comment: 'round 2' 49 | - deadline: '2023-07-15 23:59:00' 50 | comment: 'round 3' 51 | - deadline: '2023-10-15 23:59:00' 52 | comment: 'round 4' 53 | timezone: UTC-7 54 | date: June 11-16, 2024 55 | place: Santiago, Chile 56 | - year: 2026 57 | id: sigmod26 58 | link: https://2026.sigmod.org/ 59 | timeline: 60 | - deadline: '2025-01-17 23:59:00' 61 | comment: 'round 1, abstract ddl is 2025-xx-10, same below' 62 | - deadline: '2024-04-17 23:59:00' 63 | comment: 'round 2' 64 | - deadline: '2024-07-17 23:59:00' 65 | comment: 'round 3' 66 | - deadline: '2024-10-17 23:59:00' 67 | comment: 'round 4' 68 | timezone: AoE 69 | date: May 31 - June 5, 2026 70 | place: Bengaluru, India -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | .DS_Store 3 | node_modules 4 | /dist 5 | 6 | 7 | # local env files 8 | .env.local 9 | .env.*.local 10 | 11 | # Log files 12 | npm-debug.log* 13 | yarn-debug.log* 14 | yarn-error.log* 15 | pnpm-debug.log* 16 | 17 | # Editor directories and files 18 | .idea 19 | .vscode 20 | *.suo 21 | *.ntvs* 22 | *.njsproj 23 | *.sln 24 | *.sw? 25 | 26 | # Logs 27 | logs 28 | *.log 29 | npm-debug.log* 30 | yarn-debug.log* 31 | yarn-error.log* 32 | lerna-debug.log* 33 | 34 | # Diagnostic reports (https://nodejs.org/api/report.html) 35 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 36 | 37 | # Runtime data 38 | pids 39 | *.pid 40 | *.seed 41 | *.pid.lock 42 | 43 | # Directory for instrumented libs generated by jscoverage/JSCover 44 | lib-cov 45 | 46 | # Coverage directory used by tools like istanbul 47 | coverage 48 | *.lcov 49 | 50 | # nyc test coverage 51 | .nyc_output 52 | 53 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 54 | .grunt 55 | 56 | # Bower dependency directory (https://bower.io/) 57 | bower_components 58 | 59 | # node-waf configuration 60 | .lock-wscript 61 | 62 | # Compiled binary addons (https://nodejs.org/api/addons.html) 63 | build/Release 64 | 65 | # Dependency directories 66 | node_modules/ 67 | jspm_packages/ 68 | 69 | # TypeScript v1 declaration files 70 | typings/ 71 | 72 | # TypeScript cache 73 | *.tsbuildinfo 74 | 75 | # Optional npm cache directory 76 | .npm 77 | 78 | # Optional eslint cache 79 | .eslintcache 80 | 81 | # Microbundle cache 82 | .rpt2_cache/ 83 | .rts2_cache_cjs/ 84 | .rts2_cache_es/ 85 | .rts2_cache_umd/ 86 | 87 | # Optional REPL history 88 | .node_repl_history 89 | 90 | # Output of 'npm pack' 91 | *.tgz 92 | 93 | # Yarn Integrity file 94 | .yarn-integrity 95 | 96 | # dotenv environment variables file 97 | .env 98 | .env.test 99 | 100 | # parcel-bundler cache (https://parceljs.org/) 101 | .cache 102 | 103 | # Next.js build output 104 | .next 105 | 106 | # Nuxt.js build / generate output 107 | .nuxt 108 | dist 109 | 110 | # Gatsby files 111 | .cache/ 112 | # Comment in the public line in if your project uses Gatsby and *not* Next.js 113 | # https://nextjs.org/blog/next-9-1#public-directory-support 114 | # public 115 | 116 | # vuepress build output 117 | .vuepress/dist 118 | 119 | # Serverless directories 120 | .serverless/ 121 | 122 | # FuseBox cache 123 | .fusebox/ 124 | 125 | # DynamoDB Local files 126 | .dynamodb/ 127 | 128 | # TernJS port file 129 | .tern-port 130 | -------------------------------------------------------------------------------- /public/conference/DBIR/pods.yml: -------------------------------------------------------------------------------- 1 | - title: PODS 2 | description: ACM SIGMOD Conference on Principles of DB Systems 3 | sub: DBIR 4 | rank: B 5 | TierLevel: Second 6 | dblp: pods 7 | confs: 8 | - year: 2022 9 | id: pods22 10 | link: https://2022.sigmod.org/ 11 | timeline: 12 | - deadline: '2021-06-11 17:00:00' 13 | comment: 'first round abstract deadline' 14 | - deadline: '2021-06-18 17:00:00' 15 | comment: 'first round full paper deadline' 16 | - deadline: '2021-12-10 17:00:00' 17 | comment: 'second round abstract deadline' 18 | - deadline: '2021-12-17 17:00:00' 19 | comment: 'second round full paper deadline' 20 | timezone: UTC-8 21 | date: June 12-17,2022 22 | place: Philadelphia,PA,USA 23 | - year: 2023 24 | id: pods23 25 | link: https://2023.sigmod.org/ 26 | timeline: 27 | - deadline: '2022-05-30 17:00:00' 28 | comment: 'first round abstract deadline' 29 | - deadline: '2022-06-06 17:00:00' 30 | comment: 'first round full paper deadline' 31 | - deadline: '2022-11-28 17:00:00' 32 | comment: 'second round abstract deadline' 33 | - deadline: '2022-12-05 17:00:00' 34 | comment: 'second round full paper deadline' 35 | timezone: UTC-8 36 | date: June 18-23,2023 37 | place: Seattle,WA,USA 38 | - year: 2024 39 | id: sigmod24 40 | link: http://2024.sigmod.org/ 41 | timeline: 42 | - deadline: '2023-01-15 23:59:00' 43 | comment: 'round 1' 44 | - deadline: '2023-04-15 23:59:00' 45 | comment: 'round 2' 46 | - deadline: '2023-07-15 23:59:00' 47 | comment: 'round 3' 48 | - deadline: '2023-10-15 23:59:00' 49 | comment: 'round 4' 50 | timezone: UTC-7 51 | date: June 11-16, 2024 52 | place: Santiago, Chile 53 | - year: 2025 54 | id: sigmod25 55 | link: https://2025.sigmod.org/ 56 | timeline: 57 | - abstract_deadline: '2024-01-10 23:59:00' 58 | deadline: '2024-01-17 23:59:00' 59 | comment: 'round 1' 60 | - abstract_deadline: '2024-04-10 23:59:00' 61 | deadline: '2024-04-17 23:59:00' 62 | comment: 'round 2' 63 | - abstract_deadline: '2024-07-10 23:59:00' 64 | deadline: '2024-07-17 23:59:00' 65 | comment: 'round 3' 66 | - abstract_deadline: '2024-10-10 23:59:00' 67 | deadline: '2024-10-17 23:59:00' 68 | comment: 'round 4' 69 | timezone: AoE 70 | date: unknown, 2025 71 | place: Berlin, Germany -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "sufe-cs-conf-ddl", 3 | "version": "0.1.0", 4 | "private": true, 5 | "scripts": { 6 | "serve": "npm run lint -- --fix && vue-cli-service serve", 7 | "build": "vue-cli-service build", 8 | "lint": "vue-cli-service lint" 9 | }, 10 | "dependencies": { 11 | "@chenfengyuan/vue-countdown": "^1.1.5", 12 | "core-js": "^3.6.5", 13 | "element-ui": "^2.8.2", 14 | "js-yaml": "^4.0.0", 15 | "moment": "^2.29.1", 16 | "moment-timezone": "^0.5.32", 17 | "vue": "^2.6.14", 18 | "vue-ls": "^3.2.2", 19 | "vue-resource": "^1.5.1" 20 | }, 21 | "devDependencies": { 22 | "@babel/core": "^7.12.16", 23 | "@babel/eslint-parser": "^7.12.16", 24 | "@vue/cli-plugin-babel": "~5.0.0", 25 | "@vue/cli-plugin-eslint": "~5.0.0", 26 | "@vue/cli-service": "^4.5.15", 27 | "@vue/eslint-config-airbnb": "^6.0.0", 28 | "eslint": "^7.32.0", 29 | "eslint-plugin-import": "^2.25.3", 30 | "eslint-plugin-vue": "^8.0.3", 31 | "eslint-plugin-vuejs-accessibility": "^1.1.0", 32 | "vue-template-compiler": "^2.6.14", 33 | "webpack": "^4.46.0" 34 | }, 35 | "eslintConfig": { 36 | "root": true, 37 | "env": { 38 | "node": true 39 | }, 40 | "extends": [ 41 | "plugin:vue/essential", 42 | "@vue/airbnb" 43 | ], 44 | "parserOptions": { 45 | "parser": "@babel/eslint-parser" 46 | }, 47 | "rules": { 48 | "linebreak-style": [ 49 | 0, 50 | "error", 51 | "windows" 52 | ], 53 | "vue/no-unused-components": 0, 54 | "no-shadow": 0, 55 | "eqeqeq": 0, 56 | "treatUndefinedAsUnspecified": 0, 57 | "vue/multi-word-component-names": 0, 58 | "no-nested-ternary": 0, 59 | "consistent-return": 0, 60 | "max-len": [ 61 | "error", 62 | { 63 | "code": 300 64 | } 65 | ], 66 | "no-underscore-dangle": [ 67 | "error", 68 | { 69 | "allow": [ 70 | "_place", 71 | "_isMobile" 72 | ] 73 | } 74 | ], 75 | "prefer-destructuring": [ 76 | "error", 77 | { 78 | "object": true, 79 | "array": false 80 | } 81 | ], 82 | "no-param-reassign": [ 83 | "error", 84 | { 85 | "props": true, 86 | "ignorePropertyModificationsFor": [ 87 | "props", 88 | "record" 89 | ] 90 | } 91 | ] 92 | } 93 | }, 94 | "browserslist": [ 95 | "> 1%", 96 | "last 2 versions", 97 | "not dead" 98 | ], 99 | "gitHooks": { 100 | "pre-commit": "scripts/pre-commit" 101 | } 102 | } 103 | -------------------------------------------------------------------------------- /scripts/validate: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | 3 | """ 4 | pre-commit hook to check conference yml files 5 | 6 | To use it normally as git pre-commit hook, 7 | make a symlink and install dependencies: 8 | $ ln -s ../../scripts/validate .git/hooks/pre-commit 9 | $ pip install PyYAML jsonschema 10 | """ 11 | 12 | import os 13 | import sys 14 | 15 | from io import StringIO 16 | from unittest import TestCase, TestLoader, TextTestRunner 17 | 18 | import jsonschema 19 | import jsonschema.exceptions 20 | 21 | import yaml 22 | 23 | ROOT = os.path.dirname(os.path.dirname(os.path.realpath(__file__))) 24 | DATA_ROOT = os.path.join(ROOT, 'public/conference') 25 | YAML_SCHEMA = None 26 | 27 | def load_conference_yaml_schema(): 28 | global YAML_SCHEMA 29 | with open(os.path.join(ROOT, 'conference-yaml-schema.yml'), 'r') as schema: 30 | YAML_SCHEMA = yaml.load(schema, Loader=yaml.SafeLoader) 31 | 32 | 33 | class ConferenceTest(TestCase): 34 | def test_conference_yaml_schema(self): 35 | self.assertTrue(os.path.isdir(DATA_ROOT)) 36 | for sub in os.listdir(DATA_ROOT): 37 | subdir = os.path.join(DATA_ROOT, sub) 38 | if os.path.isdir(subdir): 39 | for conf in os.listdir(subdir): 40 | if not conf.endswith('.yml'): 41 | continue 42 | with self.subTest(conf=conf): 43 | conference_yml_path = os.path.join(DATA_ROOT, sub, conf) 44 | with open(conference_yml_path, 'r') as conference_yml_file: 45 | try: 46 | conference_yml = yaml.load(conference_yml_file.read(), Loader=yaml.SafeLoader) 47 | except Exception: 48 | self.fail(msg=f'Conference \033[1;31m{conf}\033[m contains invalid YAML') 49 | try: 50 | jsonschema.validate(conference_yml, YAML_SCHEMA) 51 | except jsonschema.exceptions.ValidationError: 52 | self.fail(msg=f'Conference \033[1;31m{conf}\033[m contains invalid properties') 53 | 54 | 55 | def run_test(testcase, msg): 56 | output = StringIO() 57 | suite = TestLoader().loadTestsFromTestCase(testcase) 58 | runner = TextTestRunner(output, verbosity=0) 59 | results = runner.run(suite) 60 | if not results.wasSuccessful(): 61 | print(output.getvalue()) 62 | print(msg.format(len(results.failures))) 63 | sys.exit(1) 64 | 65 | 66 | def usage(): 67 | print(__doc__) 68 | 69 | 70 | if __name__ == '__main__': 71 | 72 | if '-h' in sys.argv or '--help' in sys.argv: 73 | usage() 74 | sys.exit(0) 75 | 76 | load_conference_yaml_schema() 77 | run_test(ConferenceTest, 78 | msg=('\033[1;31mThere are {0} error(s) inside repo. Please fix the errors and commit again.\033[m')) 79 | -------------------------------------------------------------------------------- /public/conference/DBIR/vldb.yml: -------------------------------------------------------------------------------- 1 | - title: VLDB 2 | description: International Conference on Very Large Data Bases 3 | sub: DBIR 4 | rank: A 5 | TierLevel: Second 6 | dblp: vldb 7 | confs: 8 | - year: 2021 9 | id: vldb21 10 | link: http://www.vldb.org/2021/ 11 | timeline: 12 | - deadline: '2020-04-01 17:00:00' 13 | - deadline: '2020-05-01 17:00:00' 14 | - deadline: '2020-06-01 17:00:00' 15 | - deadline: '2020-07-01 17:00:00' 16 | - deadline: '2020-08-01 17:00:00' 17 | - deadline: '2020-09-01 17:00:00' 18 | - deadline: '2020-10-01 17:00:00' 19 | - deadline: '2020-11-01 17:00:00' 20 | - deadline: '2020-12-01 17:00:00' 21 | - deadline: '2021-01-01 17:00:00' 22 | - deadline: '2021-02-01 17:00:00' 23 | - deadline: '2021-03-01 17:00:00' 24 | timezone: UTC-7 25 | date: August 16-20, 2021 26 | place: Copenhagen, Denmark 27 | - year: 2022 28 | id: vldb22 29 | link: http://www.vldb.org/2022/ 30 | timeline: 31 | - deadline: '2021-04-01 17:00:00' 32 | - deadline: '2021-05-01 17:00:00' 33 | - deadline: '2021-06-01 17:00:00' 34 | - deadline: '2021-07-01 17:00:00' 35 | - deadline: '2021-08-01 17:00:00' 36 | - deadline: '2021-09-01 17:00:00' 37 | - deadline: '2021-10-01 17:00:00' 38 | - deadline: '2021-11-01 17:00:00' 39 | - deadline: '2021-12-01 17:00:00' 40 | - deadline: '2022-01-01 17:00:00' 41 | - deadline: '2022-02-01 17:00:00' 42 | - deadline: '2022-03-01 17:00:00' 43 | timezone: UTC-7 44 | date: September 05-09, 2022 45 | place: Sydney, Australia 46 | - year: 2023 47 | id: vldb23 48 | link: http://www.vldb.org/2023/ 49 | timeline: 50 | - deadline: '2022-04-01 17:00:00' 51 | - deadline: '2022-05-01 17:00:00' 52 | - deadline: '2022-06-01 17:00:00' 53 | - deadline: '2022-07-01 17:00:00' 54 | - deadline: '2022-08-01 17:00:00' 55 | - deadline: '2022-09-01 17:00:00' 56 | - deadline: '2022-10-01 17:00:00' 57 | - deadline: '2022-11-01 17:00:00' 58 | - deadline: '2022-12-01 17:00:00' 59 | - deadline: '2023-01-01 17:00:00' 60 | - deadline: '2023-02-01 17:00:00' 61 | - deadline: '2023-03-01 17:00:00' 62 | timezone: UTC-7 63 | date: August 28 to September 1, 2023 64 | place: Vancouver, Canada 65 | - year: 2024 66 | id: vldb24 67 | link: http://www.vldb.org/2024/ 68 | timeline: 69 | - deadline: '2023-04-01 17:00:00' 70 | - deadline: '2023-05-01 17:00:00' 71 | - deadline: '2023-06-01 17:00:00' 72 | - deadline: '2023-07-01 17:00:00' 73 | - deadline: '2023-08-01 17:00:00' 74 | - deadline: '2023-09-01 17:00:00' 75 | - deadline: '2023-10-01 17:00:00' 76 | - deadline: '2023-11-01 17:00:00' 77 | - deadline: '2023-12-01 17:00:00' 78 | - deadline: '2024-01-01 17:00:00' 79 | - deadline: '2024-02-01 17:00:00' 80 | - deadline: '2024-03-01 17:00:00' 81 | timezone: UTC-7 82 | date: August 25-29, 2024 83 | place: Guangzhou, China (and hybrid) -------------------------------------------------------------------------------- /README.zh-CN.md: -------------------------------------------------------------------------------- 1 | # sufe-cs-conf-ddl 2 | 3 | 一款帮助上财信息人能更好地追踪院标常任轨🎰计算机会议截稿日期⏳的工具🔧。我们提供了一个双重检索系统来过滤出您真正关心的那个会议⏰。 4 | 5 | 如果您觉得对您的研究有所帮助,欢迎收藏❤️[网址](https://sufe-cs-conf-ddl.github.io/),分享并星标🌟本项目! 6 | 7 | 请参考[本网址](https://github.com/lixin4ever/Conference-Acceptance-Rate) 查询不同会议接受率 。 8 | 9 | 希望大家都能论文高中🎉科研成果爆表⌚️! 10 | ## 示例: 11 | 12 | [![示例预览](.conf_list/screenshot.png)](https://github.com/SUFE-CS-CONF-DDL/sufe-cs-conf-ddl/blob/main/.conf_list/screenshot.png) 13 | 14 | ## 会议格式文件 15 | 会议的yaml示例文件格式: 16 | 17 | ```yaml 18 | - title: SIGIR 19 | description: International Conference on Research on Development in Information Retrieval 20 | sub: DBIR 21 | rank: A 22 | TierLevel: Second 23 | dblp: sigir 24 | confs: 25 | - year: 2021 26 | id: sigir21 27 | link: http://sigir.org/sigir2021/ 28 | timeline: 29 | - abstract_deadline: '2021-02-02 23:59:59' 30 | deadline: '2021-02-09 23:59:59' 31 | timezone: AoE 32 | date: July 11-15, 2021 33 | place: Virtual 34 | - year: 2022 35 | id: sigir22 36 | link: https://sigir.org/sigir2022/ 37 | timeline: 38 | - abstract_deadline: '2022-01-21 23:59:59' 39 | deadline: '2022-01-28 23:59:59' 40 | timezone: AoE 41 | date: July 11-15, 2022 42 | place: Madrid 43 | ``` 44 | 注意:YAML文件应当严格按照格式缩进要求,推荐用Sublime/Pycharm等进行文本编辑,会进行报错。 45 | 46 | 以上脚本项目的描述: 47 | 48 | > **yaml项目的描述** 49 | > 50 | > - `title`: 会议大写缩写名称, i.e. SIGIR 51 | > - `descripition`: 会议全名, i.e. International Conference on Research on Development in Information Retrieval 52 | > - `sub`: 会议在常任轨会议列表中的类别,与CCF分类基本类似. i.e. DBIR. 可参考下表 53 | > - `rank`: 会议的[CCF级别](https://www.ccf.org.cn/c/2019-04-25/663625.shtml). i.e. A 54 | > - `TierLevel`: 上财信管常任轨会议名单的[Tier级别](https://github.com/SUFE-CS-CONF-DDL/sufe-cs-conf-ddl/blob/main/.conf_list/SIME_tenure_CCF.xlsx) i.e. Second Tier. 55 | > - `dblp`: 会议的dblp网址后缀, 通常为会议的小写缩写. i.e. https://dblp.uni-trier.de/db/conf/sigir 56 | > - `confs`: 57 | > - `year`: 举办年份, i.e. 2022 58 | > - `id`: 会议名称&举办年份后两位, i.e. sigir22 59 | > - `link`: 会议主页网址. i.e. https://sigir.org/sigir2022/ 60 | > - `timeline`: 61 | > - `abstract_deadline*`: 会议摘要截止时间,非必要. i.e. '2022-01-21 23:59:59' 62 | > - `deadline`: 形如`yyyy-mm-dd hh:mm:ss` 或 `TBD`的确切截止时间, i.e. '2022-01-28 23:59:59' 63 | > - `comment*`: 额外辅助信息,非必要. i.e. comment: The final round of paper submission. 64 | > - `timezone`: 会议截止时间的时区. 只识别 UTC±X 或 AoE(UTC-12)格式, 其他所有时区应转化为 UTC 格式, 比如 EST=UTC-5. 65 | > - `date`: 会议的具体举办日期, i.e. July 11-15, 2022 66 | > - `place`: 会议的具体举办地点, i.e. Madrid, Spain/Virtual 67 | > 68 | > 未标注(*)的项目是yaml脚本的必要项目。 69 | 70 | 会议分类表: 71 | > - 并行与分布计算 72 | > sub: PDC 73 | > - 计算机图形学与多媒体 74 | > sub: CGM 75 | > - 理论计算机 76 | > sub: TC 77 | > - 人工智能 78 | > sub: AI 79 | > - 软件工程 80 | > sub: SE 81 | > - 数据库与信息检索 82 | > sub: DBIR 83 | > - 网络与信息安全 84 | > sub: NIS 85 | 86 | ## 添加新的会议方向和更新截止日 87 | 我们非常欢迎并十分感激您能在本项目组中提出贡献。🤟 88 | 89 | 添加新的会议方向和更新截止日的步骤 90 | - Fork这个项目仓库. 91 | - 通过提交会议的`yaml`文件来添加新的会议方向和更新截止日 92 | - 提交[Pull Request](https://github.com/SUFE-CS-CONF-DDL/sufe-cs-conf-ddl/pulls). 93 | 94 | 👨‍🏫 如果您对P&R操作不熟悉的话可以参考[本网址](https://chinese.freecodecamp.org/news/how-to-make-your-first-pull-request-on-github/) 。 95 | 96 | 97 | P&R后步骤: 98 | 1. 在本local工程项目下面git pull 99 | 2. Run `python merge_all.py` 100 | 3. Run `npm run build` 101 | 4. dist文件夹中的内容拖到`sufe-cs-conf-ddl.github.io`下面,push上去。 102 | 103 | 104 | ## 贡献 105 | 106 | 本项目当前由 [@SUFEHeisenberg](https://github.com/SUFEHeisenberg) 在 [@HuipingXie](https://github.com/HuipingXie) 帮助下创建👨🏻‍💻。 107 | 108 | 如果您喜欢本项目,能够为[@HuipingXie](https://github.com/HuipingXie) 介绍个女朋友👧的话我们将不胜感激! 109 | 110 | 如果您对共同维护本项目感兴趣,欢迎[邮箱私信](mailto:wangziyuan@163.sufe.edu.cn)👏。 111 | 112 | 灵感启发来自以下优秀项目: 113 | - [ai-deadlines](https://aideadlin.es/) 114 | - [ccfddl](https://ccfddl.github.io/) -------------------------------------------------------------------------------- /conference-yaml-schema.yml: -------------------------------------------------------------------------------- 1 | $schema: http://json-schema.org/draft-07/schema# 2 | description: Validation schema for SUFE-CS-CONF-DDL Specification 3.0.X. 3 | type: array 4 | items: 5 | type: object 6 | required: 7 | - title 8 | - description 9 | - sub 10 | - rank 11 | - TierLevel 12 | - dblp 13 | - confs 14 | properties: 15 | title: 16 | description: Short conference name, without year, uppercase 17 | type: string 18 | description: 19 | description: Description, or long name, with no session 20 | type: string 21 | sub: 22 | description: The category that the conference is labeled by SUFE SIME CS Conference Tenure Track. 23 | type: string 24 | enum: 25 | - PDC 26 | - CGM 27 | - TC 28 | - AI 29 | - SE 30 | - DBIR 31 | - NIS 32 | rank: 33 | description: The level that the conference is ranked by CCF, e.g., A, B, C 34 | type: string 35 | enum: 36 | - A 37 | - B 38 | - C 39 | - / 40 | TierLevel: 41 | description: The Tier that the conference is ranked in SUFE SIME tenure track lists, e.g., First, Second, Third 42 | type: string 43 | enum: 44 | - First 45 | - Second 46 | - Third 47 | - None 48 | dblp: 49 | description: The suffix in dblp url, e.g., iccv in dblp.uni-trier.de/db/conf/iccv 50 | type: string 51 | confs: 52 | type: array 53 | items: 54 | type: object 55 | required: 56 | - year 57 | - id 58 | - link 59 | - timeline 60 | - timezone 61 | - date 62 | - place 63 | properties: 64 | year: 65 | description: Year the conference is happening 66 | type: number 67 | id: 68 | description: conference name & year, lowercase 69 | type: string 70 | pattern: ^[a-z0-9-'&]+$ 71 | link: 72 | description: URL to the conference home page 73 | type: string 74 | format: uri 75 | timeline: 76 | type: array 77 | items: 78 | type: object 79 | required: 80 | - deadline 81 | properties: 82 | abstract_deadline: 83 | description: Abstract deadline if applicable, optional 84 | type: string 85 | format: date-time 86 | pattern: ^(\d{4}-\d{1,2}-\d{1,2} \d{1,2}:\d{1,2}:\d{1,2}|TBD)$ 87 | deadline: 88 | description: Deadline, in the format of yyyy-mm-dd hh:mm:ss or TBD 89 | type: string 90 | format: date-time 91 | pattern: ^(\d{4}-\d{1,2}-\d{1,2} \d{1,2}:\d{1,2}:\d{1,2}|TBD)$ 92 | comment: 93 | description: Some comments on the conference, optional 94 | type: string 95 | timezone: 96 | type: string 97 | enum: 98 | - UTC-12 99 | - UTC-11 100 | - UTC-10 101 | - UTC-9 102 | - UTC-8 103 | - UTC-7 104 | - UTC-6 105 | - UTC-5 106 | - UTC-4 107 | - UTC-3 108 | - UTC-2 109 | - UTC-1 110 | - UTC 111 | - UTC+0 112 | - UTC+1 113 | - UTC+2 114 | - UTC+3 115 | - UTC+4 116 | - UTC+5 117 | - UTC+6 118 | - UTC+7 119 | - UTC+8 120 | - UTC+9 121 | - UTC+10 122 | - UTC+11 123 | - UTC+12 124 | - AoE 125 | date: 126 | description: When the main conference is happening, e.g., Mar 12-16, 2021 127 | type: string 128 | place: 129 | description: Where the main conference is happening, e.g., city, country 130 | type: string -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # sufe-cs-conf-ddl 2 | 3 | English Docs | [中文文档](./README.zh-CN.md) 4 | 5 | A DDL⏳Countdown tools🔧 for a SUFE SIMEr to track down CS conference in tenure track lists, 6 | which can retrieve conference through CCF and TierLevel rank🎰. 7 | We provide a double search filtering system to derive THE conference you really cares about⏰. 8 | 9 | If you find it useful for your reseach, plz collect❤️ the [website](https://sufe-cs-conf-ddl.github.io/), SHARE and STAR🌟 the project! 10 | 11 | Refer to this [site](https://github.com/lixin4ever/Conference-Acceptance-Rate) to know about the conference acceptance ratio in different confs. 12 | 13 | Sincerely hope everyone can publish the paper successfully🎉and derive significant research results!🍾 14 | ## Demo: 15 | 16 | [![Demo Preview](.conf_list/screenshot.png)](https://github.com/SUFE-CS-CONF-DDL/sufe-cs-conf-ddl/blob/main/.conf_list/screenshot.png) 17 | 18 | 19 | ## Conference schema file 20 | The example yaml file of conference scripts: 21 | 22 | ```yaml 23 | - title: SIGIR 24 | description: International Conference on Research on Development in Information Retrieval 25 | sub: DBIR 26 | rank: A 27 | TierLevel: Second 28 | dblp: sigir 29 | confs: 30 | - year: 2021 31 | id: sigir21 32 | link: http://sigir.org/sigir2021/ 33 | timeline: 34 | - abstract_deadline: '2021-02-02 23:59:59' 35 | deadline: '2021-02-09 23:59:59' 36 | timezone: AoE 37 | date: July 11-15, 2021 38 | place: Virtual 39 | - year: 2022 40 | id: sigir22 41 | link: https://sigir.org/sigir2022/ 42 | timeline: 43 | - abstract_deadline: '2022-01-21 23:59:59' 44 | deadline: '2022-01-28 23:59:59' 45 | timezone: AoE 46 | date: July 11-15, 2022 47 | place: Madrid, Spain 48 | ``` 49 | Descriptions of all above scipts items. 50 | 51 | > **Description of yaml items** 52 | > 53 | > - `title`: Short name of conference in CAPITAL, i.e. SIGIR 54 | > - `descripition`: Full name of conference, i.e. International Conference on Research on Development in Information Retrieval 55 | > - `sub`: The conference category defines in tenure track lists, which is nearly similiar to CCF lists. i.e. DBIR. The detailed information can be found below. 56 | > - `rank`: [CCF level](https://www.ccf.org.cn/c/2019-04-25/663625.shtml) of the conferece. i.e. A 57 | > - `TierLevel`: [Tier Level](https://github.com/SUFE-CS-CONF-DDL/sufe-cs-conf-ddl/blob/main/.conf_list/SIME_tenure_CCF.xlsx) in SUFE SIME of the conference i.e. Second Tier. 58 | > - `dblp`: Suffix in dblp url, usually the lower-case of conf's short name. i.e. https://dblp.uni-trier.de/db/conf/sigir 59 | > - `confs`: 60 | > - `year`: The holding year, i.e. 2022 61 | > - `id`: conf name in lower-case&year, i.e. sigir22 62 | > - `link`: Home page url of conference. i.e. https://sigir.org/sigir2022/ 63 | > - `timeline`: 64 | > - `abstract_deadline*`: Abstract deadline if applicable, not necessary. i.e. '2022-01-21 23:59:59' 65 | > - `deadline`: Exact Deadline in the format of `yyyy-mm-dd hh:mm:ss` or `TBD`, i.e. '2022-01-28 23:59:59' 66 | > - `comment*`: Comments of the conference if you need, not necessary. i.e. comment: The final round of paper submission. 67 | > - `timezone`: Timezone of conference deadline. Only recognize UTC±X or AoE(UTC-12), all of the other timezones should transform to UTC type, such as EST=UTC-5. 68 | > - `date`: The exact holding date of the conference, i.e. July 11-15, 2022 69 | > - `place`: The holding place of the conference, i.e. Madrid, Spain/Virtual 70 | > 71 | > Items **without** (*) marks is necessary in this conference yaml file. 72 | 73 | The conference category table: 74 | > - Parallel and Distributed Computing 75 | > sub: PDC 76 | > - Computer Graphics and Multimedia 77 | > sub: CGM 78 | > - Theoretical Computer 79 | > sub: TC 80 | > - Artificial Intelligence 81 | > sub: AI 82 | > - Software Engineering 83 | > sub: SE 84 | > - Databases and information retrieval 85 | > sub: DBIR 86 | > - Network and Information Security 87 | > sub: NIS 88 | 89 | 90 | ## Add New Conference Tracks and Update DDL 91 | We would welcome and be appreciated a lot if you can propose contributions.🤟 92 | 93 | Steps to add new conference tracks and update ddl: 94 | - Fork this repo. 95 | - Add new conf tracks or update DDL via commit new conf yaml file 96 | - Send A [Pull Request](https://github.com/SUFE-CS-CONF-DDL/sufe-cs-conf-ddl/pulls). 97 | 98 | 👨‍🏫 Refer to [this page](https://chinese.freecodecamp.org/news/how-to-make-your-first-pull-request-on-github/) 99 | you're not familiar with commit pull&request. 100 | 101 | Steps after P&R: 102 | 1. In local projects Run `git pull` 103 | 2. Run `python merge_all.py` 104 | 3. Run `npm run build` 105 | 4. Drag things under dist dir into `sufe-cs-conf-ddl.github.io`,then git push。 106 | 107 | 108 | ## Contribution 109 | Created by [@SUFEHeisenberg](https://github.com/SUFEHeisenberg) with the help of [@HuipingXie](https://github.com/HuipingXie) by now👨🏻‍💻. 110 | 111 | It would be appreciated that introducing a girlfriend 👧 to [@HuipingXie](https://github.com/HuipingXie) if you like the project! 112 | 113 | If you are interesed in maintaining this project, contact me via my [email](mailto:wangziyuan@163.sufe.edu.cn)👏. 114 | 115 | Inspried by following excellent projects: 116 | - [ai-deadlines](https://aideadlin.es/) 117 | - [ccfddl](https://ccfddl.github.io/) -------------------------------------------------------------------------------- /src/components/TimeLine.vue: -------------------------------------------------------------------------------- 1 | 26 | 27 | 262 | 375 | -------------------------------------------------------------------------------- /src/components/Home.vue: -------------------------------------------------------------------------------- 1 | 115 | 116 | 442 | 443 | 556 | --------------------------------------------------------------------------------