Lev Chelyadinov
Lev Chelyadinov
@Arcanemagus it does affect the other parts. This code extracts the PYTHONPATH of the venv and adds it to the PYTHONPATH for further execution. As someone who's using Pipenv in...
An important point is that there is no scrolling in this app, so the navigation UI of browsers is not going to be dynamic.
SvelteKit really needs to fix its typings
The problem here is that, when audio is playing, Firefox disregards the changes to the `currentTime`, overwriting them with the time that is playing currently. I don't really know how...
For now, I side-stepped the issue by adding up to two retries to that flaky test. Couldn't really figure out what was causing it to fail
I wanna give it a shot. Here's a [rough draft](https://gist.github.com/Leva7/56e3f240429cc7197e946008aa88f8ca) of documentation for the Avatar component (don't mind the question marks and factual mistakes). The outline was built with the...
Yeah, I get the automatic generation part. It's just the fact that those comments in the code have to be actually written, so I figured it'd be better to write...
This operator would be useful to me. Here's the use case I have: I have a store that often receives updates, every new update basically invalidates the previous states. I...
Copy-pasted the operator from the PR, works great. Here's the solution that worked for me: ```ts const treeChanged = debounce(vfs.$tree, 500) const runRulesFx = createEffect(runRules) sample({ clock: defer({ clock: treeChanged,...
I'd like to deal with errors, which is why I don't like the option of wrapping it in an `Ok`. Ideally, I'd like to have the following arrangement: ```rust pub...