Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eduardozepeda/programming-notes
My programming notes a little bit of everything. Math, Javascript, Python, Go and even digital nomadism
https://github.com/eduardozepeda/programming-notes
ebooks epub notes pdf programming tutorial tutorials
Last synced: about 6 hours ago
JSON representation
My programming notes a little bit of everything. Math, Javascript, Python, Go and even digital nomadism
- Host: GitHub
- URL: https://github.com/eduardozepeda/programming-notes
- Owner: EduardoZepeda
- Created: 2021-10-15T16:44:22.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-09T16:50:15.000Z (7 days ago)
- Last Synced: 2024-11-09T17:37:14.117Z (7 days ago)
- Topics: ebooks, epub, notes, pdf, programming, tutorial, tutorials
- Language: Python
- Homepage:
- Size: 9.72 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My programming notes
Here are my programming notes, in spanish, most of them are from online courses and have been updated over the years from stackoverflow questions, youtube videos and other sources.
I started taking notes years ago, therefore some notes could be outdated (For example: Django book), please be careful when using them. I don't take any responsability for any consequence you could experience by using these notes.
The notes are in rst format, you can read them directly in github, or convert them to the format you're most comfortable with using pandoc or rst2 libraries.
## Requisites
To convert the files you'll need to install [pandoc](https://pandoc.org/installing.html). Please refer to the *Makefile* file for detailed instructions
## Quickstart
### Convert all rst in the Cursos directory to a single epub file
This instruction will convert all rst files to epub, one epub file for each rst file, and place them into the output directory.
```
make create/epub
```### Convert all rst in the Cursos directory to a single pdf file
This script will convert all rst files to pdf files, one pdf file for each rst file, and place them into the output directory.
```
make create/pdf
```