Skip to content
View mainendra's full-sized avatar
πŸ‘¨β€πŸ’»
πŸ‘¨β€πŸ’»
Block or Report

Block or report mainendra

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
mainendra/README.md

Pinned

  1. solid-vlist solid-vlist Public

    Virtual list using solid JS

    TypeScript 1

  2. redux-middlewares redux-middlewares Public

    Redux middlewares

    JavaScript

  3. link-preview link-preview Public

    Link Preview using deno

    TypeScript

  4. skypack-app skypack-app Public

    Test page developer using skypack

    HTML

  5. debounce.ts debounce.ts
    1
    function debounce<T extends [...T], U>(callback: (...args: [...T]) => U, delayMs: number): (...args: [...T]) => void {
    2
        let timerId: any = null;
    3
    
    
    4
        return (...args: [...T]) => {
    5
            clearTimeout(timerId);
  6. TTS engine TTS engine
    1
    const synth = window.speechSynthesis;
    2
    
    
    3
    let currentReadoutStrings: string[] = [];
    4
    let currentAlertStrings: string[] = [];
    5
    let currentSSU: SpeechSynthesisUtterance;