Igal Klebanov

Results 357 comments of Igal Klebanov

```typescript type InorderTraversal = T extends null ? [] : [...InorderTraversal, ...(T extends TreeNode ? [T['val']] : []), ...InorderTraversal] ```

This seems to pass all tests.. ```typescript type BEM = `${B}${E extends [] ? '' : `__${E[number]}`}${M extends [] ? '' : `--${M[number]}`}` ```

Your solution is harder to read on hover in the IDE.. will probably exhaust it after a few steps ``` & { ... } ``` ```ts type Index = string...

Tested with another discord user of mine, and it worked. closing this issue.

I feel like discord, when the link works, provides great means of informal communication and quick response times. It seems people are more comfortable with asking questions, being vulnerable there.

I think that google searchability is overrated in this context. Its a time sink. Most people find it hard to pick the right keywords for their questions/issues. Especially when being...

@waynebloss thank you for sharing! > Inevitably, people will create Issues which are actually discussions here on GitHub (GH) People also open issues in discussions, it's confusing to people. >...

[Appwrite](https://github.com/appwrite/appwrite) on "Discord over Discussions". https://dev.to/appwrite/why-discord-is-a-must-have-for-oss-2jpj

>Discord is a black hole for information](https://news.ycombinator.com/item?id=30311982) Feedback from a loud minority of anonymous users in a message board should be taken with a grain of salt imho. Heck my...

https://github.com/brianc/node-postgres/issues/2680 For `jsonb` javascript array input, simply `JSON.stringify`ing your input works. You'd have to change your column type to something like `ColumnType` to not get typescript errors in your insert/update...