diff --git a/README.md b/README.md index 3a87181..347f468 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Practice with git and GitHub -\[Your Step 3 Edit Here\] +I'm \Deeps\ and I edited this File This is a very simple repository for practicing with git and GitHub. git is a utility for *version control*. When a body of code is tracked with git, it is easy to see how the software has evolved over time, to roll back changes when needed, and to incorporate modifications by multiple collaborators. In this activity, we're going to focus on core git workflows for single-person projects. We may do a follow-up activity later in the quarter on workflows for collaborative projects. @@ -71,7 +71,7 @@ What if there's a change made on GitHub that's not present in your local reposit To practice pulling, we need to make a change on GitHub. For now, just edit the `README.md` file again, which you can do by navigating to this file and clicking the pencil icon. Add another sentence to the top of the file. Here's a good one: -> I'm \[your name\] and I edited this file online! +> I'm deepslama and I edited this file online! At the bottom of the editing screen, you'll be asked to commit the result. Make sure to add a useful commit message. diff --git a/practice-folder/sine_wave_plot.ipynb b/practice-folder/sine_wave_plot.ipynb new file mode 100644 index 0000000..394c728 --- /dev/null +++ b/practice-folder/sine_wave_plot.ipynb @@ -0,0 +1,32 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from matplotlib import pyplot as plt\n", + "import numpy as np\n", + "\n", + "x = np.linspace(0, 2*np.pi, 1001)\n", + "y = np.sin(x)\n", + "f = plt.plot(x, y)\n", + "plt.show() # This ensures the plot is displayed\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "name": "python", + "version": "3.9.6" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +}