#concurrency search results
Is converting a method to a function pointer in Rust like trying to teach a cat to bark? Source: devhubby.com/thread/how-to-… #Concurrency #LearnToCode #CodeNewbie #FunctionalProgramming #rust #method
Hey everyone! It’s been a busy week, so I haven’t shared as much as I’d like. But I’m excited to give you a quick look into a project I’ve been working on—using Go routines & concurrency to match riders with customer pickup locations efficiently. 🚗💨 #GoLang #Concurrency
"Ship concurrent features with confidence. Bruce Tate turns OTP building blocks into everyday habits. link in comment @redrapids #elixir #otp #concurrency "
Wrapping up the day with a deep tech dive! ⚙️ @iamNarcisse on stage at #GopherConAfrica2025 with “Non-Deadlock Concurrency Bugs in Go.” Exploring the subtle, tricky side of Go routines and how to make our concurrent code safer & smarter 🧠🐹 #GoLang #Concurrency #gca25
I collected my thoughts on why mutexes suck; and what we can do about it. chrispenner.ca/posts/mutexes #STM #concurrency #parallelism #mutexes #Haskell
When your Go code scales, small mistakes become big. Learn to control concurrency, context, and performance before they control you. Effective Go Recipes by @tebeka 🔗 in 🧵 40% off w code pragpicks #golang #concurrency #scalability
I got buried in #concurrency and had to stop. 😅 The goal was to avoid using the `nonisolated` keyword in the context where #MainActor is the default isolation, but so far, I haven't found a better solution. 🤔 Here is the first response from the completed request! 🎉
Concurrency is a global pain point - and now engineers in Japan, Russia, and Taiwan are reading my book, Grokking Concurrency, in their native languages. Wild. #Concurrency #SoftwareEngineering @ManningBooks
The Concurrency Conundrum Sometimes a simple question uncovers big lessons—about concurrency, atomicity, and the challenge of managing shared resources. Read the Blog: buff.ly/k8cuDPL #SoftwareDevelopment #Concurrency #Coding #FromTheBlog #Wawandco
Tip: Handle timeouts by passing the timeout parameter to result() when retrieving the result of a future. #Python #Concurrency
Tired of race conditions & lost context in async #Java code? #JakartaEE #Concurrency handles it all—thread pools, context propagation, & clean managed threads. Gautham Krishnan shows how to do it right, with working code: javapro.io/2025/09/02/nav… @JakartaEE @OpenLibertyIO
Tip: Combine ThreadPoolExecutor with queues to buffer tasks and prevent overwhelming the pool with too many jobs. #Python #Concurrency
How does your computer juggle a dozen things at once (unlike you)? 🤹♂️ Find out what concurrency really is—with Smarties, group chats, and wizard costumes. 🎥 youtube.com/shorts/wXMYQDx… #TeamCompSci #CraignDave #Concurrency #ComputerScience
Built a Rust mempool prototype 🛠️ Raw pointer management ✅ Transaction hashing 🔒 Threaded validation ⚡ Learning low-level concurrency & safety! #RustLang #Blockchain #Concurrency
Recently, in our English Lang Club, we dived into Concurrency & Parallelism in Go. We wrote a program to send concurrent HTTP requests, ensuring proper synchronization with WaitGroup. Sharpen your tech skills & English—join us next time! 🚀 #golang #concurrency #parallelism
Tip: Handle timeouts by passing the timeout parameter to result() when retrieving the result of a future. #Python #Concurrency
Thread-Safe Priority Queue in Python superfastpython.com/thread-priorit… #Python #Concurrency
Debugged an intermittent multi-threading issue due to a stale-snapshot inside OPA’s notification system and how I reproduced, traced, and fixed it. pushpalanka.medium.com/beyond-race-de… #concurrency #multithreading #opa #debugging #Racedetection
I collected my thoughts on why mutexes suck; and what we can do about it. chrispenner.ca/posts/mutexes #STM #concurrency #parallelism #mutexes #Haskell
Gopher/Go means a simple, readable syntax, lightning-fast compilation, near-C runtime speed, built-in concurrency with goroutines and channels, single static binaries without dependency pain, a powerful standard library! @gopher_ai #Concurrency #Performance #Kubernetes
Tip: Combine ThreadPoolExecutor with queues to buffer tasks and prevent overwhelming the pool with too many jobs. #Python #Concurrency
Multiprocessing Pool When Are Workers Started superfastpython.com/multiprocessin… #Python #Concurrency
superfastpython.com
Multiprocessing Pool When Are Workers Started - Super Fast Python
Child worker processes are started automatically after creating an instance of the multiprocessing.Pool class. In this tutorial you will discover when the child worker processes are created in the...
Tip: Use with statements to ensure the thread pool shuts down gracefully when done. #Python #Concurrency
Interrupt the Main Thread in Python superfastpython.com/interrupt-the-… #Python #Concurrency
Structured #Concurrency Patterns in #Java - #Java Code Geeks javacodegeeks.com/2025/11/struct…
Lock Retry with Back-Off in Python superfastpython.com/lock-retry-wit… #Python #Concurrency
Tip: Pass immutable objects or copies to threads to prevent race conditions and avoid complex synchronization. #Python #Concurrency
How to Get Results From The ProcessPoolExecutor in Python superfastpython.com/how-to-get-res… #Python #Concurrency
Is converting a method to a function pointer in Rust like trying to teach a cat to bark? Source: devhubby.com/thread/how-to-… #Concurrency #LearnToCode #CodeNewbie #FunctionalProgramming #rust #method
"Ship concurrent features with confidence. Bruce Tate turns OTP building blocks into everyday habits. link in comment @redrapids #elixir #otp #concurrency "
Wrapping up the day with a deep tech dive! ⚙️ @iamNarcisse on stage at #GopherConAfrica2025 with “Non-Deadlock Concurrency Bugs in Go.” Exploring the subtle, tricky side of Go routines and how to make our concurrent code safer & smarter 🧠🐹 #GoLang #Concurrency #gca25
Hey everyone! It’s been a busy week, so I haven’t shared as much as I’d like. But I’m excited to give you a quick look into a project I’ve been working on—using Go routines & concurrency to match riders with customer pickup locations efficiently. 🚗💨 #GoLang #Concurrency
‘All threads are equal!’ – said the gopher, moments before a deadlock. #GoLang #Concurrency #Propaganda
When your Go code scales, small mistakes become big. Learn to control concurrency, context, and performance before they control you. Effective Go Recipes by @tebeka 🔗 in 🧵 40% off w code pragpicks #golang #concurrency #scalability
Concurrency is a global pain point - and now engineers in Japan, Russia, and Taiwan are reading my book, Grokking Concurrency, in their native languages. Wild. #Concurrency #SoftwareEngineering @ManningBooks
Our last talk of the evening is from the lovely Shehneel who is a first time speaker from @acresoftware! We are so excited and proud of her for taking the stage @womenwhogolndn to talk about #golang #concurrency 💕💕
cooperative concurrency using a single thread can outperform preemptive concurrency with a thousand OS threads. how is this possible and what does “I/O bound” mean in programming? 🧵👇 #Rust #AsyncAwait #Concurrency
runBlocking is not always bad practice! Learn where it should be used, where it shouldn't, and where it has better alternatives in our new article by Marcin Moskała. kt.academy/article/run_bl… #Kotlin #Coroutines #Concurrency #SoftwareDevelopment #KtAcademy
Using @ApachePekko actors and #GPars actors with @ApacheGroovy: groovy.apache.org/blog/groovy-pe… #groovylang #concurrency
🎙️ Now on stage at #DevFestGNR2024, diving into Goroutines & how system threads work in Go: @xprilion. #GoLang #Concurrency #TechTalk
My "Grokking Concurrency" book is in the final stages of publishing! Check out this super clear illustration of the different scalability types. #SoftwareEngineering #Concurrency #ComputerScience #dataengineering
Java #Concurrency with PCWorkshops pcworkshopslondon.co.uk/java-12-weeks.… #BigData #Analytics #AI #MachineLearning #IoT #IIoT #PyTorch #Python #RStats #TensorFlow #Java #JavaScript #ReactJS #GoLang #CloudComputing #Serverless #DataScientist #Linux #Books #Programming #Coding #100DaysofCode
Tip: Handle timeouts by passing the timeout parameter to result() when retrieving the result of a future. #Python #Concurrency
Efficient disk concurrency through Eio koonwen.github.io/2024/07/29/eff… #Multicore #OCaml #Concurrency
"Task Cancellation in Swift Concurrency" hakkında yazdığım makaleme linkten ulaşabilirsiniz. Beğenirseniz ve eklememi istediğiniz bilgiler varsa yorum yapmayı, clap atmayı ve paylaşarak diğer insanlara ulaşmasına katkıda bulunabilirsiniz. medium.com/@alicantarim/t… #Concurrency…
Something went wrong.
Something went wrong.
United States Trends
- 1. #DWTS 28.3K posts
- 2. Northern Lights 9,848 posts
- 3. Elaine 54.7K posts
- 4. #RHOSLC 4,551 posts
- 5. Dylan 28.8K posts
- 6. #Aurora 2,583 posts
- 7. Robert 95.3K posts
- 8. Whitney 7,929 posts
- 9. #WWENXT 9,496 posts
- 10. Carrie Ann 1,479 posts
- 11. Louisville 10K posts
- 12. Meredith 3,291 posts
- 13. Alix 8,151 posts
- 14. Daniella 2,800 posts
- 15. Wake Forest 2,165 posts
- 16. Mikel Brown N/A
- 17. #DancingWithTheStars N/A
- 18. Woody 23.4K posts
- 19. Jeezy 3,627 posts
- 20. Kentucky 21.4K posts