gitextract_72taraow/ ├── .github/ │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── ISSUE_TEMPLATE/ │ │ ├── addition.yml │ │ ├── amendment.yml │ │ └── removal.yml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── README.md │ └── workflows/ │ ├── insert-checklist.yml │ ├── maintain-gh-pages.yml │ └── sync-mirror.yml ├── CHECKLIST.md ├── Dockerfile ├── LICENSE ├── articles/ │ ├── 0_Why_It_Matters.md │ ├── 2_TLDR_Short_List.md │ ├── 4_Privacy_And_Security_Links.md │ ├── 5_Privacy_Respecting_Software.md │ ├── 6_Privacy_and-Security_Gadgets.md │ ├── ATTRIBUTIONS.md │ └── Secure-Messaging.md ├── lib/ │ ├── api-spec.yml │ ├── api.py │ ├── generate.py │ ├── requirements.txt │ ├── schema.json │ └── validate.py ├── personal-security-checklist.yml └── web/ ├── .eslintignore ├── .eslintrc.cjs ├── .gitignore ├── .prettierignore ├── .vscode/ │ ├── launch.json │ ├── qwik-city.code-snippets │ └── qwik.code-snippets ├── README.txt ├── adapters/ │ ├── static/ │ │ └── vite.config.mts │ └── vercel-edge/ │ └── vite.config.mts ├── package.json ├── postcss.config.js ├── public/ │ ├── manifest.json │ └── robots.txt ├── src/ │ ├── components/ │ │ ├── core/ │ │ │ └── icon.tsx │ │ ├── furniture/ │ │ │ ├── footer.tsx │ │ │ ├── header.tsx │ │ │ ├── hero.tsx │ │ │ └── nav.tsx │ │ ├── psc/ │ │ │ ├── checklist-table.tsx │ │ │ ├── progress.tsx │ │ │ ├── psc.module.css │ │ │ └── section-link-grid.tsx │ │ ├── router-head/ │ │ │ └── router-head.tsx │ │ └── starter/ │ │ └── icons/ │ │ └── qwik.tsx │ ├── data/ │ │ └── articles.ts │ ├── entry.dev.tsx │ ├── entry.preview.tsx │ ├── entry.ssr.tsx │ ├── entry.vercel-edge.tsx │ ├── hooks/ │ │ └── useLocalStorage.ts │ ├── root.tsx │ ├── routes/ │ │ ├── _404.tsx │ │ ├── about/ │ │ │ ├── about-content.ts │ │ │ └── index.tsx │ │ ├── article/ │ │ │ ├── [slug]/ │ │ │ │ ├── article.module.css │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── checklist/ │ │ │ ├── [title]/ │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ ├── index.tsx │ │ ├── layout.tsx │ │ └── service-worker.ts │ ├── store/ │ │ ├── checklist-context.ts │ │ ├── local-checklist-store.ts │ │ └── theme-store.ts │ ├── styles/ │ │ ├── global.css │ │ └── tailwind.css │ └── types/ │ ├── PSC.ts │ ├── progressbar.d.ts │ └── vite-plugin-copy.d.ts ├── tailwind.config.js ├── tsconfig.json ├── vercel.json └── vite.config.mts