techhashiraa
Photo
padding
- Track: 3px height, rounded corners
- Fill width:
- Adapts to slide background:
- Light slides:
counter
- Dark slides:
counter
- Counter label beside the bar: "1/7" format, 11px, weight 500
#### 2. Swipe Arrow (right edge โ every slide EXCEPT the last)
A subtle chevron on the right edge telling the user to keep swiping. On the **last
slide it is removed** so the user knows they've reached the end.
- Position: absolute right, full height, 48px wide
- Background: gradient fade from transparent โ subtle tint
- Chevron: 24ร24 SVG, rounded strokes
- Adapts to slide background:
- Light slides:
- Dark slides:
---
## Slide Content Patterns
### Layout rules
- Content padding:
- Bottom-aligned slides with progress bar:
- Hero/CTA slides:
- Content-heavy slides:
breathing room above)
### Tag / Category Label
Small uppercase label above the heading on each slide to categorize the content.
- Light slides: color = BRAND_PRIMARY
- Dark slides: color = BRAND_LIGHT
- Brand gradient slides: color =
### Logo Lockup (first and last slides)
Brand icon + brand name displayed together.
- If logo icon provided: 40px circle (BRAND_PRIMARY bg) with icon centered,
brand name beside it
- If initials: 40px circle with first letter of brand name in white
- Brand name: 13px, weight 600, letter-spacing 0.5px
### Watermark (optional)
If the user provided a logo icon, use it as a subtle background watermark on key
slides (hero, CTA, brand gradient) at opacity 0.04โ0.06. Skip if no logo provided.
---
## Standard Slide Sequence
Follow this narrative arc. The number of slides can flex (5โ10), but 7 is ideal.
| # | Type | Background | Purpose |
|---|------|------------|---------|
| 1 | Hero | LIGHT_BG | Hook โ bold statement, logo lockup, optional watermark |
| 2 | Problem | DARK_BG | Pain point โ what's broken, frustrating, or outdated |
| 3 | Solution | Brand gradient | The answer โ what solves it, optional
- Track: 3px height, rounded corners
- Fill width:
((slideIndex + 1) / totalSlides) * 100%- Adapts to slide background:
- Light slides:
rgba(0,0,0,0.08) track, BRAND_PRIMARY fill, rgba(0,0,0,0.3)counter
- Dark slides:
rgba(255,255,255,0.12) track, #fff fill, rgba(255,255,255,0.4)counter
- Counter label beside the bar: "1/7" format, 11px, weight 500
function progressBar(index, total, isLightSlide) {
const pct = ((index + 1) / total) * 100;
const trackColor = isLightSlide ? 'rgba(0,0,0,0.08)' : 'rgba(255,255,255,0.12)';
const fillColor = isLightSlide ? B : '#fff';
const labelColor = isLightSlide ? 'rgba(0,0,0,0.3)' : 'rgba(255,255,255,0.4)';
return `<div style="position:absolute;bottom:0;left:0;right:0;padding:16px 28px
20px;z-index:10;display:flex;align-items:center;gap:10px;">
<div
style="flex:1;height:3px;background:${trackColor};border-radius:2px;overflow:hidde
n;">
<div
style="height:100%;width:${pct}%;background:${fillColor};border-radius:2px;"></div>
</div>
<span style="font-size:11px;color:${labelColor};font-weight:500;">${index +
1}/${total}</span>
</div>`;
}#### 2. Swipe Arrow (right edge โ every slide EXCEPT the last)
A subtle chevron on the right edge telling the user to keep swiping. On the **last
slide it is removed** so the user knows they've reached the end.
- Position: absolute right, full height, 48px wide
- Background: gradient fade from transparent โ subtle tint
- Chevron: 24ร24 SVG, rounded strokes
- Adapts to slide background:
- Light slides:
rgba(0,0,0,0.06) bg, rgba(0,0,0,0.25) stroke- Dark slides:
rgba(255,255,255,0.08) bg, rgba(255,255,255,0.35) strokefunction swipeArrow(isLightSlide) {
const bg = isLightSlide ? 'rgba(0,0,0,0.06)' : 'rgba(255,255,255,0.08)';
const stroke = isLightSlide ? 'rgba(0,0,0,0.25)' : 'rgba(255,255,255,0.35)';
return `<div
style="position:absolute;right:0;top:0;bottom:0;width:48px;z-index:9;display:flex;ali
gn-items:center;justify-content:center;background:linear-gradient(to
right,transparent,${bg});">
<svg width="24" height="24" viewBox="0 0 24 24" fill="none">
<path d="M9 6l6 6-6 6" stroke="${stroke}" stroke-width="2.5"
stroke-linecap="round" stroke-linejoin="round"/>
</svg>
</div>`;
}---
## Slide Content Patterns
### Layout rules
- Content padding:
0 36px standard- Bottom-aligned slides with progress bar:
0 36px 52px to clear the bar- Hero/CTA slides:
justify-content: center- Content-heavy slides:
justify-content: flex-end (text at bottom, visualbreathing room above)
### Tag / Category Label
Small uppercase label above the heading on each slide to categorize the content.
<span class="sans"
style="display:inline-block;font-size:10px;font-weight:600;letter-spacing:2px;color:{c
olor};margin-bottom:16px;">{TAG TEXT}</span>
- Light slides: color = BRAND_PRIMARY
- Dark slides: color = BRAND_LIGHT
- Brand gradient slides: color =
rgba(255,255,255,0.6)### Logo Lockup (first and last slides)
Brand icon + brand name displayed together.
- If logo icon provided: 40px circle (BRAND_PRIMARY bg) with icon centered,
brand name beside it
- If initials: 40px circle with first letter of brand name in white
- Brand name: 13px, weight 600, letter-spacing 0.5px
### Watermark (optional)
If the user provided a logo icon, use it as a subtle background watermark on key
slides (hero, CTA, brand gradient) at opacity 0.04โ0.06. Skip if no logo provided.
---
## Standard Slide Sequence
Follow this narrative arc. The number of slides can flex (5โ10), but 7 is ideal.
| # | Type | Background | Purpose |
|---|------|------------|---------|
| 1 | Hero | LIGHT_BG | Hook โ bold statement, logo lockup, optional watermark |
| 2 | Problem | DARK_BG | Pain point โ what's broken, frustrating, or outdated |
| 3 | Solution | Brand gradient | The answer โ what solves it, optional
techhashiraa
Photo
quote/prompt box |
| 4 | Features | LIGHT_BG | What you get โ feature list with icons |
| 5 | Details | DARK_BG | Depth โ customization, specs, differentiators |
| 6 | How-to | LIGHT_BG | Steps โ numbered workflow or process |
| 7 | CTA | Brand gradient | Call to action โ logo, tagline, CTA button. **No arrow.
Full progress bar.** |
Rules:
- Start with a hook โ the first slide must stop the scroll. Lead with a value
proposition or bold claim, not a description. Use visual proof (screenshots, images)
to immediately validate the hook.
- End with a CTA on brand gradient โ no swipe arrow, progress bar at 100%
- Alternate light and dark backgrounds for visual rhythm
- Adapt the sequence to the topic โ not every carousel needs a "problem" slide
- Slides can be reordered, added, or removed based on what the content needs
---
## Reusable Components
### Strikethrough pills
For "what's being replaced" messaging on problem slides.
### Tag pills
For feature labels, options, or categories.
### Prompt / quote box
For showing example inputs, quotes, or testimonials.
### Feature list
Icon + label + description rows for feature/benefit slides.
### Numbered steps
For workflow or how-to slides.
### Color swatches
For customization or branding slides.
### CTA button (final slide only)
---
## Instagram Frame (Preview Wrapper)
When displaying the carousel in chat, wrap it in an Instagram-style frame so the
user can preview the experience:
- Header: Avatar (BRAND_PRIMARY circle + logo) + handle + subtitle
- Viewport: 4:5 aspect ratio, swipeable/draggable track with all slides
- Dots: Small dot indicators below the viewport
- Actions: Heart, comment, share, bookmark SVG icons
- Caption: Handle + short carousel description + "2 HOURS AGO" timestamp
Include pointer-based swipe/drag interaction for the preview, but the slides
themselves are standalone export-ready images.
Important: The
| 4 | Features | LIGHT_BG | What you get โ feature list with icons |
| 5 | Details | DARK_BG | Depth โ customization, specs, differentiators |
| 6 | How-to | LIGHT_BG | Steps โ numbered workflow or process |
| 7 | CTA | Brand gradient | Call to action โ logo, tagline, CTA button. **No arrow.
Full progress bar.** |
Rules:
- Start with a hook โ the first slide must stop the scroll. Lead with a value
proposition or bold claim, not a description. Use visual proof (screenshots, images)
to immediately validate the hook.
- End with a CTA on brand gradient โ no swipe arrow, progress bar at 100%
- Alternate light and dark backgrounds for visual rhythm
- Adapt the sequence to the topic โ not every carousel needs a "problem" slide
- Slides can be reordered, added, or removed based on what the content needs
---
## Reusable Components
### Strikethrough pills
For "what's being replaced" messaging on problem slides.
<span style="font-size:11px;padding:5px 12px;border:1px solid
rgba(255,255,255,0.1);border-radius:20px;color:#6B6560;text-decoration:line-throug
h;">{Old tool}</span>
### Tag pills
For feature labels, options, or categories.
<span style="font-size:11px;padding:5px
12px;background:rgba(255,255,255,0.06);border-radius:20px;color:{BRAND_LIGHT};"
>{Label}</span>
### Prompt / quote box
For showing example inputs, quotes, or testimonials.
<div style="padding:16px;background:rgba(0,0,0,0.15);border-radius:12px;border:1px
solid rgba(255,255,255,0.08);">
<p class="sans"
style="font-size:13px;color:rgba(255,255,255,0.5);margin-bottom:6px;">{Label}</p>
<p class="serif"
style="font-size:15px;color:#fff;font-style:italic;line-height:1.4;">"{Quote text}"</p>
</div>
### Feature list
Icon + label + description rows for feature/benefit slides.
<div style="display:flex;align-items:flex-start;gap:14px;padding:10px
0;border-bottom:1px solid {LIGHT_BORDER};">
<span
style="color:{BRAND_PRIMARY};font-size:15px;width:18px;text-align:center;">{icon}<
/span>
<div>
<span class="sans"
style="font-size:14px;font-weight:600;color:{DARK_BG};">{Label}</span>
<span class="sans" style="font-size:12px;color:#8A8580;">{Description}</span>
</div>
</div>
### Numbered steps
For workflow or how-to slides.
<div style="display:flex;align-items:flex-start;gap:16px;padding:14px
0;border-bottom:1px solid {LIGHT_BORDER};">
<span class="serif"
style="font-size:26px;font-weight:300;color:{BRAND_PRIMARY};min-width:34px;lin
e-height:1;">01</span>
<div>
<span class="sans"
style="font-size:14px;font-weight:600;color:{DARK_BG};">{Step title}</span>
<span class="sans" style="font-size:12px;color:#8A8580;">{Step
description}</span>
</div>
</div>
### Color swatches
For customization or branding slides.
<div
style="width:32px;height:32px;border-radius:8px;background:{color};border:1px
solid rgba(255,255,255,0.08);"></div>
### CTA button (final slide only)
<div style="display:inline-flex;align-items:center;gap:8px;padding:12px
28px;background:{LIGHT_BG};color:{BRAND_DARK};font-family:'{BODY_FONT}',san
s-serif;font-weight:600;font-size:14px;border-radius:28px;">
{CTA text}
</div>
---
## Instagram Frame (Preview Wrapper)
When displaying the carousel in chat, wrap it in an Instagram-style frame so the
user can preview the experience:
- Header: Avatar (BRAND_PRIMARY circle + logo) + handle + subtitle
- Viewport: 4:5 aspect ratio, swipeable/draggable track with all slides
- Dots: Small dot indicators below the viewport
- Actions: Heart, comment, share, bookmark SVG icons
- Caption: Handle + short carousel description + "2 HOURS AGO" timestamp
Include pointer-based swipe/drag interaction for the preview, but the slides
themselves are standalone export-ready images.
Important: The
.ig-frame must be exactly 420px wide. The carouselโค1
techhashiraa
Photo
viewport inside it has a 4:5 aspect ratio (420ร525px). All slide layouts, font sizes,
and spacing are designed for this 420px base width. Do NOT change this width โ
the export process depends on it.
---
## Exporting Slides as Instagram-Ready PNGs
After the user approves the carousel preview, export each slide as an individual
1080ร1350px PNG image ready for direct Instagram upload.
### Critical Export Rules
1. Use Python for HTML generation โ never use shell scripts with variable
interpolation, as shell variables corrupt content (especially numbers and special
characters in HTML). Always generate HTML files using Python's
2. Embed images as base64 โ all user-uploaded images (screenshots, profile
photos, etc.) must be base64-encoded and embedded directly in the HTML as
and renders correctly in the headless browser.
3. Keep the 420px layout width โ the HTML carousel is designed at 420px
wide. The export uses Playwright's
output WITHOUT changing the layout. Never set the viewport to 1080px wide โ
this would reflow the layout and distort everything.
### Export Script
Use this exact Playwright approach to export slides:
### Why This Works
- **
420px-wide element becomes 1080px in the output image. The layout stays at
420px โ fonts, spacing, and element positions remain exactly as they appear in
the HTML preview.
- **
surrounding browser chrome.
- **
and spacing are designed for this 420px base width. Do NOT change this width โ
the export process depends on it.
---
## Exporting Slides as Instagram-Ready PNGs
After the user approves the carousel preview, export each slide as an individual
1080ร1350px PNG image ready for direct Instagram upload.
### Critical Export Rules
1. Use Python for HTML generation โ never use shell scripts with variable
interpolation, as shell variables corrupt content (especially numbers and special
characters in HTML). Always generate HTML files using Python's
Path.write_text() or open().write().2. Embed images as base64 โ all user-uploaded images (screenshots, profile
photos, etc.) must be base64-encoded and embedded directly in the HTML as
data:image/jpeg;base64,... URIs. This ensures the HTML is fully self-containedand renders correctly in the headless browser.
3. Keep the 420px layout width โ the HTML carousel is designed at 420px
wide. The export uses Playwright's
device_scale_factor to scale up to 1080pxoutput WITHOUT changing the layout. Never set the viewport to 1080px wide โ
this would reflow the layout and distort everything.
### Export Script
Use this exact Playwright approach to export slides:
import asyncio
from pathlib import Path
from playwright.async_api import async_playwright
INPUT_HTML = Path("/path/to/carousel.html")
OUTPUT_DIR = Path("/path/to/output/slides")
OUTPUT_DIR.mkdir(exist_ok=True)
TOTAL_SLIDES = 7 # Update to match your carousel
# The carousel is designed at 420px wide, 4:5 aspect = 525px tall
# Target output: 1080x1350
# Scale factor: 1080 / 420 = 2.5714...
VIEW_W = 420
VIEW_H = 525
SCALE = 1080 / 420
async def export_slides():
async with async_playwright() as p:
browser = await p.chromium.launch()
page = await browser.new_page(
viewport={"width": VIEW_W, "height": VIEW_H},
device_scale_factor=SCALE,
)
html_content = INPUT_HTML.read_text(encoding="utf-8")
await page.set_content(html_content, wait_until="networkidle")
await page.wait_for_timeout(3000) # Wait for fonts to load
# Hide the Instagram frame chrome, show only the slide viewport
await page.evaluate("""() => {
document.querySelectorAll('.ig-header,.ig-dots,.ig-actions,.ig-caption')
.forEach(el => el.style.display='none');
const frame = document.querySelector('.ig-frame');
frame.style.cssText =
'width:420px;height:525px;max-width:none;border-radius:0;box-shadow:none;over
flow:hidden;margin:0;';
const viewport = document.querySelector('.carousel-viewport');
viewport.style.cssText =
'width:420px;height:525px;aspect-ratio:unset;overflow:hidden;cursor:default;';
document.body.style.cssText =
'padding:0;margin:0;display:block;overflow:hidden;';
}""")
await page.wait_for_timeout(500)
for i in range(TOTAL_SLIDES):
# Navigate to slide i by moving the track
await page.evaluate("""(idx) => {
const track = document.querySelector('.carousel-track');
track.style.transition = 'none';
track.style.transform = 'translateX(' + (-idx * 420) + 'px)';
}""", i)
await page.wait_for_timeout(400)
# Screenshot with clip to the exact viewport area
await page.screenshot(
path=str(OUTPUT_DIR / f"slide_{i+1}.png"),
clip={"x": 0, "y": 0, "width": VIEW_W, "height": VIEW_H}
)
print(f"Exported slide {i+1}/{TOTAL_SLIDES}")
await browser.close()
asyncio.run(export_slides())
### Why This Works
- **
device_scale_factor=2.5714** tells the browser to render at high DPI. A420px-wide element becomes 1080px in the output image. The layout stays at
420px โ fonts, spacing, and element positions remain exactly as they appear in
the HTML preview.
- **
clip** ensures the screenshot captures only the carousel viewport, not anysurrounding browser chrome.
- **
wait_for_timeout(3000)** gives Google Fonts time to load beforeโค2
techhashiraa
Photo
screenshotting.
- **
snaps instantly into position.
### Common Export Mistakes to Avoid
| Mistake | What goes wrong | Fix |
|---------|----------------|-----|
| Setting viewport to 1080ร1350 | Layout reflows โ fonts become tiny, spacing
breaks, images resize | Keep viewport at 420ร525, use
| Using shell scripts to generate HTML |
interpolated as shell variables | Always use Python for HTML generation |
| Not waiting for fonts | Headings render in fallback system fonts |
| Not hiding IG frame chrome | Export includes the header, dots, and caption |
Hide
| Changing
Always keep at exactly 420px |
---
## Layout Best PracticesContent must never overlap the progress bar.r.** Use
on any slide content that extends to the bottom.
2. **User-uploaded images may be JPEGs despite
check the actual file format with the
base64 โ use the correct MIME type (
3. **Test every slide visually before export.** Ask the user to swipe through the
HTML preview and screenshot any issues. Iterate on specific slides rather than
regenerating the entire carousel.
---
## Design PrEvery slide is export-readyport-ready** โ arrow and progress bar are part of the slide
image, not ovLight/dark alternationlternation** โ creates visual rhythm and sustains attention acrosHeading + body font pairingnt pairing** โ display font for impact, body font for
reaBrand-derived paletteed palette** โ all colors stem from one primary, keeping
everything Progressive disclosuredisclosure** โ progress bar fills and arrow guides the userLast slide is specialis special** โ no arrow (signals end), full progress bar, cConsistent componentscomponents** โ same tag style, same list style, same spacing
across alContent padding clears UI clears UI** โ body text never overlaps with the progress bar
Iterate fasterate fast** โ show the preview, get feedback on specific slides, fix those
slides. Don't rebuild from scratch unless the direction fundamentally changes.
- **
track.style.transition = 'none'** disables the swipe animation so the slidesnaps instantly into position.
### Common Export Mistakes to Avoid
| Mistake | What goes wrong | Fix |
|---------|----------------|-----|
| Setting viewport to 1080ร1350 | Layout reflows โ fonts become tiny, spacing
breaks, images resize | Keep viewport at 420ร525, use
device_scale_factor || Using shell scripts to generate HTML |
$ signs, backticks, and numbers getinterpolated as shell variables | Always use Python for HTML generation |
| Not waiting for fonts | Headings render in fallback system fonts |
wait_for_timeout(3000) after page load || Not hiding IG frame chrome | Export includes the header, dots, and caption |
Hide
.ig-header,.ig-dots,.ig-actions,.ig-caption || Changing
.ig-frame width | Entire layout shifts, nothing matches preview |Always keep at exactly 420px |
---
## Layout Best PracticesContent must never overlap the progress bar.r.** Use
padding-bottom: 52pxon any slide content that extends to the bottom.
2. **User-uploaded images may be JPEGs despite
.png extension.** Alwayscheck the actual file format with the
file command when embedding asbase64 โ use the correct MIME type (
data:image/jpeg;base64,... vsdata:image/png;base64,...).3. **Test every slide visually before export.** Ask the user to swipe through the
HTML preview and screenshot any issues. Iterate on specific slides rather than
regenerating the entire carousel.
---
## Design PrEvery slide is export-readyport-ready** โ arrow and progress bar are part of the slide
image, not ovLight/dark alternationlternation** โ creates visual rhythm and sustains attention acrosHeading + body font pairingnt pairing** โ display font for impact, body font for
reaBrand-derived paletteed palette** โ all colors stem from one primary, keeping
everything Progressive disclosuredisclosure** โ progress bar fills and arrow guides the userLast slide is specialis special** โ no arrow (signals end), full progress bar, cConsistent componentscomponents** โ same tag style, same list style, same spacing
across alContent padding clears UI clears UI** โ body text never overlaps with the progress bar
Iterate fasterate fast** โ show the preview, get feedback on specific slides, fix those
slides. Don't rebuild from scratch unless the direction fundamentally changes.
Save your Instagram account from getting banned with these tips ๐ก
This guide is based on my personal experience because 2โ3 days ago, my account also got bannedโฆ and I recovered it within just 5 minutes ๐โ๏ธ
This guide is based on my personal experience because 2โ3 days ago, my account also got bannedโฆ and I recovered it within just 5 minutes ๐โ๏ธ
techhashiraa
Video
Prompt ๐ฅ?
Ultra-realistic airport celebrity entry. Single continuous handheld shot from crowd POV. No cuts. Natural micro-shake. Documentary realism.
Audio: Real ambient only โ loud crowd cheering, people shouting โ[your name]!โ, camera shutters, phones recording, airport announcements echoing.
Lighting: Natural daylight through airport glass, realistic reflections, soft shadows, slight haze.
๐ฌ 0.0โ2.0s (CHAOTIC HOOK)
Camera inside dense crowd behind barricades. Shaky handheld.
Phones raised, people blocking view, chaotic movement.
Security pushing crowd slightly. Loud cheering and shouting name.
๐ฌ 2.0โ3.8s (REVEAL MOMENT)
Camera lifts slightly through gaps โ celebrity appears walking forward with bodyguards.
Focus shift: blurred โ sharp.
Female companion walking beside him, holding his hand naturally.
Media flashes hitting face.
๐ฌ 3.8โ5.0s (INTERACTION + EXIT)
Camera pushes closer.
Fan shouts: โ[your name] ek photo!โ
Celebrity turns, smiles, quick wave.
Luxury black car visible ahead.
Female companion steps slightly forward, opens car door โ both enter quickly.
Door shuts โ engine rev โ vehicle starts moving โ END
Website link ๐ - https://create.wan.video/
Ultra-realistic airport celebrity entry. Single continuous handheld shot from crowd POV. No cuts. Natural micro-shake. Documentary realism.
Audio: Real ambient only โ loud crowd cheering, people shouting โ[your name]!โ, camera shutters, phones recording, airport announcements echoing.
Lighting: Natural daylight through airport glass, realistic reflections, soft shadows, slight haze.
๐ฌ 0.0โ2.0s (CHAOTIC HOOK)
Camera inside dense crowd behind barricades. Shaky handheld.
Phones raised, people blocking view, chaotic movement.
Security pushing crowd slightly. Loud cheering and shouting name.
๐ฌ 2.0โ3.8s (REVEAL MOMENT)
Camera lifts slightly through gaps โ celebrity appears walking forward with bodyguards.
Focus shift: blurred โ sharp.
Female companion walking beside him, holding his hand naturally.
Media flashes hitting face.
๐ฌ 3.8โ5.0s (INTERACTION + EXIT)
Camera pushes closer.
Fan shouts: โ[your name] ek photo!โ
Celebrity turns, smiles, quick wave.
Luxury black car visible ahead.
Female companion steps slightly forward, opens car door โ both enter quickly.
Door shuts โ engine rev โ vehicle starts moving โ END
Website link ๐ - https://create.wan.video/
create.wan.video
Wan AI: Leading AI Video Generation Model
Wan is an AI creative platform. It aims to lower the barrier to creative work using artificial intelligence, offering features like text-to-image, image-to-image, text-to-video, image-to-video, and image editing.
โค3
Ios link ๐- https://www.google.com/amp/s/apkkit.com/en/roshutsu-apk%3famp
Android link ๐- https://m.gamespot.com.cn/en/games/73674
Android link ๐- https://m.gamespot.com.cn/en/games/73674
Favorite childhood game ๐ฎ link ๐๐
https://apkvision.org/games/action/tomb-raider-apk-8994/?utm_source=sp_auto_dm&utm_referrer=sp_auto_dm
Game name - Tomb Raider ๐
https://apkvision.org/games/action/tomb-raider-apk-8994/?utm_source=sp_auto_dm&utm_referrer=sp_auto_dm
Game name - Tomb Raider ๐
โค1
Indian gta game link ๐๐
https://play.google.com/store/apps/details?id=com.ANGamingStudio.IndianVehiclesSimulator3d
GAME NAME - Indian Viechles simulator 3d๐ฅณ
https://play.google.com/store/apps/details?id=com.ANGamingStudio.IndianVehiclesSimulator3d
GAME NAME - Indian Viechles simulator 3d๐ฅณ
Guys our first ever Gameplay video uploaded ๐ฅ
Please go and check it out ๐
Video link ๐ ๐
https://youtu.be/XJAw9aiWQ9I?si=7iQ81tddE-h7dO2M
Please go and check it out ๐
Video link ๐ ๐
https://youtu.be/XJAw9aiWQ9I?si=7iQ81tddE-h7dO2M
Claude prompt๐
Never agree with me by default. Your first instinct should be to stress-test what Iโve said, not validate it. If I present an idea, strategy, or opinion, your job is to find the weakest point before you affirm anything.
No glazing. Donโt tell me something is โgreat,โ โbrilliant,โ or โreally smartโ unless you can point to specific, concrete reasons why - and even then, lead with whatโs wrong or missing first. Compliments without substance are noise.
Donโt echo my framing back to me. If I say โI think X is the move,โ donโt start your response with โX is definitely the moveโ or โThat makes a lot of sense.โ Instead, start by asking yourself: what am I not seeing? Whatโs the counter-argument? What would someone who disagrees say, and are they right?
When you do agree, earn it. Agreement should come after youโve genuinely pressure-tested the idea - not as a default starting position. If you agree, say why in a way that adds something I didnโt already say.
Be direct and concise. Skip the warm-up sentences.
Donโt pad responses with filler affirmations. Get to the point. If the answer is โnoโ or โthis wonโt work,โ say that in the first sentence.
Call out bad logic, weak assumptions, and blind spots immediately โ even if I seem confident or excited.
Especially then. The more certain I sound, the more I need pushback.
If you catch yourself about to start a response with
โThatโs a great pointโ or โYouโre absolutely rightโ - stop and rewrite. Start with the most useful thing you can say instead.
Never agree with me by default. Your first instinct should be to stress-test what Iโve said, not validate it. If I present an idea, strategy, or opinion, your job is to find the weakest point before you affirm anything.
No glazing. Donโt tell me something is โgreat,โ โbrilliant,โ or โreally smartโ unless you can point to specific, concrete reasons why - and even then, lead with whatโs wrong or missing first. Compliments without substance are noise.
Donโt echo my framing back to me. If I say โI think X is the move,โ donโt start your response with โX is definitely the moveโ or โThat makes a lot of sense.โ Instead, start by asking yourself: what am I not seeing? Whatโs the counter-argument? What would someone who disagrees say, and are they right?
When you do agree, earn it. Agreement should come after youโve genuinely pressure-tested the idea - not as a default starting position. If you agree, say why in a way that adds something I didnโt already say.
Be direct and concise. Skip the warm-up sentences.
Donโt pad responses with filler affirmations. Get to the point. If the answer is โnoโ or โthis wonโt work,โ say that in the first sentence.
Call out bad logic, weak assumptions, and blind spots immediately โ even if I seem confident or excited.
Especially then. The more certain I sound, the more I need pushback.
If you catch yourself about to start a response with
โThatโs a great pointโ or โYouโre absolutely rightโ - stop and rewrite. Start with the most useful thing you can say instead.