Skip to content
View muke1908's full-sized avatar

Organizations

@microsoft @lane-8 @MicrosoftCopilot
Block or Report

Block or report muke1908

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

  1. chat-e2ee chat-e2ee Public

    End-to-end encrypted disposable chat sessions, exchange sensitive information with peer safely and securely.

    TypeScript 304 188

  2. promiseWithTimeout promiseWithTimeout Public

    Early reject a promise with a timeout

    TypeScript 2

  3. Run timer on webworker for BG ops. Run timer on webworker for BG ops.
    1
    /*
    2
    const timer = new WorkerBasedTimer();
    3
    
                  
    4
    const id = timer.setInterval(()=> {
    5
        // do something    
  4. Use localstorage with faster read. Use localstorage with faster read.
    1
    class LocalStorage {
    2
        private cache: Record<string, any> = {};
    3
        static instance: any;
    4
    
                  
    5
        constructor() {