Hello,
My SO is learning coding. I wanted a convenient way for her to consume the content from roadmap.sh.
I hope it can help someone else.
If you want your own roadmap:
- Fork or Copy-paste the md files you are interested in your own gist.
| # | |
| # This is the main Apache HTTP server configuration file. It contains the | |
| # configuration directives that give the server its instructions. | |
| # See <URL:http://httpd.apache.org/docs/2.4/> for detailed information. | |
| # In particular, see | |
| # <URL:http://httpd.apache.org/docs/2.4/mod/directives.html> | |
| # for a discussion of each configuration directive. | |
| # | |
| # Do NOT simply read the instructions in here without understanding | |
| # what they do. They're here only as hints or reminders. If you are unsure |
| # Quick and easy one line command to setup a global .gitignore file and ignore macOS .DS_store files globally | |
| git config --global core.excludesfile "~/.gitignore" && echo .DS_Store >> ~/.gitignore |
Hello,
My SO is learning coding. I wanted a convenient way for her to consume the content from roadmap.sh.
I hope it can help someone else.
If you want your own roadmap:
| project_name/ | |
| │ | |
| ├── data/ # All data-related directories and files | |
| │ ├── raw/ # Original, immutable data dump | |
| │ ├── processed/ # Data transformed for modeling, such as TFRecords or HDF5 | |
| │ ├── interim/ # Temporary processed datasets, possibly smaller or for prototyping | |
| │ | |
| ├── docs/ # Project documentation | |
| │ ├── api/ # API reference | |
| │ ├── design_docs/ # Design documents, architectural choices |