TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Ask HN: What are your greatest tips to learn coding?

11 pointsby algebraxover 8 years ago
looking for hacks, tips and tricks to master python

6 comments

chadwilkenover 8 years ago
I&#x27;ve been programming for several years professionally now and the things I noticed make a difference between good and mediocre developers are: - Always be reading, you should always be reading about areas that are new or outside of your day to day work. Example, GraphQL instead of REST and why. - Don&#x27;t prematurely optimize, Going off the last one, you don&#x27;t always need to do the things the big guys are doing, they are hitting problems that you may hit in the future. - When you hit something you can&#x27;t figure out go for a walk or take a break. This is when your subconscious mind will work on connecting the dots. - Read everything you can get your hands on about your interested language, framework, role, etc. - Don&#x27;t be afraid to ask questions. Don&#x27;t ask for help with every little thing, but if you honestly can&#x27;t figure it out within an hour of tinkering then ask stackoverflow or a co-worker to see if you are missing something. - Don&#x27;t give up. You would be surprised how many people hit an issue and then stop trying. That is after all what makes programming fun and rewarding. You will at times feel very down and question your choice to be a developer, it will pass and the high of figuring it out will make it worth it. - Go to meet ups, no better way to see others work and ideas than attending meet ups.<p>I&#x27;m probably missing a few things but hey I&#x27;m writing this on the toilet so I think I deserve a break.
评论 #13253834 未加载
评论 #13250726 未加载
impapplover 8 years ago
This is a really complicated topic but as with all things, habit is definitely key. I recently discovered <a href="https:&#x2F;&#x2F;www.enki.com&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.enki.com&#x2F;</a> and absolutely love it for this.<p>In addition to that: imposter syndrome can get in the way of writing code. There&#x27;s lots to be said about getting over imposter syndrome, but it&#x27;s not that easy. If this is something that affects you, I can highly recommend a psuedonym to help you interact in IRC and other feedback channels.
meagherover 8 years ago
Work on projects you find interesting, even if you don&#x27;t know how to do something 100% correctly. Be resilient: most give up when the going gets tough.
chadwilkenover 8 years ago
I would also add to my previous post to read through open source projects. Simpler projects are better. You probably don&#x27;t want your first dip to be a web framework or anything that complex. It will show you how professionals organize code and separate concerns.
brudgersover 8 years ago
1. Programming is not language specific.<p>2. Learning other languages will help you understand Python more fully.<p>3. <a href="http:&#x2F;&#x2F;norvig.com&#x2F;21-days.html" rel="nofollow">http:&#x2F;&#x2F;norvig.com&#x2F;21-days.html</a>
DrNukeover 8 years ago
Practice and have the original docs always under your eyes.