Martin Algesten

Results 6 issues of Martin Algesten

Hi! In my code I think I have an issue with renaming of nullable enum values, so I figured I try running your tests and maybe extending them. However I...

I'm observing out of order events. First some pseudo to explain what I got. ```js function main(sources) { // updates to merged app state on the form `{key: value}` const...

Hi! Thanks for writing this lib! Have you thought about the case of streaming reads? It seems the API is centered around `Mp4Reader::read_sample(track_id, sample_id)` which in turn delegates to `Track::read_sample`....

This code is currently impossible. ```rust ureq::get(ZONE_URL) .call() .and_then(|resp| { resp.into_string().map(|s| s[0..(s.len() - 1)].to_string()) }) ``` Because `.call()` returns a `Result` and `into_string()` does `Result`. ``` mismatched types expected enum...

In issue https://github.com/porsager/postgres/issues/588 it says mixing string and tagged string as dynamic columns should work: ```js const columns = ['name', sql`ST_AsText(location) as loc_txt`]; const cities = await sql`SELECT ${sql(columns)} FROM...

Add support for "variant playlist" as can be used in HSL https://developer.apple.com/library/content/technotes/tn2288/_index.html#//apple_ref/doc/uid/DTS40012238-CH1-BASIC_VARIANT_PLAYLIST This PR makes rudimentary support for `EXT-X-STREAM-INF` enough to cover the "variant playlist". More attributes are defined here:...