From fc468c1c62949703a5d8ce37c38129514ce786b5 Mon Sep 17 00:00:00 2001 From: Josiah Augustine Date: Fri, 1 May 2020 12:14:21 +0100 Subject: [PATCH 1/5] Add markdown file to day4 challenge folder fix issue #50 --- day4challenge/augustine-day4.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 day4challenge/augustine-day4.md diff --git a/day4challenge/augustine-day4.md b/day4challenge/augustine-day4.md new file mode 100644 index 0000000..18d3f03 --- /dev/null +++ b/day4challenge/augustine-day4.md @@ -0,0 +1,22 @@ +# Day4: Markdown Practice Using Heading List Tables Others +# Headers Example +# Header1 +## Header2 +###### Header6 + +# List Example ++ Item1 ++ Item2 ++ Item3 + +# Table Example +| Method | Endpoint | Description | Code | +| :----- | :---------------: | ------------------------: | :--: | +| GET | /api/v1.0/task | get all task in db | 200 | +| POST | /api/v1.0/task | add task to db | 201 | +| GET | /api/v1.0/task/id | get task with id = id | 200 | +| PUT | /api/v1.0/task/id | update task with id = id | 200 | +| DELETE | /api/v1.0/task/id | delete task with id = id | 204 | + +# VS Code Markdown Preview Screenshot +![markdown preview](https://user-images.githubusercontent.com/53453398/80801571-c6893680-8ba4-11ea-8dee-e4f667a5090c.PNG) From 96a89ee889743b8dd7d53f49e2a2aceef090b00e Mon Sep 17 00:00:00 2001 From: Josiah Augustine Date: Sun, 3 May 2020 13:28:49 +0100 Subject: [PATCH 2/5] Submission for day5-challenge fix issue #65 --- day5challenge/augustine-day5.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 day5challenge/augustine-day5.md diff --git a/day5challenge/augustine-day5.md b/day5challenge/augustine-day5.md new file mode 100644 index 0000000..60b5a10 --- /dev/null +++ b/day5challenge/augustine-day5.md @@ -0,0 +1,14 @@ +# Git remote -help Screenshot +![git remote help](https://user-images.githubusercontent.com/53453398/80913960-59aaa380-8d40-11ea-8a94-b8d5ee538acc.PNG) + +# Git push -help Screenshot +![git push help](https://user-images.githubusercontent.com/53453398/80913972-6cbd7380-8d40-11ea-9a45-f9a34c4483ea.PNG) + +# Git remote -v Screenshot after addition +![git remote add](https://user-images.githubusercontent.com/53453398/80914001-95456d80-8d40-11ea-88c8-2d5e53811dc9.PNG) + +# Screenshot after remove rename and set url of remote +![git remote commands](https://user-images.githubusercontent.com/53453398/80914022-befe9480-8d40-11ea-8777-1deb0100fe62.PNG) + +# Final Screenshot +![final](https://user-images.githubusercontent.com/53453398/80914034-d50c5500-8d40-11ea-812c-0da2cb37b28f.PNG) From da3606bd8f398733f595120f877a1cb5049621ae Mon Sep 17 00:00:00 2001 From: Josiah Augustine Date: Fri, 8 May 2020 19:47:42 +0100 Subject: [PATCH 3/5] Add augustine-day7 to day7challenge folder fix issue #114 --- day7challenge/augustine-day7.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 day7challenge/augustine-day7.md diff --git a/day7challenge/augustine-day7.md b/day7challenge/augustine-day7.md new file mode 100644 index 0000000..d91efd1 --- /dev/null +++ b/day7challenge/augustine-day7.md @@ -0,0 +1,8 @@ +# Task Todo Screenshot +![todo](https://user-images.githubusercontent.com/53453398/81438099-1ac38600-9164-11ea-9596-e35ef1507168.PNG) + +# Task In Progress Screenshot +![in progress](https://user-images.githubusercontent.com/53453398/81438109-1f883a00-9164-11ea-9769-e2041c299d24.PNG) + +# Task Done Screenshot +![done](https://user-images.githubusercontent.com/53453398/81438118-23b45780-9164-11ea-84af-9a76ef0ad2a8.PNG) From e24f4519a999109831a0e6e16fb2d23e631912b8 Mon Sep 17 00:00:00 2001 From: Josiah Augustine Date: Sun, 17 May 2020 16:22:17 +0100 Subject: [PATCH 4/5] Add augustine-day10.md to day10challenge folder fix issue #163 Second change to augustine-day10.md fix issue #163 Third change to augustine-day10.md fix issue #163 Fourth change to augustine-day10.md fix issue #163 Last change to augustine-day10.md fix issue #163 --- day10challenge/augustine-day10.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 day10challenge/augustine-day10.md diff --git a/day10challenge/augustine-day10.md b/day10challenge/augustine-day10.md new file mode 100644 index 0000000..d20461f --- /dev/null +++ b/day10challenge/augustine-day10.md @@ -0,0 +1,5 @@ +Git rebase is a powerful git tool. +Git rebase is like the opposite of Git merge. +Git rebase enables your repo to have a clean history. +Git merge is forward moving. +Git rebase interactive is my choice. \ No newline at end of file From c3fe1b44325dcbd71b4104d551e827869162e887 Mon Sep 17 00:00:00 2001 From: Josiah Augustine Date: Sun, 17 May 2020 16:53:13 +0100 Subject: [PATCH 5/5] Add screenshots to augustine-day10.md fix issue #163 --- day10challenge/augustine-day10.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/day10challenge/augustine-day10.md b/day10challenge/augustine-day10.md index d20461f..79bb833 100644 --- a/day10challenge/augustine-day10.md +++ b/day10challenge/augustine-day10.md @@ -2,4 +2,14 @@ Git rebase is a powerful git tool. Git rebase is like the opposite of Git merge. Git rebase enables your repo to have a clean history. Git merge is forward moving. -Git rebase interactive is my choice. \ No newline at end of file +Git rebase interactive is my choice. + +# Add Branch and Commits Screenshot +![rebase 1](https://user-images.githubusercontent.com/53453398/82153286-6f4ebb80-985e-11ea-9924-a6862bc71af1.PNG) + +# Commits and Rebase Screenshot +![rebase 2](https://user-images.githubusercontent.com/53453398/82153306-88f00300-985e-11ea-8d64-3f5c190a9325.PNG) + +# Editor for Interactive Rebase +![rebase interactive 1](https://user-images.githubusercontent.com/53453398/82153312-8d1c2080-985e-11ea-83cc-32ca2e5c2edb.PNG) +