forked from agrawal-d/cph
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
133 lines (125 loc) · 4.75 KB
/
index.html
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="icon.png" type="image/x-icon" />
<title>Competitive Programming Helper (CPH) - VS Code extension</title>
<meta
name="description"
content="Visual Sudio Code extension that extension allows you to quickly compile, run and judge competitive programming problems from within the IDE. You can automatically download testcases write & test your own problems. Once you are done, you can submit your solutions directly with the click of a button."
/>
<title>Document</title>
<style>
* {
box-sizing: border-box;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI',
Roboto, Helvetica, Arial, sans-serif, 'Apple Color Emoji',
'Segoe UI Emoji', 'Segoe UI Symbol';
margin: 8px;
background-color: rgb(252, 248, 238);
}
.main {
width: 900px;
max-width: 100%;
margin: 0 auto;
margin-top: 100px;
box-sizing: border-box;
}
.main-ss {
max-width: 90%;
display: block;
margin: 0 auto;
}
hr {
border: 0px;
border-top: 1px solid rgb(190, 190, 190);
}
button {
padding: 10px 30px;
}
.text-center {
text-align: center;
}
@media (max-width: 920px) {
.main {
margin-top: 0px;
}
}
</style>
</head>
<body>
<div class="main">
<div class="text-center">
<h1>Competetive Programming Helper</h1>
<p>
CPH is a <b>Visual Studio Code</b> extension that extension
allows you to quickly compile, run and judge competitive
programming problems from within the IDE. You can
automatically download testcases write & test your own
problems. Once you are done, you can submit your solutions
directly with the click of a button!
</p>
<img
src="screenshots/screenshot-main.png"
alt="CPH Screenshot"
class="main-ss"
/>
<br />
<a
href="https://marketplace.visualstudio.com/items?itemName=DivyanshuAgrawal.competitive-programming-helper"
>
<button>Install Extension</button></a
>
<a href="https://github.com/agrawal-d/cph"
><button>Learn more</button></a
>
</div>
<h2>Features</h2>
<ul>
<li>
Autmatic compilation with display for compilation errors.
</li>
<li>
Intelligent judge with support for signals, time outs and
run time errors.
</li>
<li>Works with Competitive Companion.</li>
<li>
<a href="https://github.com/agrawal-d/cph-submit"
>Codeforces auto-submit</a
>
integration.
</li>
<li>
<a
href="https://github.com/agrawal-d/cph/blob/main/docs/user-guide.md"
>Kattis auto-submit</a
>
integration.
</li>
<li>Works locally for your own problems.</li>
<li>Support for several languages.</li>
</ul>
<h2>Documentation</h2>
<p>
You can learn more about how you can use CPH
<a href="https://github.com/agrawal-d/cph#quick-start">here</a>.
</p>
<h2>License</h2>
<p>
CPH is free software. It software is licensed under GPL Version
3 or later ( at your choice ). You can access the source code
<a href="https://github.com/agrawal-d/cph">here</a>.
</p>
<hr />
<small
>Created by
<a href="https://github.com/agrawal-d">agrawal-d</a></small
>
</div>
</body>
</html>