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=428&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 7137 results for "image"(2176ms)

valentineREADME.md1 match

@danisjerry•Updated 3 months ago
3Feel free to mess around with this val and make it your own :). Just click on "Fork" in the top right.
4
5You can change the phrases that show up as you click no, you can change the firstImg and secondImg, maybe even add more images. And you can also change the colors and any of the text on the screen!
6
7Have fun with it and hopefully your crush says yes hehe.

valentineREADME.md1 match

@ziaa4l•Updated 3 months ago
3Feel free to mess around with this val and make it your own :). Just click on "Fork" in the top right.
4
5You can change the phrases that show up as you click no, you can change the firstImg and secondImg, maybe even add more images. And you can also change the colors and any of the text on the screen!
6
7Have fun with it and hopefully your crush says yes hehe.

delightfulTanBisonREADME.md1 match

@Qwerty123•Updated 3 months ago
3Feel free to mess around with this val and make it your own :). Just click on "Fork" in the top right.
4
5You can change the phrases that show up as you click no, you can change the firstImg and secondImg, maybe even add more images. And you can also change the colors and any of the text on the screen!
6
7Have fun with it and hopefully your crush says yes hehe.

valentineREADME.md1 match

@Qwerty123•Updated 3 months ago
3Feel free to mess around with this val and make it your own :). Just click on "Fork" in the top right.
4
5You can change the phrases that show up as you click no, you can change the firstImg and secondImg, maybe even add more images. And you can also change the colors and any of the text on the screen!
6
7Have fun with it and hopefully your crush says yes hehe.

valentineREADME.md1 match

@sripriya0422•Updated 3 months ago
3Feel free to mess around with this val and make it your own :). Just click on "Fork" in the top right.
4
5You can change the phrases that show up as you click no, you can change the firstImg and secondImg, maybe even add more images. And you can also change the colors and any of the text on the screen!
6
7Have fun with it and hopefully your crush says yes hehe.

ai_pricingtypes2 matches

@nbbaier•Updated 3 months ago
47 | "vertex_ai-mistral_models"
48 | "vertex_ai-ai21_models"
49 | "vertex_ai-image-models"
50 | "vertex_ai-embedding-models"
51 | "palm"
80 output_cost_per_token: number;
81 litellm_provider: Provider;
82 mode: "chat" | "embedding" | "completion" | "image_generation" | "audio_transcription" | "audio_speech";
83 supports_function_calling: boolean;
84 supports_parallel_function_calling: boolean;

HTKhanAISearchmain.tsx16 matches

@Htkhan6•Updated 3 months ago
149 margin: 0,
150 },
151 imagesGrid: {
152 display: "grid",
153 gridTemplateColumns: "repeat(2, 1fr)",
154 gap: "10px",
155 },
156 imageItem: {
157 borderRadius: "8px",
158 overflow: "hidden",
159 },
160 imageThumbnail: {
161 width: "100%",
162 height: "120px",
329 )}
330
331 {/* Images Section */}
332 {results.images && results.images.length > 0 && (
333 <div style={styles.resultSection}>
334 <h2 style={styles.sectionTitle}>📸 Images</h2>
335 <div style={styles.imagesGrid}>
336 {results.images.map((image, index) => (
337 <div key={index} style={styles.imageItem}>
338 <a href={image.sourceUrl} target="_blank">
339 <img
340 src={image.thumbnailUrl}
341 alt={image.title}
342 style={styles.imageThumbnail}
343 />
344 </a>
429 },
430 ],
431 images: [
432 {
433 title: "Image 1",
434 thumbnailUrl: `https://maxm-imggenurl.web.val.run/${encodeURIComponent(query)}-1`,
435 sourceUrl: `https://www.google.com/search?tbm=isch&q=${encodeURIComponent(query)}`,
436 },
437 {
438 title: "Image 2",
439 thumbnailUrl: `https://maxm-imggenurl.web.val.run/${encodeURIComponent(query)}-2`,
440 sourceUrl: `https://www.google.com/search?tbm=isch&q=${encodeURIComponent(query)}`,

distinguishedAmberCoralREADME.md1 match

@Hosianadamai•Updated 3 months ago
3Feel free to mess around with this val and make it your own :). Just click on "Fork" in the top right.
4
5You can change the phrases that show up as you click no, you can change the firstImg and secondImg, maybe even add more images. And you can also change the colors and any of the text on the screen!
6
7Have fun with it and hopefully your crush says yes hehe.

beamingMoccasinSquidREADME.md1 match

@Hosianadamai•Updated 3 months ago
3Feel free to mess around with this val and make it your own :). Just click on "Fork" in the top right.
4
5You can change the phrases that show up as you click no, you can change the firstImg and secondImg, maybe even add more images. And you can also change the colors and any of the text on the screen!
6
7Have fun with it and hopefully your crush says yes hehe.

ultimateGraySailfishmain.tsx15 matches

@Htkhan5•Updated 3 months ago
7 const [aiSummary, setAiSummary] = useState('');
8 const [webResults, setWebResults] = useState([]);
9 const [imageResults, setImageResults] = useState([]);
10 const [videoResults, setVideoResults] = useState([]);
11 const [loading, setLoading] = useState(false);
44 setAiSummary('');
45 setWebResults([]);
46 setImageResults([]);
47 setVideoResults([]);
48
67 setAiSummary(data.aiSummary || '');
68 setWebResults(data.webResults || []);
69 setImageResults(data.imageResults || []);
70 setVideoResults(data.videoResults || []);
71 } catch (error) {
77 };
78
79 // Masonry-like grid for images
80 const ImageGrid = React.memo(({ images }) => {
81 return (
82 <div style={{
86 width: '100%'
87 }}>
88 {images.map((image, index) => (
89 <div
90 key={index}
106 >
107 <img
108 src={image.url}
109 alt={image.title || 'Image'}
110 style={{
111 width: '100%',
115 loading="lazy"
116 />
117 {image.title && (
118 <div style={{
119 position: 'absolute',
129 textOverflow: 'ellipsis'
130 }}>
131 {image.title}
132 </div>
133 )}
138 });
139
140 // Video grid similar to image grid
141 const VideoGrid = React.memo(({ videos }) => {
142 return (
431 gap: '20px'
432 }}>
433 {imageResults.length > 0 && (
434 <div style={{
435 backgroundColor: '#1a1a1a',
444 fontSize: '18px'
445 }}>
446 Images
447 </h3>
448 <ImageGrid images={imageResults} />
449 </div>
450 )}
549 aiSummary: aiCompletion.choices[0].message.content,
550 webResults: searchResults,
551 imageResults: searchResults.slice(0, 6).map(result => ({
552 url: `https://maxm-imggenurl.web.val.run/${encodeURIComponent(result.title)}`,
553 title: result.title

Imagetourl2 file matches

@dcm31•Updated 1 day ago

thilenius-webcam1 file match

@stabbylambda•Updated 5 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