Live data from Hacker News

Ask HN: Advice for someone struggling to learn Django

news.ycombinator.com

1–10 of 23 posts

Re: Ask HN: Advice for someone struggling to learn Django

#3

Hi, I'd suggest finding a local Python or Django user group and asking for help. Also it's worth joining #django on irc to ask questions.

Thanks for the advice. I will certainly start taking advantage of irc. Unfortunately no meetups around here.

Re: Ask HN: Advice for someone struggling to learn Django

#4
Deviate, identify what is the problem, solve that problem, repeat. When you can describe a very specific problem, stackoverflow is great. Otherwise, IRC or some django-specific community may be a better place. If you think you're struggling, break down the issue into small bits: what are you trying to achieve, what have you tried, what's the smallest bit of progress you can make right now / what's the immediate issue that's stopping you.

You'll always find new problems if you try new things. That's learning, not struggling. :-) (worth repeating to get a more positive outlook)

Re: Ask HN: Advice for someone struggling to learn Django

#5
post #4

Deviate, identify what is the problem, solve that problem, repeat. When you can describe a very specific problem, stackoverflow is great. Otherwise, IRC or some django-specific community may be a better place. If you think you're struggling, break down the issue into small bits: what are you trying to achieve, what have you tried, what's the smallest bit of progress you can make right now / what's the immediate issue…

Thank you viraptor. I've been on irc since posting this. Should've been using that resource ages ago. Really needed someone I could ask specific questions and didn't really know where to turn for that. Excited to be learning not struggling :)

Re: Ask HN: Advice for someone struggling to learn Django

#6
Try to understand why things are done the way they are and what is actually happening instead of just following the tutorial systematically. If you have some knowledge gap, say in basic HTTP or data modeling concepts, make sure you read about those as well. This will strengthen your understanding of the framework. Also, if this is your first time with Python, I highly recommend learning Python before learning the framework. This applies to any language out there.

Re: Ask HN: Advice for someone struggling to learn Django

#10
It might be worthwhile to use a library like Flask which has less batteries included. This will force you to figure out which pieces of the puzzle you are missing and will (hopefully) allow you to learn a lot through exploration.

Once you understand what everything is doing, going back to Django, you should understand what all of the components are doing.

Django & Flask are not exactly one-to-one with the way they handle a lot of things, but I think it would still be a useful exercise.

Post reply on HN