https://github.com/joekir/algoexplore
A web framework for visualizing bit-level algorithms
https://github.com/joekir/algoexplore
algorithms d3js ssdeep
Last synced: 5 months ago
JSON representation
A web framework for visualizing bit-level algorithms
- Host: GitHub
- URL: https://github.com/joekir/algoexplore
- Owner: joekir
- License: mpl-2.0
- Created: 2020-11-30T06:13:32.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2024-10-26T18:23:31.000Z (over 1 year ago)
- Last Synced: 2024-10-26T20:17:08.985Z (over 1 year ago)
- Topics: algorithms, d3js, ssdeep
- Language: Go
- Homepage: https://algoexplore.ca
- Size: 16.8 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# algoexplore
[](https://github.com/joekir/algoexplore/actions/workflows/go_build.yml)
[](https://codecov.io/gh/joekir/algoexplore)
[](https://goreportcard.com/report/github.com/joekir/algoexplore)
[](https://github.com/joekir/algoexplore/actions/workflows/codeql-analysis.yml)
[](https://github.com/joekir/algoexplore/actions/workflows/main.yml)
A web framework for visualizing bit-level algorithms.
The intent to help either your understanding or for teaching of algorithms to others
## Leveraging the framework
You need to implement an "algo" in Golang that implements the interfaces in Algo.go
See internal/algos/ctph as an example implementation
<`TODO` frontend instructions>
## Examples of usage
- [https://algoexplore.ca](https://algoexplore.ca)
## Running
```
$ COOKIE_SESSION_KEY=0x`openssl rand -hex 8` go run cmd/web_server/main.go
```
## Running with debug logging
_via [glog](https://pkg.go.dev/github.com/golang/glog)_
```
$ COOKIE_SESSION_KEY=0x`openssl rand -hex 8` go run cmd/web_server/main.go --logtostderr=1
```
## Deploying to fly.io
```
1. flyctl secrets set COOKIE_SESSION_KEY=0x`openssl rand -hex 8`
2. fly launch
```
## Running Tests
```
$ go test -race ./...
```