Lauren Campbell

Results 6 issues of Lauren Campbell

`default_sql_now` returns `CURRENT_TIMESTAMP` for psql, but without specifying UTC this returns the server's local time. [SQLAlchemy docs](https://docs.sqlalchemy.org/en/13/core/compiler.html#utc-timestamp-function) recommend the following implementation for a psql utc_now(): ``` @compiles(utcnow, 'postgresql') def pg_utcnow(element,...

dependencies: ``` python 3.10.7 sqlalchemy==1.4.48 graphene==3.2.2 graphene-sqlalchemy==v3.0.0b4 graphql-server[flask]==v3.0.0b6 ``` I am upgrading from `graphene==2.1.9` and `graphene-sqlalchemy==2.3.0` where these hybrid properties worked. simplified example: ```python # myproject/routes/graphql_view.py from myproject.schema import schema...

Simple example ```python from dataclassy import dataclass, as_dict @dataclass class MyClass: _my_internal_tracking_field: str = "Parent Class" my_other_field: str >>> my_instance = MyClass(my_other_field="test") >>> my_instance.__repr__ >>> as_dict(my_instance) {'_my_internal_tracking_field': 'Parent Class', 'my_other_field':...

enhancement

**Describe the bug** Hitting tab resets font style/size selection **To Reproduce** - select any sort of non-default text selection (e.g. bold + size 12) - type something as normal, text...

bug

**Describe the bug** Inserting a table in the middle of a note at the cursor point inserts it at the top of the note **To Reproduce** - have a note...

bug

I am learning Jupyter and wanted to click some links, but they are 404-ing. I have updated the two links that still exist from Jupyter's github + removed one that...