@vwanyungu
Software Developer
Nothing here yet.
Nothing here yet.
Dec 13, 2025 · 3 min read · Authentication Ensuring the user is who they say they are. Options include: Passwordless login (authenticator app, biometrics, passkeys) Username and password; simplest to implement but most vulnerable OTP (sms, email); danger of sim swap attacks,...
Join discussionDec 13, 2025 · 4 min read · API Naming Use nouns in plural for resources, avoid verbs /users or /products for collection resources and /users/{id} for singleton resources Use hyphens when there is need to separate words /user-management Nesting e.g playlists belongin...
Join discussionJul 14, 2025 · 2 min read · What is a VPN? A VPN is a service that sits between a user and the internet. The user’s traffic is encrypted and routed to a VPN server before proceeding to its destination. This masks the users’s IP address with that of the VPN server. VPNs are secu...
Join discussion
May 28, 2025 · 4 min read · We are using the Approuter to handle HTTP requests. Define your routes in the api folder and follow the guidelines below. Structure of the NextRequest request object: request.method: The HTTP method of the request (e.g., "GET", "POST", "PUT", etc.)....
Join discussion