Can you make a basic web app without Googling? I can’t
web.eecs.utk.edu
Can you make a basic web app without Googling? I can’t
1–10 of 332 posts
Re: Can you make a basic web app without Googling? I can’t
#2Kind of a non-article. Could I make an outdoor irrigation system, fix my head gasket, or anything else complicated without doing some research?
Re: Can you make a basic web app without Googling? I can’t
#3> To be fair, I'm not a web developer Kind of a non-article. Could I make an outdoor irrigation system, fix my head gasket, or anything else complicated without doing some research?
Re: Can you make a basic web app without Googling? I can’t
#4> To be fair, I'm not a web developer Kind of a non-article. Could I make an outdoor irrigation system, fix my head gasket, or anything else complicated without doing some research?
> To be fair, I'm not a web developer so I'm not entirely shocked by this. I only have the itch (and time) to throw together a small web app about once every 6 months.
A better rebuttal is, do you make a [small] outdoor irrigation system or fix a [simple] head gasket "once every 6 months"? I added the adjectives to better compare to his stated "small web app".
I think it's reasonable to expect someone who "throw[s] together a small web app about once every 6 months" to be able to do it without googling, but it isn't how software development is taught. When studying something to master it you start with the basics and do them over and over until you understand them. We don't (tend to) do that in software development, I think for two primary reasons: 1) there's more "important, urgent" things to do and 2) things change so quickly that probably half of what you learn today will be unused in a year (of course if you learn the very basics those rarely change, but I'm talking about the things we all know change so frequently, but were good decisions at the time)
Re: Can you make a basic web app without Googling? I can’t
#5Edit: I know the article touches on that idea briefly but my argument would be "of course it doesn't matter".
Sure, I could develop slightly faster with a more encyclopedic memory but I really doubt it would make an observable difference in the long-term.
Most of my time isn't spent referencing libraries or syntax but instead I spend most of my time thinking out the logic and higher level relationships of my code. I suspect that is largely the case of any development even remotely non-trivial.
Re: Can you make a basic web app without Googling? I can’t
#6Re: Can you make a basic web app without Googling? I can’t
#7I do a lot of webdevelopment and have zero issues.
Re: Can you make a basic web app without Googling? I can’t
#8 $ ed ~/public_html/cgi-bin/basic-web-app.cgi
#! /usr/bin/env perl
...Re: Can you make a basic web app without Googling? I can’t
#9However, lots of programming is much closer to plumming than to.. programming.. any time you're using a lib or api, you're just looking up what kind of fittings that comes with and what length of pipe to attach to it.. So don't worry about not being able to do anything really useful without looking in the docs :)
Now, if you have to look up basic language syntax for the language you use every day, I'd say its bad and you probably need to practice a bit ^_^