From cead7f651a97538513526e285fb5af4d65d1e3fa Mon Sep 17 00:00:00 2001 From: jverzani Date: Wed, 23 Apr 2025 11:40:01 -0400 Subject: [PATCH 1/2] typos --- .#_typos.toml | 1 + quarto/misc/julia_interfaces.qmd | 2 +- quarto/misc/quick_notes.qmd | 2 +- quarto/precalc/julia_overview.qmd | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) create mode 120000 .#_typos.toml diff --git a/.#_typos.toml b/.#_typos.toml new file mode 120000 index 0000000..ca3dd61 --- /dev/null +++ b/.#_typos.toml @@ -0,0 +1 @@ +jverzani@john-verzanis-macbook-pro.local.64723:32 \ No newline at end of file diff --git a/quarto/misc/julia_interfaces.qmd b/quarto/misc/julia_interfaces.qmd index cf6d9ee..c527f59 100644 --- a/quarto/misc/julia_interfaces.qmd +++ b/quarto/misc/julia_interfaces.qmd @@ -80,7 +80,7 @@ Pluto has a built-in package management system that manages the installation of "Project [Jupyter](https://jupyter.org/) exists to develop open-source software, open-standards, and services for interactive computing across dozens of programming languages." The `IJulia` package allows `Julia` to be one of these programming languages. This package must be installed prior to use. -The Jupyter Project provides two web-based interfaces to `Julia`: the Jupyter notebook and the newer JupyterLab. The [binder](https://mybinder.org/) project use Juptyer notebooks for their primary interface to `Julia`. To use a binder notebook, follow this link: +The Jupyter Project provides two web-based interfaces to `Julia`: the Jupyter notebook and the newer JupyterLab. The [binder](https://mybinder.org/) project use Jupyter notebooks for their primary interface to `Julia`. To use a binder notebook, follow this link: [launch binder](https://mybinder.org/v2/gh/CalculusWithJulia/CwJScratchPad.git/master) diff --git a/quarto/misc/quick_notes.qmd b/quarto/misc/quick_notes.qmd index 3d4e68e..7cc070b 100644 --- a/quarto/misc/quick_notes.qmd +++ b/quarto/misc/quick_notes.qmd @@ -981,7 +981,7 @@ vcat([diff.(ex, [u,v])' for ex in F(u,v)]...) ### Divergence -Numerically, the divergence can be computed from the Jacobian by adding the diagonal elements. This is a numerically inefficient, as the other partial derivates must be found and discarded, but this is generally not an issue for these notes. The following uses `tr` (the trace from the `LinearAlgebra` package) to find the sum of a diagonal. +Numerically, the divergence can be computed from the Jacobian by adding the diagonal elements. This is a numerically inefficient, as the other partial derivatives must be found and discarded, but this is generally not an issue for these notes. The following uses `tr` (the trace from the `LinearAlgebra` package) to find the sum of a diagonal. ```{julia} diff --git a/quarto/precalc/julia_overview.qmd b/quarto/precalc/julia_overview.qmd index dc2e40e..bbd390d 100644 --- a/quarto/precalc/julia_overview.qmd +++ b/quarto/precalc/julia_overview.qmd @@ -97,7 +97,7 @@ julia> 2 + 2 * An IDE. For programmers, an integrated development environment is often used to manage bigger projects. `Julia` has `Juno` and `VSCode`. - * A notebook. The [Project Juptyer](https://jupyter.org/) provides a notebook interface for interacting with `Julia` and a more `IDE` style `jupyterlab` interface. A jupyter notebook has cells where commands are typed and immediately following is the printed output returned by `Julia`. The output of a cell depends on the state of the kernel when the cell is computed, not the order of the cells in the notebook. Cells have a number attached, showing the execution order. The `Juypter` notebook is used by `binder` and can be used locally through the `IJulia` package. This notebook has the ability to display many different types of outputs in addition to plain text, such as images, marked up math text, etc. + * A notebook. The [Project Jupyter](https://jupyter.org/) provides a notebook interface for interacting with `Julia` and a more `IDE` style `jupyterlab` interface. A jupyter notebook has cells where commands are typed and immediately following is the printed output returned by `Julia`. The output of a cell depends on the state of the kernel when the cell is computed, not the order of the cells in the notebook. Cells have a number attached, showing the execution order. The `Juypter` notebook is used by `binder` and can be used locally through the `IJulia` package. This notebook has the ability to display many different types of outputs in addition to plain text, such as images, marked up math text, etc. * The [Pluto](https://github.com/fonsp/Pluto.jl) package provides a *reactive* notebook interface. Reactive means when one "cell" is modified and executed, the new values cascade to all other dependent cells which in turn are updated. This is very useful for exploring a parameter space, say. Pluto notebooks can be exported as HTML files which make them easy to read online and – by clever design – embed the `.jl` file that can run through `Pluto` if it is downloaded. From 2dafd02065046d24cfd6cd241bd2abfd1a192b7e Mon Sep 17 00:00:00 2001 From: jverzani Date: Wed, 23 Apr 2025 11:49:39 -0400 Subject: [PATCH 2/2] typos --- .#_typos.toml | 1 - _typos.toml | 5 ++++- 2 files changed, 4 insertions(+), 2 deletions(-) delete mode 120000 .#_typos.toml diff --git a/.#_typos.toml b/.#_typos.toml deleted file mode 120000 index ca3dd61..0000000 --- a/.#_typos.toml +++ /dev/null @@ -1 +0,0 @@ -jverzani@john-verzanis-macbook-pro.local.64723:32 \ No newline at end of file diff --git a/_typos.toml b/_typos.toml index b071b3c..9381bfc 100644 --- a/_typos.toml +++ b/_typos.toml @@ -13,4 +13,7 @@ Strang = "Strang" multline = "multline" -infiniment = "infiniment" \ No newline at end of file +infiniment = "infiniment" + +typ = "typ" +Comput = "Comput"