Martin Czygan

Results 64 comments of Martin Czygan
trafficstars

Now I understand: the temporary files should be kept, since there may be thousand of them gather over many hours (I remember some endpoints). I added a `-k` flag to...

Just curious, is that something documented in the [spec](http://www.openarchives.org/OAI/openarchivesprotocol.html)? Another question: aren't there XML tools that would allow specific XML tag extraction? That way, we could keep functionality separate.

> I'm only interested in this child element(s) of oia:metadata because this is the actual payload. I'm surprised people keep the OAI envelope.I'm surprised people keep the OAI envelope. Yes,...

To note: XML 1.1 is discussed in [golang/go](https://github.com/golang/go/issues/25755) as well.

I recently saw: https://github.com/twpayne/go-xmlstruct - which implements type inference nicely.

Thanks for looking into this. With the `-r` (and the existing `-t`) flag it would be possible to do the following now: ```shell $ curl -s https://raw.githubusercontent.com/miku/zek/master/fixtures/e.xml | ./zek -e...

This is go-specific, so I leave this here as a footnote: I had some success making XML processing faster by parallelizing it, with some ideas take from here: [Faster XML...

If I'm printing out the URL of the request - from `api.files.dir()` - that yields a 503 I get something like: ``` https://p09-ubiquityws.icloud.com:443/ws/123123123/item/0 ``` The Content-Length is 23 bytes and...

If I'm printing out the URL of the request that yields a 503 I get something like: ``` https://p09-ubiquityws.icloud.com:443/ws/123123123/item/0 ``` The Content-Length is 23 bytes and says: ``` Account migrated...

I'd like to add that there is a quasi-standard called [XDG](https://wiki.archlinux.org/title/XDG_Base_Directory), which helps to keep `$HOME` clean and to organize applications files. E.g. the model files could live under `$XDG_DATA_HOME/ollama/models`...