Quick recall mode

Keywords first, details second.

Use this mode when you want memory triggers only: title, summary, tags, and bullet anchors without long answers getting in the way.

Clear

Results update as you type. Press / to jump straight into search.

Quick recall

374 cards

DevOps Easy Theory

What is AWS EC2?

EC2 is AWS virtual compute where you manage the instance OS, networking, and app runtime yourself.

  • Virtual machine in AWS
  • You manage patching and scaling
  • Common for lift-and-shift workloads
DevOps Easy Theory

What is AWS IAM?

IAM manages who can do what in AWS through users, roles, policies, and least-privilege permissions.

  • Authentication plus authorization
  • Roles are preferred for workloads
  • Least privilege is the design goal
DevOps Easy Theory

What is CI/CD?

CI keeps code integrated and tested frequently; CD automates delivery so releases are repeatable and low risk.

  • CI catches breakages early
  • CD shortens release cycle
  • Pipelines should be fast and reliable
DevOps Medium Theory

What is EKS?

EKS is Amazon's managed Kubernetes control plane service.

  • AWS manages control plane
  • You still manage nodes or Fargate choices
  • Useful when you want Kubernetes without self-hosting masters
Artificial Intelligence Medium Theory

Fine-tuning vs prompting

Prompting changes the instructions at inference time, while fine-tuning changes model weights using additional training data.

  • Prompting is faster to iterate
  • Fine-tuning can shape style or behavior
  • Use the lighter tool first