-
Notifications
You must be signed in to change notification settings - Fork 3
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
Kelly Manahan #3
Open
kellymanahans
wants to merge
4
commits into
CSPT1-TEAMS:master
Choose a base branch
from
kellymanahan:kelly
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
In order to protect myself the simplicist thing i did was change my password to something that has at least 10 characters, I also made up words for my password. I have a real problem with remembering my password, I can always store my passwords in something at home or use a service that charges to keep my passwords safe (but that might be a risk if they are somehow hacked). | ||
|
||
I have also implemented two factor authentication for some of my personal accounts. | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
Mary owns a local flowershop. She has regular customers for large events. She saves the credit card information for convience. She has lots of competitors but,has no known enemies. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Well done and well written! :+1 |
||
|
||
Mary stores all the clients information in a computer at the floral shop. The computer uses business management software and business email services. To access her clients information she uses an encrytped password. She stores this password in her phone which can be unlocked with a fingerprint scan. | ||
|
||
Possible adversaries are other floral shops who want to gain access to her clients and ruin her business. She may also have unknown enemies that want to see her business fail. | ||
|
||
In order to protect the client it is important to know if the business management software she uses is secure enough. | ||
|
||
She should also ensure that she does not download any possible virus that can harm her computer. | ||
|
||
She must also make sure she keeps her password secure and be sure no one has access to it. Any person posing as customer support trying to gain access to her person information should be viewed as a possible threat. | ||
|
||
To keep her password from being stolen, she should update her password periodically and make sure no one will ever have access to it. She should also make sure she has the correct mobile security installed onto her phone. It might also be good if she stores her clients personal information at her home where there is less risk. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
let regex1 = /(antelope)s? (rock)s? out/g; | ||
|
||
console.log(regex1.test("antelope rocks out")); | ||
//console.log(regex1.test("antelopes rock out")); | ||
|
||
let regex2 = /[^b]oat/g; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If we did
|
||
|
||
//console.log(regex2.test("goat")); | ||
console.log(regex2.test("moat")); | ||
|
||
// Regex that matches dates in YYYY-MM-DD format. (Year can be 1-4 digits, and month and day can each be 1-2 digits). This does not need to verify the date is correct (e.g 3333-33-33 can match). | ||
|
||
// 2000-10-12 | ||
|
||
// 1999-1-20 | ||
|
||
// 1999-01-20 | ||
|
||
// 812-2-10 | ||
|
||
let date = /(\d{4})-(\d{1,})-(\d{1,})/g; | ||
|
||
//console.log(date.test("2000-10-12")); | ||
//console.log(date.test("1999-1-20")); | ||
console.log(date.test("812-2-10")); |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