Concurrency in #Java doesn’t have to mean chaos. Forget low-level thread juggling. #JakartaEE #Concurrency gives you managed, async-safe execution—without the boilerplate.

Start learning with Gautham Krishnan’s hands-on guide: https://javapro.io/2025/09/02/navigating-the-waves-of-concurrency-exploring-jakarta-concurrency/

@jakartaee #ThreadSafety

I am learning to make netting now.
#oldbooks, kids, are still functional learning tools!
This one is really excellent in description.

One weird note, the copyright explicitly including Scandinavian as a prohibited translation... Anyone got a thought on why that would be so called out?

#knots #nets #ThreadSafety <--LOL

Why bother giving C a "superpower" when its only power is ensuring your code dies a slow, painful death? 🤦‍♂️ Building a "leak-free, threadsafe grep" in C23 is like trying to make a porcupine cuddle-friendly: adorable in theory, lethal in practice. 🦔🔪
https://hwisnu.bearblog.dev/giving-c-a-superpower-custom-header-file-safe_ch/ #CProgramming #CodeQuality #SoftwareDevelopment #ThreadSafety #Humor #HackerNews #ngated
Giving C a Superpower: custom header file (safe_c.h)

Let's be honest: most people have a love-hate relationship with C. We love its raw speed, its direct connection to the metal, and its elegant simplicity. ...

*ฅ^•ﻌ•^ฅ* ✨✨  HWisnu's blog  ✨✨ о ฅ^•ﻌ•^ฅ

“Hello, World?” — “Hang on, I’ll spawn a few threads & get back to you.” #Concurrency is powerful—but tricky. #JakartaEE Concurrency makes async #Java simpler with managed executors, context propagation & #ThreadSafety.

Read Gautham Krishnan´s story: https://javapro.io/2025/09/02/navigating-the-waves-of-concurrency-exploring-jakarta-concurrency/

@jakartaee @OpenLibertyIO

My first tutorial for Real Python @realpython got published 🎉

"Python Thread Safety: Using a Lock and Other Techniques": https://realpython.com/python-thread-lock/

Unexpected things can happen when we try to introduce multithreading to existing Python code. Read the tutorial to spot such race conditions in multithreaded code and learn to fix them using Python's synchronization primitives.

Read now at: https://realpython.com/python-thread-lock/

#Python #Realpython #ThreadSafety #Tutorial

Python Thread Safety: Using a Lock and Other Techniques – Real Python

In this tutorial, you'll learn about the issues that can occur when your code is run in a multithreaded environment. Then you'll explore the various synchronization primitives available in Python's threading module, such as locks, which help you make your code safe.

Java is improving a lot in recent years and I like many of the new features.

But I realized that I maintain a personal wish list in the back of my head that is hardly covered by anything in the pipeline. Pity.

First entry of the wishlist: https://miamao.de/blog/2024-06/04.Java_Wishlist:_Thread_Safety.html

#java #javawishlist #multithreading #threadsafety #jep0
https://openjdk.org/jeps/0

Haralds Blog — Java Wishlist: Thread Safety

ACCU 2024 : Symmetry in Code - Should We Care? - Victor Ciura

Why should we be concerned with symmetry. Symmetry is fascinating to the human mind and everyone likes objects or patterns that are in some way symmetrical. It is an interesting fact that nature often exhibits certain kinds of symmetry in the objects and phenomena in our Universe

MutexProtected: A C++ Pattern for Easier Concurrency

In this post, we will discuss the challenges of programming with locks and how the C++ language offers some useful tools to make it easier. We will start with an example in C and then use C++ to improve upon it in steps. The example APIs are based on real-life APIs from the SerenityOS kernel.