DBA Glossary Flip Cards — Help
This is a static web app that you can host on GitHub Pages. It includes a matching game and a study mode for DBA dissertation terms.
How to Use
- Select the number of Pairs and click New Game.
- Click a card to flip it. Match each TERM with its DEFINITION.
- View stats for Time, Moves, and Matches.
- Toggle Study Mode to use simple flashcards (Flip / Next / Prev / Shuffle).
Deploy to GitHub Pages
- Create a new public repository on GitHub, e.g.,
dba-flipcards
. - Upload the files:
index.html
,styles.css
,script.js
. - In the repo, go to Settings → Pages.
- Under Build and deployment, set Source to Deploy from a branch.
- Set Branch to
main
(ormaster
) and root as the folder. - Save. Your site will be published at
https://YOUR-USERNAME.github.io/dba-flipcards
.
Edit or Add Terms
Open script.js
and edit the TERMS
array:
const TERMS = [
{ term: "Ontology", def: "Assumptions about the nature of reality (objective vs. constructed)." },
// ... add or edit entries here ...
];
Keyboard Shortcuts
- Game: Use Tab and Enter/Space to flip focused card.
- Study: Space or F to flip; ←/→ to navigate.
License
MIT License — use and adapt freely.