-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (59 loc) · 2.93 KB
/
index.html
File metadata and controls
66 lines (59 loc) · 2.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" href="/dino-ai.jpg" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta name="keywords" content="Roars, Top CS Conferences, CSConfs, CS Conferences, Deadlines" />
<meta name="description"
content="CS Conference Deadlines (csconfs) is a web application that helps CS researchers and students keep track of important deadlines of top CS conferences. " />
<link rel="apple-touch-icon" href="/logo192.png" />
<link rel="manifest" href="/manifest.json" />
<title>CSConf: CS Conference Deadlines</title>
<!-- OpenGraph stuff -->
<meta property="og:title" content="CSConf - Computer Science Conference Deadlines" />
<meta property="og:description"
content="Track submission deadlines for top computer science conferences. Never miss a deadline for AI, ML, Security, Systems, and more CS conferences." />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://dynaroars.github.io/csconfs" />
<meta property="og:image" content="/dino-ai-OG-Size.png" />
</head>
<body>
<!-- Theme toggle button -->
<button class="theme-toggle" id="theme-toggle" aria-label="Toggle dark mode">
<span class="sun-icon">☀️</span>
<span class="moon-icon">🌙</span>
</button>
<script>
const savedTheme = localStorage.getItem('theme') || 'light';
document.documentElement.setAttribute('data-theme', savedTheme);
</script>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
<div
style="position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;">
<h1>CSConfs: CS Conference Deadlines</h1>
<p>
<strong>CSConf</strong> helps computer science researchers and
students keep track of important deadlines for top CS conferences
across various domains including SE, AI, ML, Security, Systems, and more.
</p>
<section id="deadlines">
<h2>Software Engineering (SE): ICSE, FSE, ASE, ISSTA</h2>
<h2>Programming Languages (PL): POPL, PLDI, OOPSLA, ICFP</h2>
<h2>Artificial Intelligence (AI): AAAI, IJCAI, ECAI</h2>
<h2>Machine Learning (ML): NeurIPS, ICML, ICLR, KDD</h2>
<h2>Computer Vision (CV): CVPR, ICCV, ECCV</h2>
<h2>Natural Language Processing (NLP): ACL, EMNLP, NAACL</h2>
<h2>Security & Privacy: IEEE S&P, USENIX Security, CCS, NDSS</h2>
<h2>Systems & Architecture: OSDI, SOSP, ISCA, ASPLOS, EuroSys</h2>
<h2>Theory & Algorithms: STOC, FOCS, SODA, ICALP</h2>
<h2>Human-Computer Interaction (HCI): CHI, UIST, CSCW, Ubicomp</h2>
<h2>Networking: SIGCOMM, NSDI, INFOCOM</h2>
<h2>Graphics & Interactive Techniques: SIGGRAPH, Eurographics</h2>
</section>
</div>
</body>
</html>