From 2587d6ff61b285ab094e665e53cf0df5004367f6 Mon Sep 17 00:00:00 2001 From: Douglas Foreman Date: Sun, 30 May 2021 02:11:52 -0500 Subject: [PATCH 1/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 688c1e5..832053b 100644 --- a/README.md +++ b/README.md @@ -5,4 +5,4 @@ This repository will hold the JavaScript projects I've completed as I advance th - [x] Tic-Tac-Toe Project - [x] Calculator Project -- [ ] Pizza Menu Project +- [x] Pizza Menu Project From 436c1368db16e30ff383c1c62a2a423c1c889230 Mon Sep 17 00:00:00 2001 From: Douglas Foreman Date: Mon, 31 May 2021 13:25:13 -0500 Subject: [PATCH 2/5] Updated README.md w/reordered & completed projects --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 832053b..fc0e17b 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,9 @@ # JavaScript-Projects A new repo to store The Tech Academy's JavaScript coding projects. -This repository will hold the JavaScript projects I've completed as I advance through The Tech Academy's curriculum, beginning with JS fundamentals and progressing to their Tic-Tac-Toe, Pizza Menu, and Calculator projects. +This repository will hold the JavaScript projects I've completed as I advance through The Tech Academy's curriculum, beginning with JS fundamentals and progressing to their "Tic-Tac-Toe", "Calculator", "Pizza Menu", and "ToDo App" projects. - [x] Tic-Tac-Toe Project - [x] Calculator Project - [x] Pizza Menu Project +- [x] ToDo App Project From b0e8b50c25a4b9a77ab22ae7db8a89a1acf5227e Mon Sep 17 00:00:00 2001 From: Douglas Foreman Date: Thu, 10 Mar 2022 19:51:54 -0600 Subject: [PATCH 3/5] Updated README.md w/links to projects --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index fc0e17b..6d1f029 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ A new repo to store The Tech Academy's JavaScript coding projects. This repository will hold the JavaScript projects I've completed as I advance through The Tech Academy's curriculum, beginning with JS fundamentals and progressing to their "Tic-Tac-Toe", "Calculator", "Pizza Menu", and "ToDo App" projects. -- [x] Tic-Tac-Toe Project -- [x] Calculator Project -- [x] Pizza Menu Project -- [x] ToDo App Project +- [x] [Tic-Tac-Toe Project](TicTacToe) +- [x] [Calculator Project](Calculator) +- [x] [Pizza Menu Project](Pizza_Project) +- [x] [ToDo App Project](ToDo_App) From 0b940a92bf21ebfa5cb6b683baabdb124a0df44d Mon Sep 17 00:00:00 2001 From: Douglas Foreman Date: Wed, 16 Mar 2022 13:28:13 -0500 Subject: [PATCH 4/5] Updated README.md w/file links & details of each project --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/README.md b/README.md index 6d1f029..9a327f9 100644 --- a/README.md +++ b/README.md @@ -7,3 +7,26 @@ This repository will hold the JavaScript projects I've completed as I advance th - [x] [Calculator Project](Calculator) - [x] [Pizza Menu Project](Pizza_Project) - [x] [ToDo App Project](ToDo_App) + +### Tic-Tac-Toe Project: +The classic game, played against a computer opponent with a max of nine moves: +- All logic written in JavaScript +- HTML & CSS used to style the game components + +### Calculator Project: +Capable calculator with the basic features: +- Performs addition, subtraction, multiplication & division operations on 1st & 2nd operands, +- Allows only a single decimal point in all operations +- "AC" key clears the display + +### Pizza Menu Project: +A responsive app to record a pizzeria's online orders: +- Different prices for different-sized pizzas +- A logic check ensures one free topping per order +- DOM updates as order changes + +### ToDo App Project: +A minimalist to-do app where tasks are parsed into JSON strings: +- Tasks are permanently displayed onscreen, +- Appear in unordered lists in the order they were created, +- Each task has a delete button From 2236220d63e7ca3a0f310ba58b3274796ef0b46c Mon Sep 17 00:00:00 2001 From: Douglas Foreman Date: Wed, 16 Mar 2022 15:10:39 -0500 Subject: [PATCH 5/5] Updated README.md's styling --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 9a327f9..6f4596b 100644 --- a/README.md +++ b/README.md @@ -15,18 +15,18 @@ The classic game, played against a computer opponent with a max of nine moves: ### Calculator Project: Capable calculator with the basic features: -- Performs addition, subtraction, multiplication & division operations on 1st & 2nd operands, -- Allows only a single decimal point in all operations +- Addition, subtraction, multiplication & division performed on 1st & 2nd operands, + - Allows only a single decimal point in all operations - "AC" key clears the display ### Pizza Menu Project: A responsive app to record a pizzeria's online orders: - Different prices for different-sized pizzas -- A logic check ensures one free topping per order + - A logic check ensures one free topping per order - DOM updates as order changes ### ToDo App Project: A minimalist to-do app where tasks are parsed into JSON strings: -- Tasks are permanently displayed onscreen, -- Appear in unordered lists in the order they were created, -- Each task has a delete button +- Tasks are permanently displayed onscreen + - Appear in unordered lists in the order they were created + - Each task has a delete button