Val Town Code SearchReturn to Val Town

API Access

You can access search results via JSON API by adding format=json to your query:

https://codesearch.val.run/$%7Bart_info.art.src%7D?q=image&page=118&format=json

For typeahead suggestions, use the /typeahead endpoint:

https://codesearch.val.run/typeahead?q=image

Returns an array of strings in format "username" or "username/projectName"

Found 9568 results for "image"(1168ms)

THELEEROOMMOTORSREADME.md4 matches

@lee_roy•Updated 1 week ago
7### User Features
8- Browse and search cars by brand, model, year, price, mileage, fuel type
9- View detailed car specifications with image galleries
10- User registration and authentication (JWT-based)
11- Wishlist and car comparison functionality
24- JWT authentication with refresh tokens
25- Role-based authorization (user/admin)
26- Image upload and management
27- Advanced search and filtering
28- Responsive UI with Tailwind CSS
95- **users**: User accounts with roles and profiles
96- **cars**: Vehicle inventory with specifications
97- **car_images**: Multiple images per vehicle
98- **wishlists**: User saved cars
99- **inquiries**: Contact requests and test drive bookings
104- Mobile-first responsive design
105- Advanced search and filtering
106- Image galleries with zoom
107- Comparison tools
108- Real-time updates

porfolioindex.ts9 matches

@Jxsco114•Updated 1 week ago
95 category: "branding",
96 description: "Complete brand identity for a tech startup",
97 image: "https://maxm-imggenurl.web.val.run/modern-minimalist-logo-design-with-geometric-shapes-purple-and-blue-gradient",
98 tags: ["Logo Design", "Brand Guidelines", "Typography"]
99 },
103 category: "web",
104 description: "Responsive e-commerce platform design",
105 image: "https://maxm-imggenurl.web.val.run/modern-ecommerce-website-design-clean-layout-purple-accents",
106 tags: ["Web Design", "UI/UX", "E-commerce"]
107 },
111 category: "print",
112 description: "Corporate annual report with infographics",
113 image: "https://maxm-imggenurl.web.val.run/elegant-annual-report-design-layout-with-charts-and-graphs",
114 tags: ["Print Design", "Layout", "Infographics"]
115 },
119 category: "ui",
120 description: "Clean and intuitive mobile app design",
121 image: "https://maxm-imggenurl.web.val.run/modern-mobile-app-interface-design-clean-purple-blue-theme",
122 tags: ["Mobile Design", "UI/UX", "App Design"]
123 },
127 category: "branding",
128 description: "Complete branding package for upscale restaurant",
129 image: "https://maxm-imggenurl.web.val.run/elegant-restaurant-branding-design-logo-menu-business-cards",
130 tags: ["Branding", "Logo Design", "Menu Design"]
131 },
135 category: "web",
136 description: "Professional corporate website redesign",
137 image: "https://maxm-imggenurl.web.val.run/professional-corporate-website-design-clean-modern-layout",
138 tags: ["Web Design", "Corporate", "Responsive"]
139 },
143 category: "print",
144 description: "Fashion magazine spread design",
145 image: "https://maxm-imggenurl.web.val.run/modern-magazine-layout-design-fashion-editorial-spread",
146 tags: ["Editorial Design", "Layout", "Typography"]
147 },
151 category: "ui",
152 description: "Analytics dashboard with data visualization",
153 image: "https://maxm-imggenurl.web.val.run/modern-dashboard-interface-design-data-visualization-charts",
154 tags: ["Dashboard", "Data Viz", "UI Design"]
155 },
159 category: "branding",
160 description: "Fresh brand identity for fintech startup",
161 image: "https://maxm-imggenurl.web.val.run/fintech-startup-branding-modern-logo-business-cards-letterhead",
162 tags: ["Startup", "Fintech", "Brand Identity"]
163 }

porfolioscript.js16 matches

