Divya Thakur

Results 2 issues of Divya Thakur

The provided solution has: ```dx = dx + h * (residual) / dt``` In my own solution, I wrote: ```dx = (1 - h) * dx + h * (residual)...

https://github.com/supabase/stripe-sync-engine/blob/2c0d81aaf877af018d1d4f103459e24cffebeca2/db/migrations/0012_add_updated_at.sql#L11 If the database does not have a `postgres` role, the migration fails. ``` /app/node_modules/pg-node-migrations/dist/migrate.js:108 const error = new Error(`Migration failed. Reason: ${e.message}`); ^ Error: Migration failed. Reason: An error...

enhancement