Ximin Luo

Results 108 issues of Ximin Luo

Suppose I want to compose a bunch of reads in the way `select(2)` does, then it's very tempting to write something like `forever $ race (forever $ read a) (forever...

libav10 has dropped support for the CODEC_ID_\* macros, [renaming](https://wiki.libav.org/Migration/10#Macro_namespace_change) them to AV_CODEC_ID_*. We can restore support just by replacing the relevant expressions in ffmpeg.c, but you might want to use...

I am updating this package in Debian and along the way have made some vendor-agnostic fixes. Please review and merge.

Commit 8de231568b7c43c7672f9e508c308d9bc715d120 broke the build for all non-x86 architectures. The offending code is this: ``` #ifndef __SSE_MATH__ __asm__ __volatile__ ( "emms"); #endif ``` Changing it to ``` #ifdef __MMX__ __asm__...

See for example [c486dade](http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=c486dade95ba529151391a7879538c9d4787752b) One fix is to copy the definitions of URLContext and URLProtocol straight into ffmpeg.c.

please add a config option to set the listen address - this would provide an easy way of setting up a private wiki over a lan or vpn

This is basically what https://github.com/Zibri/cloudflare-cors-anywhere does, except it chooses to use "Cors-Received-Headers" for the incoming headers, which IMO is wrong as it doesn't start with X-. As mentioned in #469...

Fixes #1192. We copy some code from LSPosed to expose the IPackageManager hidden android API, which in combination with `pm grant $pkg INTERACT_ACROSS_USERS` allows us to directly query all packages...

When installing many apps, some of which you trust and some of which you trust less, it is very inconvenient to have to repeat your "allowed apps" settings across multiple...

Feature Request

~~~~ $ x=test1.JPG $ d="2023-07-21 21:06:26" $ t="+08:00" $ exiftool -g -G $x | grep -E -i 'offset.*time|composite.*date' [EXIF] Offset Time : +08:00 [EXIF] Offset Time Original : +08:00 [EXIF]...