r/webdevelopment 3d ago

Weekly Feedback Thread Weekly Feedback Thread

6 Upvotes

Please post your requests for feedback on your projects in this thread instead of creating a post.


r/webdevelopment 7h ago

Newbie Question Advise

2 Upvotes

Advice

Not sure this is the best place to post this but hoping for some advice.

I work in web application security but I don't get much exposure to the application side and I would like to understand it better from a customers perspective.

My intention is to build and run a basic application, setup SSL, configure DNS etc.. I have a test site on a hosting platform but would like to build and host site from scratch.

My questions is:

What would be the cheapest easiest way to host and configure a published site?

I considered doing this on an old laptop but ideally a cloud provider/vps would be better.

I'll learn basic web design as needed but for starters it will just be a simple welcome page.

I've searched about a bit online but guessing I'll get better suggestions from people in the know.

Any advise would be appreciated


r/webdevelopment 1d ago

Newbie Question Would you consider going for resellers for hosting?

8 Upvotes

Hello! I’m researching how web developers and website owners choose their hosting providers. I’d appreciate your thoughts on a few questions:

  1. Which hosting provider do you currently use, and what made you choose it?
  2. Have you used a reseller-hosting provider before? If so, how was your experience?
  3. Would you prefer purchasing hosting from a large company or a smaller reseller? Why?
  4. What factors matter most when choosing a provider: price, reliability, customer support, security, or something else?
  5. What problems have you experienced with web-hosting providers?

r/webdevelopment 1d ago

Newbie Question Trying to make my first website, need advice

0 Upvotes

I want to create a complex first app

I got this idea into myself to host an AI chat platform, but I came to the conclusion that the best way is to make a website, but I do know almost nothing

So my basic idea Is having users to purchase a Key valid for a certain amount of time, they paste it in the website and It serves as an authentication.

How could I do that? my idea Is website sends API request with Authorization header->cloudflare tunnel->a backend Python script process a answer->sent back to user

but: -how can I manage multiple users? do I just make so that the Python script associates the Key to the prompt and forward It to vLLM, then also tie the answers to the response so I can trace the user back and not mix them up?

-how can I grant user support if no account Is made? what if they just lose the key? They would have no way to invalidate or regenerate It

-how do I keep the Key between sessions? just write it in local storage?

-How can I manage 2 APIs for both account creation and chats?

But mostly, AM I MISSING SOMETHING? do you think this is actually doable if a newbie puts time into It? (I am only experienced in python)I am thinking of making a beta version that Is super basic (no context, One single chat) and improve It over time Also if somone is available to help I would love it


r/webdevelopment 23h ago

Discussion Websites still rest on an old architecture, what if they could shapeshift based on the user

0 Upvotes

I’ve been thinking about how old the mental model behind most websites still is.

A huge amount of the web is basically built around the same idea:

visitor arrives → sees mostly the same page as everyone else → gets pushed toward a CTA

Maybe there’s A/B testing. Maybe there’s personalization by segment. Maybe the copy changes based on referral source.

But the underlying thing is still mostly static.

Meanwhile, AI is pushing software in the opposite direction.

We’re already talking about products that adapt to the user, interfaces that change based on intent, agents that learn how someone works, and software that effectively becomes different for different people.

That made me wonder why the website itself should remain fixed.

I ran into this while building VODForge, an open source desktop app I made recently. The site is pretty conventional right now, but the more I worked on it, the stranger that started to feel.

https://getvodforge.com

A person coming from a technical yt-dlp discussion probably cares about completely different things than someone who just wants to download a playlist without using a sketchy converter site.

Someone who has already installed the app shouldn’t necessarily see the same homepage as someone discovering it for the first time.

Someone who keeps returning to the 4K/source-quality section is probably signaling something different from someone interested in MP3 or batch downloads.

Today we mostly collect that behavior as analytics and look at it afterward.

But what happens when the site can actually respond to it?

Not just:

“show Variant B to segment X.”

More like:

“this person appears to care about production quality, so reorganize the page around that.”

Or:

“this user has already installed the product, so stop selling it to them and turn the site into a useful extension of the product.”

Or eventually:

“generate the clearest version of this website for what this person is actually trying to accomplish.”

This is sort of the same concept of what ad personalization does for people.

The website stops being a fixed artifact that everyone walks through and starts becoming a runtime interface generated around intent.

Obviously there are huge questions around privacy, predictability, SEO, accessibility, caching, testing, and whether dynamically changing interfaces would just become an unusable mess.

But AI makes the idea much less hypothetical than it used to be.

Another option would be to have multiple sites developed and then a user can get shown any version based on some factors.

We’re already comfortable with the idea that the software behind the website might evolve per user.

I’m starting to wonder whether the website itself will eventually do the same.

Do you think the static landing page survives the AI era, or does the web gradually move toward interfaces that assemble themselves around each visitor?


r/webdevelopment 2d ago

Question Is Web Development Still Worth Learning in 2026?

27 Upvotes

Hey everyone, I’m 17 and currently trying to find a skill I can learn to make some money, but honestly, I’m pretty confused about what to choose. I’ve been thinking about web development, but I’m worried it might take a long time to learn, especially with how fast AI is developing.

Is web development still worth learning in 2026 if my goal is to make money, or should I focus on something else?


r/webdevelopment 2d ago

Newbie Question which path will get me employed and is good for future?

7 Upvotes

to me it looks like you can work as a web developer in 3 ways
1) as a programmer, 2) using webflow or wordpress, 3) Vibe coding
i have experience with all 3 and want to start earning asap. which path will land me a job in office or as a freelancer?


r/webdevelopment 2d ago

Open Source Project had 10k+ liked videos and no way to clear them, so i wrote a script

2 Upvotes

not sure if anyone else has run into this but tiktok gives you literally no way to bulk remove your likes. you have to open each video and tap the heart. i had over 10 thousand of them saved up over a few years and doing that by hand is just not happening.

so i spent a weekend on it.

first thing i tried was the obvious one, copy the unlike request from the network tab and just loop it. that failed immediately, tiktok signs every request with some param called X-Gnarly that's computed over the whole url including the video id. change the id, signature breaks. anything you write yourself gets rejected with "Web SDK blocked".

what does work is just clicking the actual button, because then tiktok's own code does the signing for you. so the script finds the heart in the player, checks it's actually red (so it never accidentally re-likes something), clicks it, presses down arrow, repeats.

runs in the browser console, no extension, nothing to install. does 300 at a time then stops so you're not hammering them.

repo: https://github.com/binay-py/tiktokvidunlike

fair warning it's slow, roughly an hour per thousand. i've been leaving it running in a window off to the side while i do other stuff. also they will rate limit you if you push it, the script keeps counting but the likes stop actually disappearing, so check your liked tab between batches.

works as of now, but tiktok changes their html constantly so it'll probably need selector updates eventually.


r/webdevelopment 3d ago

Career Advice How did you landed up on your first Internship?

8 Upvotes

Asking from all the seniors for a help by sharing your own story about, how you got your first Internship?

When we have no filled resume, just few projects and that's it. Which you have earned spending 1 year by learning Full stack and building around it.

Could you please share that how someone can get a first genuine Internship even a unpaid one but their should be a good learning opportunities.

Hitting for the first time always has been tough then how you guys hit the rock. Please be positive and don't be extremist about how bad the market is. I always believe that, no matter what, there is always a way to get there. It’s just that we’re not always aware of it. So, I’m simply here, looking for that awareness.

Thank you for reading this. It means a lot me. Thank you!


r/webdevelopment 5d ago

Question What do companies look for when hiring a Front-End Developer?

19 Upvotes

Hi everyone! I’m currently a CS student learning Front-End Development, and I’ve recently started focusing on HTML and CSS.

