Skip to content

Commit

Permalink
resolve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
s2t2 committed Jun 27, 2024
1 parent 8cee022 commit 061f20a
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 30 deletions.
26 changes: 0 additions & 26 deletions docs/_quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -233,32 +233,6 @@ website:
- section:
href: notes/dev-tools/google-colab/advanced-integrations.ipynb
text: "Advanced Integrations"
<<<<<<< HEAD
=======
- "---------"
- section:
text: "B. Function Documentation and Testing" # In Depth
contents:
- section:
href: notes/python-lang/control-flow/function-docs.qmd
- section:
href: notes/python-lang/control-flow/unit-testing.qmd
- "---------"
- section:
text: "C. Handling and Raising Errors"
href: notes/python-lang/control-flow/errors.qmd
- "---------"
- section:
href: notes/python-modules/index.qmd
text: "D. Python Modules Overview"
contents:
- section:
href: notes/python-modules/datetime.qmd
- section:
href: notes/python-modules/random.qmd
- section:
href: notes/python-modules/statistics.qmd
>>>>>>> 827cb06dd45dff5b544831b45c79a80d6c2b3321

format:
# https://quarto.org/docs/reference/formats/html.html#table-of-contents
Expand Down
4 changes: 0 additions & 4 deletions docs/notes/dev-tools/index.qmd
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@ You'll need to familiarize yourself with a Python development environment. One o

In Python, we have a general choice between two development environments: Python notebooks vs local development, each offering its own strengths and trade-offs.

<<<<<<< HEAD
Python notebooks (\".ipynb\" documents) provide an easy and intuitive learning experience for beginners. They have code \"cells\" we can "play" to see the results and learn along the way. The integration of visual outputs along with code provides strengths in terms of presentation. Notebooks are also a popular choice among data science and machine learning practitioners, especially for quick prototypes, and rapid development. However for larger applications they might not be as suitable.
=======
Python notebooks (\".ipynb\" documents) provide an easy and intuitive learning experience for beginners. They have code \"cells\" we can \"play\" to see the results and learn along the way. The integration of visual outputs along with code provides strengths in terms of presentation. Notebooks are also a popular choice among data science and machine learning practitioners, especially for quick prototypes, and rapid development. However for larger applications they might not be as suitable.
>>>>>>> 827cb06dd45dff5b544831b45c79a80d6c2b3321

Local development environments are used primarily for software development purposes, and for larger-scale applications which may span across dozens of files. The local development environment involves command-line programming tools that can be tricky to install and configure for beginners. For some types of applications, such as web applications, local development may be the only suitable option.

Expand Down

0 comments on commit 061f20a

Please sign in to comment.