Sander Hahn

Results 7 comments of Sander Hahn

One workaround for removing an individual stack is: change the name of the app in the `up.json` and then do `up stack delete`. Although it seems that CloudWatch logs will...

Errors might be an array: https://github.com/hasura/hasura-actions-examples/blob/master/auth/functions/nodejs-express/src/handlers/signup.js#L49

Would be convenient if there is an option to skip the aggregate types. Made a checkbox for this in the display options: [example](https://sander.io/voyager.html) in this commit https://github.com/sanderhahn/graphql-voyager/commit/4af5e829ad544f99b29981bd7e2c9164d74d87eb but i can...

The documentation mentions at https://fresh.deno.dev/docs/getting-started/custom-handlers > To define a handler in a route module, one must export it as a named export with the name handler. Handlers can have two...

Also noticed that the regex for the block formulas don't allow newlines as whitespace. The VSCode Markdown Preview Enhanced extension also allow more whitespace in inline formulas. ```md $$ x...

Think it has to do with [System Integrity Protection](https://developer.apple.com/documentation/security/disabling-and-enabling-system-integrity-protection). ```bash % csrutil status System Integrity Protection status: enabled. ``` Not sure how to update the hosts file, it seems `sudo`...

Maybe this is a workaround... ```sh multipass-hosts --print --update=false > /tmp/hosts osascript -e 'do shell script "cp /tmp/hosts /etc/hosts; dscacheutil -flushcache; killall -HUP mDNSResponder" with administrator privileges' ``` Can you...