Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Tawnya wessar #139

Open
wants to merge 56 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
56 commits
Select commit Hold shift + click to select a range
05b5922
Update README.md
wlongmireBloomTech Feb 1, 2021
0ec9936
Update README.md
wlongmireBloomTech Feb 1, 2021
5559df0
Merge pull request #89 from LambdaSchool/updated_codegrade_flow-1
wlongmireBloomTech Feb 1, 2021
e5a7727
Update README.md
wlongmireBloomTech Feb 1, 2021
bfbbe1b
Update README.md
wlongmireBloomTech Feb 1, 2021
04e2f98
Update README.md
wlongmireBloomTech Feb 1, 2021
64e35ce
Create README.md
wlongmireBloomTech Feb 1, 2021
6f60c37
Update README.md
wlongmireBloomTech Feb 1, 2021
769d7fe
Merge branch 'main' of https://github.com/LambdaSchool/web-sprint-cha…
wlongmireBloomTech Feb 1, 2021
068a1a2
adds inteview answers.
wlongmireBloomTech Feb 1, 2021
2c66c6e
adds template and interview-answers.
wlongmireBloomTech Feb 1, 2021
f1b3d79
edit to READMEs.
wlongmireBloomTech Feb 1, 2021
6a24feb
linter
Ladrillo Feb 2, 2021
bb92e35
linter
Ladrillo Feb 2, 2021
1e63ada
formatting
Ladrillo Feb 2, 2021
c8f54ea
Update README_Template.md
wlongmireBloomTech Feb 3, 2021
9e633ee
Update README_Template.md
wlongmireBloomTech Feb 3, 2021
4a3a779
added to readme, readme_template and interview_answers
wlongmireBloomTech Feb 4, 2021
4800127
adds to interview-answers
wlongmireBloomTech Feb 4, 2021
c6ecef1
merges conflicts.
wlongmireBloomTech Feb 4, 2021
c7c5fb6
adds to instructions and instruction template.
wlongmireBloomTech Feb 4, 2021
db0fa30
adds to instructions and instruction template.
wlongmireBloomTech Feb 4, 2021
ef38582
adds to readme.
wlongmireBloomTech Feb 11, 2021
af1ade3
adds to readme.
wlongmireBloomTech Feb 11, 2021
905a448
adds in readme.
wlongmireBloomTech Feb 26, 2021
5d2bfaf
adds in handler code.
wlongmireBloomTech Feb 26, 2021
d2fdca4
removes test code.
wlongmireBloomTech Feb 26, 2021
7839b47
adds to backend.
wlongmireBloomTech Feb 26, 2021
3dacfa9
changes to tests and code to relect tests.
wlongmireBloomTech Mar 2, 2021
e0ba05c
adds to update code.
wlongmireBloomTech Mar 2, 2021
b22ea43
refines readme.
wlongmireBloomTech Mar 4, 2021
c47e18e
Merge pull request #101 from LambdaSchool/update
wlongmireBloomTech Mar 26, 2021
846b807
Update handlers.js
wlongmireBloomTech May 21, 2021
554e784
updates login.js.
wlongmireBloomTech May 21, 2021
78b61e3
adds new tests and other code.
wlongmireBloomTech Jun 2, 2021
1d68f36
updates to Readme.
wlongmireBloomTech Jun 2, 2021
d06f34f
adds to handlers.
wlongmireBloomTech Jun 2, 2021
74b3005
Update README.md
wlongmireBloomTech Jun 18, 2021
4eacd0f
adds logout."
wlongmireBloomTech Jun 18, 2021
a227340
Merge branch 'main' of https://github.com/LambdaSchool/web-sprint-cha…
wlongmireBloomTech Jun 18, 2021
ed9e0d3
adds logout endpoint and updated readme.
wlongmireBloomTech Jun 21, 2021
1d728f4
updates.
wlongmireBloomTech Jul 3, 2021
be29be4
adds react.
wlongmireBloomTech Jul 3, 2021
0103ac6
adds tests.
wlongmireBloomTech Jul 4, 2021
fdcef0b
Create a CodeGrade submission
tdubs42 Jul 17, 2021
c163dd2
Create a CodeGrade submission
tdubs42 Jul 17, 2021
6b7ba90
helper created and form built out
tdubs42 Jul 17, 2021
2ed1e99
pushing progress before OS install
tdubs42 Jul 18, 2021
9db0cd6
Merge branch 'tawnya-wessar' of https://github.com/tdubs42/web-sprint…
tdubs42 Jul 18, 2021
5cf9d44
first commit
tdubs42 Jul 18, 2021
981b648
saveEdit functioning
tdubs42 Jul 19, 2021
2ce33d5
deleteColor functioning
tdubs42 Jul 19, 2021
8c2c356
BubblePage.test passing
tdubs42 Jul 19, 2021
803bb5b
interview questions answered
tdubs42 Jul 19, 2021
bfb60e2
color.test.js passing
tdubs42 Jul 19, 2021
6a515af
all but 1 test passing and still need to complete quizzes
tdubs42 Jul 19, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
pushing progress before OS install
  • Loading branch information
tdubs42 committed Jul 18, 2021
commit 2ed1e991f5e8172d2b257dd8aa8348f4babc88fb
3 changes: 3 additions & 0 deletions interview_answers.md
Original file line number Diff line number Diff line change
@@ -3,9 +3,12 @@ Be prepared to demonstrate your understanding of this week's concepts by answeri


1. Explain what a token is used for.
- A token is the response sent back from a successful auth request. It is transferred in the form of a JSON string to ensure universal communication between coding languages. The token is stored locally to maintain authorization on the client side without the user needing to re-enter their login credentials.

2. What steps can you take in your web apps to keep your data secure?
- Utilizing secure cookies would be one way to ensure token security. I will be studying more on the HttpOnly flag and how to set a token within a cookie.

3. Describe how web servers work.
-

4. Which HTTP methods can be mapped to the CRUD acronym that we use when interfacing with APIs/Servers.
2 changes: 1 addition & 1 deletion src/components/Login.js
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ const Login = () => {
e.preventDefault();
axiosWithAuth().post('/login', form )
.then( res => console.log(res) )
.catch( err => console.log(err) )
.catch( err => console.log({ err }) )
}

useEffect(() => {}, []);