Fee Fladder

Results 95 comments of Fee Fladder

Note that language JSON and language JSON-schema `schema` are different. If you are using a JSON-schema, use `quicktype -s schema` aka `quicktype --src-lang schema`. This does not include the `$schema`

For people looking for a ~[fix](https://github.com/AUTODIAL/AutoEIS/issues/95#issuecomment-1967583222)~ workaround: ``` import juliapkg juliapkg.require_julia("=1.10.0") juliapkg.resolve() from juliacall import Main as jl jl.println("hello world!") ```

I got a `0`. Indeed I switched to PythonCall from PyJulia exactly because PyJulia had problems with statically linked python. This is also an issue over at conda-forge I believe....

That's what I did in the end. Also I didn't exactly realize that `v-model` doesn't work on file, while it does work on the rest, so that may be a...

Hmm, I thought such a logic would comply with "the right to be forgotten"? Then also, there would be reasons to keep such contracts, for example if a dispute should...

Yeah, I used this script here: ```bash # install libresign # use --force since libresign is said not to work for nc 27.0.0 php occ app:enable --force libresign # this...

Is it possible at all to use libresign in the snap package? AFAIK, the nextcloud snap doesn't allow to add extra apps?

Seems like it is beause it immediately reads in all offset tags, with call chaing as I said [here](https://github.com/feefladder/image-tiff/tree/async/src/decoder/async_decoder): The call chain that slows execution is: decoder.next_image()->tag_reader.find_tag(tag)->entry.clone().val()->case 4 entry.decode_offset() where...

I just started looking through the code, after having had a deep-dive into image/tiff. The first thing that comes to mind is: Why all the duplication? - in image/tiff, the...

I'll open a PR over at image/tiff with example of awesome multithreaded reading made possible by exposing Image [over here](https://github.com/feefladder/image-tiff/tree/multithread), shown below [![epic recording showing fast multithreaded stuff](https://asciinema.org/a/hV2QuQqsVub0X80yKApUHexgN.svg)](https://asciinema.org/a/hV2QuQqsVub0X80yKApUHexgN)