HackerTrans
TopNewTrendsCommentsPastAskShowJobs

aurecchia

no profile record

comments

aurecchia
·5 maanden geleden·discuss
I don't think there is an actual name for that. I actually don't think I have ever seen a keyboard with a layout like the one you describe. I'm not really sure if it was really intentional on the Alice layout. The extra B might just be for extra symmetry between the two halves.
aurecchia
·6 maanden geleden·discuss
Yeah, deleting your local clone and starting over should normally not be necessary, unless you really mess things up badly.

The "local backup branch" is not really needed either because you can still reference `origin/your-branch` even after you messed up a rebase of `your-branch` locally.

Even if you force-pushed and overwrote `origin/your-branch` it's most likely still possible to get back to the original state of things using `git reflog`.
aurecchia
·11 maanden geleden·discuss
I'm going to give it a try. Thanks for the suggestion!
aurecchia
·11 maanden geleden·discuss
I think it gives a good, albeit very simplified, explanation of the general idea around the most common OAuth flow.

Like OP was writing, if you are looking at implementing an authorization server, this is not very useful. Even if you are a developer looking to understand how to get authorized to interact with a resource server or authenticate a user, I'd argue that this is not enough. The author clarifies that in the conclusion, but then it's essentially the reader who has to figure out what details are missing and where to get them.
aurecchia
·11 maanden geleden·discuss
My biggest issue with the MX Ergo is the finish on the "top" part. After a while it starts to degrade and becomes sticky. I have not found a way to clean it properly. :/
aurecchia
·11 maanden geleden·discuss
For what it's worth, the MX Ergo also works over Bluetooth. I couldn't be bothered with the extra headache that that requires, though.
aurecchia
·11 maanden geleden·discuss
Are you implementing an auth server or integrating with one?

Regardless, the last time I dug into this topic I ended up feeling the same. The web is littered with articles that scratch the surface and only cover the basics. They often leave out the details, which IME ended up making things more difficult to understand. What was the most helpful, as you said, was to follow the RFCs and the OIDC spec directly.

What might also be useful, if you are implementing an auth server, is to look at existing implementations. Duende IdentityServer (https://github.com/DuendeSoftware/products/tree/main/identit...) is the most widely-used one in the .NET space.