Skip to content

Instantly share code, notes, and snippets.

View bendera's full-sized avatar

Adam Bender bendera

  • Budapest, Hungary
  • 09:28 (UTC +01:00)
View GitHub Profile
@bendera
bendera / mmd87.md
Last active March 10, 2023 22:37
ACGAM MMD87 3 Mode DIY Kit

ACGAM MMD87 3 Mode DIY Kit

Product page

Keyboard shortcut Command
fn + 1 Bluetooth 1
fn + 2 Bluetooth 2
fn + 3 Bluetooth 3
fn + 4 Wireless receiver
fn + 5 Wired
@bendera
bendera / delay.ts
Created October 17, 2025 12:33
A simple delay function
const delay = (ms: number) => new Promise((resolve) => setTimeout(resolve, ms));