HN user

ms7892

939 karma

Programmer.

Email: rehiredev@gmail.com

Posts148
Comments67
View on HN
manish.sh 1h ago

Character.ai: The Technical Story of What Keeps Users Hooked

ms7892
1pts0
www.kimi.com 2d ago

Kimi Work

ms7892
671pts275
turso.tech 8d ago

Turso v0.7.0

ms7892
2pts0
www.researchgate.net 19d ago

Artificial and Fake Eggs: Dance of Death

ms7892
6pts2
blog.absurdpirate.com 21d ago

YouTube Is Actual Garbage

ms7892
3pts0
www.win-rar.com 22d ago

WinRAR Version 7.23

ms7892
5pts2
roach-php.dev 25d ago

Roach PHP – The complete webscraping toolkit for PHP

ms7892
1pts0
www.msn.com 26d ago

OpenAI leans toward waiting until 2027 for IPO: Report

ms7892
3pts1
news.ycombinator.com 1mo ago

Ask HN: How you reduce token usage when using Cline/Continue in VSCode?

ms7892
2pts0
www.macrumors.com 1mo ago

Apple Shares List of 250 Changes Across iOS 27, macOS Golden Gate, and More

ms7892
3pts3
www.gulte.com 1mo ago

TCS Might Replace Humans with AI Agents

ms7892
3pts0
www.theverge.com 1mo ago

Apple WWDC 2026: The 7 biggest announcements

ms7892
6pts3
caravanmagazine.in 1mo ago

Boeing and Air India Escaped Scrutiny After the AI171 Crash

ms7892
4pts0
better-auth.com 2mo ago

Better Auth 1.6

ms7892
2pts0
zed.dev 2mo ago

Zeta2.1: 3x Fewer Tokens, 50ms Faster

ms7892
2pts0
deno.com 2mo ago

Fresh 2.3: Zero JavaScript by Default, View Transitions, and Temporal Support

ms7892
1pts0
github.blog 3mo ago

Pausing new GitHub Copilot Pro trials

ms7892
3pts0
css-tricks.com 3mo ago

Selecting a Date Range in CSS

ms7892
3pts0
zed.dev 3mo ago

We Developed Zeta2

ms7892
4pts0
www.php.net 3mo ago

PHP 8.5.5 Release Announcement

ms7892
3pts0
awesome-copilot.github.com 3mo ago

GitHub Copilot – Community-contributed agents, instructions, and skills

ms7892
3pts0
code.likeagirl.io 3mo ago

I Analyzed 50k Dating Profiles to Decipher the Myths of Love in Algorithm

ms7892
3pts0
world.hey.com 3mo ago

Cloud gaming is kinda amazing

ms7892
3pts1
nuxt.com 3mo ago

Nuxt 4.4

ms7892
3pts0
www.notion.com 4mo ago

How we made Notion available offline

ms7892
3pts0
firebase.google.com 4mo ago

Firebase Studio Shutting Down

ms7892
1pts0
www.0xsid.com 4mo ago

Never Buy a .online Domain

ms7892
1pts0
www.php.net 4mo ago

PHP 8.4.19 Release Announcement

ms7892
2pts0
cursor.com 4mo ago

We compare model quality in Cursor

ms7892
3pts0
symfony.com 4mo ago

Symfony 8.0.6 Released

ms7892
2pts0

Hi HN,

I'm excited to share that my 7-year-old niece, who is showing a keen interest in web development, helped me code my personal website using HTML. She was responsible for the HTML structure, while I later implemented the styles and SEO tags. The concept for the site, including the use of watercolor images sourced from third-party sites, was all her idea!

Great tool. I've following code suggestion to add gaping for form fields on small screen:

<!-- Form Section --> <div class="card shadow-sm mb-5"> <div class="card-body"> <form method="GET" action=""> <div class="row"> <div class="col-md-8 mb-3 mb-md-0"> <input type="text" name="domain" class="form-control" placeholder="Enter a domain (e.g., example.com)" required> </div> <div class="col-md-3 mb-3 mb-md-0"> <select name="record_type" class="form-select" required> <option value="ALL">All Record Types</option> <option value="A">A</option> <option value="AAAA">AAAA</option> <option value="MX">MX</option> <option value="NS">NS</option> <option value="CNAME">CNAME</option> <option value="TXT">TXT</option> <option value="SRV">SRV</option> <option value="SOA">SOA</option> <option value="PTR">PTR</option> </select> </div> <div class="col-md-1"> <button type="submit" class="btn btn-primary w-100">Query</button> </div> </div> </form> </div> </div>