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=521&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 7031 results for "image"(2188ms)

valTownInspirationEmailmain.tsx1 match

@charmaine•Updated 3 months ago
12 let html = `<h1>${valTownInspo.title}</h1>
13 <p>${valTownInspo.description}</p>
14 <a href="https://val.town/${valTownInspo.val}"><img src="${valTownInspo.image}" style="max-width:576px"/></a>
15 <p>
16 </p>

seamlessCoffeeCobramain.tsx1 match

@Eviya•Updated 3 months ago
1165 <meta property="og:description" content="Turn your ideas into fully functional apps in less than a second – powered by Llama3.3-70b on Cerebras's super-fast wafer chips. Code is 100% open-source, hosted on Val Town."">
1166 <meta property="og:type" content="website">
1167 <meta property="og:image" content="https://stevekrouse-blob_admin.web.val.run/api/public/CerebrasCoderOG.jpg">
1168
1169

cerebras_codermain.tsx1 match

@Eviya•Updated 3 months ago
1165 <meta property="og:description" content="Turn your ideas into fully functional apps in less than a second – powered by Llama3.3-70b on Cerebras's super-fast wafer chips. Code is 100% open-source, hosted on Val Town."">
1166 <meta property="og:type" content="website">
1167 <meta property="og:image" content="https://stevekrouse-blob_admin.web.val.run/api/public/CerebrasCoderOG.jpg">
1168
1169

multiplayerCirclesREADME.md1 match

@chadwhitacre•Updated 3 months ago
3Move circles around. State is synced with the server. Open a window in another tab and watch the circles update as you move them .
4
5![image.png](https://imagedelivery.net/iHX6Ovru0O7AjmyT5yZRoA/e2a6db10-906d-4398-6e13-32475a0b6500/public)
6

cerebras_codermain.tsx1 match

@manyone•Updated 3 months ago
1165 <meta property="og:description" content="Turn your ideas into fully functional apps in less than a second – powered by Llama3.3-70b on Cerebras's super-fast wafer chips. Code is 100% open-source, hosted on Val Town."">
1166 <meta property="og:type" content="website">
1167 <meta property="og:image" content="https://stevekrouse-blob_admin.web.val.run/api/public/CerebrasCoderOG.jpg">
1168
1169

OpenTowniesystem_prompt.txt2 matches

@shouser•Updated 3 months ago
18 * Response.redirect is broken. Use `return new Response(null, { status: 302, headers: { Location: "/place/to/redirect" }})`
19
20 * Avoid external images or base64 images, use emojis, unicode symtols, or icon fonts/libraries instead, unless that's not practical for the user's request (e.g. if they ask for a particular animated gif).
21
22 * If you want an AI generated image, use https://maxm-imggenurl.web.val.run/the-description-of-your-image to dynamically generate one.
23
24 * DO NOT use the Deno KV module for storage.

importProjectFileREADME.md1 match

@maxm•Updated 3 months ago
7
8
9![image.png](https://imagedelivery.net/iHX6Ovru0O7AjmyT5yZRoA/87a7941b-977d-4d35-f3e9-c5f3bea51f00/public)
10

MrIdentifymain.tsx18 matches

@efaztheistic•Updated 3 months ago
4
5function App() {
6 const [image, setImage] = useState<File | null>(null);
7 const [result, setResult] = useState<string | null>(null);
8 const [error, setError] = useState<string | null>(null);
9
10 const handleImageUpload = async (e: React.ChangeEvent<HTMLInputElement>) => {
11 const file = e.target.files?.[0];
12 if (file) {
13 setImage(file);
14 setResult(null);
15 setError(null);
18
19 const identifyMovie = async () => {
20 if (!image) return;
21
22 const formData = new FormData();
23 formData.append('image', image);
24
25 try {
51 <input
52 type="file"
53 accept="image/*"
54 onChange={handleImageUpload}
55 style={{marginBottom: '15px'}}
56 />
57 {image && (
58 <div>
59 <img
60 src={URL.createObjectURL(image)}
61 alt="Uploaded"
62 style={{maxWidth: '100%', maxHeight: '300px', marginBottom: '15px'}}
110
111 const formData = await request.formData();
112 const imageFile = formData.get('image') as File;
113
114 if (!imageFile) {
115 return new Response(JSON.stringify({ error: 'No image uploaded' }), {
116 status: 400,
117 headers: { 'Content-Type': 'application/json' }
119 }
120
121 const imageBytes = await imageFile.arrayBuffer();
122 const base64Image = btoa(
123 String.fromCharCode(...new Uint8Array(imageBytes))
124 );
125
135 },
136 {
137 type: "image_url",
138 image_url: { url: `data:image/jpeg;base64,${base64Image}` }
139 }
140 ]
152 } catch (error) {
153 console.error(error);
154 return new Response(JSON.stringify({ error: 'Image processing failed' }), {
155 status: 500,
156 headers: { 'Content-Type': 'application/json' }

urgentVoicemailAppmain.tsx2 matches

@Vanshii_244•Updated 3 months ago
4
5function LandingPage() {
6 const [imageUrl] = useState(`https://maxm-imggenurl.web.val.run/young-girl-tech-entrepreneur-cartoon-style-holding-smartphone-and-gadgets`);
7
8 // Replace this with the actual URL of your voicemail val
35 }}>
36 <img
37 src={imageUrl}
38 alt="Girl with Tech Gadgets"
39 style={{

uptimeREADME.md1 match

@jjacobs22•Updated 3 months ago
10
11<div align="center">
12<img src="https://imagedelivery.net/iHX6Ovru0O7AjmyT5yZRoA/67a1d35e-c37c-41a4-0e5a-03a9ba585d00/public" width="500px"/>
13</div>

Imagetourl2 file matches

@dcm31•Updated 5 hours ago

thilenius-webcam1 file match

@stabbylambda•Updated 4 days ago
Image proxy for the latest from https://gliderport.thilenius.com
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