Skip to content

Instantly share code, notes, and snippets.

@simonw
Created September 12, 2025 04:00
Show Gist options
  • Select an option

  • Save simonw/d1a0d0ff719d609bc6fad2e133e7cbe9 to your computer and use it in GitHub Desktop.

Select an option

Save simonw/d1a0d0ff719d609bc6fad2e133e7cbe9 to your computer and use it in GitHub Desktop.

2025-09-12T03:46:46 conversation: 01k4y0jxm7qz4z18rv8x56z5st id: 01k4y0grhve94ex95wqray7rjh

Model: openrouter/qwen/qwen3-next-80b-a3b-thinking

Prompt

Generate an SVG of a pelican riding a bicycle

Response

Here's an SVG illustration of a friendly cartoon pelican riding a bicycle. The design is simple, scalable, and whimsically styled while maintaining recognisable elements of both a pelican and a bicycle:

<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 150" width="300" height="225">
  <!-- Bicycle -->
  <circle cx="50" cy="100" r="15" fill="none" stroke="#000" stroke-width="2" />
  <circle cx="150" cy="100" r="15" fill="none" stroke="#000" stroke-width="2" />
  
  <!-- Frame -->
  <line x1="50" y1="85" x2="50" y2="70" stroke="#000" stroke-width="2" />
  <line x1="50" y1="70" x2="40" y2="70" stroke="#000" stroke-width="2" />
  <line x1="50" y1="70" x2="60" y2="70" stroke="#000" stroke-width="2" />
  <line x1="50" y1="85" x2="150" y2="85" stroke="#000" stroke-width="2" />
  <line x1="150" y1="85" x2="120" y2="70" stroke="#000" stroke-width="2" />
  <line x1="120" y1="70" x2="120" y2="65" stroke="#000" stroke-width="2" />
  
  <!-- Seat -->
  <ellipse cx="120" cy="65" rx="8" ry="3" fill="#a52a2a" stroke="#000" />
  
  <!-- Pelican -->
  <ellipse cx="120" cy="65" rx="10" ry="8" fill="#fff" stroke="#000" />
  <circle cx="135" cy="60" r="5" fill="#fff" stroke="#000" />
  <polygon points="140,60 150,55 150,65" fill="#fbc02d" stroke="#000" />
  <path d="M150,55 Q155,60 150,65" fill="none" stroke="#000" stroke-width="1" />
  
  <!-- Legs & Feet -->
  <line x1="110" y1="70" x2="110" y2="80" stroke="#000" stroke-width="1.5" />
  <line x1="130" y1="70" x2="130" y2="80" stroke="#000" stroke-width="1.5" />
  <path d="M110,80 L105,85 L115,85 Z" fill="#ff9800" />
  <path d="M130,80 L125,85 L135,85 Z" fill="#ff9800" />
  
  <!-- Handlebar decoration -->
  <circle cx="50" cy="70" r="3" fill="#333" />
</svg>

🎨 Design notes:

  • Pelican has a white body, yellow beak, and orange webbed feet for classic "bird" coloring
  • Bicycle includes simplified frame structure with clear handlebars and seat
  • Whimsical style with smooth curves and friendly proportions (no anatomical accuracy needed for bicycle riding!)
  • Everything is vector-based, so it scales perfectly to any size
  • Mouseover effects or interactive features could be added for web use (e.g., making the wheels spin)

You can copy-paste this into any HTML file or SVG editor. Want it more detailed? With a helmet? Flying? Just ask! 🚴‍♂️🐦

@simonw
Copy link
Author

simonw commented Sep 12, 2025

qwen3-next-80b-a3b-thinking

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment