Skip to content
View manavm1990's full-sized avatar
🏠
Working from home
🏠
Working from home

Sponsoring

@basarat
@rxhanson
@dcastil

Highlights

  • Pro
Block or Report

Block or report manavm1990

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

Hi πŸ‘‹, I'm CodeFinity

Senior Software DeveloperπŸ‘©πŸΎβ€πŸ’», Coach, and Instructor

I specialize in the React ecosystem (e.g. NextJS App Router, React Testing Library), TS, Cypress, etc. I can also make my way around a back-end REST API or GraphQL server with Node/Express or Django/DRF.

manavm1990

manavm1990

  • 🌱 I’m currently overhauling the entire front-end of a UI using NextJS v14. πŸ€“

  • πŸ‘¨β€πŸŽ“ I'm currently learning Python 🐍.

  • πŸ“« How to reach me: πŸ€·β€β™‚οΈ. If it's important enough, sometimes I am on LinkedIn.

  • ⚑ Fun facts:

    • I ❀️ watching 🀼 pro-wrestling.
    • Powerlifter (Beginner) πŸ‹οΈβ€β™‚οΈ!

Connect with me:

codefinity manavm1990 codefinity ucwgoouzz4fo9azdcvfi8lwg

manavm1990

Β manavm1990

manavm1990

Pinned

  1. python-playground python-playground Public

    Lurning

    Python

  2. Bubble Sort Demo Bubble Sort Demo
    1
    const nums = [52, 69, 15, 64, 62]; // Needs to be: [69, 64, 62, 52, 15]
    2
    const nums2 = [52, 69, 15, 64, 62];
    3
    
                  
    4
    function bubbleSort(stuffToSortOut) {
    5
      // Could start by assuming 'false' πŸ€·πŸΎβ€β™‚οΈ
  3. Get winner from TTT game Get winner from TTT game
    1
    const WINNING_INDICES = [
    2
      [0, 1, 2],
    3
      [0, 3, 6],
    4
      [0, 4, 8],
    5
      [1, 4, 7],
  4. πŸ›ing fxn. based on Eric Elliott's Ve... πŸ›ing fxn. based on Eric Elliott's Version
    1
    // Keep collecting args...
    2
    const curry = (fxn, accumulatedArgs = []) =>
    3
      // Collect fxn args
    4
      (...args) =>
    5
        ((currentArgs) =>
  5. Given an Array of Objects, determine... Given an Array of Objects, determine how many of the Objects contain a specified key
    1
    const countKeys = (data, key) => {
    2
      return data.reduce((total, datum) => (total += datum[key] ? 1 : 0), 0);
    3
    };