4

How long does it take to start writing codes without having to do “too much” looking up of some context?

I’m quite at the intermediate level and I fear I do a lot of cramming(and pouring) than actual coding.

I want to code all on my own, or at least tons of lines before having to check something up.

How do you guys do it? How do I become ‘pro’?

Comments
  • 0
    @maester-Em do you mean writing _your_ code without reading too much or contributing to code others have written?
  • 2
    @awwws0m3 Yeah, I’m talking about writing my own code, and having to do LESS of “oh, I’m stuck. Let me see what person A is doing”.

    I know things get better with practice and all, but I’ve been practicing for a while now to still be looking up things that I’d say “darn it! Why didn’t I get this?” after seeing the answer.

    I know how this sounds.
  • 2
    @maester-Em maybe try blocking Google & StackOverflow during your coding sessions, while downloading official docs (kapeli.com/dash if you're on Mac or there are alternatives on other platforms). This in theory should force you to look for solutions yourself and learn from official docs instead of ready-made questions.

    Out of interest, what's the tech stack you're working with?
  • 1
    @awwws0m3 Django-python.

    I’m currently working on my professional website(and should also host my blog).

    I see you code in python as well. That’s nice.
  • 1
    @maester-Em wise choice, sir!
    I've actually learnt Django from practical approach, working on a project others have made and improving it bit by bit. I used SO and Google search extensively, but instead of just copying the answer and getting away with it (i.e. "you should use this middleware class"), I tried to be curious and ask questions like "what's even a middleware?!" and read docs on that
  • 1
    @awwws0m3 Yeah, I understand. I should be more open to learning.

    I’m glad I had this post on here. I feel somewhat better and my path is just a tad brighter. Thanks for your time.

    I need to go bury my head in one or two documentations now.
Add Comment