Mark Browning
Mark Browning
`libc++` has added a redirection of [errno.h](https://github.com/llvm-mirror/libcxx/blob/master/include/errno.h), which causes problems with cotire. In application source specifying `#include `, cotire adds `#include "/Library/Developer/CommandLineTools/usr/include/c++/v1/errno.h"` to the `_CXX_prefix.cxx` file. This file (from libc++)...
Even though `py-spy` is a sampling profiler and the timelines should not be trusted, the `speedscope` format allows for multiple parallel timelines. At a sufficiently course sampling granularity (assuming no...
* python3 file I/O returns byte arrays instead of strings. * Convert all known `moov` types to constants for consistent comparison. * Convert `print` statement to `print()` functions
I am using an IPCAM with semi-variable latency requiring relatively frequent updating of the audio Sync Offset Control. Unfortunately, OBS itself doesn't offset it's monitor audio, so I have a...
This works with `aiohttp`: ```python import asyncio import aiohttp import time from types import SimpleNamespace def request_tracer(): async def on_request_start(session, context, params): context.trace_request_ctx.request_start = time.perf_counter() async def on_headers_sent(session, context, params):...