Clear any existing profiles, restart bluetooth and pair the airpod again. This should enable the A2DP sink:
sudo systemctl stop bluetooth
rm -rf /var/lib/bluetooth
sudo systemctl start bluetooth
// Refer https://github.com/MierenManz/EventSource | |
const { webidl } = window.__bootstrap; | |
const { DOMException } = window.__bootstrap.domException; | |
const eventSourceInitDict = [ | |
{ | |
key: "withCredentials", | |
converter: webidl.converters.boolean, | |
required: true, |
const subtle = crypto.subtle; | |
function generateEcdhPeerKey() { | |
return subtle.generateKey({ name: "ECDH", namedCurve: "P-256" }, true, [ | |
"deriveBits", | |
]).then((k) => k.publicKey); | |
} | |
const wrappers = []; | |
const keys = []; |
diff --git a/include/v8-fast-api-calls.h b/include/v8-fast-api-calls.h | |
index 6ef950c10f..c2f436f7cc 100644 | |
--- a/include/v8-fast-api-calls.h | |
+++ b/include/v8-fast-api-calls.h | |
@@ -258,6 +258,7 @@ class CTypeInfo { | |
// actual type. It's currently used by the arm64 simulator | |
// and can be added to the other simulators as well when fast | |
// calls having both GP and FP params need to be supported. | |
+ kUint8, | |
}; |
From f498f86cecc69cf82cb316452f33505204c2df5a Mon Sep 17 00:00:00 2001 | |
From: Divy Srivastava <[email protected]> | |
Date: Fri, 8 Mar 2024 06:16:46 +0000 | |
Subject: [PATCH] Fix Interceptor being reset by LookupIterator changes | |
--- | |
src/objects/js-objects.cc | 48 ++++++++++++--------------------------- | |
1 file changed, 14 insertions(+), 34 deletions(-) | |
diff --git a/src/objects/js-objects.cc b/src/objects/js-objects.cc |
diff --git a/lib.rs b/lib.rs | |
index aa9c0fd..0742832 100644 | |
--- a/lib.rs | |
+++ b/lib.rs | |
@@ -623,6 +623,29 @@ impl Macho { | |
writer.write_all(self.linkedit_cmd.as_bytes())?; | |
continue; | |
} | |
+ | |
+ // Update the static in the __SUI_INTERNAL,__START segment to the address of the |
Setup:
yay -S python311
cd ~/gh/deno/
python3.11 -m venv pyenv
sudo su
source pyenv/bin/activate
Icons in PE are very sensitive to resource table ordering. Here's what works:
We can't use editpe
's builtin set_icon
because it lays out Icon
and Icon Group
together before/after the RCData
. Instead, we
need a custom implementation that places RCData between the icon entries. This means we defer Icon Group
to always happen during PortableExecutable::build
.
After the fix: