TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Getting Up to Speed

17 pointsby jfealmost 11 years ago
I learned XHTML and CSS in the mid-late 90s, back when Zeldman.com, K10k.com and Waferbaby.com were really popular. I got into systems software engineering not long after that, and haven&#x27;t really looked back. Now, the web has come a long way since the pre-Ajax days, and I feel it would be smart to develop at least a working knowledge of the fundamental web technologies.<p>So, what, in your opinion, are those fundamental technologies, and in what order do you propose they be learned?

4 comments

eranationalmost 11 years ago
Few tips from someone who started in the dot com bubble and had to adjust during the years:<p>- prefer <a href="https://developer.mozilla.org/en-US/" rel="nofollow">https:&#x2F;&#x2F;developer.mozilla.org&#x2F;en-US&#x2F;</a> over w3schools<p>- Get to know Bootstrap &#x2F; Zorb &#x2F; grid base layouts<p>- Understand responsive design<p>- the 2 above combined means - no more table layout (<a href="http://giveupandusecss.com/" rel="nofollow">http:&#x2F;&#x2F;giveupandusecss.com&#x2F;</a>)<p>- DOCTYPE really matters - don&#x27;t go into quirks mode (no more table height=&quot;100%&quot;...<p>- jQuery of course, and then Angular.js &#x2F; React.js &#x2F; Ember.js (and perhaps also Backbone.js)<p>- Any of the following back end stacks - Rails, Django, Play, Node.js&#x2F;express (depending on which language you prefer, Ruby, Python, Scala&#x2F;Java, JavaScript)<p>- SQL (Postgre &#x2F; MariaDB &#x2F; MySQL) and MongoDB won&#x27;t hurt<p>- Tooling - Get to know Github, Heroku, AWS etc...<p>- Understand that you can do almost anything with JavaScript nowadays, it can get to about 1&#x2F;2 the speed of native code now and improving every day.<p>- Understand that you can do almost anything with pure CSS nowadays, animations, drawing, 3D. e.g. no more image buttons.<p>- Flash and Applets are dead (de facto) HTML5 can do everything you needed one of these before (cameras, sound, video, chats, sockets, animation, 3D, really, anything)<p>- You can use any font you want (webfonts)<p>- XML &#x2F; SOAP &#x2F; XSD stayed in the enterprise world, the web &#x2F; SaaS world seems to have favored the less strict &#x2F; more dynamic REST &#x2F; JSON approach<p>- Speaking of REST. learn REST, the HTTP verbs and how to design an API<p>- Understand JS templates, and client side MVC, and that your backend is becoming more of an API (that can serve both mobile apps and web apps as one). e.g. no more JSP &#x2F; PHP mess of business logic bundled with presentation logic.<p>- Understand that your JS code base is going to be much bigger, and learn technologies that will help you such as - TypeScript &#x2F; CoffeeScript &#x2F; Dart, AMD &#x2F; CommonJS &#x2F; Browserify, Bower &#x2F; Ender. Grunt &#x2F; Yeoman. I know it sounds like a big mess of buzzwords, but there are tons of tools out there to help you organize your client side code (also look at SCSS and Compass to help with organizing your CSS and reduce boilerplate)<p>this is my short list, but in the end as other said, it&#x27;s all boils down to HTML5, CSS3, JavaScript and HTTP... the rest are just syntactic sugars...
curiousHackeralmost 11 years ago
I think the fundamental technologies of the web are HTTP, JavaScript, HTML5, and CSS3 and should be learned in that order.
评论 #7950995 未加载
carisealmost 11 years ago
It kind of depends what you&#x27;re going to use those technologies for (i.e. what kind of webapp you want to build), but you can learn a lot about web technologies by building a simple blog, if you don&#x27;t have something particular in mind. That will give you a direct, quick exposure to both backend and frontend technologies. Or you can search for tutorials and demos, then hack them to do more.<p>I&#x27;m sure others will have great suggestions, so I&#x27;ll pitch a few to start with (I don&#x27;t have a particular ordering in mind):<p>Frontend:<p>Javascript (tons of great books and online resources out there, e.g. MDN and Douglas Crockford: <a href="http://javascript.crockford.com/javascript.html);" rel="nofollow">http:&#x2F;&#x2F;javascript.crockford.com&#x2F;javascript.html);</a> HTML5 (<a href="http://www.html5rocks.com/en/);" rel="nofollow">http:&#x2F;&#x2F;www.html5rocks.com&#x2F;en&#x2F;);</a> CSS3<p>Backend:<p>SQL (yes, this isn&#x27;t really new technology); NoSql or something similar; Some kind of web framework, e.g. Ruby on Rails, which will provide you the interface between database and frontend (and much more); Some familiarity with web servers (just because you have to worry about that for your web framework)<p>Apologies in advance if I put the technologies in the wrong group...
jakozauralmost 11 years ago
There are quite a few decent websites which can teach you and help to understand those technologies, e.g.: <a href="http://teamtreehouse.com/" rel="nofollow">http:&#x2F;&#x2F;teamtreehouse.com&#x2F;</a> <a href="https://www.codeschool.com/" rel="nofollow">https:&#x2F;&#x2F;www.codeschool.com&#x2F;</a><p>Would take one of the paths for web developer.
评论 #7951001 未加载