anonghuser
anonghuser
Hey, I'm not sure if there are notifications for issue being mentioned, so I'll ping. The above mention gives a use-case that seems was being sought for this issue. tl;dr:...
@dswitzer and others looking at this in the future i don't remember how things worked back in 2018 anymore, but now httpbin.org's servers use http/2 protocol where there is no...
Getting this error on Oracle Linux 8 which has glibc 2.28 ~~Aside of waiting for you to fix the prebuilt binaries, can you describe how people should configure it to...
It seems to me even though github may have dropped support for old ubuntu versions as the base of its github actions runners, it still supports basically any docker image...
You can add a sort function very easily: ``` methods.sort = function(self, f) local collect = self:totable() table.sort(collect, f) return iter(collect) end exports.sort = function(f, ...) return iter(...):sort(f) end ```...
Sorting by keys or reversing is also possible, though not quite short. I could've inlined the `keys` and `withkeys` methods to make it shorter, but I think they are useful...
FWIW I am able to hack a solution with ``` const options = {codec: msgpack.createCodec({})}; options.codec.decode = (old => function(decoder){ options.decoder = decoder; return old.apply(this, arguments); })(options.codec.decode); msgpack.decode(buf, options); console.log('decoded...
just play the sample videos on the fluidplayer homepage and see how the control bar at the bottom never disappears if you are in fullscreen...
Hello, I'm not actually using fluid-player myself, I'm just visiting many other sites that use it and see the control bar gets in the way. But I guess despite that...
On my side the control bar never ever disappears in fullscreen. Not when i use F, not when i use the mouse, not with `autohide: true`, not with `autohide: false`....