Dipesh Bhardwaj
Dipesh Bhardwaj
**Feature Description** Provide support for stronger true passwordless authentication WebAuthn developed in 2019 with W3C. https://www.okta.com/au/blog/2019/04/the-ultimate-guide-to-fido2-and-webauthn-terminology/ **Describe the solution you'd like** Support for different multiple factor authentications. https://github.com/webauthn-open-source/fido2-server-demo
I have deployed the Prisma server locally in Docker with **managementApiSecret** and also defined it in **prisma.yml**. Now, there are two issues I'm facing. 1. Prisma server link `http://localhost:4466` from...
Project: rmtdev Video: 132 Instead of using `as const` a far safer alternative is to simply define the return value for the custom hook ```ts export function useFetchJobs(search: string): [JOBITEM[],...
## Seed File: [seed.ts](https://gist.github.com/Dev-Dipesh/8df3c83ec158a80771c9213bdb429c69) ## Cities Included **7 events are added for each new city.** 1. Austin 2. London 3. Los Angeles 4. New York 5. Paris 6. San Francisco...
**Project:** rmtdev **Video Number:** 158 **Video Title:** Finish Pagination (Derived State) **ISSUE:** In the video, we're calculating the total pages without using `Math.ceil()`. **FIX:** Math.ceil is important here because we...
**Video:** 220 **Video Title:** Cn() Utility Function Code in the video: ```ts import clsx, { ClassValue } from "clsx"; import { twMerge } from "tailwind-merge"; export function cn(...inputs: ClassValue[]) {...
In the video it was recommended to use `!` for type assertion since we know better. But in real-world when multiple people are working on a project, mistakes can happen....
### Problem 1: Solving the button focus issue conflicting with the space bar event ### Solution: We can simply use `e.preventDefault()` in the `if` conditional block. ```js const handleSpace =...