INSERT INTO users (first_name, last_name, email, token, confirmed_at)
VALUES
('Aiko', 'Tanaka', '[email protected]', 'tok123', '2025-01-12 10:30:00'),
('Mateo', 'García', '[email protected]', 'mad456', '2025-02-18 14:22:00'),
('Liam', "O'Connor", '[email protected]', 'dub789', '2025-03-09 09:45:00'),
('Fatima', 'Al-Sayed', '[email protected]', 'cai321', '2025-04-01 16:15:00'),
('Zanele', 'Khumalo', '[email protected]', 'jhb654', NULL); -- Not yet confirmed
INSERT INTO snippets (user_id, title, contents, is_private)
VALUES
(1, 'Async in Python', 'A quick guide to using asyncio for concurrent tasks.', 0),
(1, 'SQL Basics', 'An introduction to SELECT, WHERE, and JOIN in SQL.', 1),
(2, 'React Hooks', 'Explaining useState and useEffect with examples.', 0),
(2, 'Docker 101', 'Setting up containers for web apps.', 1),
(2, 'Node.js Tips', 'Best practices for writing clean async code.', 0),
(3, 'Rust Ownership', 'A simple explanation of the ownership model.', 0),
(3, 'Linux Commands', 'Common shell commands for beginners.', 1),
(4, 'CSS Grid Layout', 'How to build responsive layouts with CSS Grid.', 0),
(4, 'Tailwind Shortcuts', 'Useful utility classes for quick design.', 1),
(4, 'Flask REST API', 'Creating a small REST API in Flask.', 0);