Jens Rischbieth

Results 5 comments of Jens Rischbieth

Adding my support for portable usage on Windows and other BSD based systems like MacOS 😄 . Am wondering what the approach will be here, considering cryptsetup is not available...

@jaromil Your comment, for the most part, summarizes my current understanding of LUKS on platforms other than Linux: some BSDs do support LUKS, Dragonfly BSD being one that comes to...

@jaromil I see. Was going off of your objective list at the start of this thread. In such a case, I see nothing preventing the adopting of another filesystem and/or...

@PaleNeutron, seems this request still doesn't allow for polymorphism with other classes as fields, in particular, the Relationship class. Consider the following example: ```python from sqlmodel import SQLModel, Field, Relationship...

@PaleNeutron, I have found another potential issue. Consider the following linked list: ```python from typing import Optional from sqlmodel import Field, Relationship, SQLModel class BaseNode(SQLModel, table=True): __tablename__ = 'node_table' id:...