-
List available keys
xmodmap -pk -
Find key numbers, for my computer it's:
112 Prior <-> 110 Home
117 Next <-> 115 End
- Try to change keys
List available keys xmodmap -pk
Find key numbers, for my computer it's:
112 Prior <-> 110 Home
117 Next <-> 115 End
| const main = async () => { | |
| const context = new AudioContext(); | |
| const microphone = await navigator.mediaDevices | |
| .getUserMedia({ | |
| audio: true | |
| }) | |
| const source = context.createMediaStreamSource(microphone); |
| if _, err := os.Stat("/path/to/whatever"); os.IsNotExist(err) { | |
| // path/to/whatever does not exist | |
| } | |
| if _, err := os.Stat("/path/to/whatever"); !os.IsNotExist(err) { | |
| // path/to/whatever exists | |
| } |