Skip to content

Commit d713c5a

Browse files
committed
add more conferences
1 parent 4fc8e04 commit d713c5a

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

pkgs/conference-deadlines/main.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,14 @@ def quit(self):
122122
*[("HotNets", y, f"https://conferences.sigcomm.org/hotnets/{y}/cfp.html") for y in range(2005, NOW+1)],
123123
*[("ATC", y, f"https://www.usenix.org/conference/atc{y % 100:02d}/call-for-papers") for y in range(2013, NOW+1)],
124124
*[("OSDI", y, f"https://www.usenix.org/conference/osdi{y % 100:02d}/call-for-papers") for y in range(2018, NOW+1)],
125+
*[("SnP", y, f"https://www.ieee-security.org/TC/SP{y}/cfpapers.html") for y in range(2015, NOW+1)],
126+
*[("Security", y, f"https://www.usenix.org/conference/usenixsecurity{y % 100:02d}/call-for-papers") for y in range(2013, NOW+1)],
127+
*[("MLSys", y, f"https://mlsys.org/Conferences/{y}/CallForPapers") for y in range(2020, NOW+1)],
128+
*[("SIGMOD", y, f"https://{y}.sigmod.org/calls_papers_sigmod_research.shtml") for y in range(2021, NOW+1)],
129+
*[("DSN", y, f"https://dsn{y}.github.io/cfpapers.html") for y in range(2025, NOW+1)],
130+
131+
# you could also have CCS, IEEE S&P, Usenix Security, then this covers the top systems conference
132+
# (some might include MLSys, SIGMOD, or DSN as well)
125133

126134
*[("NINES", 2026, "https://nines-conference.org/cfp")],
127135
*[("ATC", y, f"https://sigops.org/s/conferences/atc/{y}/cfp.html") for y in range(2026, NOW+1)],
@@ -130,6 +138,10 @@ def quit(self):
130138
*[("CoNEXT", y, f"https://conferences2.sigcomm.org/co-next/{y}/#!/cfp") for y in range(2012, NOW+1)],
131139
*[("SOSP", y, f"https://sigops.org/s/conferences/sosp/{y}/cfp.html") for y in range(2026, NOW+1)],
132140

141+
# different url pattern every year
142+
*[("CCS", 2026, "https://www.sigsac.org/ccs/CCS2026/call-for/call-for-papers.html")],
143+
144+
133145
# Note down some urls here:
134146
# https://www.asplos-conference.org/asplos2026/call-for-papers-asplos27/ asplos often does early cfp announcements on the previous years website. Where exactly is different every time.
135147
# some usenix conferences also do early announcements on the homepage instead of a separate cfp page, when the page still sort of under construction

0 commit comments

Comments
 (0)