Matthew H. Irby

Results 25 comments of Matthew H. Irby

I know this is an old issue, but I did check out with both my work and school accounts, and I was able to log into both accounts fine. System...

You may need to chain your requests, you can't set the args and deploy at the same time, you'll get a key=value error from the Firebase CLI

@db-dblank Use the following to simultaneously set your environment variables and deploy your function ```yaml args: functions:config:set ${{ secrets.FIREBASE_FUNCTIONS_ENV_VARIABLES }} ; firebase deploy --only functions ```

For me, running on macOS Monterey, the "Sign in with a Passkey" option showed up on Safari and Chrome but not on Firefox. I found out it was because of...

I agree passcodes can be brute-forced. The backend passcode handler does invalidate (and erase) passcodes [after 3 incorrect guesses](https://github.com/teamhanko/hanko/blob/main/backend/handler/passcode.go#L178), but I don't think rate limiting is a bad idea to...

Hi, I am working on introducing Serverless to a project so we can easily deploy our Lambda to AWS through IaC. One project uses Lambda + Docker, and I would...

What @daddycocoaman describes is correct. .NET Standard 2.0 is compatible with both .NET Framework >= 4.6.1 and .NET Core >= 2.0. Because SharpHoundCommon targets strictly .NET Framework, the package cannot...

I think for password-based flows, the third bullet point is fine since that seems to be standard industry practice. For non-password based flows, I prefer the first bullet point over...