Jordan
Jordan
``` ruby class NilClass def method_missing (*) nil end end ``` As with most attempts to silently swallow errors, if you think this is a good idea, you're gonna have...
I disagree that `try` is bad, as "tell, don't ask" is not only overly broad IMO, but doesn't apply to most metaprogramming like this, especially with `method_missing` which relies on...
+1, being able to run a job at a desired time is an important feature for any job queue. A delayed state would allow it exist in the queue it...
@Playrom Can we reopen this? `ON DUPLICATE KEY` / `ON CONFLICT` statements are super important, and the workaround in Bookshelf is super hacky. Here's mine (using flow), as an example:...
I found a workaround per https://github.com/jtwebman/bookshelf-scopes/issues/1#issuecomment-286905196 Calling `extended` on your model class will cause it to be assigned the desired Error classes and other plugin behavior.
Just updated to 2.0.7 and getting some new errors: ``` node_modules/.pnpm/[email protected]_o5fu5zzztezljyppmu7zljxb6q/node_modules/notistack/dist/index.d.ts:263:15 - error TS2304: Cannot find name 'ReactNode'. 263 render(): ReactNode; ~~~~~~~~~ node_modules/.pnpm/[email protected]_o5fu5zzztezljyppmu7zljxb6q/node_modules/notistack/dist/index.d.ts:274:76 - error TS2724: 'global.JSX' has no exported...
First error is because this line references a nonexistant import: https://github.com/iamhosseindhv/notistack/blob/9ec749b28e4682eb859372fa3529db1eceb4b061/src/index.d.ts#L267 This should be `React.ReactNode` consistent with other references.
And the second type `JSX.element` should maybe be `React.ReactElement`?
PR to fix: https://github.com/iamhosseindhv/notistack/pull/520
Closing since this is an instance/symptom of https://github.com/solana-labs/wallet-adapter/issues/394, which we will address. Thanks for your patience on this, we're going to revamp the Getting Started UX. Please subscribe to that...