From 8c45efd787ca07ac949243fff21fa612006e2f8f Mon Sep 17 00:00:00 2001 From: Deepak Lama Date: Sat, 25 Jan 2025 21:43:29 +0530 Subject: [PATCH 1/3] edited --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3a87181..728a71c 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. From 5a5f95f4b517caf641d5ee510b9894241f234da1 Mon Sep 17 00:00:00 2001 From: Deepak Lama Date: Tue, 28 Jan 2025 01:13:14 +0530 Subject: [PATCH 2/3] new folder --- practice-folder/sine_wave_plot.ipynb | 32 ++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 practice-folder/sine_wave_plot.ipynb 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 +} From 9480e8ab98d66737107d4ff6d574fcbac1a2058b Mon Sep 17 00:00:00 2001 From: deepslama4 <102960262+deepslama4@users.noreply.github.com> Date: Tue, 28 Jan 2025 01:17:10 +0530 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 728a71c..347f468 100644 --- a/README.md +++ b/README.md @@ -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.