Skip to content

Instantly share code, notes, and snippets.

@rickywo
rickywo / Privacy Policy.md
Created January 8, 2026 04:49
Privacy Policy for PromptShield

Privacy Policy for PromptShield Effective Date: January 8, 2026

  1. No Data Collection: PromptShield operates entirely on your local device ("client-side"). We do not collect, store, or transmit your keystrokes, browsing history, or personal information to any external server.
  2. Permissions: The extension requires access to chatgpt.com solely to detect and redact sensitive patterns in the text input fields.
  3. Local Processing: All regex matching and Luhn validation happens in your browser memory.
  4. Contact: rickywo@gmail.com
version: '3.2'
services:
db:
image: mcr.microsoft.com/mssql/server:2019-latest
environment:
- ACCEPT_EULA=Y
- SA_PASSWORD=YourStrongP@ssword
- MSSQL_PID=Developer
ports:

Display Sweet

Please design a simple schema with Entity Framework Core based on given scenario.

  1. Navigation is a structure that stores components in a tree form. First level has at most 8 components, each node at first level contains at most 7 sub-components.
  2. Components json stores the components that used in Navigation struct. Two entities maintain the relation through the Id of the component.

Questions

  1. The implementation of Navigation entity class
  2. The implementation of Component entity class
  3. The design of relationship between two entities