ImportError: DLL load failed while importing _rust: The specified procedure could not be found. Hello I'm getting the above error when I try to add daphne and run my application with daphne commented from the install apps list the error doesnt occurs please help
Awesome tutorial, but how do I make it strictly a one to one chat like WhatsApp with a name you click on to initiate a chat,most of the videos I've seen seem to always create group chats
Everthing is good till now but bro please change your pop up sound which comes for reminding to subscribe the channel it was so not good at all please work on that . Thank you
This was the worst lecture with the best teaching on Django Chat App 😂. If you had prepared a little, I’m sure this would have been the best one. So, don’t take my comment negatively-cuz I’m still giving you kudos for making it so easy. If I had found your video 3 days ago, I could’ve saved at least 24 hours of my time figuring out this chat app thing cuz I followed another UA-camr’s video which was not only complicated but also that didn’t work for me as he used HTMX bases code and it never triggered a websocket connection. Anyway, can you tell me why you added “room_” in front of the scope in your connect method in ChatConsumer class? Not only I couldn’t figure out why you did that, I also found that it works just fine without that part.
Broooooo. Your comment is bitterly sweet🥰🥰🥰🥰. self.room_name = f"room_{self.scope['url_route']['kwargs']['room_name']}" I was trying to create a convention for what the room names will be. Using the convention in the line of code above, the room_name registered in the channel layers will be "room_{the name of the room}". So if you are in basketball room for example, the room that will be registered in the channel layers will be "room_basketball" if you remove the "room_" prifix like this: self.room_name = f"{self.scope['url_route']['kwargs']['room_name']}" The name that will be registered in the channel layers will be the name of the room directly for example, if you are in the basketball room, the room registered with the channel layers will be "basketball" and not "room_basketball" as before. Both will work but it is just advisable to go with a naming convention for the rooms and not use their names directly. I believe it makes your work neater especially for anyone who wants to go deep into the backend. Lastly, If you want to use the name of the room directly without any prefix, then you don't have to use a formatted string. Just do something like this and go your way. self.room_name = self.scope['url_route']['kwargs']['room_name']
Thank you so much. Clear and concise. Keep it up brother 🚀
Appreciate it!❤️❤️
Thank you. This video helped me a lot to practice this topic.
Thanks Boss. Glad it helped 💯💯💯
REALY NICE !!!! THX for Sharing !!!! Greeetings from Italy
Thanks Boss💯💯💯
Amazing.... I watched your video three times. I just created my own AI chat bot with the idea implemented here
💯💯💯💯
Awesome tutorial. Keep it up man
Thanks Boss ❤️❤️❤️
You're the best❤
Thanks Boss 💯💯💯
ImportError: DLL load failed while importing _rust: The specified procedure could not be found.
Hello I'm getting the above error when I try to add daphne and run my application with daphne commented from the install apps list the error doesnt occurs please help
Are you sure you're using a virtual environment???
It helped : )
💯💯💯
Thanks Man...
You're welcome boss
Awesome tutorial, but how do I make it strictly a one to one chat like WhatsApp with a name you click on to initiate a chat,most of the videos I've seen seem to always create group chats
Just open a room between 2 people only and look for a way to device a name that will be unique to both users
Please add the link to the repo of the project. Thankss
It's in the description.
Repo link is not working
can this be deployed to server directly
Of course. You can use Vercel.
Can you give me the home.html and room.html files? Thank you.
It's in the Github Repo of the project
Thank
💯💯💯💯
Everthing is good till now but bro please change your pop up sound which comes for reminding to subscribe the channel it was so not good at all please work on that . Thank you
I'll take note boss. Sorry for the inconvenience
This was the worst lecture with the best teaching on Django Chat App 😂. If you had prepared a little, I’m sure this would have been the best one. So, don’t take my comment negatively-cuz I’m still giving you kudos for making it so easy. If I had found your video 3 days ago, I could’ve saved at least 24 hours of my time figuring out this chat app thing cuz I followed another UA-camr’s video which was not only complicated but also that didn’t work for me as he used HTMX bases code and it never triggered a websocket connection. Anyway, can you tell me why you added “room_” in front of the scope in your connect method in ChatConsumer class? Not only I couldn’t figure out why you did that, I also found that it works just fine without that part.
Broooooo. Your comment is bitterly sweet🥰🥰🥰🥰.
self.room_name = f"room_{self.scope['url_route']['kwargs']['room_name']}"
I was trying to create a convention for what the room names will be. Using the convention in the line of code above, the room_name registered in the channel layers will be "room_{the name of the room}". So if you are in basketball room for example, the room that will be registered in the channel layers will be "room_basketball"
if you remove the "room_" prifix like this:
self.room_name = f"{self.scope['url_route']['kwargs']['room_name']}"
The name that will be registered in the channel layers will be the name of the room directly for example, if you are in the basketball room, the room registered with the channel layers will be "basketball" and not "room_basketball" as before. Both will work but it is just advisable to go with a naming convention for the rooms and not use their names directly. I believe it makes your work neater especially for anyone who wants to go deep into the backend.
Lastly, If you want to use the name of the room directly without any prefix, then you don't have to use a formatted string. Just do something like this and go your way.
self.room_name = self.scope['url_route']['kwargs']['room_name']
Hmmm
Boss. Much Respect sir.
don't say phhhhhh. it is anoying
Apologies