Skip to content
View 0xsarwagya's full-sized avatar
:octocat:
Building Rebackk
:octocat:
Building Rebackk

Highlights

  • Pro

Block or report 0xsarwagya

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
0xsarwagya/README.md

Hi there :)

I am Sarwagya. Currently Building Rebackk.

If you're interested in collaborating or just want to say hi, don’t hesitate to reach out!

Pinned Loading

  1. bigints bigints Public

    A small package to do big things with big numbers

    TypeScript 1

  2. project-euler project-euler Public

    Solutions to Project Euler problems in JavaScript https://projecteuler.net/archives

    TypeScript 1

  3. security-for-Node.js security-for-Node.js Public

    Essential Cybersecurity Practices for Node.js :) Originally Published at - https://blog.esportzvio.com/blog/essesntials-node-js-security/

    1

  4. A Next.js custom hook (useLocalStora... A Next.js custom hook (useLocalStorage) that synchronizes a state value with localStorage. This hook handles SSR concerns by only accessing localStorage after the component mounts in the browser, preventing errors and inconsistencies. Built with TypeScript and TSDoc comments for type safety and documentation. Ideal for managing persistent state in Next.js applications.
    1
    import { Dispatch, SetStateAction, useEffect, useState } from "react";
    2
    
                  
    3
    /**
    4
     * Custom hook to synchronize a value with `localStorage`. 
    5
     * This hook ensures that the initial value is only read from `localStorage` 
  5. A Next.js custom hook (useindexedDB.... A Next.js custom hook (useindexedDB.ts) that synchronizes a state value with Indexed DB. This hook handles SSR concerns by only accessing Indexed DB after the component mounts in the browser, preventing errors and inconsistencies. Built with TypeScript and TSDoc comments for type safety and documentation. Ideal for managing persistent state.
    1
    // Usage Examples
    2
    // https://gist.github.com/0xsarwagya/447015df61db544c38efd19b882ac2ed
    3
    
                  
    4
    import { useCallback, useEffect, useState } from "react";
    5