|
|
|
|
|
by apples_oranges
1898 days ago
|
|
This reminds me of a discussion about NFTs recently. I caught myself having an opinion without really knowing how they work. So I googled it and only found vague descriptions. Then I looked for an actual ETH blockchain contract that implements NFTs on Github [1], read it, and it was all very simple and clear. (So for me it was "How to Learn complex Things Quickly by realizing they are not that complex at all.") So in some cases I'd put "Read the Source Code" at the top. Code is not quite mathematical notation, but it is a concise way to express something.. [1] I read this one: https://github.com/larvalabs/cryptopunks/blob/master/contrac... |
|
This is such a good observation. When I was first getting into my field, I looked around at the smart senior people around me and thought there was no way I could ever do what they did. Total case of imposter syndrome.
Things like compilers, operating systems, etc. all seemed like magic, and I thought I was too dumb to do that kind of stuff.
But once I started working, I didn't really have a choice... it was either learn or get fired. And digging down into the code made me realize just how... simple? ... some things are. Being able to pull back the curtain and realize there's no magic there. Want to talk to this piece of hardware? Just write this bit pattern to this particular address, then put your data over here, and then send it this command and it works.
Not to say I immediately figured everything I read out. Sometimes it took me hours or days to work through something, especially if it was heavily templated C++ code.
One of the things that really surprised me was looking into build systems for large projects. When I thought about how I'd do it, I could only imagine a disgusting, hacky series of scripts and code generators and things that any sensible developer would scoff at. But when I actually looked at how some projects are put together... they're a disgusting, hacky series of scripts and code generators.
Learning that there's nothing magical about any of this was life changing. I still deal with imposter syndrome, but I feel much more confident that I can learn if I just make myself dive in, even if it seems scary at first.