Russell Davis

Results 21 comments of Russell Davis

This would be nice. It's also pretty easy to chain the two together using the `aws` cli: ```bash set -e backup_name=$(date "+%Y-%m-%d") cognito-backup-restore backup --pool all --use-env-vars --directory "$backup_name" aws...

Hey @ehmicky, thanks, yeah I'll file an issue with node-precint as well. Though there might some config or different way of using that library here that avoids the bug. To...

I tracked down where this is coming from. node-precint uses node-source-walker which in turn uses @babel/parser to do the parsing. And there's an issue about this in @babel/parser: https://github.com/babel/babel/issues/12354. The...

Turns out there's already an issue for that: https://github.com/dependents/node-precinct/issues/68

A note to consider about going through the trash index (.DS_Store): Finder takes a while before flushing changes to that file, so that approach won't work with recently trashed files....

Here's a tool I wrote that provides this feature: https://github.com/russelldavis/trash101

@deivid-rodriguez would you be able to take a look at this now? I'm running into https://github.com/ConradIrwin/pry-rescue/issues/71 and this would solve the problem for me. Thanks.

+1. I think introducing a `NotNone` type is the way to go here. In terms of implementation, I'd imagine `NotNone` would become the primary base type (except for `None`), and...

I ran into this as well. I don't think it's actually a cloudflare issue though. The issue (at least for me) was that `lib.dom.d.ts` (which has the conflicting definition of...

> CloudFlare type definitions file shows a modal which lists the return type as globalThis.WebSocket That's correct and expected. The Cloudflare library defines `WebSocket` as a global definition (because it...