Skip to content
View 0xsarwagya's full-sized avatar
🎃
Building @RebackkHQ
🎃
Building @RebackkHQ

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

Pinned Loading

  1. bigints bigints Public

    A small package to do big things with big numbers

    TypeScript 1

  2. cvssify cvssify Public

    An open-source Typescript library designed to simplify the process of calculating Common Vulnerability Scoring System (CVSS) 3.0 scores

    TypeScript 1

  3. scramblify scramblify Public

    A CLI that encrypts and decrypts png, jpg, jpeg images to a gibberish image and provides you the key to unlock it later so that you have the complete control of your images.

    TypeScript 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