Sanchit Ram Arvind

Results 21 comments of Sanchit Ram Arvind

So autogenerate doesn't generate the creation of enum. You manually add it in, here is my example ```python project_status_enum = sa.Enum( "active", "deprecated", "duplicate", "spam", "changed_url", "no_url", name="enum_project_status", schema="chai_processed", )...

```sql op.create_table( "agg_projects_processed", sa.Column( "tid", sa.Integer(), sa.Identity( always=False, start=1, increment=1, nomaxvalue=True, cycle=False, minvalue=1, ), nullable=False, ), sa.Column("project_name", sa.String(), nullable=False), sa.Column( "status", project_status_enum, nullable=False, server_default="active" ), sa.PrimaryKeyConstraint("tid", name=op.f("pk_agg_projects_processed")), schema="chai_processed", ) ```...

Also @CaselIT, to your earlier point, did you mean `checkfirst` or `check_exists`?

I'm having the same error. I am trying to package whisper for a package manager tea, and one of the GitHub actions on the repo is to check whether the...

Per Notion's Instructions, I tried the [following instructions](https://www.notion.so/help/reset-notion). This does indeed reset the cached Excalidraw Diagram Notion stores, but still does not solve the problem. If you subscribe to Excalidraw+,...

is the workaround here just to download the whole file? we're using `iter_lines`, since we're downloading a very large csv too.

cool, thanks! I had something like this previously, but was missing logic that ensured the start & end of each lines is complete. we have another lever to pull right...

You can use `ZDOTDIR` to configure zsh to look in a different directory instead of `HOME`. But, it's blank by default, since `.zshrc` is in `HOME`. What about `find ~...

does this screenshot work?

I'll give this one a try