Greg Walters
Greg Walters
Yeah, I'm totally happy to help you test!
I think so. I used it to block videos shorter than 20 minutes and I don't think any shorts are 20 minutes long.
@JeffJacobson in advanced blocking ``` (video, objectType) => { if (video.vidLength>=1200) { //if long if (video.channelName.match("channel a|channel b|channel c")) {return true; } } return false; } ```
> I'm not sure how I feel about the ndots solution. It does technically fix the geocoder, but it's likely to break other in-cluster dns lookups for eg. a database...
In my case, the search domain is set via DHCP and removing it from my nodes would remove it from everything on my network and that's a no-go. I enjoy...
Unfortunate that this was closed. It seems to ignore my reasoning, doesn't describe why my suggestion isn't acceptable, and leaves a bad taste in my mouth that'll influence my decision...
I've been trying to access `/dev/mem` from within a container and failing. Controlling an OLED display via WiringPI or other C programs as root on a raspberry pi requires this....
@lws-team have you seen the state of raspberry pi drivers and binary blobs? Providing raw access to physical memory is, of course, a security problem but kernel options like `CONFIG_STRICT_DEVMEM`...