This guide installs whisper.cpp on Ubuntu and sets up an English push-to-talk toggle:
- Press hotkey once → start recording
- Press hotkey again → stop → transcribe → paste at cursor
It’s written to work for most Ubuntu machines. GPU is optional.
This guide installs whisper.cpp on Ubuntu and sets up an English push-to-talk toggle:
It’s written to work for most Ubuntu machines. GPU is optional.
| const arr = Array.from({ length: 10000 }, (_, i) => i); | |
| const set = new Set(arr); | |
| function checkArr() { | |
| return arr.filter((item) => arr.includes(item)); | |
| } | |
| function checkSet() { | |
| return arr.filter((item) => set.has(item)); | |
| } |