01. What Are Cookies
Cookies are small text files that are stored on your device when you visit a website. They help websites remember information about your visit, making your next visit easier and the site more useful to you.
interface Cookie {
name: string;
value: string;
domain: string;
path: string;
expires: Date;
secure: boolean;
httpOnly: boolean;
}
// Example cookie stored by DataDevQuest
const sessionCookie: Cookie = {
name: "ddq_session",
value: "abc123xyz789",
domain: ".datadevquest.com",
path: "/",
expires: new Date("2026-02-15"),
secure: true,
httpOnly: true
};
02. Types of Cookies We Use
Required for the website to function properly. Cannot be disabled.
Remember your preferences and personalization choices.
Help us understand how visitors interact with our platform.
Monitor and improve platform speed and reliability.
03. How We Use Cookies
We use cookies to enhance your experience on DataDevQuest in several ways:
Authentication
Keep you signed in securely across sessions
Preferences
Remember your theme and display settings
Analytics
Understand how to improve the platform
Performance
Optimize loading speeds and reliability
04. Managing Your Cookies
You have control over the cookies stored on your device. Here are your options:
# Browser Settings
# Most browsers allow you to:
$ browser --block-cookies # Block all cookies
$ browser --block-third-party # Block third-party only
$ browser --clear-cookies # Clear existing cookies
# DataDevQuest Preferences
$ ddq preferences --cookies # Open cookie settings
$ ddq preferences --reset # Reset to defaults
# Contact Us
$ echo "cookies@datadevquest.com"
cookies@datadevquest.com
Note
Disabling certain cookies may affect your experience on DataDevQuest. Essential cookies cannot be disabled as they are necessary for the platform to function.