Where can I find resources to learn coding industry standards?

0
7
Asked By CuriousCoder92 On

Hey everyone! I'm currently taking a web development and mobile coding course. We just wrapped up the design and project management modules, and now we'll be starting algorithms along with HTML, CSS, and JavaScript, which I've already learned a bit about. I'm working on a year-long project and I feel like sitting through these next two months would be a huge waste of time, especially since I'm looking for guidance on the industry standards for structuring code and ensuring accessibility for users with disabilities. I asked my teacher, and they mentioned that any code I write now might require a complete overhaul later to meet the necessary standards. Can anyone recommend reputable websites or resources where I can learn these standards instead of waiting? I'd really appreciate any help! Thanks, and have a great day!

5 Answers

Answered By AccessAllAreas On

For accessibility, check out the WCAG (Web Content Accessibility Guidelines) created by the W3C. It's quite comprehensive, so don't stress about memorizing everything. Just get familiar with the key points so you know when to look for specific information. As for coding architecture, there's no universal standard. A lot will depend on your project needs and what you prefer as a developer. If you're diving into frontend work, frameworks like React are popular, but make sure you're comfortable with HTML and JavaScript basics first.

Answered By UserExperienceGuru On

Industry standards encompass various practices that teams adopt. Today, consider this checklist: use Prettier and ESLint for formatting, create small pull requests in Git, ensure unit tests are in place, and maintain some basic security awareness. The best way to learn is by engaging with mature repositories in your stack—copy their conventions and tooling to get started!

Answered By WebDevEnthusiast On

I totally relate to your concerns! Learning industry standards early is a smart move. For accessibility, both Web.dev and MDN are reliable sources. Web.dev has clear explanations of WCAG guidelines without overwhelming you. Start implementing these right now: use semantic HTML, add alt text for images, ensure keyboard navigation works, and check color contrast using tools like webaim.org. It's great that you're thinking ahead—good luck with everything!

Answered By DevGuides On

For real-world documentation and best coding practices, MDN Web Docs is fantastic for HTML, CSS, and JavaScript. Also, visit W3C and WCAG for accessibility standards, and check out the Airbnb JavaScript Style Guide for structured code. Exploring well-organized open-source projects on GitHub can also give you practical insights!

Answered By CodeCrafty On

When it comes to standards in software development, there’s a lot of variation. There isn't a single set of rules we all follow, so you’ll find many different paths to take. I’d recommend checking out 'Clean Craftsmanship' by Robert C. Martin. It's a bit divisive, but it offers valuable insights based on his experiences. You could also look at 'Code that Fits in Your Head' by Mark Seeman for maintaining code. Don’t worry if you’re not ready for it yet, but eventually grab 'Refactoring' by Martin Fowler too; it's crucial for improving your existing code.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.