#1,850 in Computers & technology books
Use arrows to jump to the previous/next product

Reddit mentions of Mastering Django: Core: The Complete Guide to Django 1.8 LTS

Sentiment score: 2
Reddit mentions: 2

We found 2 Reddit mentions of Mastering Django: Core: The Complete Guide to Django 1.8 LTS. Here are the top ones.

Mastering Django: Core: The Complete Guide to Django 1.8 LTS
Buying options
View on Amazon.com
or
    Features:
  • 【Car Backup Camera】Perfectly solve the issue of bad car rear view effect, high solution backup rearview camera with 7 night version LED lights
  • 【IP68 Waterproof Design】High water-resistant and you will never have to worry about damaging the cam when washing your car or in rainy days
  • 【120°~170° Wide Viewing Angle】License mount backup camera with CMOS (680 X 582 pixels/ NTSC) image, 120°~170° wide viewing angle macro lens, IR led helps you see clearly during low light environment
  • 【Power Supply】DC 12V - RCA video cable connection. Distance scale line displayed, you can estimate the accurate distance easier when you park, reverse and do depth perception
Specs:
Height9.61 Inches
Length6.69 Inches
Weight2.77 Pounds
Width1.46 Inches

idea-bulb Interested in what Redditors like? Check out our Shuffle feature

Shuffle: random products popular on Reddit

Found 2 comments on Mastering Django: Core: The Complete Guide to Django 1.8 LTS:

u/johninbigd · 1 pointr/django

I've heard great things about this book:

https://www.amazon.com/Mastering-Django-Core-Complete-Guide/dp/099461683X

I have it but haven't had a chance to dig into it yet, so I can't really comment. What I've read so far is good, but I'm not very far into it.

u/supra621 · 1 pointr/django

For HTML/CSS/JavaScript/jQuery, Jon Duckett's books are pretty good. I linked the set because individually they're about $23, and together it's $28. His is the only JavaScript book in my library. I found his books to be well-ordered, and he describes things in really simple ways, though the book layout feels like reading House of Leaves until you get used to it. Both books have made for great references, though free HTML/CSS tutorials are quite abundant, and I leaned on Google more than the book for learning those.

I can't recommend the Django book that I started with, "Mastering Django: Core" by Nigel George, as much of the advanced topics were no better explained than the official documentation. If you're using Django 2.0, forget it. This, and other Django books I've looked at, don't go into any front-end details, seemingly from a belief that "writing Python code and designing HTML are two different disciplines" (quoted straight from the book I linked). The official docs and web tutorials have served me better for bringing Django to the browser.

Aside from d3.js, I'm only using basic JS and jQuery. d3.js was a very specific use-case for the data I'm working with, as it excels at making graphs and charts using SVG. If that sounds like something you're doing, Interactive Data Visualization for the Web was pretty clear for d3.js. Note that d3.js only uses a minimal amount of traditional JavaScript, so do consider your project needs before dropping $40 on it.

The basics of JS and jQuery will go a long way, even without react/angular/vue.js. Just like my first statement about HTML/CSS, I'd say learn the other frameworks when you can no longer do what you want with JS/jQuery, or when a framework is going to save you time.

Sorry for the wall of text - hope that helps!