From 00d3c857fc5a15246a82b6d3fd90bf71889c8f55 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Harry=20B=C3=A4cklin?=
<83465217+Groovedharry@users.noreply.github.com>
Date: Mon, 4 Oct 2021 12:15:20 +0200
Subject: [PATCH 1/2] My project
Sorry that I didn't do commits, I forget at times when I am stressed which I was this time
---
README.md | 6 ++-
code/chart.js | 24 +++++++++
code/index.html | 42 ++++++++++-----
code/script.js | 79 +++++++++++++++++++++++++++
code/style.css | 140 +++++++++++++++++++++++++++++++++++++++++++++++-
5 files changed, 277 insertions(+), 14 deletions(-)
diff --git a/README.md b/README.md
index 1613a3b0..e15a3309 100644
--- a/README.md
+++ b/README.md
@@ -2,10 +2,14 @@
Replace this readme with your own information about your project.
-Start by briefly describing the assignment in a sentence or two. Keep it short and to the point.
+We were tasked to create a Github Tracker where we can see and are able to access all of our github repos from Technigo.
## The problem
+I approached problems by using google/stackoverflow and asking friends, I didn't have much of a plan going in, I kind of wanted to make it as simple as possible.
+
+I had a very unfortunate week and therefore it is turned in alittle late, Basically started coding on friday and forgot to send it in on sunday as I went to bed early, I am also not finished with the project for some reason my image refuse to show up so that will be something I need to look into. I believe I did fine for the timeframe I had as I was both sick and had to go out of town and didn't have time to code then which so the only thing I would change is that I would like to go back to regular where I wont be sick and wont be out of town without a computer.
+
Describe how you approached to problem, and what tools and techniques you used to solve it. How did you plan? What technologies did you use? If you had more time, what would be next?
## View it live
diff --git a/code/chart.js b/code/chart.js
index 92e85a30..8b71cde4 100644
--- a/code/chart.js
+++ b/code/chart.js
@@ -2,3 +2,27 @@
const ctx = document.getElementById('chart').getContext('2d')
//"Draw" the chart here 👇
+const config = {
+ type: 'doughnut',
+ data: {
+ labels: [
+ 'Projects Done',
+ 'Projects Left',
+ ],
+ datasets: [{
+ label: 'My First Dataset',
+ data: [6, 20-5],
+ backgroundColor: [
+ ' rgb(255,250,250)',
+ 'rgb(23, 18, 18)',
+
+ ],
+ hoverOffset: 4
+ }]
+ },
+ };
+
+
+
+const myChart = new Chart(ctx, config)
+
diff --git a/code/index.html b/code/index.html
index 2fb5e0ae..8125aa71 100644
--- a/code/index.html
+++ b/code/index.html
@@ -1,21 +1,39 @@
+