Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rennamahcus/plagiarismchecker
A Plagiarism Checker!
https://github.com/rennamahcus/plagiarismchecker
Last synced: about 2 months ago
JSON representation
A Plagiarism Checker!
- Host: GitHub
- URL: https://github.com/rennamahcus/plagiarismchecker
- Owner: rennaMAhcuS
- License: other
- Created: 2024-10-11T08:55:38.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2024-12-09T14:53:31.000Z (about 2 months ago)
- Last Synced: 2024-12-09T15:37:53.529Z (about 2 months ago)
- Language: C++
- Homepage:
- Size: 608 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Plagiarism Checker - CS293 Project 2024
A Plagiarism Checker!
[**Source**](https://github.com/SuperSat001/CS293-Project-2024) - contains the problem statement and the required files.
## Instructions to use the `Dockerfile`
For the first time, run
```sh
docker build . --tag copycatchers
docker run --interactive --tty --volume .:/home/Loki/plagiarism_checker --name=NP-MOS --network=bridge --hostname=Midgard copycatchers:latest
```To use the docker container, run
```sh
docker start --attach --interactive NP-MOS
```for a shorter command, use:
```sh
docker start -ai NP-MOS
```> [!NOTE]
>
> The password for the user **`Loki`** is `huffman`.## Instructions to add the formatter:
If not present, create a `.vscode` directory in the project repository, create a new file called `settings.json` and add the following code in it:
> [!IMPORTANT]
>
> ### `settings.json`
>
> ```json
> {
> "C_Cpp.clang_format_fallbackStyle": "{BasedOnStyle: Google, IndentWidth: 4, ColumnLimit: 0, AllowShortFunctionsOnASingleLine: All, BreakBeforeBraces: Attach}"
> }
> ```