GarbageHamburger

Results 6 comments of GarbageHamburger

Most of the programming major modes in Emacs do not seem to have explicit code formatting functionality, but rather, packages such as https://github.com/lassik/emacs-format-all-the-code are used. Coupled with LSP support for...

I see. I will look into adding this myself, I'm also looking into #13 as that significantly improves interop, but I am in no way an expert elisp hacker ^^.

The problem here is that moderation objects can point to multiple different kinds of stuff (moderating users, moderating stories, etc.) and databases don't really have a good way of implementing...

Polymorphic associations are usually bad news if you're not handling them carefully, so if we go that way it would be nice to have it locked down with some good...

@vmarkovtsev SQLAlchemy core does have defaults, see [the `default` parameter for `Column.__init__`](https://docs.sqlalchemy.org/en/13/core/metadata.html#sqlalchemy.schema.Column.params.default). I agree that correctly emulating defaults is hard due to the types of things a column default can...