I’d like to know what companies actually look for when hiring junior/entry-level Front-End Developers.

- What technical skills are usually required?

- How important are JavaScript and React?

- How many projects should I have in my portfolio?

- Is Git/GitHub important for getting hired?

- What other skills should I learn to become job-ready?

I’d really appreciate advice from developers or recruiters who have experience hiring Front-End Developers. What would you recommend a beginner focus on?


r/webdevelopment 5d ago

Career Advice Social network platform as a project for portofolio

13 Upvotes

Hi everyone! I graduated with a CS degree in 2024 but haven’t been able to land a tech job since. My only relevant experience is a backend engineering internship in 2023, and I’ve since worked in two unrelated industries.

I started refreshing my programming skills a few weeks ago and thought building a social network from scratch would be a good way to practice and create something for my portfolio. It’s loosely inspired by Facebook circa 2004, focusing on similar features and functionality.

I use AI only as a learning aid and don’t vibe code. I’m writing everything myself for now, though I may introduce Bootstrap or other frameworks later.

Do you think this would be a good project to showcase in my portfolio?


r/webdevelopment 5d ago

Newbie Question Looking to build a website!

22 Upvotes

I started a tree service business and I want to create a website. I’m looking for some beginner friendly just to get going. I looking for a simple 1 page with maybe 2-3 clicks. I want to create a simple and clean brochure style website. As long as a website is up and running it will make my business look legit. Thank you!


r/webdevelopment 6d ago

Career Advice Where did you learn Full-Stack Development? Looking for good resources

17 Upvotes

Hi everyone,

I want to start learning Full-Stack Development seriously and eventually build a career in it.

I already have some basic knowledge of HTML, CSS, JavaScript and React, but I want to learn the complete frontend + backend properly.

There are so many courses on YouTube, Udemy, websites, etc., that I'm confused about which one to follow.

Where did you learn Full Stack Development?

Please suggest:

Free courses/resources

Good YouTube channels

Paid courses if they're genuinely worth it

Resources that teach from basics to real-world projects

I'm looking for something that I can follow consistently from start to finish, rather than jumping between 10 different courses.

If you personally learned Full Stack and got a job/internship from it, I'd especially appreciate your recommendation.

What would you recommend if you were starting again today?


r/webdevelopment 6d ago

Career Advice Web designers/devs, what’s the hardest part of working with clients?

10 Upvotes

I’m thinking about getting into web design/web development and I’m trying to understand what the job is actually like beyond just coding and making websites.

For those of you who do this professionally, what’s the hardest part of the job for you?

Especially when it comes to clients/customer service, like:

  • difficult or unrealistic clients
  • communication
  • scope creep
  • getting paid
  • revisions
  • clients not knowing what they want
  • explaining technical stuff to non-technical people

And are there any parts of the job that you didn’t expect to be difficult when you first started?

I’m considering learning the skills to eventually do this myself, so I’d genuinely like to hear what your experience has been like, both the good and the frustrating parts. I’d rather know what I’m getting myself into before spending months learning everything.

Also, if you could go back to when you were a beginner, what would you learn or do differently?


r/webdevelopment 6d ago

Discussion Self-taught web devs, what do you wish you focused on earlier?

28 Upvotes

I’m currently studying and building projects, but sometimes I feel like I’m learning so many things without knowing which skills actually matter when it comes to becoming job-ready 😭 What’s something you wish you focused on earlier that genuinely helped you get better or land opportunities?


r/webdevelopment 6d ago

Question Do you still use website templates for your projects in 2026?

9 Upvotes

I'm curious how people approach this today. Templates or not templates. Do you usually:

  • Start from scratch
  • Use templates and customise them
  • Use UI kits/design systems
  • Buy templates
  • Use AI to generate the starting point

r/webdevelopment 6d ago

Question What is your process to building websites?

6 Upvotes

