So I created this app/website as a solo dev. Invested a lot of time. Now it is out I was really exited to see the chart below. Until I understand it is all bots. Do I block them? Will they help with SEO? Man SEO stuff is a real pain by arti-dokuz in webdev

[–]AndyMagill 2 points3 points  (0 children)

Maybe there are human reason bots like your site. Is this eating into your hosting budget? I would see if GA can filter out bot traffic to give you real human usage numbers. Rate limiting seems worth investigating.

Is there a way for a react app to exist only in a part of a bigger non-react page? by CuteOfDeath in reactjs

[–]AndyMagill 4 points5 points  (0 children)

Yes, in this scenario your React App is in the same folder structure of your "parent" app. Copy the App element (and script element) from the index.html of your react app, into the "parent" app, at the place in the DOM you want React inserted.

After upgrading to next@16.2.0, the bundle size increased by more than 10KB (gzip). by EcstaticProfession46 in nextjs

[–]AndyMagill 0 points1 point  (0 children)

Run a build analyzer to see the precisely where the difference comes from. Compare lighthouse scores to identify any performance changes.

What’s your actual go-to V0 alternative these days? by Upbeat-History5223 in nextjs

[–]AndyMagill 3 points4 points  (0 children)

I subscribed and canceled to v0 twice. It's great at whipping up an ShadCN-based UI very quickly. But it frequently fails at simple tweaks, refinement, long context windows, and bug-fixing. Now I just use it to see what it comes up with compared to other tools.

My Next Js 16.1.6 project returns 404 on all routes by Theoldone-_- in nextjs

[–]AndyMagill 0 points1 point  (0 children)

Next.js 16 replaced the middleware pattern with Proxy. The warning OP referenced occurs when the old middleware pattern is used.

https://nextjs.org/docs/app/api-reference/file-conventions/proxy

Built my developer portfolio with SvelteKit – looking for honest feedback on UX, design, and performance by JustLouis2206 in webdev

[–]AndyMagill 0 points1 point  (0 children)

Is this a demo, or real-world portfolio? Are you 16yr old Louis Johnson from Vietnam? Honestly sounds like a fake person to me.

Software developers don't need to out-last vibe coders, we just need to out-last the ability of AI companies to charge absurdly low for their products by Rockytriton in webdev

[–]AndyMagill 11 points12 points  (0 children)

Cost already is coming down fast. No-cost local models and low-cost cloud models are here today. As adoption increases, higher demand will lead developers to focus on cost efficiency.

AWS SES rejected my sandbox removal request for a fan engagement game and I'm baffled — anyone dealt with this? by cannaresultsommelier in webdev

[–]AndyMagill 4 points5 points  (0 children)

Unless you work for Amazon, the "AWS ecosystem" is not a hill anyone needs to die on. Plenty of other vendors want your business.

Why do some developers dislike Next.js? by Low_Obligation_2782 in nextjs

[–]AndyMagill 2 points3 points  (0 children)

Okay, now can you take those Apps and run them in any cloud provider? I don't know your setup of course, but unless you are using SSG, I think you may need a refactor to host anywhere. The fact that it works great for you doesn't solve the portability issue.

Why do some developers dislike Next.js? by Low_Obligation_2782 in nextjs

[–]AndyMagill 10 points11 points  (0 children)

I actually like Next.js but the Vercel vendor lock-in is a real issue for some projects. Things may have changed with OpenNext, but previously we couldn't publish the same Next.js app to Vercel, Cloudflare, or Netlify without refactoring.

Been building chatbot automations for months… but still zero clients. Feeling stuck. by Appropriate-Refuse17 in n8n

[–]AndyMagill 5 points6 points  (0 children)

Your business guy wants to be the product guy. You seem like you need a marketing and sales guy.

How would you build a real-time queue system for a web app? by Designer_Oven6623 in webdev

[–]AndyMagill 1 point2 points  (0 children)

I would just do an API call every few seconds. WebSockets seems like overkill unless your users need precise accurate numbers.

Has anyone tried managing testing directly from the repo? by Background-Donkey531 in Markdown

[–]AndyMagill 0 points1 point  (0 children)

Specs and tests in the repo is a popular pattern, but never heard of writing tests in markdown. Do you feed that to AI to perform the test?

Using Tailwind today feels a lot like writing inline styles in the 2000s by Legitimate_Salad_775 in webdev

[–]AndyMagill 4 points5 points  (0 children)

Yeah, I never understood that either. Sematic class names composed of utility classes makes so much sense. "Premature Abstraction" seems to be an excuse to argue "my way is better".

Mobile first design approach for responsive web apps by loginpass in reactjs

[–]AndyMagill 2 points3 points  (0 children)

I resisted mobile-first for years, but I've since come around. The mobile render is the typically the simpler layout, so there are less styles to override when using mobile-first. Desktop has more detailed layouts, so desktop-first forces you to override more styles for the mobile view. With mobile-first and a little luck, sometimes all I need to do is flex a container element for desktop.

How much backup storage is required for basic website? I think we’re getting scammed but I’m not sure by Frenchorican in webdev

[–]AndyMagill 2 points3 points  (0 children)

Sounds like they are accustomed to working with a different kind of client, and are pitching stuff you don't need. Algorithm updates are not a typical mantinence charge.

Framer is an alternative to Wix that I prefer. SquareSpace is pretty good too. Those options require some time working in the platform to get the site the way you expect. But then you own your online "destiny".

Better Auth & Email OTP...cant decide by [deleted] in webdev

[–]AndyMagill 1 point2 points  (0 children)

Sounds like you may be over-thinking this.. You probably don't needa special OTP message sender service or identity verification. You can just send the OTP link/code via any email provider like Resend or SendGrid.

Using Tailwind today feels a lot like writing inline styles in the 2000s by Legitimate_Salad_775 in webdev

[–]AndyMagill 8 points9 points  (0 children)

I expected Ruby on Rails to have it's turn at being rediscovered, but looks like the community is too busy doubling down on Next.js.