From 30b4902ac19a52ce8104369d81d0a4ee84c2ee8a Mon Sep 17 00:00:00 2001 From: pambonian Date: Mon, 8 Nov 2021 11:32:48 -0500 Subject: [PATCH 1/5] practice --- index.html | 14 ++++++++++++++ sandbox.js | 12 ++++++++++++ style.css | 0 3 files changed, 26 insertions(+) create mode 100644 index.html create mode 100644 sandbox.js create mode 100644 style.css diff --git a/index.html b/index.html new file mode 100644 index 00000000..dd3e2f15 --- /dev/null +++ b/index.html @@ -0,0 +1,14 @@ + + + + + + + Document + + + +

Hello!

+ + + \ No newline at end of file diff --git a/sandbox.js b/sandbox.js new file mode 100644 index 00000000..bd939744 --- /dev/null +++ b/sandbox.js @@ -0,0 +1,12 @@ +let age = 25; +let year = 2021; +console.log(age, year); + +age = 30; +console.log(age); + +const points = 100; +console.log(points); + +var score = 75; +console.log("Score: " + score); \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 00000000..e69de29b From e09de77daf00759caa407f62208fe60bf4f47d1b Mon Sep 17 00:00:00 2001 From: Patrick Date: Fri, 4 Mar 2022 20:41:52 -0500 Subject: [PATCH 2/5] amended --- index.html | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index dd3e2f15..40cef7cb 100644 --- a/index.html +++ b/index.html @@ -11,4 +11,6 @@

Hello!

- \ No newline at end of file + + + \ No newline at end of file From 6795dfb13b9d3ee760190567758802816d7fd07b Mon Sep 17 00:00:00 2001 From: Patrick Date: Fri, 4 Mar 2022 20:43:05 -0500 Subject: [PATCH 3/5] jrengineer problems added --- app.js | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 app.js diff --git a/app.js b/app.js new file mode 100644 index 00000000..0dbceb70 --- /dev/null +++ b/app.js @@ -0,0 +1,40 @@ +import './App.css' +import IncrementingButton from './problems/IncrementingButton'; +import WorkingWithArrays from './problems/WorkingWithArrays'; +import ProblemWrapper from './ProblemWrapper'; + +// Ground Rules: +// Anything goes... you can google it, you can ask questions, you can do basically anything except "Phone a Friend". + +// As a programmer, we are always dealing with things we do not know, and to be honest it's impossible to remember everything off the top of your head. +// So, we rely on documentation and our tools such as IDEs to help us be productive. I'm just here to watch you think and see how you process information. +// The worst thing you can do is: nothing. If you just sit there and stare, then there's no chance. If you struggle through something and talk through it, then +// I'm glad to facilitate. + +// Prerequisites: +// - npm install +// - npm run dev + +// TODO - first create a branch /interviews/{lastname-firstname} +// 1. Add a background color on the entire page to be #282c34 (text white) +// 2. Add a block of larger text on the page with your name +// 3. Add some spacing around the entire page +// 4. Add some padding or margin around each question +// 5. Make the description of the question bold and a little larger + +function App() { + return ( +
+

Patrick Brennan

+ + + + + + + +
+ ) +} + +export default App \ No newline at end of file From 0be63ff5a3ea21185251ce9dbbdf48d06cef47b1 Mon Sep 17 00:00:00 2001 From: Patrick Date: Sat, 5 Mar 2022 11:32:05 -0500 Subject: [PATCH 4/5] this is a commit --- index.html | 3 ++- playground.js | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) create mode 100644 playground.js diff --git a/index.html b/index.html index 40cef7cb..c70014ee 100644 --- a/index.html +++ b/index.html @@ -13,4 +13,5 @@

Hello!

- \ No newline at end of file + + \ No newline at end of file diff --git a/playground.js b/playground.js new file mode 100644 index 00000000..189b175a --- /dev/null +++ b/playground.js @@ -0,0 +1 @@ +// testing 321 \ No newline at end of file From f86daf1c3424a5cf10b8f04305156f5f64705103 Mon Sep 17 00:00:00 2001 From: Patrick Date: Sat, 5 Mar 2022 11:33:33 -0500 Subject: [PATCH 5/5] feature branch --- index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index c70014ee..8b720628 100644 --- a/index.html +++ b/index.html @@ -14,4 +14,5 @@

Hello!

- \ No newline at end of file + + \ No newline at end of file