diff --git a/.DS_Store b/.DS_Store
new file mode 100644
index 00000000..d9320da6
Binary files /dev/null and b/.DS_Store differ
diff --git a/README.md b/README.md
index 1613a3b0..c091f403 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,17 @@
# GitHub Tracker
-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.
+The assignment was to make a github-tracker, a page which shows your profile picture, username and information about your projects, pullrequests and commits. We also learned how to incorporate charts in our work.
## The problem
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?
+Fortunately I have a couple of people I study with, who help me a lot when I'm stuck. I started by watching the videos by our teachers, and then the recordings of our classes. This helped since I could rewind and watch again if something was unclear. I've also used StackOverflow for some guidance.
+
+This week I've used a page to help me with the colorschemes for my page and this is the link: https://coolors.co/
+I've also learned how to do shading in css which was cool. Hopefully my javascript aha-moment is just a couple of weeks away!
+
+
## View it live
-Every project should be deployed somewhere. Be sure to include the link to the deployed project so that the viewer can click around and see what it's all about.
+https://githubtracker-ninaalejandra.netlify.app/
\ No newline at end of file
diff --git a/code/TODO-list: b/code/TODO-list:
new file mode 100644
index 00000000..3a90c866
--- /dev/null
+++ b/code/TODO-list:
@@ -0,0 +1,10 @@
+TODO-list:
+
+1) fetch the repos and console log them x
+2) get them in the browser x
+3) filter out the technigo repos x
+4) test chart library x
+5) add pullrequests x
+6) add profile pic x
+7) add commits x
+8) style x
\ No newline at end of file
diff --git a/code/chart.js b/code/chart.js
index 92e85a30..d7949f90 100644
--- a/code/chart.js
+++ b/code/chart.js
@@ -2,3 +2,25 @@
const ctx = document.getElementById('chart').getContext('2d')
//"Draw" the chart here 👇
+const drawChart = (amount) => {
+ const config = {
+ type: 'doughnut',
+ data: {
+ labels: [
+ 'Finished Projects',
+ 'Projects Left'
+ ],
+ datasets: [{
+ label: 'My First Dataset',
+ data: [amount, 20-amount],
+ backgroundColor: [
+ '#AD5D4E',
+ '#218380'
+ ],
+ hoverOffset: 4
+ }]
+ },
+ }
+
+ const myChart = new Chart(ctx, config)
+}
\ No newline at end of file
diff --git a/code/index.html b/code/index.html
index 2fb5e0ae..2f531942 100644
--- a/code/index.html
+++ b/code/index.html
@@ -6,14 +6,28 @@