Tv
Tv
Linux/UNIX directory entry names cannot contain slashes. I do not expect the IO errors to be "random", at all, but very consistent. What are you trying to do here?
This seems to be a misunderstanding of UNIX filesystems, with nothing actionable here.
`fusermount3` was released in 2013. Ubuntu 18.04 is end of life next month. I would suggest upgrading urgently, you will not be getting security updates anymore. Really, you should have...
I replaced sveltefire's User component with something radically simpler, and loading states work great: ``` import { getContext, createEventDispatcher } from "svelte"; const firebase = getContext('firebase').getFirebase(); const dispatch = createEventDispatcher();...
And this one should get unsubscribe right and also uses https://firebase.google.com/docs/reference/js/firebase.auth.Auth#currentuser if it is set. EDIT: also dispatch event after currentUser trick. ``` import { getContext, createEventDispatcher, onMount } from...
> CopyBuffer is identical to Copy except that it stages through the provided buffer (**if one is required**) rather than allocating a temporary one.
@dsnet Is this an actual bottleneck in something that can't be fixed without stdlib changes?
@dsnet Was it ever an observed bottleneck in a real, otherwise well-written, system?
As far as I can tell, diesel-cli's handling of database URLs is completely undocumented. https://github.com/diesel-rs/diesel/blob/dfa8182f3c0db3b089f7d539322938a55d25ab2a/diesel_cli/src/database.rs#L29
And it seems diesel-cli source thinks sqlite URLs should begin with `sqlite:`, but then just passes those directly to sqlite, which does not understand such a URL. Sqlite expects `file:`....