Skip to content
View vitalikda's full-sized avatar
😎
😎

Block or report vitalikda

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

Pinned Loading

  1. form-floating-labels-tailwindcss form-floating-labels-tailwindcss Public

    Simple form with floating labels build with Tailwind CSS

    CSS 7 2

  2. nextjs-refresh-token nextjs-refresh-token Public

    Next.js 14 refresh token rotation with http only cookies and external backend (Hono.js)

    TypeScript 2 1

  3. offline-transactions offline-transactions Public

    Monorepo for secure offline crypto transactions using React, Vite & Hono.js. Supports Solana’s durable nonce, with Ethereum support coming soon

    TypeScript 1

  4. cctp-sample-app cctp-sample-app Public

    Forked from circlefin/cctp-sample-app

    Sample app to demonstrate capabilities of Cross-Chain Transfer Protocol (CCTP)

    TypeScript

  5. Helper function to handle throws Helper function to handle throws
    1
    export const mightThrow = async <T>(
    2
      promise: Promise<T>,
    3
    ): Promise<[T, undefined] | [undefined, Error]> => {
    4
      try {
    5
        const result = await promise;
  6. retry / poll until a condition is met retry / poll until a condition is met
    1
    export const sleep = async (ms = 1000) => new Promise((res) => setTimeout(res, ms));
    2
    
                  
    3
    export const retry = async <T>(
    4
      fn: () => Promise<T>,
    5
      condition: (res: T) => boolean,