🏳️‍🌈Robby [ Private Message = Spam]
All good
What? Speak in complete sentences please.
Nick
All good
God know what he is trying to convey
🏳️‍🌈Robby [ Private Message = Spam]
God know what he is trying to convey
That's most people here
Anonymous
Hi, Someone here please give a docs to learn about canvas?
Anonymous
and its in JS or HTML?
🏳️‍🌈Robby [ Private Message = Spam]
Hi, Someone here please give a docs to learn about canvas?
https://duckduckgo.com/?q=Canvas+tutorial&ia=web
Anonymous
🏳️‍🌈Robby [ Private Message = Spam]
in sorry
Learn how to use a search engine. Stop being lazy.
Mirco
in sorry
No worries 😁
r0b0t
Hey guys Has anyone been able to integrate a fingerprint scanner to their django application?
n
With django which is good, mysql or mongodb please suggest
n
But now mongodb is trending na
n
?
Rohan
Do you even know why mongo db is used?
Rohan
Only dead fishes go with the flow.
cj
But now mongodb is trending na
Django is designed to be used with a relational DB, and it runs better with PostgreSQL, also Django has some specific functions to work only with PostgreSQL than doesn't work on other RDBMs 🙂
Rohan
Heard the word 'big data' and going all crazy with it...
n
You*
cj
Can you tell what are the specific functions.please let me know
https://docs.djangoproject.com/en/2.2/ref/contrib/postgres/
Anonymous
How much it takes to master django
Sagar
😂
cj
or, at least until you stop using it, or until they stop developing it
Anonymous
How much it takes to master django
I mean to be good at it
n
60days if you find good trainer
cj
you can learn it in 1 day if you want... the rest of the story is up to you, then you have to learn new things everytime new features are released in each new version 🤷🏻‍♂ tl;dr; learning never ends
#define CLEAR_BUFFER while ( getchar ( ) != ’ \n ’ )
Hello guys. My name is Fogang Fokoa, i learn python, django since 1 month. Heureux de faire votre connaissance
🏳️‍🌈Robby [ Private Message = Spam]
But now mongodb is trending na
MongoDB is wrong if your data is relational
#define CLEAR_BUFFER while ( getchar ( ) != ’ \n ’ )
🏳️‍🌈Robby [ Private Message = Spam]
🏳️‍🌈Robby [ Private Message = Spam]
Search duckduckgo.com or see the django resources here
Lalit
Anyone have good notes of django?
Mirco
Use pastebin pls
Lalit
Vikash please send
S.
Hi friends I wanna send emails day by day. My email information like that(start date, end date, which days, subject, receiver,sender) So a wanna timing tasks. I heared cron and celery. But I dont know how can use this or choose. Can you help me with an idea?
Vikash
not send a media content on this group
Lalit
My email id
Vikash
send a telegram personal messag
Victor
Hello how can I add function in a dgango-admin this function return a value I want to register a class with this value in the field but this function don t own the class ?
#define CLEAR_BUFFER while ( getchar ( ) != ’ \n ’ )
Hi guys. I need help
#define CLEAR_BUFFER while ( getchar ( ) != ’ \n ’ )
I want to change the salting of md5 to be the same as the one I defined in my apapplication. That way I will be able to create users via the django administration page for those who have the same salting as those who will register in my application.
Anonymous
Can i use.google maps api without billing?
🏳️‍🌈Robby [ Private Message = Spam]
even salted
🏳️‍🌈Robby [ Private Message = Spam]
use bcrypt
🏳️‍🌈Robby [ Private Message = Spam]
Why the fuck do you people use MD5
Trev
use bcrypt
Waiting for the guy who's gonna say don't use bcrypt because x/y is better. But still, md5 is the running joke
Anonymous
So i have a comment container with buttons (edit/delete) and each button has it's own class. When i add a new comment via ajax event handlers attached to my button don't work is that because classes and id's are only loaded once ?? If so how do i fix that if not what is the reason ???
Doragonsureiyā
🛠 Ok, I'll help you manage this group from now.
⟨ Simon |
You've been muted for 5 mins, to read the rules properly before doing anything, please don't PM anyone asking why you were muted! By joining this group, you agree with the django Code of Conduct Here are some resources to start with django
Neo
Can somebody tell me how to reduce loading time of a form if form have the select field with thousands of entries and that field is rendered from the field option in class based view
Mirco
Can somebody tell me how to reduce loading time of a form if form have the select field with thousands of entries and that field is rendered from the field option in class based view
Use python generators to render the field choices list If they are generated by ORM use select_related or prefetch_related if they depend on fk or many2many
Neo
any reference or example please
Mirco
any reference or example please
how do you generate entries ?
Neo
in class based view i used field = ["field","field2"]
Mirco
in class based view i used field = ["field","field2"]
ok so use python generator expressions this article can help ya if u don't know what generator expressions are
Neo
I have Idea about generators
Neo
but where should i use it
Neo
to make it work
Mirco
when you create the list of selectable fields
Neo
man am I missing something
Neo
can you tell me how
Neo
I am not a noob but sorry I didn't get you
Neo
field2 is itself a select field