Johan Bjäreholt
Johan Bjäreholt
Regarding the annoying logs, that's a duplicate of the following issue: https://github.com/ActivityWatch/aw-server-rust/issues/42
> I'm running 0.92 release, with nothing extra. The biggest reason for the delay is the "Loading of the Browser Domains". It takes a disproportionate amount of time for some...
@nicolae-stroncea Not that strange considering that it's from my laptop that is not my primary computer. I'll likely have more events on my personal desktop and likely the most on...
I just checked my work desktop, it has around 1.4 million events and I've been running activitywatch on it for about 3 years.
Oh, didn't know it was that easy. The only reason why I said it shouldn't be implemented is because rocket+serde (our HTTP lib + JSON (de)serializer) cannot export JSON schemas...
@xylix That openapi branch look really nice, I took the liberty of taking the aw-models code and modified it a little since that part looked pretty good already. I only...
I think the reason is that aw-server-python accepts both a list of events as well as a signe event on the `/api/0/buckets/bucketname/events` endpoint while aw-server-rust only accepts a list of...
I updated this issue with ideas of how this could be solved. My first impression is that 3 might be the best solution. Could even add some logic to tell...
@ErikBjare > I think in the Python version of query2 all functions that modify data do deepcopy's on input arguments in order to avoid mutating them. It seems like at...
Or maybe just passing by reference and let the transforms decide if they need to clone or not like we do in query2 in python... Not a perfect solution as...