vote up 1 vote down star

Possible Duplicate:
Skills needed for a Web Programmer

Hello,

I'm interested in web programming and want to know what you think are the most important skills to have?

I mainly want to help work on a few open source projects and also I'm thinking career wise as well.

flag

closed as exact duplicate by DVK, Dan Herbert, Robert C. Cartaino, adatapost, Chuck Oct 5 at 2:56

7 Answers

vote up 6 vote down

You need to know:

The easiest way to get into this is probably to get a prepackaged distribution like XAMPP. XAMPP is a WAMP (Windows, Apache, MySQL, PHP) package (the L in LAMP stack refers to Linux) that has everything needed for Web development and PHP has a low barrier to entry to getting started in writing Web pages.

The advantage of XAMPP (and PHP) is that with a simple install you get everything you need (Web server, MySQL database and PHP interpreter) rather than trying to figure out how to install these bits yourself.

link|flag
vote up 1 vote down

HTML/CSS and a web scripting language (e.g. Perl or PHP) would be a good start. After that, you will want to look into frameworks like WebGUI, Catalyst, and/or Joomla.

An aside: from my experience, learning web programming with a WYSIWYG tool like Dreamweaver won't help you much. I took two years of web design in high school, HTML wasn't essential to the curriculum in either course, and I still am not "proficient" in HTML.

link|flag
vote up 1 vote down

1) Create simple pages to understand HTML and CSS.


2) Learn a web application framework. (My favorite is ASP.NET MVC)


3) Understand native JavaScript and the how it may be different between browsers.


4) Learn a javascript framework. (My favorite is jQuery)

link|flag
1  
Wouldn't it be better to practice hand-written AJAX before using web frameworks so as to establish the "foundations"? – Joey Adams Oct 5 at 2:02
To be honest I don't see much benefit. I would learn it more for easy UI development than AJAX. – ChaosPandion Oct 5 at 2:04
1  
Thinking a little longer on it, the foundations are really important. – ChaosPandion Oct 5 at 2:06
vote up 0 vote down

It all depends on what you'll be doing. Simple pages HTML and CSS for sure. Pages that access databases, well there's a whole variety of languages, tools and databases you can use for that. Add more detail about the kinds of sites and we can maybe help more.

link|flag
vote up 0 vote down

Begin to type 'tutorial' into google, repeat, repeat, repeat and repeat until it is almost the fastest word you can type in the keyboard.

The very basics of html you could learn almost in a day, and then move onto 'beginner css tutorials'

link|flag
vote up 0 vote down

If you want to be a designer:

  • HTML
  • CSS
  • Design tools (Photoshop, Dreamweaver, anything else artsy)

If you want to be a programmer:

  • Learn a database (MySql is easy, but look at others such as SQL Server, Oracle, Postgres)
  • Learn a backend language and the differences between them
    • Java and C# are very professional and they are compiled
    • PHP and Ruby are scripted (interpreted) and are very quick and easy to learn (I recommend PHP for a beginner... lotsa examples)
    • Python
  • Learn Javascript
  • MUST understand page lifecycle (HTTP, GET, PUT, etc)
  • Understand web state (amazing how many people still dont understand cookies and sessions!)
  • Maybe look at REST stuff
link|flag
vote up 0 vote down

If you want to be a good programmer, and not a hack, learn a little bit about programming first, before digging into web stuff. The web is great resource for figuring out how to do all sorts of things, but it's not the best resource for building a good, general, foundation. Building such a foundation before getting too web-specific will save you time and headaches in the long run.

Get an introductory text or two on Algorithms and Data Structures. Try to burn through them pretty quickly. It might seem irrelevant to your interests, but you'll save yourself a lot of pain if you have an understanding of fundamental things like linked lists, priority queues, various tree structures and algorithms to traverse them in various ways, etc.

Most introductory computer science textbooks will cover this stuff.

I've never seen this book in person, but it has good reviews, and Python is a handy language for all sorts of areas (both web and lots else).

After a few weeks of intense study (or longer if you go slower), you can start looking at various web-related things. Once you work your way through your introductory text, come back and take advice from other answers to your question.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.