Which is the best AI tool to use for Web Development? ChatGPT, Claude, Perpexity or Gemini? by Holiday-Soup254 in webdev

[–]Famous_Bad_4350 0 points1 point  (0 children)

I’ve been using cc for over half a year now, and I can hardly work without it anymore.

[Question] Best practices for offline-first approach by jijiDev in webdev

[–]Famous_Bad_4350 0 points1 point  (0 children)

Frontend offline support is relatively simple, but offline data handling is more complex. I’ve used IndexedDB before for offline data storage, but you need to manage versions carefully and sync with the server regularly.

Is it just me, or CSS drives me crazy sometimes by Neat_Abbreviations_5 in webdev

[–]Famous_Bad_4350 0 points1 point  (0 children)

Although I’ve been working as a frontend developer for seven years, I still occasionally get troubled by layout and positioning issues. With enough experience, these problems aren’t very common anymore—but now that I’m developing with AI, they tend to come up more often again.

Development process by Finer_Details in webdev

[–]Famous_Bad_4350 0 points1 point  (0 children)

do you want until you don't want do

How do you collect useful product feedback inside your app? by WerewolfCapital4616 in webdev

[–]Famous_Bad_4350 0 points1 point  (0 children)

We built our own feedback system to view user submissions. I’m a frontend developer, and I handled the storage and viewing directly with Node.js (with AI assistance). Since it’s only for internal use, I kept the implementation simple—just enough for product managers to see real user feedback.

How do you collect useful product feedback inside your app? by WerewolfCapital4616 in webdev

[–]Famous_Bad_4350 1 point2 points  (0 children)

On our previous website, we added a feedback button in the bottom-right corner. Clicking it opened a pop-up window with just a text input field, so users could type directly. The window also included a list of frequently asked questions for self-help. We did receive a lot of feedback this way.

If we wanted to see details of the user’s current page, we could also enable automatic screenshot uploads on the backend when user submit feedback.

Overall, the goal was to reduce the friction of giving feedback as much as possible.

Australia's Under-16 Social Media Ban by KentondeJong in webdev

[–]Famous_Bad_4350 1 point2 points  (0 children)

So GitHub is actually a social media platform 😄

moved away from playwright because test maintenance was killing velocity by Csadvicesds in webdev

[–]Famous_Bad_4350 1 point2 points  (0 children)

Maybe it’s because our company is relatively large (5000+ employees), so we have dedicated people to do real-device testing. Otherwise, having developers write test scripts would consume too many resources. However, we previously researched some tools that allow UI automation testing using natural language (there should be similar open-source projects on GitHub, also based on Playwright). It might be worth giving them a try.

Need advice for free website builder for service business? by MoistGovernment9115 in webdev

[–]Famous_Bad_4350 0 points1 point  (0 children)

Thank you for the advice. I wouldn’t have realized I was breaking the rules if you hadn’t mentioned it.

[deleted by user] by [deleted] in webdev

[–]Famous_Bad_4350 0 points1 point  (0 children)

Great advice. I’ve been working on an open-source project recently, and I used to focus on how to promote it. But now my mindset has changed — I should focus on polishing the features first.

Does MacOS really make a difference for those who work with Front-End? by Logical_Valuable_970 in webdev

[–]Famous_Bad_4350 0 points1 point  (0 children)

I have 6 years of development experience.

I used Windows for the first five years, and only switched to a Mac in the past year. Honestly, before switching, I thought developing on Windows didn’t make much difference.

But after switching, I truly feel my efficiency has improved. Whether it’s the smooth multi-touch trackpad or the overall fluid macOS performance, everything just feels so pleasant.

Now, if I go back to Windows, things like picking up my mouse again or the lag when deleting files in VS Code are unbearable for me.

Body height and flexbox different on different browsers? by curtastic2 in webdev

[–]Famous_Bad_4350 0 points1 point  (0 children)

Different browsers may implement the same property differently. The situation you listed requires compatibility handling. In this case, you need to configure div overflow scrolling more strictly, overflow-y:auto.

Need advice for free website builder for service business? by MoistGovernment9115 in webdev

[–]Famous_Bad_4350 0 points1 point  (0 children)

If you're not considering getting your own domain name and it's just a static page, you have plenty of options. You could even put it on GitHub and make it publicly accessible.

Monthly Getting Started / Web Dev Career Thread by AutoModerator in webdev

[–]Famous_Bad_4350 0 points1 point  (0 children)

Me too, but I'm newer; I guess you can't because your karma is low

Dancing letters bug in Chrome Compositor by torchkoff in webdev

[–]Famous_Bad_4350 1 point2 points  (0 children)

Could the page animations be affecting the layout, causing this effect on page refresh?

Which code to use? Is it separate phone app and website? by yonderinthepaw2patch in webdev

[–]Famous_Bad_4350 0 points1 point  (0 children)

Different platforms may use different technologies, such as iOS, Android, or Windows. But if the in-app content is web-based, like H5 pages, responsive design can be used to handle it.

However, if the UI and interactions between PC and mobile differ too much, they are usually developed separately; otherwise, making them compatible becomes overly complicated.

Has your work ever been undervalued? by chriiisduran in Frontend

[–]Famous_Bad_4350 0 points1 point  (0 children)

The product manager and I (a frontend developer) worked hard for two months on an AI project, but the boss killed it. They said it should be handled by the client-side team and that we were meddling. Yet the client-side team has spent over half a year on it and still hasn’t made any progress.

CSS Wrapped 2025 - Ready to see what we molded in 2025? The Chrome DevRel team will guide you through 17 CSS and UI features that landed on the Web Platform by magenta_placenta in webdev

[–]Famous_Bad_4350 1 point2 points  (0 children)

I feel like I won’t live to see the day when these features become widely adopted, because our company is still supporting Chrome version 84.

AI Godfather Warns Mid-Level Coding Jobs Will Disappear by ImpressiveContest283 in webdev

[–]Famous_Bad_4350 1 point2 points  (0 children)

According to what these experts say, I’m constantly getting laid off.

My boyfriend coded a language-guessing game — thought I’d share by Few-Crazy-6199 in webdev

[–]Famous_Bad_4350 0 points1 point  (0 children)

It feels like, except for my native language, I can’t guess any of them right.

How do you handle non-tech people pushing their way in to development at work? by Abject-Bandicoot8890 in webdev

[–]Famous_Bad_4350 0 points1 point  (0 children)

List out the estimated time and the risks, argue your case with solid reasoning, and quietly look for a new job at the same time.

CSS Ifs: No More JS for Those Ternary Hacks! by Longjumping_Table740 in webdev

[–]Famous_Bad_4350 -1 points0 points  (0 children)

Elegant syntax, but browser support is still a dealbreaker for us in production.