Ask HN: How far could you get Coding without Google?

14 points by emadehsan ↗ HN
HN, can you imagine building a meaningful project without constant access to internet / Google? Programmers in the 80s probably did that.

Inspired by: https://www.reddit.com/r/Python/comments/w46m73/how_far_could_you_get_without_google

43 comments

[ 26.8 ms ] story [ 3042 ms ] thread
If I expect to be disconnected from the net I download as many manuals as I can. Back in the 1980s we had lots of paper manuals.
The curious thing I've noticed over time is that in the 90s as a demoscene coder I remembered a very good proportion of the Amiga hardware registers and how they worked, very rarely had to look stuff up. These days I have to look up things that I use fairly regularly. It may be a function of age of course, but I have a sneaky suspicion that reading stuff from paper manuals and the extra effort required to look things up made me remember them better.
Those systems were a lot simpler than what we use today. Amiga's graphic chips only had so many transistors, the whole machine is simpler than npm.
Sure, but I still remember that $dff100 was BPLCON0 (at the time I new what each of the 16 bits did without having to look it up). 5 years ago I did a ton of Python programming, but I would need to look up how to do a for loop now.
I don't know, but don't take IRC from me. Then I'm really screwed.
Depends what I'm currently doing.. The past week I've implementing some trivial feature in javascript and C and so haven't had to look up anything.

But weeks ago, I had to implement something in DQL, which I'd never used before, their documentation is terrible, and google didn't help that much either.

Which DQL?
The one formerly known as GraphQL+- I might just be dense (in fact, I'm sure of it) but it was not a pleasant experience, even if I did get the job done.
Docs is all offline with Dash, no problem :)
It wouldn't be a problem - as you state in the question - coders used to do that before the web.

This is a rare (?) occasion where old dogs would likely adapt more quickly due to having done it before. Not only will their old muscle memory kick in, they will be more comfortable with the situation.

Before the web we had decent documentation and books. Also the complexity was much lower.
Coding a 3D games engine on a PC / Amiga, or a compiler, might seem simple to modern eyes.
I would need a few physical books but I think I would be OK. I would be more likely to use vanilla JS, HTML and CSS as a result.
As 80's programmer, definitly.

Get hold of the necessary books.

All the way through the 00’s!

Had a lot of dog eared O’Reilly books, now I haven’t bought a technical book in over a decade!

Btw, You could cut out google and go straight to stackoverflow, just saying.

(comment deleted)
I block outgoing ports 80 and 443 quite regularly when I need to get shit done, coding-wise. Takes some getting used to, but it's no major obstacle.
What tool or command do you use to do that?
iptables. I just run

   $ sudo iptables -A OUTPUT -p tcp --dport 443 -j REJECT
   $ sudo iptables -A OUTPUT -p tcp --dport 80 -j REJECT
To block it, and

   $ sudo iptables --flush
to reset.
that's exactly how i worked for 10+ years at the beginning of my career... with a bunch of ( Oreilly's ) books on my desk.
I routinely work on things that are dead in the "real" world and so are not Google-able.
If I can cheat a little, OpenAI Codex has been more useful than Stack Overflow.

Also assuming you mean Google the search engine, not the company, because as an Android dev, it would be tough without any documentation.

Used to know somebody who contracted with national security and had to do this. They said it wasn't so bad with paper manuals! The worst part for them was not being able to use outside libraries without going through extremely extensive checking processes
Have an offline copy of devdocs.io which is all I need.

Although I would like instant access to Stack Overflow for various snippets. Things like ‘How to sort an array of numbers’

I was a programmer in the 80s. We had MS-DOS, Turbo Pascal (with it's damned fine documentation, in an actual book, and help files).

The hardware sucked, but we didn't have to worry about anything other than putting characters on a screen, eventually VGA graphics if we got fancy. There was one platform, the IBM compatible PC, and that was the only one I worried about.

We didn't have GIT, we had PkZip, and a stack of floppy disks with labels like "Source Backup v42 2/3/89". If we made a mistake, we had to manually revert.

I wrote "OverSeer" - a program that managed the inspection of Fire Extinguishers, using hand-held computers and barcode scanners from the Norand corporation of Iowa. Eventually it was adapted to other uses. It was written in Turbo Pascal. All the libraries were my own, including one to do cooperative multi-tasking.

Our customers were in Northern Illinois, and I was the programmer/tech.

As me anything. ;-)

[Edit - Extended description of the stuff I wrote]

Very interesting. I'm curious that what software did you build or maintain? :)
I revised / extended the description of OverSeer, the program I wrote/maintained/supported.
In the good old *nix days the system provided pretty much everything you needed: C, perl, man pages, and well documented header files. Throw in a couple of good books on programming, and you could do a lot.

That's still the case, but it feels like today's software development reality is different. There are endless frameworks, apis, devops methods, scalability concerns, and n+1 standards with which to integrate and keep up to date on. Knowing your language is only about 25% of the battle, and few projects are developed in a vacuum.

It's not possible to keep track of all those things, so endless internet searches are the end result.

web is so saturated, it is hard to turn off the internet if you want to put some distraction free hours of coding. There will be something you don't know

My guess is that OS programming (Linux etc) has not been affected that much form this overflow of redundent tools and you can stay productive offline?

It's been a long time since I've done that kind of work, unfortunately. I still do have projects that I can be productive offline, most recently in rust ('cargo doc' is really amazing for this kind of thing).

It could be rose-tinted glasses, but I'd love to find a way back to the distraction-free coding days. Focus is by far my biggest battle these days, especially when running up against seemingly bizarre deficiencies (most recently, lack of unsigned 64-bit int support in postgres).

Hitting these kinds of walls almost always causes me to go wandering through distraction sites because I can't bring myself to build a bridge over yet another small discrepancy.

maybe farther, because i wouldn’t be served garbage content and be distracted all the time
Depends on what I'm doing. If I'm working on my usual BE stuff, I'd probably go for years - I can't remember the last time I googled something about this. If you ask me to do frontend work I'd probably get stuck within a few days.
I'm not sure which is harder to imagine:

1. Programming without google

2. Programming (a web app) without webdev tools

When I first started learning development in the early 2000s, it was php, jquery, html, and css and very few search results when googling.

When Firebug came along for Firefox, my entire world changed and it was as if lights from the heavens had been turned on.

Yeah, a couple good books and possibly some source of my older projects and I'm set. I still regularly buy reference material, not as much nowadays but its nice to have it available in a pinch.
I used to write pseudo-code that didn't compile for one pass, working out logic, then work through turning it into code on a second pass. Generally, stuff I pseudo-coded seemed much less buggy than stuff I wrote straight in as compilable, presumably because I didn't have much besides program-logic to concern myself with. Translating it to something compilable was pretty mechanical, since I wrote something in the ballpark; I just didn't worry about syntax at all.