This project is work in progress, extremely unstable and should not be used for anything.
Bite-Sized is an open-source system for testing, refreshing and reinforcing knowledge in 2 minutes or less.
- it emails you a question with a number of possible answers on a topic of your choosing
- you choose the right answer and get to see the explanations behind different options
A large DynamoDB table has the following structure:
- `UserID` (PK)
- `ItemID` (SK)
- `ItemBarcode`
- other fields
What is the most efficient way of fetching a list of users (`UserID`) by `ItemBarcode`?
1. Perform a table Scan with `ItemBarcode` as the FilterExpression
2. Create a Local Secondary Index for `ItemBarcode` and perform Query with `ItemBarcode` as the key
3. Create a Global Secondary Index for `ItemBarcode` and perform Query with `ItemBarcode` as the only key
The correct answer:
A Global Secondary Index (GSI) is like a replica of the main table with different _Partition_ and _Secondary_ keys.
GSI items include the table Partition Key by default. All or some other attributes can be added as needed.
GSI's incur additional RCUs for maintenance.
https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/GSI.html
Technical features:
- subscribes learners to topics
- sends questions with a selection of answers via email on a schedule
- displays the emailed question on a web page
- accepts answers as HTTP calls from email bodies
- displays detailed answers in response to the answer call
- one-click unsubscribe
- Front-end:
npm run build
+git push
to let [.github/workflows/deploy.yml] copy the built files to the S3 bucket.
- Front-end: Vue
- CSS: https://v2.tailwindcss.com/docs/
- UI components: https://primevue.org/ and https://primevue.org/icons
- MD to HTML: https://marked.js.org
- Design ideas and code: https://flowbite.com
- Fonts: Roboto
- Graphics:
<Transition>
is misbehaving, see https://stackoverflow.com/questions/68998731/vue-transition-with-tailwind- MD XSS: