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/image-url.jpg%20%22Optional%20title%22?q=image&page=9&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 12680 results for "image"(1039ms)

Gemini-Image-Banana-01package.json2 matches

@aibotcommander•Updated 3 days ago
1{
2 "name": "gemini-flash-image-api",
3 "version": "1.0.0",
4 "description": "Gemini Flash image generation API for Poe.com integration",
5 "main": "index.ts",
6 "scripts": {

SonarPost.tsx18 matches

@moe•Updated 3 days ago
2import fcsdk from 'https://esm.sh/@farcaster/frame-sdk'
3import { useInfiniteQuery } from 'https://esm.sh/@tanstack/react-query@5'
4import { Heart, MessageCircle, Repeat, Images, Copy } from 'https://esm.sh/lucide-react@0.510.0'
5import { useState } from 'https://esm.sh/react@19'
6import { useNavigate } from 'https://esm.sh/react-router@7'
49
50function PostMedia({ cast }) {
51 const images = cast.embeds?.filter((embed) => !!embed?.metadata?.image)
52 const videos = cast.embeds?.filter((embed) => !!embed?.metadata?.video)
53
54 const [selectedImage, setSelectedImage] = useState(null)
55
56 if (!images?.length && !videos?.length) {
57 return null
58 }
60 return (
61 <div className="flex flex-col gap-2">
62 {images?.length > 0 && (
63 <div className="flex flex-row gap-1 flex-wrap items-start">
64 {images.map((image, i) => (
65 <div
66 key={i}
67 className={`rounded-lg overflow-hidden max-w-lg cursor-pointer ${
68 images.length > 1 ? 'w-[48%]' : 'w-[100%]'
69 }`}
70 onClick={(e) => {
71 e.preventDefault()
72 e.stopPropagation()
73 setSelectedImage(image?.url)
74 }}
75 >
76 <img src={image?.url} />
77 </div>
78 ))}
80 )}
81
82 {selectedImage && (
83 <div
84 className="fixed inset-0 w-screen h-screen z-50 object-contain bg-black/90"
85 onClick={() => setSelectedImage(null)}
86 >
87 <div className="w-full h-full">
88 <img src={selectedImage} className="w-full h-full object-contain" />
89 </div>
90 </div>
248 const navigate = useNavigate()
249 const [isFullscreen, setIsFullscreen] = useState(false)
250 const images = cast?.embeds?.filter((embed) => !!embed?.metadata?.image)
251 if (!images || !images.length) return null
252
253 const toggleFullscreen = (e) => {
260 return (
261 <div className="w-full relative">
262 {images?.slice(0, 1)?.map((image) => (
263 <img
264 key={image.cid}
265 src={image?.url}
266 onClick={toggleFullscreen}
267 className={`cursor-pointer ${
272 />
273 ))}
274 <div className="absolute top-0 right-0 p-2">{images?.length > 1 && <Images className="size-4 " />}</div>
275 </div>
276 )
bible-mcp

bible-mcpAGENTS.md2 matches

@cameronpak•Updated 3 days 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

elevenLabsDialogueTestermoi.md1 match

@dcm31•Updated 3 days ago
2title: "ElevenLabs Dialogue Tester"
3description: "A simple Val Town app to test ElevenLabs text-to-dialogue with script-style input. Paste your API key, type dialogue lines, and generate playable audio."
4imageUrl: "https://imagedelivery.net/iHX6Ovru0O7AjmyT5yZRoA/b8e649e1-5494-417a-2fea-44bf0f035e00/public"
5url: "https://dcm31--8c571770907b11f0b5510224a6c84d84.web.val.run"
6author: "dcm31"

elevenLabsDialogueTesterimages.md0 matches

@dcm31•Updated 3 days ago

tijs_orgREADME.md1 match

@tijs•Updated 3 days ago
24- **Accessible Color Palette**: WCAG 2.2 AA compliant purple/pink theme
25- **Card-based UI**: Consistent hover and interaction states
26- **Thumbnails**: App icons and book cover images
27
28### ♿ **Full Accessibility**

tijs_orgCHANGELOG.md2 matches

@tijs•Updated 3 days ago
21 - PDS (Personal Data Server) resolution via Slingshot service
22 - Address record resolution for check-in locations
23 - Book cover image fetching via blob URLs
24- **Responsive Design**:
25 - CSS Grid layouts (3 columns desktop, 1 column mobile)
30 - Purple/pink color palette with section-specific themes
31 - Consistent visual hierarchy and spacing
32- **Thumbnails**: App icons and book cover images
33- **External Links**: Clickable links to detailed pages on respective platforms
34- **Server-side Caching**: 1-hour cache for all external API calls

tijs_orgBookSection.tsx3 matches

@tijs•Updated 3 days ago
42 };
43
44 const getCoverImageUrl = (book: Book): string | null => {
45 if (!book.value.cover?.ref || !pdsUrl) {
46 return null;
267 <div className="book-card">
268 <div className="book-content">
269 {getCoverImageUrl(book) && (
270 <img
271 src={getCoverImageUrl(book)!}
272 alt={`Cover of ${book.value.title}`}
273 className="book-cover"

tijs_orgProfileHeader.tsx2 matches

@tijs•Updated 3 days ago
12 }
13
14 .profile-image {
15 width: 120px;
16 height: 120px;
56 src="https://github.com/tijs.png"
57 alt="Tijs Teulings"
58 className="profile-image"
59 />
60 <h1 className="profile-name">Tijs Teulings</h1>

tijs_orgAppsSection.tsx3 matches

@tijs•Updated 3 days ago
9 description: "Track your (rehab) exercises on iOS",
10 icon:
11 "https://is1-ssl.mzstatic.com/image/thumb/Purple221/v4/85/75/bf/8575bf1c-7522-db8d-44bf-26f4cc5fdd18/AppIcon-0-0-1x_U007ephone-0-1-85-220.jpeg/540x540bb.jpg",
12 },
13 {
17 description: "Estimate the charging time for your EVs on iOS",
18 icon:
19 "https://is1-ssl.mzstatic.com/image/thumb/Purple221/v4/d0/9e/a3/d09ea387-6f70-63e3-7c55-57a286dd8c74/AppIcon-0-0-1x_U007epad-0-1-85-220.png/540x540bb.jpg",
20 },
21 {
26 label: "alpha",
27 icon:
28 "https://res.cloudinary.com/dru3aznlk/image/upload/v1754747200/anchor-logo-transparent_nrw70y.png",
29 },
30 ];

ImageThing

@refactorized•Updated 2 days ago

Gemini-Image-Banana-012 file matches

@aibotcommander•Updated 3 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