Пікірлер
@waynes84
@waynes84 3 сағат бұрын
Don't know about Python. But async/await good for concurrent I/O calls, but useless for speedy parallel runtime work Threads good in runtime for achieving non-blocking main thread, good for doing true parallel multible tasks at once, overkill for I/O calls.
@LolaCharlebois-t7o
@LolaCharlebois-t7o Күн бұрын
You're doing a fantastic job! Just a quick off-topic question: I have a SafePal wallet with USDT, and I have the seed phrase. (alarm fetch churn bridge exercise tape speak race clerk couch crater letter). How should I go about transferring them to Binance?
@jorgediaz9093
@jorgediaz9093 4 күн бұрын
This is great i built something similar for windows in case anyone need it: $outputFile = "output.txt" $fileTypes = @("*.ts", "*.html", "*.scss", "*.json") Get-ChildItem -Recurse -Include $fileTypes | ForEach-Object { $filePath = $_.FullName $relativePath = $_.FullName.Substring($PWD.Path.Length + 1) Add-Content -Path $outputFile -Value "====== $relativePath ======" Add-Content -Path $outputFile -Value "" Get-Content $filePath | Add-Content -Path $outputFile Add-Content -Path $outputFile -Value "" Add-Content -Path $outputFile -Value "" } Write-Host "Conversion complete. Output saved to $outputFile" To use this script: Open PowerShell in the root directory of your project. Copy the script into a new file, for example, convert-codebase.ps1. Run the script by typing .\convert-codebase.ps1 in PowerShell.
@sghosh4223
@sghosh4223 6 күн бұрын
Good comp sci concept. The countdown example is great. But what happens if we want to make the countdown interruptible? That is, while the system is waiting, the user just cancels the whole thing. Or what if the user wants to increase the length to say 15 countdowns?
@resonatehqio
@resonatehqio 5 күн бұрын
With Distributed Async Await, Cancellation of an in-progress function execution is possible. However, changing the countdown value (args of the function execution) after it is started is something to explore further. There are some Durable Execution platforms that support this, (if I understand you correctly) but Distributed Async Await hasn't made that a priority.
@IAmAlgolei
@IAmAlgolei 21 күн бұрын
I had a chair with two legs; they were L-shaped with the bottom of each L resting on the floor. Oh yeah, and a set of chairs with one leg each; same idea, but it was one long piece of metal bent into rests. And a chair with no legs that was attached to the wall!
@resonatehqio
@resonatehqio 19 күн бұрын
ah snap! bending the rules over here ;) but if we dig deep enough into physics... it tells us that none of the legs touch the floor!
@stephenstrickland739
@stephenstrickland739 5 ай бұрын
congrats!
@resonatehqio
@resonatehqio 5 ай бұрын
Thank you, Stephen ♥
@nfurfaro33
@nfurfaro33 7 ай бұрын
Excellent content! As someone just starting my journey into distributed systems in the context of decentralized blockchain protocols, the insight gained from Dominik and Joran about determinism, sources of non-determinism and DST is now going to influence my entire approach to learning and building these types of systems! I'm excited to see how I might be able to apply both DST and the system design principles required to enable it to this specific domain. Thank you.
@resonatehqio
@resonatehqio 7 ай бұрын
Thank you for your kind words, we are happy you like the video
@doge6363
@doge6363 7 ай бұрын
excellent explanation. please keep making these types of videoes they are extremely helpful.
@resonatehqio
@resonatehqio 7 ай бұрын
Thank you for the feedback and your kind words
@dominiktornow1052
@dominiktornow1052 7 ай бұрын
Thank youuuu, I'm happy you like the video
@hoos.crypto
@hoos.crypto 8 ай бұрын
Great video, thanks for sharing.
@dominiktornow1052
@dominiktornow1052 8 ай бұрын
Thank youuu, I'm happy you like the video
@vvsevolodovich
@vvsevolodovich 8 ай бұрын
I would recommend to add more visuals to the clip. It's hard to perceive it only via talking. But great job overall!
@resonatehqio
@resonatehqio 8 ай бұрын
Thank you 🏴‍☠
@dominiktornow1052
@dominiktornow1052 8 ай бұрын
Thank you. I will add more visuals. Do you like the overlay visuals or would you prefer slides?