thecodewarrior

Results 36 comments of thecodewarrior

So I think I can make VueStore in vue 3 work - with any class hierarchy - with full inheritance (e.g. any class extending a VueStore class is fully reactive)...

So doing it that way would be a breaking change, however I can make it fall back to the old behavior when used as a decorator, then discourage using that...

Looking this up again, inheritance may actually be possible: https://stackoverflow.com/questions/64715536/how-to-capture-proxy-set-actions-from-a-class-constructor/64715857

After some more careful reading, inheritance isn't plausible. That stackoverflow post is about changing the final *prototype* of the object, but you can't provide a custom `this` instance itself. It...

The problem was that fully whitespace lines weren't considered blank. You can set Xcode to trim the trailing whitespace on all-whitespace lines by going to `Preferences > Text Editing >...

I'm currently working on trying to jury-rig together a new build, but I need to update gradle to update kotlin, which means I need to update ForgeGradle, which is a...

Unfortunately not. Work has been stressful lately, so I've had very little motivation for working on personal projects. Especially stressful and mentally taxing projects like this one.

Yeah, that was my plan, but in order to compile against newer kotlin stdlib versions I have to use newer versions of gradle, which requires upgrading forgegradle, which is a...

So basically both? An abstract system with a default GUI implementation?

It looks like some other mod is bundling a conflicting version of the Kotlin unsigned types library. Depending on how the class loader is implemented you may be able to...