-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from rsalz47/dungwinux
normalize CRLF and update README
- Loading branch information
Showing
17 changed files
with
3,895 additions
and
3,893 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,45 @@ | ||
env: | ||
browser: true | ||
es2021: true | ||
extends: xo | ||
# extends: eslint:recommended | ||
overrides: [] | ||
parserOptions: | ||
ecmaVersion: latest | ||
sourceType: module | ||
rules: | ||
indent: | ||
- error | ||
- 4 | ||
linebreak-style: off | ||
quotes: | ||
- error | ||
- double | ||
no-empty: warn | ||
semi: | ||
- error | ||
- always | ||
no-unreachable: error | ||
no-constant-binary-expression: error | ||
no-unreachable-loop: error | ||
no-use-before-define: error | ||
no-constructor-return: error | ||
no-await-in-loop: error | ||
array-callback-return: error | ||
require-atomic-updates: error | ||
no-unmodified-loop-condition: error | ||
no-template-curly-in-string: error | ||
no-self-compare: error | ||
no-duplicate-imports: error | ||
prefer-rest-params: error | ||
no-empty-function: error | ||
generator-star-spacing: off | ||
comma-dangle: off | ||
array-element-newline: off | ||
no-return-assign: off | ||
prefer-const: warn | ||
max-len: | ||
- error | ||
- { code: 100 } | ||
no-unused-expressions: warn | ||
no-unused-vars: warn | ||
env: | ||
browser: true | ||
es2021: true | ||
extends: xo | ||
# extends: eslint:recommended | ||
overrides: [] | ||
parserOptions: | ||
ecmaVersion: latest | ||
sourceType: module | ||
rules: | ||
indent: | ||
- error | ||
- 4 | ||
linebreak-style: off | ||
quotes: | ||
- error | ||
- double | ||
no-empty: warn | ||
semi: | ||
- error | ||
- always | ||
no-unreachable: error | ||
no-constant-binary-expression: error | ||
no-unreachable-loop: error | ||
no-use-before-define: error | ||
no-constructor-return: error | ||
no-await-in-loop: error | ||
array-callback-return: error | ||
require-atomic-updates: error | ||
no-unmodified-loop-condition: error | ||
no-template-curly-in-string: error | ||
no-self-compare: error | ||
no-duplicate-imports: error | ||
prefer-rest-params: error | ||
no-empty-function: error | ||
generator-star-spacing: off | ||
comma-dangle: off | ||
array-element-newline: off | ||
no-return-assign: off | ||
prefer-const: warn | ||
max-len: | ||
- error | ||
- { code: 100 } | ||
no-unused-expressions: warn | ||
no-unused-vars: warn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* text=auto |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
/node_modules | ||
./package-lock.json | ||
./package.json | ||
.gitignore | ||
/node_modules | ||
./package-lock.json | ||
./package.json | ||
.gitignore | ||
# :) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
MIT License | ||
Copyright (c) 2022 rsalz47 | ||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. | ||
MIT License | ||
|
||
Copyright (c) 2022 rsalz47 | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,30 @@ | ||
# cs326-final-gimel | ||
:) | ||
|
||
### 4 types of Data: | ||
|
||
- User annotations/Comments | ||
- Actual executable that is analyzed by analysis programs | ||
- Output generated by program analysis tools | ||
- Config data | ||
|
||
### Visualizations: | ||
|
||
> Coverage Graph | ||
- Simple x/y line graph, user can dymanically define | ||
> Colored control-flow (either via cfg's or source code) | ||
> | ||
|
||
### Frontend: | ||
|
||
> Initially starts with Login Page | ||
- Username | ||
- Password | ||
- Login button | ||
> | ||
|
||
### Documentation: | ||
|
||
- [Ideas](docs/ideas.md) | ||
- [Milestone 1](docs/milestone1.md) | ||
# cs326-final-gimel | ||
:) | ||
|
||
### 4 types of Data: | ||
|
||
- User annotations/Comments | ||
- Actual executable that is analyzed by analysis programs | ||
- Output generated by program analysis tools | ||
- Config data | ||
|
||
### Visualizations: | ||
|
||
> Coverage Graph | ||
- Simple x/y line graph, user can dymanically define | ||
> Colored control-flow (either via cfg's or source code) | ||
> | ||
|
||
### Frontend: | ||
|
||
> Initially starts with Login Page | ||
- Username | ||
- Password | ||
- Login button | ||
> | ||
|
||
### Documentation: | ||
|
||
- [Ideas](docs/ideas.md) | ||
- [Milestone 1](docs/milestone1.md) | ||
- [Milestone 2](docs/milestone2.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,41 +1,41 @@ | ||
#### 326 Final Project | ||
|
||
#### Team Name | ||
- Gimel | ||
|
||
#### Application Name | ||
- fizzy | ||
|
||
#### Team Overview | ||
- Gilbert Hoermann - seal9055 | ||
- Dung Nguyen - dungwinux | ||
- Ronan Salz - rsalz47 | ||
|
||
#### Innovative Idea | ||
Our project is meant to be a tool for data visualization. The application be targeted at small-team based groups of users with the intention of a private instance being hosted locally. The | ||
application enables multiple users to review and annotate the displayed data. Users will be | ||
provided with multiple formats of data visualization to best suit their needs. | ||
|
||
This idea does not directly correlate with existing applications as far as we are aware, but it is | ||
intended to be used with program analysis tooling such as fuzzers/tracers that emit a lot of | ||
structured data that would benefit from human readable visualization. | ||
|
||
#### Important Components | ||
- User Interface | ||
- First step requires creation of a project, after which users will be able to log into the | ||
application and access the project. | ||
- Admin interface that can be used to manage account access | ||
- Configuration tab to setup some options for the project | ||
- Multiple tabs to display data in different formats such as line graphs, control-flow-graphs, | ||
and a source code viewer. | ||
|
||
- Server side | ||
- Manage multiple connections for both end users and data transmission from the application that | ||
provides the data to be visualized | ||
- Implement logic to parse and visualize data | ||
- Manage logins | ||
|
||
- Database | ||
- Store User Accounts | ||
- Store provided data and edits the users made towards the existing data | ||
- Configuration settings | ||
#### 326 Final Project | ||
|
||
#### Team Name | ||
- Gimel | ||
|
||
#### Application Name | ||
- fizzy | ||
|
||
#### Team Overview | ||
- Gilbert Hoermann - seal9055 | ||
- Dung Nguyen - dungwinux | ||
- Ronan Salz - rsalz47 | ||
|
||
#### Innovative Idea | ||
Our project is meant to be a tool for data visualization. The application be targeted at small-team based groups of users with the intention of a private instance being hosted locally. The | ||
application enables multiple users to review and annotate the displayed data. Users will be | ||
provided with multiple formats of data visualization to best suit their needs. | ||
|
||
This idea does not directly correlate with existing applications as far as we are aware, but it is | ||
intended to be used with program analysis tooling such as fuzzers/tracers that emit a lot of | ||
structured data that would benefit from human readable visualization. | ||
|
||
#### Important Components | ||
- User Interface | ||
- First step requires creation of a project, after which users will be able to log into the | ||
application and access the project. | ||
- Admin interface that can be used to manage account access | ||
- Configuration tab to setup some options for the project | ||
- Multiple tabs to display data in different formats such as line graphs, control-flow-graphs, | ||
and a source code viewer. | ||
|
||
- Server side | ||
- Manage multiple connections for both end users and data transmission from the application that | ||
provides the data to be visualized | ||
- Implement logic to parse and visualize data | ||
- Manage logins | ||
|
||
- Database | ||
- Store User Accounts | ||
- Store provided data and edits the users made towards the existing data | ||
- Configuration settings |
Oops, something went wrong.