Legal Document

Cookie Policy

This policy explains how DataDevQuest uses cookies and similar technologies to recognize you when you visit our platform.

Last updated: January 2026

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.

cookie_example.ts
                            
 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

Essential Required

Required for the website to function properly. Cannot be disabled.

Session managementSecurity tokensLoad balancing
Functional

Remember your preferences and personalization choices.

Language preferencesTheme settingsForm data
Analytics

Help us understand how visitors interact with our platform.

Page viewsSession durationNavigation paths
Performance

Monitor and improve platform speed and reliability.

Error trackingLoad timesAPI response times

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:

manage_cookies.sh
                            
# 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.