It reminds me of this Blues Brothers quote: Elwood: What kind of music do you usually have here? Claire: Oh, we got both kinds. We got country and western. The tendency of web developers to appropriate well defined terms for their limited little world is a bit unsettling.
What is a Full Stack developer? (2012)
11–20 of 124 posts
Re: What is a Full Stack developer? (2012)
#12Earlier quoted context omitted.
Just like in the context of HN, "designer" seems to mean "web designer".
I don't think this is a HN-ism. Can you point to a reference to 'full stack developer' anywhere that does not refer to web developer?
Re: What is a Full Stack developer? (2012)
#13Developer != Web Developer
How would a Full Stack developer look outside the web world?
A simple example would be to take a web project that you just built and bundle the backend and frontend together into an installer, have users download and install it, and only run it locally. If you know a user's platform, you could conceivably replace individual web components with native ones. Upon doing so, you have become a non-web full-stack developer.
Re: What is a Full Stack developer? (2012)
#14That means from the kernel through C libraries, web server / JIT / high-level server langauge, through network layer, through browser implementation, javascript JIT, javascript / CSS / HTML interpretation and layout and so on.
Has this turned into "I can does the servers and the javascripts too" or did I encounter the term out of its original context?
Re: What is a Full Stack developer? (2012)
#15Developer != Web Developer
I imagine when he mentioned Full Stack he was implying Web Developer unless the term goes beyond the web.
Re: What is a Full Stack developer? (2012)
#16Earlier quoted context omitted.
I don't think this is a HN-ism. Can you point to a reference to 'full stack developer' anywhere that does not refer to web developer?
I don't claim that "Full stack developer" has been used before.
Re: What is a Full Stack developer? (2012)
#17Earlier quoted context omitted.
How would a Full Stack developer look outside the web world?
Like in the web world, full stack would be both frontend and backend. The frontend would be the part that interacts with the user (i.e. WinForms, Cocoa, GTK, etc. depending on your operating system and GUI library) and the backend would be code that interacts with the operating system, makes use of the network, manages the database, computes something interesting, etc. A simple example would be to take a web project…
Full stack in my field usually means OS internals, which in itself is reasonably large, usually encompassing kernel structure, driver development, network stack, filesystems and HAL/kernel abstraction layers. Ontop of that it's expected that you know network programming and protocols (TCP, UDP but also stuff like HTTP, AMQP, 0mq etc), databases (including basic understanding of their internals too), also generally stuff like frameworks and APIs that are available.
I know "full stack" developers in the enterprise space too, which again doesn't have much to do with frontend/backend instead just deempasizes importance of kernel knowledge. In it's stead it's expected that they know internals of their VM (JVM or CLR), deep experience and internals of libraries like Hibernate, ASP.NET.
I guess what I am getting at is that the frontend/backend thing is a really web specific thing that though it does exist elsewhere there is much less emphasis is other fields on the actual distinction between the two.
To me being "full stack" only means that your experience encompasses the entire range of layers your project requires.
Re: What is a Full Stack developer? (2012)
#18Now we are blurring into the line of architect, but that is too much of a hands off role. If an architect is hands off he or she is either a project manager or a business analyst. Consider the definition of architecture - Architecture in the computing world consists of a system’s elements; the relationships between those elements; the attributes of the elements; and the attributes of the relationships. [1] A "full-st…
Re: What is a Full Stack developer? (2012)
#19This is pretty interesting. I would add mobile development, perhaps to the User Interface layer? I have not worked at Facebook but I seem to remember hearing that the mobile site used to be a feature team on its own, but has now been split out so each regular group is expected to produce a mobile-ready feature. (If anyone knows more about that I'd be interested in hearing more).
Even if a mobile app has a backend component, if it connects to some server, then in a web context the app as a whole would be considered as frontend. So if you were writing code to gather contacts, you would be working on a backend portion of the frontend.