Mirco
Share the full error
D
META: you can use pair of backtick symbols ( ` ) to show code (it's not single quotation mark)
Like so: 'sample code'
But using backticks instead you'll get:
sample code
⟨ Simon |
you can use three for a code block too
Raffaele
D
Yep, like so:
'''
block of code
'''
block of code
Because it is monospaced, it's easier to read
Raffaele
Mirco
You missed the comma
Mirco
Line 17
Raffaele
Raffaele
u r the best
Raffaele
I am very stupid (2nd time)
Mirco
Nah, I just make lots of stupid errors every day 🙂
musa
http://lecodeapp.herokuapp.com/blog/some-of-my-favourite-youtube-channels-to-learn-django-and-python/
Anonymous
Hi everyone
Anonymous
I am a Django developer.
Anonymous
Anonymous
I know Django, Flask, JavaScript, p5js, C, ofcourse Python and so
Anonymous
What skills do u have
I am a content creator, and i help people fall in love with programming and creative thinking.
Yash
Anonymous
There is a lot of things you can do.
Lipau3n
No unicorn projects
Anonymous
No, nothing like such
Anonymous
I can help...
Anonymous
You can help others
Anonymous
Like i do.
Anonymous
I help people learn, and make projects...
Anonymous
*This is not a promotional message.*
I have a YouTube channel named "The Coding Humans" and i love helping people learn to code. And think in code. I cover, challenges, theory, cool things, security, practicing, projecta etc...
Anonymous
You may go and check
Lipau3n
Thx dude
Anonymous
Currently i am making videos on mastering Django 3 series. And i will be covering a lot of things that almost no one talkes on YouTube
Anonymous
My aim is to make quality Learning and education free of cost.
Anonymous
For all
Anonymous
I even have a website for the same. Other creators also make series on my website.
Lipau3n
Are you tell watchers about prefetch/select_related queriyng?
Lipau3n
just interesting
Lipau3n
A lot of coders doesnt know about this feature and sometimes have 1K+ queries to DB
Anonymous
Anonymous
I will once i reach database
Anonymous
That will be covered soon
Lipau3n
It will be great for newbie in django
Anonymous
Yes, sure
Anonymous
I will be making a series on security and cybersecurity on web after mastering Django 3
Anonymous
This might be really helpful for all.
Anonymous
And if possible, kindly support me to achieve me aim for free and quality education on The Coding Humans YouTube channel.
Anonymous
Thanks
Anonymous
Anyways, is anyone working on some cool project?
Anonymous
Did anyone has any series of djnago learning or class of online learning
Anonymous
Where I can learn django from initial
Anonymous
Thanks
Subscribed your channel
Anonymous
Hoping to see more videos on django rest framework side.
Anonymous
Because there are very less resources on that one on the internet
Anonymous
And documentation is great but ample examples are not given.
Anonymous
Anyways, is anyone working on some cool project?
I joined a company as a full stack django developer recently. Working on exciting complex projects. But i want to deep dive and learn many things. So more django resources would be helpful
Anonymous
Sobha
I am directly getting processing in django without asking payment details in paytm payment gateway
Sobha
How to fix this issue
Anonymous
Did you scale your app?
Anonymous
Anonymous
Anonymous
The scale command for heroku
Anonymous
Web scale 1
Anonymous
Or something like that
Anonymous
Where I can learn django from initial
I have created a brand new series about mastering Django 3. I will make sure that you understand Django the way it should be. And for absolutely free. I have taken an initiative to make everyone love programming and creative thinking. The name of the channel is The Coding Humans on YouTube. You may subscribe if you want to master Django and other things as well.
Anonymous
Mr
Mr
This will help you
Mr
Sharooq
Is it possible to keep a unique key in view?, Even after calling ajax the key shouldn't be changed,
Rajvir
from django.urls import reverse
after doing this the previous error is resolved but new error generated : cannot import name 'six' from 'django.utils'
Himanshu
Rajvir
3.0.5 but now i upgraded to 3.0.7 but in both versions error remains same
Himanshu
Use import six instead for from django.utils import six. If you have some library using it this way, then see if they have an upgraded version.
If not, either use Django 2.2 (LTS) or manually update the library for your local use.
Rajvir
okay