vs-code.com
Curated tools, visual toys, icon libraries, and code snippets. Built by developers, for developers. Every item comes with a Share As Prompt button.
Interactive tools, visual experiments, and developer utilities

Beautiful emoji animations for the web. Drop coins, mushrooms, stars, and any emoji with physics-based falling effects.
VS Code extension to copy file paths, folder structures, and contents from the file explorer. Share with AI agents or real humans.
Generate CSS Grid layouts with customizable rows and columns. Perfect for quick layout prototyping.
Convert colors between HEX, RGB, and HSL formats. Includes alpha channel support.
Test and debug regular expressions in real-time. Highlights matches, captures groups, and explains patterns in plain English.
Create beautiful CSS box shadows with multiple layers. Preview and copy the code.
Paste formatted text as plain keystrokes. Strips rich formatting from Claude, ChatGPT, Notion, and pastes clean text into Slack, Teams, Discord — or converts Markdown to each app's native format.
Generate beautiful CSS gradients with support for linear, radial, and conic types. Includes preset collections for sunset, ocean, forest, neon, and more.
Multi-agent Chrome MCP gateway. One browser, many AI agents. Replaces 20 duplicate chrome-devtools-mcp processes with a single coordinated gateway using per-tab FIFO queues, leases, and audit logging.
Icon libraries, code snippets, and developer essentials
1,000 pixel-perfect 16x16 icons by Mark James. The legendary icon set that powered a generation of web apps.
4,000+ icons from the golden era. A massive collection of 32x32 pixel icons covering every use case imaginable.
import { clsx } from 'clsx'
import { twMerge } from 'tailwind-merge'
export function cn(...inputs) {
return twMerge(clsx(inputs))
}The essential Tailwind utility. Merge class names with conflict resolution. Used in every shadcn/ui project.
function useLocalStorage<T>(
key: string, init: T
): [T, (v: T) => void] {
const [val, setVal] = useState(
() => JSON.parse(
localStorage.getItem(key)!
) ?? init
)
// ...
}Type-safe React hook for localStorage. Automatic serialization, SSR-safe, and reactive updates.
Quick reference guides for the tools you use every day
Essential Git commands from everyday workflows to advanced rebasing, stashing, and history rewriting.
Every Flexbox property visualized. Alignment, ordering, wrapping, and common layout patterns at a glance.
Partial, Pick, Omit, Record, and more. Every built-in utility type with examples and use cases.
Tools in development — launching soon at vs-code.com
System tray app that pastes as keystrokes. Strips rich formatting from AI tools, converts Markdown to Slack/Discord/Teams native format. Ctrl+Shift+V everywhere.
Solarized Markdown Editor with Electron, WYSIWYG editing, PDF export, and Mermaid diagram support. Right-click any .md file to open.
Clipboard → AI vision analysis. Paste any image, get instant AI description via local Ollama models. Privacy-first, runs 100% locally.
Stories about building things that last
How AI Agents Turn Your Forgotten Projects into Gold with Minimal Effort. Ever opened a folder and discovered dozens of half-finished projects?
Read on dev.to →How Mark James created 1,000 free icons that shaped the visual language of the early web and continue to influence design today.
Read article →The story of how a web hosting company created one of the most comprehensive free icon sets ever made, and why it still matters.
Read article →How the Share As Prompt (SAP) standard bridges the gap between code resources and AI agents, turning any code snippet, tool, or cheatsheet into a structured prompt that LLMs can immediately act on.
Read article →Built with Next.js, Tailwind CSS, and CoverKit