David Kebler

Results 55 comments of David Kebler

if gpio-keys is module implemented in the kernel and is by default in raspbian release maybe this is the issue. The kernel here (4.15) doesn't know about the gpio-keys cause...

I'm guessing it's the nemo action `Exec=` which calls this python script ```python #!/usr/bin/python3 -OOt import argparse from itertools import chain from subprocess import call parser = argparse.ArgumentParser() parser.add_argument('filelist', help='list...

from command line seems like attaching a file is creating a parsing error? this works `gnome-gmail "mailto:?Subject=Hello%20again"` but this gives error ``` $ gnome-gmail -r "testfiletosend" "mailto:?Subject=Hello%20again" Traceback (most recent...

just assuming one should pass all symbols through I did this. ```javascript let copyProps = (target, source) => { Object.getOwnPropertyNames(source) .concat(Object.getOwnPropertySymbols(source)) .forEach((prop) => { if (typeof prop.match ==='function') { if...

All the ports below would not map to the host from the contain except with the docker hub image I mentioned. The other images which have a tag of arm64...

Like this custom.css file https://geekdocs.de/usage/color-schemes/ This works perfect for me to tweek a theme. I assume you are making an electron app. In which case the folder/file it looks for...

ctrl-shift+i or under view was supposed to bring up dev tools but it doesn't. Need that to inspect the css

Oh, I guess one might not want to allow dev tools in a production build although for MQTTX I think that's not a security issue. For example, Joplin provides their...

but I don't want to send the ssh request that did come on wan port 22 to this internal server just the 322 port. I have two ssh servers running...

ok did what you suggested works as in port 22 goes to gateway box and port 322 goes to internal box. Still I just don't grok why the router4 command...