Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wdhif/notes
My personal and dogmatic notes about algorithms, data structures and other knowledges. Use at your own risks.
https://github.com/wdhif/notes
algorithms hugo knowledge notes
Last synced: 6 days ago
JSON representation
My personal and dogmatic notes about algorithms, data structures and other knowledges. Use at your own risks.
- Host: GitHub
- URL: https://github.com/wdhif/notes
- Owner: wdhif
- License: apache-2.0
- Created: 2018-12-25T15:30:44.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2023-10-26T16:32:02.000Z (about 1 year ago)
- Last Synced: 2023-10-26T17:32:24.835Z (about 1 year ago)
- Topics: algorithms, hugo, knowledge, notes
- Language: Python
- Homepage: https://wdhif.github.io/notes
- Size: 7.53 MB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# notes
My personal and dogmatic notes about algorithms, data structures and other knowledges. Use at your own risks.
## Website installation
My notes are powered by [Hugo](https://gohugo.io). To build the website, you must first start by cloning the [Hugo Book](https://github.com/alex-shpak/hugo-book) theme which is managed by a submodule.
```
git submodule init
git submodule update
```Run hugo server
```
docker run --rm -it -v $(pwd)/website:/src -v $(pwd)/docs:/docs -p 1313:1313 klakegg/hugo:ext-alpine server
```Build website
```
docker run --rm -it -v $(pwd)/website:/src -v $(pwd)/docs:/docs klakegg/hugo:ext-alpine
```