This guide will help you connect your Sony WH-1000XM4 headset to Ubuntu 22.04 using Bluetooth. Once connected, you'll be able to listen to music and use the microphone on apps like Microsoft Teams.
- Open a terminal and launch
bluetoothctl:
This guide will help you connect your Sony WH-1000XM4 headset to Ubuntu 22.04 using Bluetooth. Once connected, you'll be able to listen to music and use the microphone on apps like Microsoft Teams.
bluetoothctl:| #ifndef JSONLIB_H | |
| #define JSONLIB_H | |
| #include <iostream> | |
| #include <cctype> | |
| #include <unordered_map> | |
| #include <sstream> | |
| #include <memory> | |
| #include <type_traits> | |
| #include <iterator> |
| FROM python:3.7.2-alpine | |
| RUN pip install --upgrade pip | |
| RUN adduser -D worker | |
| USER worker | |
| WORKDIR /home/worker | |
| COPY --chown=worker:worker requirements.txt requirements.txt | |
| RUN pip install --user -r requirements.txt |
| #pragma once | |
| #include "Audio.h" | |
| Audio::Audio(std::string str) { | |
| if (str.substr(str.size() - 4) != ".wav") | |
| throw std::invalid_argument("Can only read WAV files!"); | |
| load_wav(str); | |
| } |
| // create file: | |
| sudo vim /usr/share/applications/intellij.desktop | |
| // add the following | |
| [Desktop Entry] | |
| Version=13.0 | |
| Type=Application | |
| Terminal=false | |
| Icon[en_US]=/home/rob/.intellij-13/bin/idea.png | |
| Name[en_US]=IntelliJ |
| public class Adder { | |
| private OnMathOperationPerformed onMathOperationPerformed; | |
| private int a, b; | |
| public Adder(int a, int b) { | |
| this.a = a; | |
| this.b = b; | |
| } |