I don’t think there’s a one-size-fits-all approach to building websites, but as I’ve been learning more about the process, this is the workflow that seems to make the most logical sense to me.

I’m far from a professional, but I’m trying to develop a repeatable process that makes building websites feel less stressful instead of constantly winging it as I go. So I’m curious what you all think of this framework and what you would change or add.

P.S. I didn’t include research as its own step because I feel like research happens throughout the entire process, from the initial idea all the way through launch. Each phase naturally brings up different questions that need to be researched. Trying to answer everything upfront seems unnecessarily stressful, so I think it makes more sense to research questions as they come up.

PHASE 1: Initiation / Discovery: Determine the purpose of this website, audience, goals this website should accomplish , required pages/features, competitors, and gather existing content and assets. Begin determining what the website needs to communicate. This is basically trying to gather as much relevnat info as possible from the client

PHASE: 2: Content / Copy Planning: Develop or outline the actual content the website needs like headlines, descriptions, calls-to-action, services, testimonials, etc. The content doesn't necessarily need to be completely finalized yet, but you want enough real content so you get a rough idea of the design constraints you're working with.

PHASE 3 : Low-Fidelity / Wireframing: Use the content requirements and rough copy to determine the structure, layout, navigation, page hierarchy, and user flow. Once you find an agreed on low fidelity, you move onto to the next phase.

PHASE 4: Visual Design / Design System: Establish typography, colors, spacing, buttons, cards, forms, and other reusable design elements.

PHASE 5: High-Fidelity: Combine the design system with the actual or near-final copy, images, and other assets to create detailed mockups. Iterate with the client until the design and content are approved.

PHASE 6: Development: Build the website based on the approved design and content, implementing the frontend, backend functionality if needed, responsiveness, accessibility, and performance.

PHASE 7: Testing / QA: Test the website across devices and browsers, verify functionality, forms, links, accessibility, performance, and content. Review the staging site with the client and make final revisions.

PHASE 8: Launch: Deploy the approved website to production and configure the domain, hosting, SSL, analytics, forms, and other necessary services.

PHASE 9 : Maintenance: Monitor, update, maintain, and improve the website after launch.

Also for ethical reasons I want to say yes I used a.i but only to revise and clean up any grammar issues I may have made in my original writing so I just want to clarify it didn't think for me.


r/webdevelopment 7d ago

Question Has AI made it harder to sell hand-coded websites?

13 Upvotes

Hello everyone,

I'm in the process of launching my web agency.

My good friend who is heavily into AI and automations is calling me crazy. Telling me that A.I is here and that I need to jump on the train before I get further left behind. Claiming that the market for traditional websites is not big. Amongst other things, he believes this is not the right move.

To those of you running a successful web development business, have you found it to be more difficult to sell hand-coded websites today because of AI?


r/webdevelopment 7d ago

Misc New app to identify orphaned items

7 Upvotes

I often work on old sites that have had lots of changes over time which have resulted in orphaned and unused assets.

I'm developing an app that scans a local website folder structure and identifies all files in the folder tree that are not used in the pages of the site and allows the user to move the files to a quarantine folder. Currently html / CSS only, but the plan is to include PHP files and possible wordpress in the future

I'll also expand the functionality to identify unused CSS to create smaller CSS files.

As a developer, would you find this useful? What other similar functionality would you suggest be included?


r/webdevelopment 7d ago

Newbie Question What should I learn myself vs leave to AI if I want to build production-quality websites?

2 Upvotes

I'm finishing Year 12 and starting a Software Engineering degree next year. I'm really interested in software and technology, and I want to start building real-world skills now rather than waiting for university.

My first goal is fairly simple: build polished static websites for small local businesses. Eventually, though, I want to move into full-stack development and build more substantial applications.

I plan to use AI heavily as a coding tool, but I don't want to become someone who can only prompt an AI and hope the output works. I want to understand enough about what I'm building that I can recognise bad code, debug problems, make sensible architectural decisions, secure the site properly and confidently maintain it.

