OpenTowniesystem_prompt.txt2 matches
18* Response.redirect is broken. Use `return new Response(null, { status: 302, headers: { Location: "/place/to/redirect" }})`
1920* 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).
2122* If you want an AI generated image, use https://maxm-imggenurl.web.val.run/the-description-of-your-image to dynamically generate one.
2324* DO NOT use the Deno KV module for storage.
23return new Response(svg, {
24headers: {
25"Content-Type": "image/svg+xml",
26},
27});
cerebras_codermain.tsx1 match
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
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
sqliteExplorerAppREADME.md1 match
3View and interact with your Val Town SQLite data. It's based off Steve's excellent [SQLite Admin](https://www.val.town/v/stevekrouse/sqlite_admin?v=46) val, adding the ability to run SQLite queries directly in the interface. This new version has a revised UI and that's heavily inspired by [LibSQL Studio](https://github.com/invisal/libsql-studio) by [invisal](https://github.com/invisal). This is now more an SPA, with tables, queries and results showing up on the same page.
45
67## Install
pioneeringGrayChinchillamain.tsx3 matches
16};
1718type ImageData = {
19type: "image";
20text: string;
21name?: string | undefined;
48};
4950export type Data = BooleanData | TextData | ImageData | SpeechData | WebsiteData | FileData;
5152type DataComponentRequestBody = {
groq_codermain.tsx1 match
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
compactBlushGrasshoppermain.tsx4 matches
10interface APIResponse {
11name: string | null;
12image: string | null;
13mediaId: string | null;
14stream: string | null;
17interface RCPResponse {
18metadata: {
19image: string;
20};
21data: string;
100return {
101metadata: {
102image: "",
103},
104data: match[1],
139apiResponse.push({
140name: title,
141image: item.metadata.image,
142mediaId: tmdbId,
143stream: await PRORCPhandler(item.data.replace("/prorcp/", "")),
55city: "Mumbai",
56profession: "Software Engineer",
57profileImage:
58"https://maxm-imggenurl.web.val.run/indian-male-professional-headshot-28-years-old-tech-professional",
59},
65city: "Delhi",
66profession: "Marketing Manager",
67profileImage:
68"https://maxm-imggenurl.web.val.run/indian-female-professional-headshot-32-years-old-corporate-leader",
69},
75city: "Ahmedabad",
76profession: "Entrepreneur",
77profileImage: "https://maxm-imggenurl.web.val.run/indian-male-entrepreneur-headshot-25-years-old-startup-founder",
78},
79{
84city: "Bangalore",
85profession: "Data Scientist",
86profileImage:
87"https://maxm-imggenurl.web.val.run/indian-female-tech-professional-headshot-29-years-old-data-scientist",
88},
98<div className="winner-season">{winner.season}</div>
99<img
100src={winner.profileImage}
101alt={winner.winner}
102className="winner-profile-image"
103/>
104</div>
255256.game-show-platform.background-variant-0 {
257background-image:
258radial-gradient(ellipse at top, rgba(255,23,68,0.1) 0%, transparent 50%),
259radial-gradient(ellipse at bottom, rgba(124,77,255,0.1) 0%, transparent 50%);
261262.game-show-platform.background-variant-1 {
263background-image:
264radial-gradient(ellipse at top right, rgba(0,229,255,0.1) 0%, transparent 50%),
265radial-gradient(ellipse at bottom left, rgba(124,77,255,0.1) 0%, transparent 50%);
267268.game-show-platform.background-variant-2 {
269background-image:
270radial-gradient(ellipse at top left, rgba(124,77,255,0.1) 0%, transparent 50%),
271radial-gradient(ellipse at bottom right, rgba(255,23,68,0.1) 0%, transparent 50%);
280align-items: center;
281border-bottom: 2px solid transparent;
282border-image: var(--cyber-gradient-2) 1;
283}
284371}
372373.winner-profile-image {
374width: 100%;
375height: 100%;
379}
380381.winner-profile-card:hover .winner-profile-image {
382transform: scale(1.1);
383}
wallpaperAppmain.tsx5 matches
23try {
24const safePrompt = encodeURIComponent(prompt || suggestedPrompts[0]);
25const imageUrl = `https://maxm-imggenurl.web.val.run/${safePrompt}`;
26
27// Prefetch image to ensure it loads
28const response = await fetch(imageUrl);
29if (!response.ok) {
30throw new Error('Failed to generate image');
31}
32
33setWallpaper(imageUrl);
34} catch (err) {
35setError(err instanceof Error ? err.message : 'An unknown error occurred');