Rudolf Byker
Rudolf Byker
Thanks for the workaround! Any chance of getting that into `_datetime_to_com_time` as default behaviour? I agree it's weird, but if that's the only way Excel can represent time-only things, then...
I added this to `_datetime_to_com_time`: ```py if type(dt_time) is dt.time: # Excel does not have a time-only data type. It stores times with date `1900/01/01`. dt_time = dt.datetime(1900, 1, 1,...
> You should remove `, "Endpoint"` in line 101 Why? Sorry, it's been a long time since I made these changes, so the code is not fresh in my memory.
I rebased my branch on the latest master! Please review :)
@mwt wrote: > I think that the entire peer should be removed rather than just the routes. Quite right, and I only realized this now. For anyone wondering why, see...
> In addition, we can mark one peer as relay (flag in config) and add subnets that are not directly accessible to it Good idea for the next PR after...
What prevents this from being merged? It's a valuable feature, and works properly.
I also need this. Workaround for now: Chain commands using `&&`. ``` sysctl -w net.ipv4.ip_forward=1 && iptables … && etc && foo && bar ```
I can make a PR for this, but I doubt that it will be merged, since they say that yarn 1.x is frozen now. The good news is that I...
I have been experimenting with server-side Nuxt & Sentry integration, and the blog at https://www.lichter.io/articles/nuxt3-sentry-recipe/ has been very useful. However, there is one thing missing: Distributed HTTP tracing. Adding `new...