diff --git a/assets/git-branches-source.xml b/assets/git-branches-source.xml
new file mode 100644
index 0000000..c78b1c2
--- /dev/null
+++ b/assets/git-branches-source.xml
@@ -0,0 +1,193 @@
+
+As of writing, my experience with LiveShare has been hit-or-miss, +so I'll suggest another mechanism for live collaboration. +Sometimes when I'm working on a Git repository +with a collague on Zoom, I'll share my screen and give my collaborator +control of my mouse and keyboard, or vice versa. Obviously +you should only do this with a collaborator you trust, but it's +a simple solution to quickly work together on the same repo! +
+
An easy way to edit an individual file is just to click
the pencil icon such as the one that appears on your README.
-This file is written in like this
.
+This file is written in Markdown
.
+like this
. Sites like
+
Try to edit your file to say something like I'm learning how to
use GitHub!
, perhaps adding a link back to this document
using
diff --git a/source/ch-jupyter.ptx b/source/ch-jupyter.ptx index c6228b7..97ae807 100644 --- a/source/ch-jupyter.ptx +++ b/source/ch-jupyter.ptx @@ -56,47 +56,81 @@ notebook for analysis.
Now, let's follow the instructions of the repository's
-README file (try out
the Codespace
+without saving your work long-term, but you can still create a fork
+with your changes later if you decide to.
kernel. + +
+The
+Kernels for several different programming languages exist. We will use +a Python kernel in this book, not least of which because it's one of the +most commonly used kernels, and the kernel that's already set up for use +with the GitHub Jupyter Codespace repo. +
+
+In your Codespace, use the Select kernel
button, to choose
+a Python environment
. You should be able to select the default
+global environment without needing to create a new one. Your notebook
+is ready once you see
+A notebook is composed of many consecutive parts, known as cells
.
+
+A
+Each Markdown cell uses, well, Markdown (
+But it's the Code cells that set a notebook apart. Each Code cell
+in a notebook is run consecutively, with the result of the final
+line of code being displayed for the reader. Importantly, these
+outputs are saved to the notebook itself, meaning that by sharing
+the notebook with a colleague, they can see the output of your
+code without running it themselves! This is not only convenient,
+but it's essential when communicating the result of code that
+uses software your reader does not have installed themselves.
+Likewise, it allows for showing the results of code via a web
+browser, such as at
+
+I've provided a
+