Skip to content

Commit b8b6d01

Browse files
committed
Initial commit
0 parents  commit b8b6d01

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+7882
-0
lines changed

.babelrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"presets": [
3+
["env", {
4+
"targets": {
5+
"browsers": ["last 2 versions"]
6+
}
7+
}]
8+
]
9+
}

.editorconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
root = true
2+
3+
[*]
4+
indent_style = space
5+
indent_size = 2
6+
insert_final_newline = true
7+
trim_trailing_whitespace = true
8+
9+
[*.md]
10+
trim_trailing_whitespace = false

.gitignore

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
8+
# Runtime data
9+
pids
10+
*.pid
11+
*.seed
12+
*.pid.lock
13+
14+
# Directory for instrumented libs generated by jscoverage/JSCover
15+
lib-cov
16+
17+
# Coverage directory used by tools like istanbul
18+
coverage
19+
20+
# nyc test coverage
21+
.nyc_output
22+
23+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
24+
.grunt
25+
26+
# Bower dependency directory (https://bower.io/)
27+
bower_components
28+
29+
# node-waf configuration
30+
.lock-wscript
31+
32+
# Compiled binary addons (https://nodejs.org/api/addons.html)
33+
build/Release
34+
35+
# Dependency directories
36+
node_modules/
37+
jspm_packages/
38+
39+
# Typescript v1 declaration files
40+
typings/
41+
42+
# Optional npm cache directory
43+
.npm
44+
45+
# Optional eslint cache
46+
.eslintcache
47+
48+
# Optional REPL history
49+
.node_repl_history
50+
51+
# Output of 'npm pack'
52+
*.tgz
53+
54+
# Yarn Integrity file
55+
.yarn-integrity
56+
57+
# dotenv environment variables file
58+
.env
59+
60+
# IntelliJ IDEA
61+
.idea/
62+
*.iml
63+
*.ipr
64+
65+
# Generated files
66+
build/
67+
dist/

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# 1.0.0 - December 10th, 2017
2+
- Initial release

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2017 Jasper van Merle
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.

README.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
# CHelper Companion
2+
An alternative to the original CHelper extension. It fixes several broken parsers in the original extension and adds contest parsers.
3+
4+
## Supported websites
5+
| Website | Problem parser | Contest parser |
6+
|---------------------|----------------|----------------|
7+
| AtCoder ||* |
8+
| Bayan || |
9+
| CodeChef |* |* |
10+
| Codeforces ||* |
11+
| CSAcademy |* | |
12+
| E-Olymp |* |* |
13+
| Facebook Hacker Cup || |
14+
| Google Code Jam | ||
15+
| HackerEarth |* |* |
16+
| HackerRank |* |* |
17+
| Kattis ||* |
18+
| Timus |* |* |
19+
| USACO || |
20+
| Yandex || |
21+
22+
\* Not available (or working properly) in the original CHelper extension (v4.1.11.1)
23+
24+
## Packaging
25+
This section is meant for anyone who wants to package the extension manually, but is especially written for the Mozilla volunteers who need to re-package the extension to be able to diff-check it with what I submit to AMO.
26+
27+
Verions used:
28+
Node.js: 9.0.0
29+
Yarn: 1.3.2
30+
Windows 10 Pro
31+
32+
```bash
33+
# Clone the repository (if you are not a Mozilla reviewer)
34+
git clone https://github.com/jmerle/chelper-companion.git
35+
36+
# cd into the extension folder
37+
cd chelper-companion
38+
39+
# Install the dependencies
40+
yarn
41+
42+
# Package the app
43+
yarn package
44+
```
45+
46+
The packaged extension can be found in the `dist` directory.
47+
48+
## Credits
49+
This extension was made by [Jasper van Merle](https://github.com/jmerle). Much thanks to [Egor Kulikov](https://github.com/EgorKulikov) for making the CHelper plugin and the original extension.

description.txt

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
CHelper Companion parses programming problems and contests and sends them to the CHelper plugin for IntelliJ IDEA.
2+
3+
Problem parsers are available for the following websites:
4+
- Atcoder
5+
- Bayan
6+
- CodeChef*
7+
- Codeforces
8+
- CSAcademy*
9+
- E-Olymp*
10+
- Facebook Hacker Cup
11+
- HackerEarth*
12+
- HackerRank*
13+
- Kattis
14+
- Timus*
15+
- USACO
16+
- Yandex
17+
18+
Contest parsers are available for the following websites:
19+
- AtCoder*
20+
- CodeChef*
21+
- Codeforces*
22+
- E-Olymp*
23+
- Google Code Jam
24+
- HackerEarth*
25+
- HackerRank*
26+
- Kattis*
27+
- Timus*
28+
29+
* Not available (or working properly) in the original CHelper extension (v4.1.11.1)
30+
31+
Changelog
32+
33+
1.0.0 - December 10th, 2017
34+
- Initial release
35+
36+
Credits
37+
38+
This extension was made by Jasper van Merle. Much thanks to Egor Kulikov for making the CHelper plugin and the original extension.

icons/icon-128.png

3.28 KB
Loading

icons/icon-16.png

1.1 KB
Loading

icons/icon-19.png

1.52 KB
Loading

0 commit comments

Comments
 (0)