Skip to content

Instantly share code, notes, and snippets.

View WentsingNee's full-sized avatar
💭
I may be slow to respond.

Wentsing Nee WentsingNee

💭
I may be slow to respond.
View GitHub Profile
@aidos-dev
aidos-dev / README.md
Last active July 27, 2024 14: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
@madelinegannon
madelinegannon / setup-azure-kinect-on-jetson-x-nx.md
Last active July 25, 2024 17:44
Notes on Setting up the Microsoft Azure Kinect on Ubuntu 18.04
@ipid
ipid / heap_var.hpp
Last active May 30, 2019 10:58
Define variables on the heap but use them like stack variables. Heap variables have never been so simple to use.
#pragma once
#ifndef HEAP_VAR_HPP
#define HEAP_VAR_HPP
/*
Introduction:
In order not to cause a stack overflow, sometimes you must define
large objects on the heap. But heap variables are somewhat hard to use.