Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Resources for getting started with web development? [closed]

Let's say I woke up today and wanted to create a clone of StackOverflow.com, and reap the financial windfall of millions $0.02 ad clicks. Where do I start?

My understanding of web technologies are:

  • HTML is what is ultimately displayed
  • CSS is a mechanism for making HTML look pleasing
  • ASP.NET lets you add functionality using .NET(?)
  • JavaScript does stuff
  • AJAX does asyncronous stuff
  • ... and the list goes on!

To write a good website to I just need to buy seven books and read them all? Are Web 2.0 sites really the synergy of all these technologies?

Where does someone go to get started down the path to creating professional-looking web sites, and what steps are there along the way.

like image 796
Chris Smith Avatar asked Aug 15 '08 20:08

Chris Smith


People also ask

Where should a beginner start web development?

The best first step to becoming a Web Developer is to start learning web development fundamentals, including an understanding of HTML (Hypertext Markup Language), CSS (Cascading Style Sheets), and JavaScript. Many aspiring Web Developers are now using coding bootcamps to fast-track the learning process.

Is web development still in demand 2021?

Aside from commerce, the demand for developers in areas like online banking and remote education is increasing as those industries continue to expand and evolve to meet today's needs. Thus it's crystal clear that becoming a web developer in 2021 is a smart choice both for now and in the future.

Is freeCodeCamp good for web development?

freeCodeCamp provides a whole curriculum on web development where you can learn for free. It is an interactive learning environment where you will go through a series of challenges and build projects along the way. I have also compiled of list of resources where you can learn web development for free.


1 Answers

While I have built my knowledge largely based on using the internet to search out what I want to know (w3schools.com helped a lot, as did A List Apart), a few good books have helped me along the way, though they have been platform/language-specific, so I'll avoid mentioning them unless someone is curious. For me, at least, having a book open so that I don't have to resize windows or switch between them is very valuable.

The first part of your list is ok, but the last few items need tweaking. ASP.NET adds server-side functionality (for the most part) to your application. This lives outside of the browser and is thus quite powerful and easily shared with a variety of end-users.

The problem (some say) with server-side processing is that your application must make a new HTTP request when you ask for an action to be performed. So if you click on a link to a page that yields a new set of data, you don't get instant results. The page reloads, or loads a separate page.

Javascript solves this to a degree--it allows you to respond to user input instantaneously. Do you want to display the sum of two numbers when the user clicks a button? You can do it with Javascript.

The problem with Javascript is that it can't talk directly to databases, or explore your server's file system, or other stuff like that. It lives in the browser--period.

AJAX bridges the gap between your user's browser and your server. With AJAX, Javascript makes the HTTP request without refreshing your page or loading a new one. Javascript talks to a server-side script (not necessarily ASP, either--works with PHP, Rails, Coldfusion, etc.) and sends and receives information. And because Javascript isn't dependent on page loads, a quick, snappy AJAX script can almost give the feeling of a common desktop application, in which you don't have to wait for HTTP requests when performing simple actions on your application's data.

like image 169
Brian Warshaw Avatar answered Sep 22 '22 04:09

Brian Warshaw