- Linked to repository
- Linked to demo or demo implementation
- Links are correct
- Repo contains a descriptive README.md
- Repo README.md also links to demo or demo implementation
(aka ensuring your Professional Brand is consistent)
A software engineer's portfolio contains not only their central portfolio (usually a website), but a plethora of artifacts across the internet which demonstrate their abilities and provide credibility to the claims made on their central portfolio.
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
# Hardened (secured) nginx.conf | |
http { | |
sendfile on; | |
tcp_nopush on; | |
tcp_nodelay on; | |
keepalive_timeout 65; | |
types_hash_max_size 2048; | |
#don't send the nginx version number in error pages and Server header | |
server_tokens off; |
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
// 2022 Reading Goal | |
// Use let for bookGoal in case I need to re-baseline the goal | |
let bookGoal = 100 | |
// Const is used here since the number of weeks in a year does not change | |
const numWeeks = 52 | |
// let is used here since let is used with book goal | |
let weeklyBooksReadGoal = bookGoal / numWeeks; |