@Jxsco114•Updated 1 week ago
8 category: "branding",
9 description: "Complete brand identity for a tech startup",
10 image: "https://maxm-imggenurl.web.val.run/modern-minimalist-logo-design-with-geometric-shapes-purple-and-blue-gradient",
11 tags: ["Logo Design", "Brand Guidelines", "Typography"]
12 },
16 category: "web",
17 description: "Responsive e-commerce platform design",
18 image: "https://maxm-imggenurl.web.val.run/modern-ecommerce-website-design-clean-layout-purple-accents",
19 tags: ["Web Design", "UI/UX", "E-commerce"]
20 },
24 category: "print",
25 description: "Corporate annual report with infographics",
26 image: "https://maxm-imggenurl.web.val.run/elegant-annual-report-design-layout-with-charts-and-graphs",
27 tags: ["Print Design", "Layout", "Infographics"]
28 },
32 category: "ui",
33 description: "Clean and intuitive mobile app design",
34 image: "https://maxm-imggenurl.web.val.run/modern-mobile-app-interface-design-clean-purple-blue-theme",
35 tags: ["Mobile Design", "UI/UX", "App Design"]
36 },
40 category: "branding",
41 description: "Complete branding package for upscale restaurant",
42 image: "https://maxm-imggenurl.web.val.run/elegant-restaurant-branding-design-logo-menu-business-cards",
43 tags: ["Branding", "Logo Design", "Menu Design"]
44 },
48 category: "web",
49 description: "Professional corporate website redesign",
50 image: "https://maxm-imggenurl.web.val.run/professional-corporate-website-design-clean-modern-layout",
51 tags: ["Web Design", "Corporate", "Responsive"]
52 },
56 category: "print",
57 description: "Fashion magazine spread design",
58 image: "https://maxm-imggenurl.web.val.run/modern-magazine-layout-design-fashion-editorial-spread",
59 tags: ["Editorial Design", "Layout", "Typography"]
60 },
64 category: "ui",
65 description: "Analytics dashboard with data visualization",
66 image: "https://maxm-imggenurl.web.val.run/modern-dashboard-interface-design-data-visualization-charts",
67 tags: ["Dashboard", "Data Viz", "UI Design"]
68 },
72 category: "branding",
73 description: "Fresh brand identity for fintech startup",
74 image: "https://maxm-imggenurl.web.val.run/fintech-startup-branding-modern-logo-business-cards-letterhead",
75 tags: ["Startup", "Fintech", "Brand Identity"]
76 }
152 div.innerHTML = `
153 <div class="relative overflow-hidden group">
154 <img src="${item.image}" alt="${item.title}" class="w-full h-48 object-cover transition-transform duration-300 group-hover:scale-110">
155 <div class="portfolio-overlay">
156 <div class="text-white">
320});
321
322// Preload images for better performance
323function preloadImages() {
324 portfolioItems.forEach(item => {
325 const img = new Image();
326 img.src = item.image;
327 });
328}
329
330// Initialize image preloading
331preloadImages();

porfolioindex.html1 match

@Jxsco114•Updated 1 week ago
5 <meta name="viewport" content="width=device-width, initial-scale=1.0">
6 <title>Alex Morgan - Graphic Designer</title>
7 <link rel="icon" href="/frontend/favicon.svg" type="image/svg+xml">
8
9 <!-- TailwindCSS -->

porfolioREADME.md1 match

@Jxsco114•Updated 1 week ago
412. Modify colors and styling in `style.css`
423. Replace placeholder content in `index.html`
434. Add your own project images (use AI image generation or external links)

todo-sqliteindex.html1 match

@diegoivo•Updated 1 week ago
7 <script src="https://cdn.twind.style" crossorigin></script>
8 <script src="https://esm.town/v/std/catch"></script>
9 <link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>✅</text></svg>">
10 <style>
11 :root {

TrdingXindex.ts1 match

@Kkkhan•Updated 1 week ago
56 hide_top_toolbar: false,
57 hide_legend: false,
58 save_image: false,
59 container_id: "tradingview_chart"
60 });

Glancer.cursorrules2 matches

@lightweight•Updated 1 week ago
178
179- **Redirects:** Use `return new Response(null, { status: 302, headers: { Location: "/place/to/redirect" }})` instead of `Response.redirect` which is broken
180- **Images:** Avoid external images or base64 images. Use emojis, unicode symbols, or icon fonts/libraries instead
181- **AI Image:** To inline generate an AI image use: `<img src="https://maxm-imggenurl.web.val.run/the-description-of-your-image" />`
182- **Storage:** DO NOT use the Deno KV module for storage
183- **Browser APIs:** DO NOT use the `alert()`, `prompt()`, or `confirm()` methods

solo-codingContactUs.tsx2 matches

@soloVal•Updated 1 week ago
89 </div>
90
91 {/* Right side - Contact Info and Image */}
92 <div className="space-y-8">
93 {/* Building Image Placeholder */}
94 <div className="relative">
95 <div className="w-full h-80 bg-gradient-to-br from-blue-200 via-blue-300 to-blue-400 rounded-lg shadow-lg overflow-hidden">

EnuguRentstyle.css4 matches

@godinoarts•Updated 1 week ago
207}
208
209/* Image gallery styles */
210.image-gallery {
211 @apply relative overflow-hidden rounded-lg;
212}
213
214.image-gallery img {
215 @apply w-full h-full object-cover transition-transform duration-300 hover:scale-105;
216}
260}
261
262.property-card .image-container {
263 @apply relative h-48 overflow-hidden;
264}

thilenius-webcam1 file match

@stabbylambda•Updated 5 hours ago
Image proxy for the latest from https://gliderport.thilenius.com

image_generator1 file match

@affulito•Updated 6 days ago
Chrimage
Atiq
"Focal Lens with Atig Wazir" "Welcome to my photography journey! I'm Atiq Wazir, a passionate photographer capturing life's beauty one frame at a time. Explore my gallery for stunning images, behind-the-scenes stories, and tips & tricks to enhance your own