Flo

Results 98 comments of Flo

I'll try to... it's basically a race-condition created by simultaneously outputting log output and updated/removed progress-bars from different threads, and I'm not really sure how I can create a reliable...

Alright. Small example. ```python3 #!/usr/bin/env python3 import time from rich.progress import Progress from concurrent.futures import ThreadPoolExecutor def task(task_obj, advance): while True: progress.console.log(f"Task {task_obj}") progress.console.log(f"Advance {advance}") progress.update(task_obj, advance=advance) time.sleep(0.1) progress =...

Same issue here - I'm trying to add/replace a part of a schema to avoid duplicating the code dozens of times: ```ts export const specSchema = z.object({ value: z.string(), project:...

> I'm stranded in an airport right now Oh well... happy to help as much as I can! And good luck!

Instead of having a boolean for one case, it might make sense to allow different solutions if the desired mount target does not exist. Example: ```jsonc "mounts": [ // Keep...

> That said, in discussion with @chrmarti, it sounds like there are challenges here as the docker context that is used for building/running containers could be remoted over SSH. In...

There's an "oldschool" way of using devcontainers on a remote machine, before it could be done through the ssh remote extension: By setting a docker context to a ssh target:...

Guess I should update my setup here then 😅

I think I can confirm the flash on theme change. The search bar seems to be the most obvious thing. And I absolutely favor saving the selected theme in the...

It's gdpr-compatible as long as you're using the localstorage. Cookies are bad since they're sent to the server with the page request.