Dataset Viewer
Auto-converted to Parquet Duplicate
question
stringlengths
556
16.4k
response
stringlengths
1.04k
93.6k
You are a code expert. Please use your professional knowledge to generate accurate, professional responses. Be sure to ensure the code you generate is executable and demonstrable. Please help me implement the following requirement using code, specifically using SVG code: create an interactive plus-to-minus icon that sm...
<!-- Interactive Plus-to-Minus SVG Icon - Click to toggle between plus (+) and minus (-) - Smooth rotation animation via CSS transitions - Hover and keyboard focus states included - Fully responsive: scales via width/height or viewBox Accessible: - Role="button", ARIA attributes, keyboard ...
You are a code expert. Please use your professional knowledge to generate accurate and professional responses. Be careful to ensure that the code you generate is executable. Please help me implement this SVG image using code. The loading spinner should feature a smooth rotating animation with gradient color transitions...
<!-- Modern Animated SVG Loading Spinner - Pure SVG + CSS (no external dependencies) - Smooth 360° rotation with linear timing - Blue-to-purple gradient stroke with animated transitions - Responsive via viewBox and preserveAspectRatio - Optimized with will-change and non-scaling stroke --> <svg class="spi...
You are a code expert. Please use your professional knowledge to generate accurate and professional responses. Make sure the code you generate is executable for demonstration purposes. Please help me implement this SVG image using code: the DuckDuckGo browser logo with privacy shield icon. **Gameplay**: Create a scala...
```svg <!-- DuckDuckGo browser logo with privacy shield (SVG) - Primary color: #DE5833 (DuckDuckGo signature purple/orange) - Magnifying glass lens + handle, with an integrated privacy shield - Responsive: scalable via viewBox, maintains aspect ratio - Accessible: role, aria-labelledby, title/desc - Tested ...
You are a code expert. Please use your professional knowledge to generate accurate and professional responses. Be sure to ensure that the code you generate is executable and can be displayed. Please help me implement this SVG image using code: a navy LinkedIn text logo. **Gameplay**: Create a scalable vector graphic t...
<!-- LinkedIn "in" text logo (navy, #0077B5) This is a clean, scalable vector recreation intended to approximate LinkedIn's official “in” wordmark while avoiding proprietary font dependencies. It uses vector paths for the distinctive characters so it remains crisp at any size. Brand notes: - Color: #0077B5...
You are a code expert, please use your professional knowledge to generate accurate and professional responses. Make sure the code you generate is executable when possible. Please help me implement this SVG image using code. A person gesturing with arms raised in celebration pose. **Gameplay**: Create an SVG illustrati...
```svg <!-- Minimalist, web-ready SVG of a person celebrating with both arms raised. Responsive via viewBox; scalable without loss of quality. Shapes used: circles, rectangles, lines (basic geometric primitives). --> <svg xmlns="http://www.w3.org/2000/svg" width="320" height="320" viewBox="0 0 300 300" ...
You are a code expert. Please use your professional knowledge to generate accurate, expert responses. Take care to ensure that any code you generate is executable and can be demonstrated. Please help me implement this SVG image using code. The spinner needs smooth acceleration. Please create an animated SVG loading sp...
``` <?xml version="1.0" encoding="UTF-8"?> <!-- SVG Loading Spinner with Smooth Easing Acceleration - SVG-only, no external dependencies - SMIL animateTransform provides easing acceleration via keyTimes + keySplines - Customizable via CSS variables and attributes - Responsive and accessible --> <svg xmlns="...
You are a code expert. Please use your professional knowledge to generate accurate and professional responses. Make sure that the code you generate is executable and can be demonstrated. Please help me implement this SVG image using code: a minimalist wireless router with signal waves emanating from it **Features**: -...
<!-- Minimalist Wireless Router with Signal Waves - Clean, scalable SVG suitable for technical docs/website graphics - Palette: blues and whites - ViewBox: maintains aspect ratio at any size --> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 200" width="600" height="375" role="img" aria-la...
You are a code expert. Please use your professional knowledge to generate accurate and professional responses. Make sure the generated code is executable for display whenever possible. Please help me implement the following requirement using SVG code: Design a butterfly with symmetrical wings using mirrored SVG path co...
<!-- Butterfly with perfectly symmetrical, mirrored wings. Implementation notes: - We draw one wing (right) as a single path and reuse it via <use>. - The left wing is an exact mirrored copy using SVG transform scale(-1,1) around the body’s vertical center line at x=300 (half of viewBox width). ...
You are a code expert. Please use your professional knowledge to generate accurate and professional responses. Take care to ensure the generated code is executable for demonstration. Please help me implement the following requirement using code. Create an SVG illustration of: a minimalist user avatar using geometric s...
```svg <svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200" preserveAspectRatio="xMidYMid meet" role="img" aria-labelledby="titleAvatar descAvatar" > <title id="titleAvatar">Minimalist Gender‑Neutral User Avatar</title> <desc id="descAvatar"> A clean, geometric us...
You are a code expert. Please use your professional knowledge to generate accurate and expert responses. Make sure that the code you provide is executable for demonstration. Please help me implement this SVG image using code. Create a modern favicon design featuring a stylized letter "M" with smooth gradient fills and ...
Below is a production-ready SVG favicon featuring a stylized “M” drawn with a single geometric path, filled with a blue→purple linear gradient and layered drop shadows using feDropShadow. It includes detailed comments and is optimized for 32x32 favicon use. SVG (save as favicon.svg or embed inline) ```svg <?xml versio...
You are a code expert. Please use your professional knowledge to generate accurate and professional responses. Make sure the code you generate is executable for demonstration purposes. Please help me implement this SVG image using code: the Safari browser logo with iOS-style glossy finish. **Requirements**: 1. Recrea...
Below is a complete, self-contained SVG that recreates a Safari-style blue compass with an iOS glossy finish. It uses gradients, a drop shadow, and a radial highlight to achieve the reflective look while staying scalable via viewBox. Comments explain each section. You can copy this into an .svg file or inline it in HT...
You are a code expert. Please use your professional knowledge to generate accurate and professional responses. Make sure that the code you generate is executable and can be displayed. Please help me implement this SVG image using code. The character's profile should show an elderly person with a walking cane, featuring...
Below is a complete, self-contained SVG you can paste directly into an HTML file or open standalone. It uses simple shapes and clean paths to depict an elderly person in side profile, holding a walking cane. Comments inside the SVG explain the structure and design choices for easy modification. <!-- Elderly person wit...
You are a code expert. Please use your professional knowledge to generate accurate and professional responses. Make sure the code you generate is executable for demonstration purposes. Please help me implement this SVG image using code: the Opera browser logo. **Requirements**: - Create a scalable SVG representation o...
Below is a complete, self-contained, and responsive SVG implementation of the Opera browser logo. It uses a clean structure, a brand-consistent red radial gradient, and a white “O” ring. Comments explain each part for clarity and maintainability. You can drop this directly into an HTML file or use it as an inline SVG ...
You are a code expert. Please use your professional knowledge to generate accurate and professional responses. Make sure the generated code is executable and ready for demonstration. Please help me implement the following requirement using code. Create an animated SVG loading spinner with smooth rotation effect, featu...
Below is a complete, self-contained example you can drop into any HTML page. It creates a centered, responsive, and smooth-rotating SVG spinner with a blue-to-purple gradient. The code is fully commented to explain each part. <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>SVG Gradient Spin...
You are a code expert, please utilize your professional knowledge to generate accurate and professional responses. Be sure to generate executable code when possible. Please help me implement this SVG image using code. Design a sleek monochrome gaming controller icon optimized for dark mode interfaces with clean lines a...
```svg <!-- Sleek Monochrome Gaming Controller (Dark Mode Optimized) - ViewBox: 24x24 for crisp, scalable rendering at small sizes - Monochrome via currentColor so it inherits color from CSS (e.g., color: #E5E7EB) - Stroke widths and joins chosen for clarity on dark backgrounds (WCAG-friendly when color is ligh...
You are a code expert. Please use your professional knowledge to generate accurate and professional responses. Take care to ensure the generated code is executable for demonstration. Please help me implement the following requirement using code. Create an SVG illustration of: a cheerful children's book character with ...
Here is a standalone, ready-to-use SVG of a cheerful children’s-book-style animal character with bold black outlines, bright colors, exaggerated eyes, and a friendly smile. Save it as a .svg file or embed directly in HTML. <svg width="320" height="320" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg" role="img...
You are a code expert. Please use your professional knowledge to generate accurate, professional responses. Be sure to ensure the code you generate is executable and demonstrable. Please help me implement the following requirement using code, specifically using SVG code: create an interactive drag-and-drop file upload ...
```html <!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Interactive Drag-and-Drop Upload Icon (SVG)</title> <meta name="viewport" content="width=device-width, initial-scale=1" /> <style> :root { --border-color: #9aa4b2; /* default dashed border */ --hover-color: #4...
You are a code expert. Please use your professional knowledge to generate accurate, professional responses. Be sure to ensure the code you generate is executable and demonstrable. Please help me implement the following requirement using code, specifically using SVG code: create a hover-sensitive hamburger menu icon tha...
Below is a complete, self-contained SVG with embedded CSS that implements the requested hover-sensitive hamburger-to-X animation. It uses smooth transitions, rotates the first and third lines into an X, fades out the middle line, and ensures a well-defined interactive area. You can paste this SVG directly into an HTML...
You are a code expert. Please use your professional knowledge to generate accurate and professional responses. Take care to ensure the code you generate is executable for demonstration. Please help me implement this SVG image using code. A weather-resistant compass visualization with drop-shadow effects for enhanced re...
<!-- Weather-Resistant SVG Compass - High-contrast colors for outdoor readability - Realistic drop-shadows via SVG filters - Scalable responsive SVG (preserveAspectRatio + viewBox) - Rotating needle with smooth animation (SMIL + CSS fallbacks) - Accessible title/description - Self-contained, no external d...
You are a code expert. Please use your professional knowledge to generate accurate and professional responses. Make sure the code you generate is executable for demonstration whenever possible. Please help me implement the following requirement using SVG code: create animated SVG loading indicators with gradient effect...
Below is a self-contained, executable SVG demo that implements three distinct, scalable loading indicators with gradient effects and smooth CSS animations. Save it as an .html or .svg file and open in a modern browser. <!doctype html> <html lang="en"> <head> <meta charset="utf-8" /> <title>SVG Loading Indicators w...
You are a code expert. Please use your professional knowledge to generate accurate and professional responses. Be sure to ensure that the code you generate is executable for demonstration. Please help me implement this SVG image using code - a Facebook logo with perfect circle dimensions. **Gameplay**: Create a scalab...
Below is a complete, self-contained SVG that renders a Facebook logo centered inside a perfect circular canvas. It uses a scalable viewBox, centers the glyph precisely, and uses the official Facebook blue (#1877F2). The circle is a true circle with equal width and height, and the “f” is composed of rounded rectangles t...
You are a code expert, please use your professional knowledge to generate accurate and professional responses. Be sure to make the generated code executable for display whenever possible. Please help me implement this SVG image using code. The chess piece has a drop shadow effect. **Gameplay**: Create an SVG represent...
``` <!-- Self-contained SVG: Bishop chess piece with realistic drop shadow. - Scalable vector with clean structure - Soft drop shadow using SVG filters (feGaussianBlur + feOffset + feMerge) - Gradients for depth and polish - Layered elements to keep shadow behind the piece - viewBox preserves aspect ratio; ...
You are a code expert. Please use your professional knowledge to generate accurate and expert responses. Make sure that the code you provide is executable for demonstration. Please help me implement this SVG image using code. Create interactive menu icons with smooth hover effects. **Gameplay**: Design a set of SVG ic...
Below is a self-contained, executable SVG icon set with smooth hover animations, accessible attributes, consistent viewBox sizing, and embedded CSS. Save as an .html file or embed the <svg> directly in your page. You can copy the <svg> block into your own HTML if you prefer. The code includes comments explaining each ...
You are a code expert. Please use your professional knowledge to generate accurate and professional responses. Be sure to ensure the code you generate is executable and can be displayed. Please help me implement the following requirement using SVG code: create a "Design SVG race track with lane markings and finish lin...
``` <!-- Design SVG: Race Track with 4 lanes, smooth curves, finish line - Oval-shaped track (straight sections + smooth arcs) - 4 lanes with dashed lane markers - Bold checkered finish line - Track borders and visual styling - Scalable via viewBox --> <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 700" width...
You are a code expert. Please use your professional knowledge to generate accurate and professional responses. Take care to ensure the generated code is executable for demonstration. Please help me implement the following requirement using code. Create an SVG illustration of: a business mascot character that represent...
```svg <?xml version="1.0" encoding="UTF-8"?> <!-- SVG: Tech Company Robot Mascot - Dimensions: 300x400 - ViewBox: 0 0 300 400 - Brand colors: Primary: #4A90E2 (blue) Secondary:#50E3C2 (teal) Accent: #F5A623 (orange) Background:#FFFFFF (white) - Designed for scalable, modern, friend...
You are a code expert. Please use your professional knowledge to generate accurate and professional responses. Be sure to ensure that the generated code is executable for demonstration. Please help me implement the following requirements using code, creating it with SVG code. The requirement is to create: a wireframe S...
```svg <?xml version="1.0" encoding="UTF-8"?> <!-- Wireframe Scooter Illustration (Technical Documentation) - SVG primitives only: lines, circles, rectangles, paths - Minimalist black & white with clear outline strokes - Organized into groups for easy modification - Standard viewBox for consistent scaling -...
You are a code expert. Please use your professional knowledge to generate accurate, professional responses. Be sure to ensure that the code you generate can be executed and displayed. Please help me implement the following requirement using code: create an SVG image of a cartoon cat with playful expression and tail. *...
Below is a complete, self-contained SVG you can copy into an .svg file or inline in HTML. It uses clean, scalable shapes and comments to make customization easy. The cat has a playful smile, bright eyes with highlights, and a curvy “question-mark” tail. ```svg <?xml version="1.0" encoding="UTF-8"?> <!-- Cartoon Cat ...
You are a code expert. Please use your professional knowledge to generate accurate and professional responses. Be sure to ensure that the code you generate is executable and can be displayed. Please help me implement this SVG image using code: an animated Twitter bird logo using SVG animations. **Gameplay**: Create a ...
Below is a complete, self-contained SVG with CSS animations for a Twitter-style bird logo. It includes: - Smooth wing flapping (alternate phases for top and bottom wings) - Continuous color transitions on the body fill (blue → lighter blue → blue) - Interactive hover states (boosted wing amplitude and speed, subtle lif...
End of preview. Expand in Data Studio

No dataset card yet

Downloads last month
20