Can you make a basic web app without Googling? I can’t
181–190 of 332 posts
Re: Can you make a basic web app without Googling? I can’t
#182Earlier quoted context omitted.
I remain living happily in the old days of PHP, somehow making functioning applications and being paid well. Life is easy and good.
My last interview: the interviewers said I was the only candidate who didn't Google any syntax or articles after being given a small 60 min development task from scratch. I was applying for a senior dev role and if I couldn't deliver a tiny web app, I wouldn't hire me either. I could have just solved the task procedurally but I asked if they wanted to see a more OO solution to demo a bit more knowledge. I think back…
Re: Can you make a basic web app without Googling? I can’t
#183I worked in field robotics and sometimes you would find yourself in a boat without internet fixing robotic software problems at sea. I took 50GB of wiki resources mirrored in my pocket.
Re: Can you make a basic web app without Googling? I can’t
#184Earlier quoted context omitted.
I remain living happily in the old days of PHP, somehow making functioning applications and being paid well. Life is easy and good.
My last interview: the interviewers said I was the only candidate who didn't Google any syntax or articles after being given a small 60 min development task from scratch. I was applying for a senior dev role and if I couldn't deliver a tiny web app, I wouldn't hire me either. I could have just solved the task procedurally but I asked if they wanted to see a more OO solution to demo a bit more knowledge. I think back…
I went one stint where I didn't start a new project for 5 years. Practicing new projects in that time period would have been a whole lot of wasted time.
Re: Can you make a basic web app without Googling? I can’t
#185 npm i express
node -e ‘require(“express”)().get(“/“, (req, res) => res.end(“hello world!”)).listen(3000)’Re: Can you make a basic web app without Googling? I can’t
#186Re: Can you make a basic web app without Googling? I can’t
#187I worked in field robotics and sometimes you would find yourself in a boat without internet fixing robotic software problems at sea. I took 50GB of wiki resources mirrored in my pocket.
Re: Can you make a basic web app without Googling? I can’t
#188Earlier quoted context omitted.
My last interview: the interviewers said I was the only candidate who didn't Google any syntax or articles after being given a small 60 min development task from scratch. I was applying for a senior dev role and if I couldn't deliver a tiny web app, I wouldn't hire me either. I could have just solved the task procedurally but I asked if they wanted to see a more OO solution to demo a bit more knowledge. I think back…
It seems odd to practice things you rarely do. I went one stint where I didn't start a new project for 5 years. Practicing new projects in that time period would have been a whole lot of wasted time.
Very similar to physical fitness. Sitting all day trains you to sit. And that’s making you more fragile
Re: Can you make a basic web app without Googling? I can’t
#189Re: Can you make a basic web app without Googling? I can’t
#190Earlier quoted context omitted.
There's nothing unique here. Virtually all libraries and languages have local version of docs. I think you're too biased to continue in good faith argument.
they all do, its just that some are better than others. i dont actually like php, but it has plenty of advantages when it comes to quick web app development even without googling. had a client once where its workers were day dreaming of a job in the valley and ofc they were using python. they bashed php on a daily basis, and as they were doing it, the php api was sole codebase running in production (essentially the c…