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

Hi ๐Ÿ‘‹, I'm Mainendra

JavaScript developer and coding enthusiast.

Blogs posts

Connect with me:

mainendra mainendrap mainendra

Languages and Tools:

babel backbonejs css3 cypress express git html5 javascript jest kibana linux mocha nodejs python react redux svelte solidjs sass selenium typescript webpack vitejs

mainendra

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;