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/$%7BsvgDataUrl%7D?q=image&page=1&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 11158 results for "image"(6410ms)

availability-calendar

availability-calendarREADME.md2 matches

@charmaine•Updated 2 hours ago
3Sends PTO reminders to Slack from shared team Google Calendar.
4
5![image.png](https://imagedelivery.net/iHX6Ovru0O7AjmyT5yZRoA/cef70202-83c9-419b-7ec9-670bd099fe00/public)
6
7- Monday: Weekly summary of ALL OOOs overlapping this week
163. Configure the following for your shared calendar:
17
18 ![image.png](https://imagedelivery.net/iHX6Ovru0O7AjmyT5yZRoA/30489b03-d036-4e18-a3af-ef5295546500/public)
19
205. Copy the generated code into `googleCalendar.ts`

onet2main.tsx5 matches

@join•Updated 2 hours ago
212 "Create designs, concepts, and sample layouts, based on knowledge of layout principles and esthetic design concepts.",
213 },
214 { "id": 22, "onet_soc_code": "27-1024.00", "task": "Use computer software to generate new images." },
215 {
216 "id": 23,
669* \`checkbox\`: For a single, boolean (yes/no) choice.
670* \`select\`: For a single choice from a constrained list of options. If you use this, you MUST also provide an \`options\` array.
671* \`file_image\`: For when an image upload is needed.
672
673# Rule 4: Final Output Specification
912 input.style.marginRight = '8px';
913 break;
914 case 'file_image':
915 input = document.createElement('input');
916 input.type = 'file';
917 input.accept = "image/*";
918 break;
919 default:
959
960 switch (field.type) {
961 case 'file_image':
962 if (inputEl.files[0]) {
963 userInputs[field.name] = await toBase64(inputEl.files[0]);

view-fanvue-for-freeREADME.md1 match

@fanvue•Updated 3 hours ago
1# How Watch Fanvue Video for Free without Paying Premium Subscription 🎬
2
3Can I Unlock Fanvue Image & Video Content without Payment?
4Such above question often comes from the people who want to use Fanvue for free without paying the paywall subscription service
5

x-card-buildermain.tsx13 matches

@yaozakai•Updated 6 hours ago
57 </div>
58 <div>
59 <label for="image">Image URL:</label>
60 <input type="text" id="image" name="image" placeholder="e.g., https://example.com/image.jpg" required>
61 </div>
62 <button type="submit">Generate X Card</button>
71// POST route to handle form submission and generate the Open Graph card
72app.post("/create-card", (req: Request, res: Response) => {
73 const { url, description, image, cardTitle } = req.body;
74
75 // Basic validation
76 if (!url || !description || !image || !cardTitle) {
77 return res.status(400).send("All fields are required.");
78 }
81 const escapedUrl = escapeHtml(url);
82 const escapedDescription = escapeHtml(description);
83 const escapedImage = escapeHtml(image);
84 const escapedCardTitle = escapeHtml(cardTitle);
85
94 <meta property="og:title" content="${escapedCardTitle}">
95 <meta property="og:description" content="${escapedDescription}">
96 <meta property="og:image" content="${escapedImage}">
97 <meta property="og:url" content="${escapedUrl}">
98 <meta property="og:type" content="website">
99
100 <meta name="twitter:card" content="summary_large_image">
101 <meta name="twitter:site" content="@yourtwitterhandle"> <meta name="twitter:title" content="${escapedCardTitle}">
102 <meta name="twitter:description" content="${escapedDescription}">
103 <meta name="twitter:image" content="${escapedImage}">
104 <meta name="twitter:url" content="${escapedUrl}">
105
124 align-items: center;
125 }
126 .preview-image {
127 max-width: 100%;
128 height: auto;
178 <div class="preview-box">
179 <h2>Simulated Preview</h2>
180 ${escapedImage ? `<img src="${escapedImage}" alt="Preview Image" class="preview-image">` : ""}
181 <div class="preview-title">${escapedCardTitle}</div>
182 <div class="preview-description">${escapedDescription}</div>
190&lt;meta property="og:title" content="${escapedCardTitle}"&gt;
191&lt;meta property="og:description" content="${escapedDescription}"&gt;
192&lt;meta property="og:image" content="${escapedImage}"&gt;
193&lt;meta property="og:url" content="${escapedUrl}"&gt;
194&lt;meta property="og:type" content="website"&gt;
195
196&lt;!-- Twitter Card Meta Tags --&gt;
197&lt;meta name="twitter:card" content="summary_large_image"&gt;
198&lt;meta name="twitter:site" content="@yourtwitterhandle"&gt;
199&lt;meta name="twitter:title" content="${escapedCardTitle}"&gt;
200&lt;meta name="twitter:description" content="${escapedDescription}"&gt;
201&lt;meta name="twitter:image" content="${escapedImage}"&gt;
202&lt;meta name="twitter:url" content="${escapedUrl}"&gt;
203 </code></pre>

tanstackReactHonoExampleREADME.md1 match

@vasergen•Updated 6 hours ago
3It's common to have code and types that are needed on both the frontend and the backend. It's important that you write this code in a particularly defensive way because it's limited by what both environments support:
4
5![shapes at 25-02-25 11.57.13.png](https://imagedelivery.net/iHX6Ovru0O7AjmyT5yZRoA/75db1d51-d9b3-45e0-d178-25d886c10700/public)
6
7For example, you *cannot* use the `Deno` keyword. For imports, you can't use `npm:` specifiers, so we reccomend `https://esm.sh` because it works on the server & client. You *can* use TypeScript because that is transpiled in `/backend/index.ts` for the frontend. Most code that works on the frontend tends to work in Deno, because Deno is designed to support "web-standards", but there are definitely edge cases to look out for.

tanstackReactHonoExampleREADME.md1 match

@vasergen•Updated 6 hours ago
21## `favicon.svg`
22
23As of this writing Val Town only supports text files, which is why the favicon is an SVG and not an .ico or any other binary image format. If you need binary file storage, check out [Blob Storage](https://docs.val.town/std/blob/).
24
25## `components/`

tanstackReactHonoExampleindex.html1 match

@vasergen•Updated 6 hours ago
6 <title>React Hono Val Town Starter</title>
7 <script src="https://cdn.tailwindcss.com"></script>
8 <link rel="icon" href="/public/favicon.svg" sizes="any" type="image/svg+xml">
9 </head>
10 <body class="bg-gray-100 font-sans">

digestread1 match

@nahomy•Updated 7 hours ago
480 <meta charset="UTF-8"/>
481 <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
482 <link rel="icon" type="image/png" href="data:image/png;base64,${favicon}">
483 <style>${style}</style>
484 <title>${title}</title>

untitled-6474main.js2 matches

@aaea•Updated 7 hours ago
558 // Set headers to prevent caching
559 res.set({
560 'Content-Type': 'image/gif',
561 'Cache-Control': 'no-cache, no-store, must-revalidate',
562 'Pragma': 'no-cache',
572 // Still return the pixel even if tracking fails
573 res.set({
574 'Content-Type': 'image/gif',
575 'Cache-Control': 'no-cache, no-store, must-revalidate',
576 'Pragma': 'no-cache',

basic-html-startercards.html1 match

@Gjds•Updated 7 hours ago
20 href="https://cdn.glitch.global/5dad5958-9eec-46f1-8fb1-4b91dbdadc11/favicon.ico?v=1718648755153"
21 sizes="any"
22 type="image/svg+xml"
23 >
24

thilenius-webcam1 file match

@stabbylambda•Updated 6 days ago
Image proxy for the latest from https://gliderport.thilenius.com

simple-images1 file match

@blazemcworld•Updated 1 week ago
simple image generator using pollinations.ai
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