Dag Brattli

Results 190 comments of Dag Brattli

@MangelMaxime I would be happy if we could get rid of the dateutil dependency. Here's a copilot refactor of your code: ```py def parse(string: str, detectUTC: bool = False) ->...

Yes, files are modules in Python so files cannot contain dots in their name (only underscores), since that would Python think there's a submodule when importing them i.e that the...

Using _fs.py would be an option. I didn't think about it at the time. But I suppose it will still not be grouped like above?

Another problem with Python is that all the compiled files must be within the same subdir. If not, then Python cannot import them. That means that e.g imported projects will...

@ArtemyB Thanks for opening this issue. I need to go out for a few hours, but hope to answer you later today

I'm not sure I understand. The package do not have an explicit depencency on `System.Text.Json`: ![image](https://github.com/cognitedata/oryx/assets/849479/1274ce0a-35da-4531-b291-e093d92a3ee8)

Ok, I think I understand this. You want the `Oryx.SystemTextJson` to be built for `net6` (and probably `net8`) without the direct dependency on `System.Text.Json`? Not sure how we can make...

AsyncRx is related to Rx the same way as AsyncSeq is related to Seq. They are all related to each other | | Sync | Async | |------|:----:|:--------:| | Push...

Yes but the issue is about [dotnet/reactive](https://github.com/dotnet/reactive/tree/main/AsyncRx.NET), the C# impl of AsyncRx made by Bart de Smet. This is quite a different implementation than my F# that uses Async instead...

This looks great. Please submit a PR! (and sorry for being so slow to comment)