diff --git a/.DS_Store b/.DS_Store
new file mode 100644
index 00000000..01625912
Binary files /dev/null and b/.DS_Store differ
diff --git a/.vscode/settings.json b/.vscode/settings.json
index e8783bfe..c21f2fdb 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -1,3 +1,8 @@
{
- "liveServer.settings.port": 5505
+ "liveServer.settings.port": 5505,
+ "cSpell.words": [
+ "Malik",
+ "Naushin",
+ "technigo"
+ ]
}
\ No newline at end of file
diff --git a/README.md b/README.md
index 1613a3b0..4d809eff 100644
--- a/README.md
+++ b/README.md
@@ -1,13 +1,12 @@
# 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.
-
+This project is to track the github repositories created during Technigo Boot Camp
## 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?
+The challenge for this week was the limit of 60 request per hour for github API. Therefore, first, I worked on functionality without any styling, then, I did styling with placeholders and at the end i merged both of them to have the final version.
+
+I have completed most of the requirements. If i had more time, I would have add sorting and more visual representation of data.
## 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://naushin-github.netlify.app/
\ No newline at end of file
diff --git a/code/.DS_Store b/code/.DS_Store
new file mode 100644
index 00000000..d6a03bc9
Binary files /dev/null and b/code/.DS_Store differ
diff --git a/code/assets/cardbg.jpeg b/code/assets/cardbg.jpeg
new file mode 100644
index 00000000..f06cb662
Binary files /dev/null and b/code/assets/cardbg.jpeg differ
diff --git a/code/assets/eye-30.png b/code/assets/eye-30.png
new file mode 100644
index 00000000..96783181
Binary files /dev/null and b/code/assets/eye-30.png differ
diff --git a/code/assets/html-50.png b/code/assets/html-50.png
new file mode 100644
index 00000000..702bbddf
Binary files /dev/null and b/code/assets/html-50.png differ
diff --git a/code/assets/javascript.svg b/code/assets/javascript.svg
new file mode 100644
index 00000000..e6184185
--- /dev/null
+++ b/code/assets/javascript.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/code/chart.js b/code/chart.js
index 92e85a30..4768fa7b 100644
--- a/code/chart.js
+++ b/code/chart.js
@@ -1,4 +1,31 @@
//DOM-selector for the canvas 👇
-const ctx = document.getElementById('chart').getContext('2d')
+const ctx = document.getElementById('chart').getContext('2d');
//"Draw" the chart here 👇
+const drawChart = (repoCount) =>{
+ const config = {
+ type: 'pie',
+ data: {
+ labels: [
+ 'Remaining',
+ 'Completed',
+ ],
+ datasets: [{
+ label: 'My First Dataset',
+ data: [(19 - repoCount), repoCount],
+ backgroundColor: [
+ '#333',
+ '#fff'
+ ],
+ hoverOffset: 4
+ }]
+ },
+ options: {
+ responsive:true,
+ maintainAspectRatio: false,
+ },
+
+ };
+
+ new Chart(ctx, config)
+}
diff --git a/code/index.html b/code/index.html
index 2fb5e0ae..ee0e43c9 100644
--- a/code/index.html
+++ b/code/index.html
@@ -6,14 +6,43 @@