Mike Barkmin
Mike Barkmin
I guess v4l2loopback 0.12.2 does not support kernel 5.4+, therefore it will fail on some Systems. For example I am using Ubuntu 19.10 and have installed linux-kernel 5.5.8 in the...
This are the instructions I came up with. It works for Ubuntu 19.10 with Kernel 5.5.8 ``` sudo apt install obs-studio libobs-dev libobs0 git clone https://github.com/umlaeute/v4l2loopback.git make && sudo make...
I used another approach. I just added a `.travis.yml` file and use travis to build and deploy to GitHub pages. ``` language: java jdk: - openjdk8 script: - ant -f...
You need to install fd-find ``` sudo apt install fd-find ```
I think that working on accessibility is important. But at first we should discuss how this should look like. I think accessibility is not only working on correct aria roles,...
I have create a simple bash script. ``` #!/bin/bash java -jar path/to/languagetool-commandline.jar --languagemodel path/to/language-tool-ngram "$@" ``` Put it in my bin folder and added ``` let g:grammarous#languagetool_cmd = 'languagetool' ```...
This would require to have a server component, which probably provides a web socket. Then there needs to be a main client (the speaker) which connects to the web socket...
I have to use `require('../assets/banner.png').default` to make it work in my presentation. Perhaps this helps.
@m11m I can confirm this behavior.
For me, the error came from an invalid regex expression. I fixed the expression and now everything works fine again.