Follow along with the video below to see how to install our site as a web app on your home screen.
Note: this_feature_currently_requires_accessing_site_using_safari
I picked up an ASP 3.0 book when I was 16... I'm now 25, earn a $82k salary - all without stepping foot on a college campus, and with no professional instruction.
I would disagree with dreamthrall. Although I do agree that you could learn this on your own that takes a lot of time. You can learn this in school in a matter of months whereas teaching yourself will take years.
In my opinion, programming is one of those fields where book knowledge means [mostly] crap. No self respecting employer is going to hire someone because they shelled out a small fortune for technical courses. No matter what you do, you're doing to need to spend time actually working on things so you understand how it works in practice. And by in practice, I don't mean the cheesy 1-2 hour assignments they'll give in your $3k class. May as well save the money (or buy yourself a car instead), the hours of boredom (these types of classes are rarely well-taught) and get to coding!
Also, how important is graphic design in the scheme of things? I follow the "Developers, not coders" thing on your company's site there, but while I can design and build a pretty tasty website on my own I don't think I'm ever going to be stellar at the graphical side of things.
Currently I have a very solid knowledge of HTML, XML, and CSS, as well as design principles, and I'm learning PHP. After that I was thinking I should go on and learn ASP.NET, but would Python or Javascript be better to learn?
Frankly, it is foolish to even consider rolling your own JavaScript code to do even the most trivial of things in a browser now. Instead, choose one of these mature, widely tested JavaScript API frameworks. Spend a little time learning it. You'll ultimately write less code that does more -- and (almost) never have to worry a lick about browser compatibility.
I agree that you should use a framework if you are doing something advanced. But even if you use a framework you will need to have javascript experiance to make use of it. In addition, for simple applications I really don't want to force my visitors to have to download a 90k framework to submit a simple form.
That's pretty cool, I'll have to give jquery a deeper look.
BTW DreamThrall, since you seem to be big on ASP.NET and C#: what do you think of the ASP.NET MVC framework? I only have experience with the regular ASP.NET and MVC seems much more elegant. Although I kind of dislike the heavy use of code tags in what is supposed to be the view, JSP does that better with more elegant tags rather than raw code in your view.