https://github.com/scientificcomputing/scientificcomputing.github.io
https://github.com/scientificcomputing/scientificcomputing.github.io
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/scientificcomputing/scientificcomputing.github.io
- Owner: scientificcomputing
- License: cc-by-4.0
- Created: 2022-11-19T20:20:18.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2026-01-22T11:47:29.000Z (6 months ago)
- Last Synced: 2026-01-23T02:34:16.495Z (6 months ago)
- Homepage: https://scientificcomputing.github.io
- Size: 176 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 13
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README

# scientificcomputing.github.io
The resources for generating .
## How to add a paper with repository?
Please fill in [https://github.com/scientificcomputing/scientificcomputing.github.io/issues/new?assignees=&labels=new-repo&projects=&template=repository.yml&title=%5BAdd+repo%5D%3A+](https://github.com/scientificcomputing/scientificcomputing.github.io/issues/new?assignees=&labels=new-repo&projects=&template=repository.yml&title=%5BAdd+repo%5D%3A+)
## How to add a paper relating to a software?
Please fill in [https://github.com/scientificcomputing/scientificcomputing.github.io/issues/new?assignees=&labels=new-package&projects=&template=package.yml&title=%5BAdd+package%5D%3A+](https://github.com/scientificcomputing/scientificcomputing.github.io/issues/new?assignees=&labels=new-package&projects=&template=package.yml&title=%5BAdd+package%5D%3A+)
# Contribute to the webpage
To contribute, please make a fork of the repository and clone it to your local system, then make a new branch with
```bash
git checkout -b name_of_author/describe_feature
```
Then add the relevant text.
Next ensure that the webpage builds, this can be done with
```bash
python3 -m venv sc_webpage_env
source sc_webpage_env/bin/activate
python3 -m pip install .
cd docs
jupyter book build --html --check-links --strict
```
Inspect the webpage locally by running
```bash
python3 -m http.server -d _build/html 8000
```
and opening a browser at `http://localhost:8000`.
Before you push the changes, ensure that the text is properly formatted, run
```bash
pre-commit run --all
```
Then, make corrections and commit any changes before re-running pre-commit.
Push the branch to your fork, and then make a pull request through the github web-interface.