Results 53 comments of Joyless

@Cat-Lips Hi. Personally, I'm not a fan of autoloads, since they require you to structure your project in a "black magic" kind of way. That is, instead of having a...

Looks like your issue arises from the following code: ```cs var name = Path.GetFullPath(settings.Filename).ToLower().Sha1(); ``` ```cs public static string Sha1(this string value) { var data = Encoding.UTF8.GetBytes(value); using (var sha...

Instead of creating a `stackalloc` based version, maybe you could create a fixed-size version (maybe 256 chars)? This would allow you to use it outside of `ref struct` limitations. This...

> True - but that would incur allocations. Structs only incur allocations if you heap-allocate them (use them outside `ref struct` limitations). If you use structs as local variables they...

I run this code in the upstream repository and it works fine: ```cs using Xunit; namespace LiteDB.Tests.Issues; public class Issue2527_Tests { [Fact] public void Test() { using LiteDatabase database =...

I can't reproduce the issue, so I'll assume it's corrupted data, and am closing it. If you can find a way to reproduce the issue, please re-open it. Thanks

> Until this can be implemented and for anyone that might like the import script [Gunmatazar](https://www.reddit.com/user/Gunmatazar/) created a [post on Reddit](https://www.reddit.com/r/godot/comments/1azn4oj/ressource_import_script_to_apply_override/) with the following code to do just this: For...

Here's my proposed syntax in [McKeeman Form](https://www.crockford.com/mckeeman.html): ``` jsonh whitespace element whitespace element object array string number "true" "false" "null" object "{" properties "}" properties properties whitespace whitespace property whitespace...

> Just use YAML at this point... Hi @terraquad, > YAML suffers from significant whitespace, ambiguous syntax and feature bloat.

For the record, the given example would look like this in YAML: ```yaml key: 1 contains: everything on this line cool: foo: 1 bar: 2 list: - 1 - 2...