29 July 2025
id 7924778383Friends, why is it that when you are new to programming and try to practice the courses you have taken, When you start writing code and you don't remember the function or what you're supposed to write, what's the problem? It's never happened to you.🥺
That's when you don't pause the course and try it out and try to understand it immediately.
30 July 2025
Question,
I'm stuck on async code. When does await actually suspend and give back control to the event loop?
For example if i have a bunch of nested coroutines that await all the way down, then the very last one actually awaits on io, ie actually awaits some data or places in queue or returns data, etc
This is different behaviours right?
PagliacciQuestion,
I'm stuck on async code. When does await actually suspend and give back control to the event loop?
For example if i have a bunch of nested coroutines that await all the way down, then the very last one actually awaits on io, ie actually awaits some data or places in queue or returns dat
await yields control only if what you are awaiting is not immediately ready.
Nested coroutines often look like they all suspend, but only the first one awaiting a genuinely pending operation actually causes the suspension.
31 July 2025
Not Found.How to best learn Python on your own ? ❤️
Start working on basic projects, remember which you want to learn full-stack or python frameworks.
Get used to conditional statements.
Replymessage unavailable
Just a simple editing software which can run on cross platform (android,Linux,window ,mac)
Editor tools:->
1)split clip
2)join clips
3)array of clips
4)VFX settings
5)rotate
6)custom effects
7)custom animation
What we are using->
1) python
2)moviepy
3)pillow
4)pydub
5)kivy , kivymd
Vivek MauryaJust a simple editing software which can run on cross platform (android,Linux,window ,mac)
Editor tools:->
1)split clip
2)join clips
3)array of clips
4)VFX settings
5)rotate
6)custom effects
7)custom animation
What we are using->
1) python
2)moviepy
3)pillow
4)pydub
5)kivy , kivymd
yeah, cool, but what is your actual question
George 392.85 °Cyeah, cool, but what is your actual question
I am just sharing my idea and waiting for any advice for build fast
Vivek MauryaI am just sharing my idea and waiting for any advice for build fast
i don't think you will get a lot of feedback
George 392.85 °C"How to build fast" is not a "question", you have to be more detailed
You are right I am just sharing and I know how to make and i don't need any advice because I don't have any doubt 🤔🧐
Hello, I would like to ask a question. I currently have nearly one million text data, but there is a lot of duplicate data in it. I wonder which database built-in algorithm supports duplicate detection. For example, if the similarity reaches 0.5, it is regarded as two data duplications. Currently, the database is in MySQL. I want to achieve rapid weight-judgment. What should I do?
1 1Hello, I would like to ask a question. I currently have nearly one million text data, but there is a lot of duplicate data in it. I wonder which database built-in algorithm supports duplicate detection. For example, if the similarity reaches 0.5, it is regarded as two data duplications. Currently, t
there are multiple algorithms that can compare data records. The most used one is vectorization. Google the existing solutions and test them out, that may very well be enough in your case.
And then send the processed data to your MySQL db