GregHolmes | 2 years ago | on: Dragonfly Search: a RediSearch-compatible command
GregHolmes's comments
GregHolmes | 2 years ago | on: Ably Spaces: Build collaborative environments in just a few lines of code
We at Ably have just released Spaces, a product enabling developers to implement Collaborative interactions and work within their applications. Coupling this with Ably's Channels product, you can build a fully interactive feature within your apps. If you're interested and have a usecase you'd appreciate some content on this, feel free to join our Discord, I'd love to have a chat with you. https://discord.gg/jwBPhEZ9g5
GregHolmes | 3 years ago | on: Using your SIM card for MFA when logging in to an SSH server
GregHolmes | 3 years ago | on: Using your SIM card for MFA when logging in to an SSH server
The mobile device makes the GET request to that check url over a cellular data request. The MNO verifies the phone number assigned to that sim card making that data request matches phone number used in the creation of that check url.
GregHolmes | 3 years ago | on: Using your SIM card for MFA when logging in to an SSH server
GregHolmes | 3 years ago | on: Using your SIM card for MFA when logging in to an SSH server
It's also taking away the possibilities of the user entering numbers incorrectly (TOTP for example).
Some countries have started introducing rules for certain industries where they're not allowed to switch between apps on a mobile phone. For example when trying to find their Authenticator app or checking their SMS/email for a TOTP.
And finally, it is phishing resistant. You can phish for a users TOTP. You can't with a data connection the mobile device itself has to make over cellular data to the mobile network operator directly.
There is an API specifically for SIM Swap. Or SubscriberCheck does both PhoneCheck and SimSwap together. Further increasing the security of the authentication process for the mobile app.
GregHolmes | 3 years ago | on: Using your SIM card for MFA when logging in to an SSH server
The device makes a GET request to the check url, with a cellular data connection. The mobile network operator is able to verify that the phone number used to create the check URL matches that of the phone number assigned to that SIM Card making the data connection request.
And if SIM Swap is a concern, we also have an API that allows you to first check whether that phone number has recently switched SIM cards before proceeding with the verification.
GregHolmes | 3 years ago | on: Ask HN: Depressed, need to leave web development, what can I do?
GregHolmes | 3 years ago | on: Ask HN: Depressed, need to leave web development, what can I do?
During the pandemic I altered my career slightly, I went into Developer Relations. I still write code, but I also do so many other things. However, if you are suffering burn-out, moving into different roles/careers could further worsen the burn-out.
Personally, I'd take a step back and if you haven't already start introducing a very strict work-life balance. Work 9-5 and no other, take up a hobby that gets you doing something completely unrelated. If you're in a better state mentally, then you would be able to see your work life in a clearer healthier manner.
GregHolmes | 3 years ago | on: Using your SIM card for MFA when logging in to an SSH server