Skip to content

Instantly share code, notes, and snippets.

View eupp's full-sized avatar

Evgeniy Moiseenko eupp

  • JetBrains Research
View GitHub Profile
@aidos-dev
aidos-dev / README.md
Last active November 18, 2024 12:34
How to connect Apple AirPods to Linux (Debian/Ubuntu/Mint)

How to connect Apple AirPods to Linux (Debian/Ubuntu/Mint)

Step 1.

Open your terminal.

In the root directory run the command:

sudo nano /etc/bluetooth/main.conf
@yizhang82
yizhang82 / rw_spin_lock.h
Created October 7, 2017 20:41
portable lock-free reader/writer lock for C++
class rw_spin_lock
{
public:
rw_spin_lock()
{
_readers = 0;
}
public:
void acquire_reader()