Skip to content
View vivmaha's full-sized avatar

Block or report vivmaha

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. client-rect-notifications client-rect-notifications Public

    Provides notifications for changes in the position of an HTML element relative to the viewport.

    JavaScript

  2. throttled-event-listener throttled-event-listener Public

    Throttle or debounce calls to window.addEventListener(). The listener will additionally be throttled by window.requestAnimationFrame().

    JavaScript 7

  3. blog blog Public

    NotesByV — A place to store my notes.

    TypeScript 1

  4. blog-server blog-server Public

    Server for Blog

    TypeScript 1

  5. spot-job-alerts spot-job-alerts Public

    A bot that scrapes the Spotify Career's site and sends me a daily email for new openings.

    TypeScript

  6. map-reduce.ts map-reduce.ts
    1
    import pMap from "p-map";
    2
    import { invokeLambdaAsync, invokeLambdaSync } from "./lambda-utils-aws";
    3
    
                  
    4
    export const mapReduce = async <TItem, TMap, TReduce>(options: {
    5
      items: TItem[];