Which tutorials have you done thus far?
Ask HN: Advice for someone struggling to learn Django
11–20 of 23 posts
Re: Ask HN: Advice for someone struggling to learn Django
#12Email me any questions. Id love to help. If you are on twitter, then Id connect you to some great django people. (Check my profile)
Re: Ask HN: Advice for someone struggling to learn Django
#13Learn HTML and CSS, Python, and then Django. Think of a new idea. Try build when learning Django.
Re: Ask HN: Advice for someone struggling to learn Django
#14Try 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 fra…
Re: Ask HN: Advice for someone struggling to learn Django
#15It 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 ha…
Re: Ask HN: Advice for someone struggling to learn Django
#16Which tutorials have you done thus far?
I've done all the teamtreehouse python and Django tutorials. Which took a few months. Even did it a second time. Then also the django polls tutorial on the Django docs site. Plus the local library tut that is on the mozilla site. Also built a storefront using Django but I used 3rd party integrations to deal with payment processing and the shopping cart (stripe and snappycheckout).
Re: Ask HN: Advice for someone struggling to learn Django
#17Which tutorials have you done thus far?
I've done all the teamtreehouse python and Django tutorials. Which took a few months. Even did it a second time. Then also the django polls tutorial on the Django docs site. Plus the local library tut that is on the mozilla site. Also built a storefront using Django but I used 3rd party integrations to deal with payment processing and the shopping cart (stripe and snappycheckout).
Re: Ask HN: Advice for someone struggling to learn Django
#18Earlier quoted context omitted.
I've done all the teamtreehouse python and Django tutorials. Which took a few months. Even did it a second time. Then also the django polls tutorial on the Django docs site. Plus the local library tut that is on the mozilla site. Also built a storefront using Django but I used 3rd party integrations to deal with payment processing and the shopping cart (stripe and snappycheckout).
try searching for djangogirls and hellowebapp tutorial on google that helped me learn django basic concept in a relative short frame of time two months to be exact, then check out https://simpleisbetterthancomplex.com blog posts on various python frameworks implementation and browse through github for various Django projects source code particularly drskepy django hackathon boiler plate. And if you still have problem…
It's written in a way to help you build something unique, which might help your issue, OP. Basically I walk through building a "collection of things," which you can alter to create something like a Twitter clone, a directory, a blog, a store, etc.
Happy to help, send me an email tracy@hellowebbooks.com anytime. :)
Re: Ask HN: Advice for someone struggling to learn Django
#19Earlier quoted context omitted.
I've done all the teamtreehouse python and Django tutorials. Which took a few months. Even did it a second time. Then also the django polls tutorial on the Django docs site. Plus the local library tut that is on the mozilla site. Also built a storefront using Django but I used 3rd party integrations to deal with payment processing and the shopping cart (stripe and snappycheckout).
Have you read through "Two Scoops of Django" yet? I am not really a fan of any Django learning resources (that I'm aware of) outside of that one, and the docs. It helped me because it explicitly lays out an opinionated but sensible way of structuring projects.
Re: Ask HN: Advice for someone struggling to learn Django
#20It 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 ha…
Thanks Idonley. I have heard that flask is easier. At this point I feel too deep into Django to give up. However, picking up some flask stuff on the side could be worthwhile. Would certainly broaden my understanding of it all.