Tom Sherman

Results 234 comments of Tom Sherman

You could definitely write a script for that.

Reopened because I'm pretty sure that the `/ignore` command doesn't work as intended.

Can't seem to reproduce this. I've forced the CIRC app to crash, force closed chrome; both times it started up fine. Or are you talking about a system shutdown? I'm...

@alfonsojon I see. There's no way to reproduce that then, I don't have a Chrome OS device. Does it happen on any other Chrome apps?

Yes please! I just raised a discussion around this topic: https://github.com/common-fate/granted/discussions/224 As I understand it this involves calling [`ListAccounts`](https://docs.aws.amazon.com/singlesignon/latest/PortalAPIReference/API_ListAccounts.html) and paginating through to get all accounts. Then for each account...

I think the easiest way to fulfill the requirements (and the most minimal/unixy) would be to output all of the profiles to stdout. So just `granted sso generate ` would...

@donavon Could you take a look at this please?

@donavon Just a gentle ping, could you review this please?

Hi, if I'm understanding you correctly you can solve this using the `matchMedia` API. Here's how I did it: https://github.com/NorfolkDev/norfolkdevelopers-website/blob/39c988376c38976f9eaa2dfac3638c6fd938ec14/src/components/DarkModeToggle.tsx#L7-L10 ```javascript const darkMode = useDarkMode( window.matchMedia('(prefers-color-scheme: dark)').matches ); ```