Consolidated References: Practicum in Software Construction
Course Expectations, Version Control and Open Source
Git Manual:
https://git-scm.com/book/en/v2
Using Open Source Code
Open Source Definition:
https://opensource.org/osdFree Software Definition:
https://www.gnu.org/philosophy/free-sw.en.htmlLicense tl;dr:
https://tldrlegal.com/Semantic Versioning:
https://semver.org/The formal definition is a bit stuffy. Points up 8 are important to understand thoughMaven 30 Minute Guide:
https://maven.apache.org/guides/getting-started/index.html
Automated Testing
Kent C Dodds - Testing:
https://kentcdodds.com/blog/write-testsJUnit 5:
https://junit.org/junit5/docs/current/user-guide/Cucumber:
https://cucumber.io/docs/guides/
Using Java Spring to write HTTP Services
- This course does not currently have any references. Please reach out for more information though!
Spring and APIs
Jeff Bezos API Mandate:
https://nordicapis.com/the-bezos-api-mandate-amazons-manifesto-for-externalization/You won't be directly tested on this but it's interestingStevey's Platform Rant:
https://gist.github.com/chitchcock/1281611You also won't be tested on this but it's pretty famous and pretty entertaining
Programming Practices
Why Immutability Matters:
https://debugged.it/blog/why-immutability-matters/Pure Functions Definition:
https://en.wikipedia.org/wiki/Pure_function
Introduction to the Cloud
SSH Basics:
https://www.digitalocean.com/community/tutorials/ssh-essentials-working-with-ssh-servers-clients-and-keysInstalling Maven:
https://maven.apache.org/install.htmlSSH on Windows:
https://www.howtogeek.com/336775/how-to-enable-and-use-windows-10s-built-in-ssh-commands/It sounds like ssh is included by default with Windows now as long as you're reasonably updated. This link might help if it's still not thereEC2 Reference:
https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/amazon-linux-ami-mate.htmlDefinitely not something to read 100% cover to cover. But if you're curious or need details on a specific bit
AWS Security and Data Storage
AWS S3 Client Reference:
https://docs.aws.amazon.com/sdk-for-java/latest/developer-guide/get-started.htmlIt looks like the quick start section of this documentation has a good starter for S3
Databases and the Cloud
Dynamo Examples (GitHub):
https://github.com/awsdocs/aws-doc-sdk-examples/tree/master/javav2/example_code/dynamodbAWS Documentation - IAM Roles:
https://docs.aws.amazon.com/IAM/latest/UserGuide/id_roles.htmlAWS Docs can be very verbose. I'd recommend maybe reading the linked session and one or two sub-sections underneath
Application Resiliency
Deploying applications with containers
Terraform AWS Reference:
https://registry.terraform.io/providers/hashicorp/aws/latest/docsInstalling Terraform:
https://learn.hashicorp.com/tutorials/terraform/install-cli
Cloud Functions and Pipelines
AWS Lambda Java Examples:
https://docs.aws.amazon.com/lambda/latest/dg/java-samples.htmlLambda HTTPS Endpoints Announcement:
https://aws.amazon.com/blogs/aws/announcing-aws-lambda-function-urls-built-in-https-endpoints-for-single-function-microservices/