Gunnar Guðvarðarson

Results 90 comments of Gunnar Guðvarðarson

Maybe then mark the repo with v3 and put a v2 with a readme or something? Or maybe the repo thing has a feature to tell you your arch is...

Not stale, wow this bot needs to like 2x its timeout...

I have been running caddy for years in front of all sorts of things, including HA, but recently i have started trying to push clients via my proxy to upgrade...

What about a http header that tells the browser which icon to load? Would work for non-html too. F.ex a link header with an icon `Link: ; rel=icon; as=favicon`?

what if you pass it in like `age ...

But the command I provided does not use stdin? It makes a pipe kind of file and returns the path to it to the command.

Better workaround than above: ```python @contextmanager def continue_trace(sentry, name): n = f'{Path(__file__).name}::{name}' try: with sentry_sdk.start_transaction(op='call', name=n): yield except: # Workaround for: https://github.com/varlink/python/issues/62 sentry_sdk.capture_exception() raise @service.interface('com.example') class Example: def Add(self, something):...