oltodosel

Results 14 comments of oltodosel

It would be nice to have option of sorting autocomplete by frequency.

Make sure everything that is needed is installed - https://github.com/oltodosel/interSubs#requirements Open `mpv` via CLI and see if there are any errors.

No idea. https://www.google.com/search?q=Failed+to+finding+matching+FBConfig+for+QSurfaceFormat+site:stackoverflow.com

https://man.archlinux.org/man/mpv.1#load~4 `` --load-osd-console= Enable the built-in script that shows a console on a key binding and lets you enter commands (default: yes). The ` key is used to show the...

Evidently the python part of the script does not start. The problem must be here: https://github.com/oltodosel/interSubs/blob/990ea55a2da0a9c307da75449e8982a190f8eb93/interSubs.lua#L22 or/and here: https://github.com/oltodosel/interSubs/blob/990ea55a2da0a9c307da75449e8982a190f8eb93/interSubs.lua#L69 Try entering full path instead on line 22.

I was wrong about the python part not starting, it very well might be. Console within `mpv` does not show output from the python script for some reason. I missed...

Anyone who wants to implement a hotkey, add the code below to the main function. It reacts to \` hotkey. ``` function hotkey(event) { if (event.keyCode === 192) { document.querySelector("a.quick-download").click();...

I have zero experience with C. This seemed to have solved the problem I've had with tesseract 4.

my sh snippet ```zsh ytall() { special_o='%(upload_date)s__%(title)s-%(id)s.%(ext)s' default_threads=3 if [[ -z $1 ]]; then echo "ytall [channel_url/playlist] [threads] [special -o ${special_o}]" return fi if [[ -n $3 ]]; then youtube-dl...