Ivan Vanderbyl

Results 17 issues of Ivan Vanderbyl

I just tried following the installation instructions, however it deleted not only my project, but everything in the parent directory. ``` git checkout --orphan gh-pages && rm -rf `ls -a...

It'd be nice to load user profiles when hovering over their name, similar to Twitter, and being able to click through to the actual profile.

help wanted

Thanks for this great library, I put together an example of how to use it with Go 1.16 embed.FS: ```go package locales import ( "embed" ) //go:embed */*.yml var translations...

- [X] I have searched the [issues](https://github.com/ent/ent/issues) of this repository and believe that this is not a duplicate. ## Summary 💡 Expose a method on the generated `Order` type so...

This PR adds support for applying modifiers to edge queries. Our use-case is that we have a table that stores the history of prices for a hotel and we want...

Hi Team, This PR adds some extra configuration to the generate Hook so that it can output generated code that works with BufBuild's Connect. Specific changes: - Make all method...

We use a lot of Go code generation, and the code gen headers match your regex in isGoCodgen, but the change still get counted. Any ideas?

Hi team, I really love the work you're doing bringing protobufs to the browser! ### Feature request: One use case we have is using a `Message` as the value of...

I have forked this project and begun work on AMQP (ruby-amqp and bunny) support. I was wondering if you have any design goals or plans with AMQP that I should...

question

This PR resolves https://github.com/ent/ent/issues/3168 to add support for generated columns as needed when using `tsvector` or similar extensions in Postgres. **Usage:** ```go field.String("text_searchable_content"). SchemaType(map[string]string{dialect.Postgres: "tsvector"}). Annotations(entsql.GeneratedAs("to_tsvector(...)")). Optional() ``` **Todo:** -...