cehteh
cehteh
When traversing some huge directory (5TB data/ 200Million Entries) i noticed that 'fd' will use excessive amounts of memory (I killed it at 35GB RSS). Some investigation shown that 'fd...
I'd like if magit-todos could filter on rust like todo!() macros (and other forms for languages which allow such annotations). Further the buildin regex wants the todo keywords separated by...
there is no 'readlink()' facility in luafilesystem. just having attributes() and symlinkattributes() is cumbersome to use. I'd like to propose following ideas, and if accepted i can implement them and...
It would be nice to have some more control over what gets backed up (and restored) including 'external' resource which may be not known to Seedvault. (This is about associated...
From the Docs: * ArcStr is totally immutable. No need to lose sleep because you’re afraid of code which thinks it has a right to mutate your Arcs just because...
As the title say there is no documentation for the possible '--data_allowed' flags. Also missing in the 'set-options' subcommand. This isn't mentioned in the 'principle-of-operations' document either. What are the...
I've now improved the bits I need. In future you'll see less contributions from me. I will still look and improve things eventually (esp running the tests under miri see...
WIP! caching segments should improve performance considerably. integration and benching follows.
I anticipate the change from the type alias to a newtype implementation here. Maybe this qualifies/requires a major version bump (I suspect this is still binary compatible as its a...
I had just fun: Type erased pointers that Drop properly: ``` pub struct FatErasedPtr { ptr: ErasedPtr, dropfn: fn(ErasedPtr), } impl