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/$%7Bsuccess?q=image&page=726&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 8426 results for "image"(3760ms)

findPlatesmain.tsx2 matches

@adnanUpdated 6 months ago
12 link: string;
13 description: string;
14 imageUrl: string;
15}
16
49 link: item.querySelector("link")?.textContent || "",
50 description: extractPrice(item.querySelector("description")?.textContent || ""),
51 imageUrl: item.querySelector("image")?.textContent || "",
52 }));
53

blob_adminREADME.md1 match

@andiebukUpdated 6 months ago
3This is a lightweight Blob Admin interface to view and debug your Blob data.
4
5![Screenshot 2024-11-22 at 15.43.43@2x.png](https://imagedelivery.net/iHX6Ovru0O7AjmyT5yZRoA/d075a4ee-93ec-4cdd-4823-7c8aee593f00/public)
6
7Versions 0-17 of this val were done with Hono and server-rendering.

blob_adminmain.tsx5 matches

@andiebukUpdated 6 months ago
440 {profile && (
441 <div className="flex items-center space-x-4">
442 <img src={profile.profileImageUrl} alt="Profile" className="w-8 h-8 rounded-full" />
443 <span>{profile.username}</span>
444 <a href="/auth/logout" className="text-blue-400 hover:text-blue-300">Logout</a>
583 alt="Blob content"
584 className="max-w-full h-auto"
585 onError={() => console.error("Error loading image")}
586 />
587 </div>
635 <li>Create public shareable links for blobs</li>
636 <li>View and manage public folder</li>
637 <li>Preview images directly in the interface</li>
638 </ul>
639 </div>
693 const { ValTown } = await import("npm:@valtown/sdk");
694 const vt = new ValTown();
695 const { email: authorEmail, profileImageUrl, username } = await vt.me.profile.retrieve();
696 // const authorEmail = me.email;
697
761
762 c.set("email", email);
763 c.set("profile", { profileImageUrl, username });
764 await next();
765};

didREADME.md1 match

@wilhelmUpdated 6 months ago
2
3Want your BlueSky handle to be [username]-did.web.val.run? Fork this val, and go through the steps in your account settings: https://bsky.app/settings/account
4![Screenshot 2024-11-28 at 16.45.27.png](https://imagedelivery.net/iHX6Ovru0O7AjmyT5yZRoA/bab54d09-185a-4ff4-c69c-8b815048d100/public)
5

theOneSkymain.tsx3 matches

@karkowgUpdated 6 months ago
378 <meta property="og:title" content="theonesky">
379 <meta property="og:description" content="bsky firehose as The Matrix source code">
380 <meta property="og:image" content="https://opengraph.b-cdn.net/production/images/63dd4f65-f10d-4ddb-8423-a9423fcc4025.png?token=jlC14BeNbB7_P1qgMfaHhowQJDJx9OeHxMirSfGfYiU&height=739&width=1200&expires=33268646651">
381
382 <!-- Twitter Meta Tags -->
383 <meta name="twitter:card" content="summary_large_image">
384 <meta property="twitter:domain" content="opnsrc.codes">
385 <meta property="twitter:url" content="https://opnsrc.codes">
386 <meta name="twitter:title" content="theonesky">
387 <meta name="twitter:description" content="bsky firehose as The Matrix source code">
388 <meta name="twitter:image" content="https://opengraph.b-cdn.net/production/images/63dd4f65-f10d-4ddb-8423-a9423fcc4025.png?token=jlC14BeNbB7_P1qgMfaHhowQJDJx9OeHxMirSfGfYiU&height=739&width=1200&expires=33268646651">
389
390 <meta name="viewport" content="width=device-width, initial-scale=1">

valSessionmain.tsx1 match

@maxmUpdated 6 months ago
111// bio: "🕳️",
112// username: "maxm",
113// profileImageUrl: "...",
114// url: "https://www.val.town/u/maxm",
115// tier: "pro",

scribemain.tsx2 matches

@yawnxyzUpdated 6 months ago
857 <meta charset="UTF-8">
858 <meta name="viewport" content="width=device-width, initial-scale=1.0">
859 <link rel="icon" type="image/png" href="https://labspace.ai/ls2-circle.png" />
860 <title>Scribe • Audio Recorder</title>
861 <meta property="og:title" content="Scribe • Audio Recorder" />
862 <meta property="og:description" content="A tool to record and process audio" />
863 <meta property="og:image" content="https://yawnxyz-og.web.val.run/img?link=https://scribe.labspace.ai&title=Scribe&subtitle=Audio%20Recorder" />
864
865 <!-- Load dependencies first -->

statusREADME.md1 match

@DFYMagicThemesUpdated 6 months ago
4
5<div align="center">
6<img src="https://imagedelivery.net/iHX6Ovru0O7AjmyT5yZRoA/67a1d35e-c37c-41a4-0e5a-03a9ba585d00/public" width="700px"/>
7</div>

blob_adminREADME.md1 match

@tobiasdossingerUpdated 6 months ago
3This is a lightweight Blob Admin interface to view and debug your Blob data.
4
5![Screenshot 2024-11-22 at 15.43.43@2x.png](https://imagedelivery.net/iHX6Ovru0O7AjmyT5yZRoA/d075a4ee-93ec-4cdd-4823-7c8aee593f00/public)
6
7Versions 0-17 of this val were done with Hono and server-rendering.

blob_adminmain.tsx5 matches

@tobiasdossingerUpdated 6 months ago
440 {profile && (
441 <div className="flex items-center space-x-4">
442 <img src={profile.profileImageUrl} alt="Profile" className="w-8 h-8 rounded-full" />
443 <span>{profile.username}</span>
444 <a href="/auth/logout" className="text-blue-400 hover:text-blue-300">Logout</a>
583 alt="Blob content"
584 className="max-w-full h-auto"
585 onError={() => console.error("Error loading image")}
586 />
587 </div>
635 <li>Create public shareable links for blobs</li>
636 <li>View and manage public folder</li>
637 <li>Preview images directly in the interface</li>
638 </ul>
639 </div>
693 const { ValTown } = await import("npm:@valtown/sdk");
694 const vt = new ValTown();
695 const { email: authorEmail, profileImageUrl, username } = await vt.me.profile.retrieve();
696 // const authorEmail = me.email;
697
761
762 c.set("email", email);
763 c.set("profile", { profileImageUrl, username });
764 await next();
765};
placeholdji

placeholdji2 file matches

@jjgUpdated 1 day ago
Placeholder image service with emojis 🖼️

image_proxy

@oopsUpdated 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