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?q=image&page=538&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 7074 results for "image"(1866ms)

cerebras_codermain.tsx1 match

@Raja134Updated 4 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

@mukulrahmanUpdated 4 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

@lucbugUpdated 4 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

phenomenalScarletClammain.tsx1 match

@schondanielUpdated 4 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

@schondanielUpdated 4 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

@anupUpdated 4 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

@tonyStarkUpdated 4 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

imageConverterAppGlassUImain.tsx50 matches

@gitmanish01Updated 4 months ago
11];
12
13function ImageConverter() {
14 const [sourceImages, setSourceImages] = useState([]);
15 const [convertedImages, setConvertedImages] = useState([]);
16 const [targetFormat, setTargetFormat] = useState('webp');
17 const fileInputRef = useRef(null);
19 const handleFileUpload = (event) => {
20 const files = Array.from(event.target.files);
21 const imagePromises = files.map(file => {
22 return new Promise((resolve) => {
23 const reader = new FileReader();
32 });
33
34 Promise.all(imagePromises).then(images => {
35 setSourceImages(images);
36 // Reset converted images when new source images are added
37 setConvertedImages([]);
38 });
39 };
40
41 const convertImages = () => {
42 if (sourceImages.length === 0) return;
43
44 const conversionPromises = sourceImages.map(sourceImage => {
45 return new Promise((resolve) => {
46 const img = new Image();
47 img.onload = () => {
48 const canvas = document.createElement('canvas');
50 canvas.height = img.height;
51 const ctx = canvas.getContext('2d');
52 ctx.drawImage(img, 0, 0);
53
54 const convertedDataUrl = canvas.toDataURL(`image/${targetFormat}`);
55 resolve({
56 originalFile: sourceImage.file,
57 dataUrl: convertedDataUrl
58 });
59 };
60 img.src = sourceImage.dataUrl;
61 });
62 });
63
64 Promise.all(conversionPromises).then(setConvertedImages);
65 };
66
67 const downloadImages = () => {
68 convertedImages.forEach((image, index) => {
69 const link = document.createElement('a');
70 link.href = image.dataUrl;
71 link.download = `converted-image-${index + 1}.${targetFormat}`;
72 link.click();
73 });
74 };
75
76 const clearImages = () => {
77 setSourceImages([]);
78 setConvertedImages([]);
79 };
80
81 return (
82 <div className="glass-container">
83 <h1>🖼️ Multi-Image Converter</h1>
84 <div className="upload-section">
85 <input
86 type="file"
87 accept="image/*"
88 multiple
89 ref={fileInputRef}
96 className="upload-button"
97 >
98 Select Images
99 </button>
100 {sourceImages.length > 0 && (
101 <button
102 onClick={clearImages}
103 className="clear-button"
104 >
108 </div>
109
110 {sourceImages.length > 0 && (
111 <div className="image-count-indicator">
112 📸 {sourceImages.length} image{sourceImages.length !== 1 ? 's' : ''} selected
113 </div>
114 )}
115 </div>
116
117 {sourceImages.length > 0 && (
118 <div className="conversion-section">
119 <div className="format-selector">
130
131 <button
132 onClick={convertImages}
133 className="convert-button"
134 disabled={convertedImages.length > 0}
135 >
136 Convert All ✨
137 </button>
138
139 <div className="image-grid">
140 {sourceImages.map((sourceImage, index) => (
141 <div key={index} className="image-pair">
142 <div className="source-preview">
143 <h3>Original #{index + 1}</h3>
144 <img
145 src={sourceImage.dataUrl}
146 alt={`Source ${index + 1}`}
147 />
148 <div className="file-info">
149 {sourceImage.file.name}
150 </div>
151 </div>
152
153 {convertedImages[index] && (
154 <div className="converted-preview">
155 <h3>Converted #{index + 1}</h3>
156 <img
157 src={convertedImages[index].dataUrl}
158 alt={`Converted ${index + 1}`}
159 />
164 </div>
165
166 {convertedImages.length === sourceImages.length && convertedImages.length > 0 && (
167 <button
168 onClick={downloadImages}
169 className="download-button"
170 >
187
188function client() {
189 createRoot(document.getElementById("root")).render(<ImageConverter />);
190}
191if (typeof document !== "undefined") { client(); }
195 <html>
196 <head>
197 <title>Multi-Image Converter</title>
198 <meta name="viewport" content="width=device-width, initial-scale=1.0">
199 <style>${css}</style>
275}
276
277.image-count-indicator {
278 background: rgba(255,255,255,0.3);
279 padding: 5px 10px;
282}
283
284.image-grid {
285 display: flex;
286 flex-wrap: wrap;
290}
291
292.image-pair {
293 display: flex;
294 gap: 20px;
337 }
338
339 .image-pair {
340 flex-direction: column;
341 align-items: center;

fabwbogglelikemain.tsx1 match

@alexweinUpdated 4 months ago
55 "<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" version=\"1.1\" ",
56 ),
57 { headers: { "Content-Type": "image/svg+xml" } },
58 );
59}

cerebras_codermain.tsx1 match

@muneeb683Updated 4 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

Imagetourl2 file matches

@dcm31Updated 13 hours ago

thilenius-webcam1 file match

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