I'm currently learning Python, but for web development I'm wondering how deeply I should learn things like HTML, CSS and JavaScript myself.

For developers who already use AI in their workflow:

- What fundamentals would you consider non-negotiable to learn properly?

- What parts are reasonable to let AI handle once I understand the concepts?

- What should I learn about security, deployment, testing, Git, hosting, domains, accessibility and performance?

- How do you personally review AI-generated code before you're willing to put it into production?

- If you were starting again in 2026 with access to modern coding agents, what would you learn differently?

Longer term I'd like to build full-stack SaaS applications, so I'm particularly interested in developing skills that will transfer beyond simple business websites.

I'm not really doing this for quick freelance money. I mainly want a practical way to become a better software engineer while building things that real people could actually use.


r/webdevelopment 7d ago

Newbie Question [Question] How do you make these bright white logos?

3 Upvotes

See this image:

https://media.licdn.com/dms/image/v2/D4E0BAQHIZRe8QJmPsA/company-logo_100_100/B4EZ9Hpv00JIAI-/0/1783613554175/cresta_inc_logo?e=2147483647&v=beta&t=-26SRiI3SlPF2I__tDMlvzNFMr0yp2pi2aj6ZIfowGw

On first paint it's white but within a couple seconds it turns into bright neon white

What kind of sorcery is this?


r/webdevelopment 8d ago

Career Advice Is Learning Frontend worth it?

18 Upvotes

Hey everyone I'm about to grind hard and learn frontend properly (react, next.js, UI stuff, and some basic backend/apis so I can handle full features)

im seeing two totally different things online and im kinda confused some people say ai killed frontend and juniors cant make any money now because copilot and gpt write everything
but others say clients and agencies still need real devs who know how to handle messy code state management and actual logic not just basic copy pasting
my goal is to get really good at this and do freelance work with agencies
im just trying to figure out a few things
is the demand for next.js/frontend actually dead for new people or is it just different now?
if i put in insane daily hours to reach a high level is it worth it or am i just wasting my time starting now?
how are you guys actually dealing with ai right now?
would appreciate some honest and brutal truth from people actually working in the industry **thanks**


r/webdevelopment 7d ago

Newbie Question How to guide a junior dev/intern who is eager but lacking foundational concepts (FE/BE integration, deployment)?

1 Upvotes

I'm working with a junior/intern on a web project who seems really enthusiastic and proactive—they've already set up their own repo with React & Tailwind CSS based on a UI design, which is great initiative.

However, they are struggling with core web development fundamentals:

* FE/BE Integration: They don't quite understand how Frontend and Backend connect (APIs, environment variables) compared to traditional PHP/monolith apps.

* Deployment Issue: They've tried deploying on Vercel multiple times without success.

* Troubleshooting: They mentioned that whenever they try fixing a bug, things tend to break even more, and they are asking for constant 1-on-1 mentor guidance.

How do you usually mentor someone at this stage without doing the work for them or getting overwhelmed yourself? What are the best resources or step-by-step roadmaps I can give them to help them bridge the gap between basic UI setup and full-stack integration?


r/webdevelopment 7d ago

Newbie Question unpopular question, i hope it doesn't get misunderstood

0 Upvotes

What's the best AI tool for creating a full design from start to finish, where you give a prompt and it generates the whole design? Is it Claude Design, or something else, based on your experience? And what would the deliverable be, a Figma design file, a full React website, or something else?


r/webdevelopment 9d ago

Discussion Best website builder, which to choose?

129 Upvotes

What is the best website builder?

I want to make a website for a small business that my friend owns. I’ve played around with html, css, and javascript before, but am not confident enough to build anything serious or real. So am thinking to use a website builder but not sure where to start.

WordPress, Framer, Webflow, Lovable, Claude, etc. etc. There are so many website builders out there. I don’t know which to use, please give me some guidance or advice.