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

Sponsoring

@rxhanson
@dcastil
@sindresorhus

Highlights

  • Pro

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 Web Developer👩🏾‍💻 and Instructor

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

manavm1990

manavm1990

  • 📫 How to reach me: 🤷‍♂️. If it's important enough, sometimes I am on LinkedIn.

  • ⚡ Fun facts:

    • I ❤️ watching 🤼 pro-wrestling sports entertainment.
    • Getting addicted to ♟️ chess. Pushing for an 1100 ELO rating.

Connect with me:

manavm1990 codefinity ucwgoouzz4fo9azdcvfi8lwg

manavm1990

 manavm1990

manavm1990

Pinned Loading

  1. 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' 🤷🏾‍♂️
  2. Some expert level JS challenges (acc... Some expert level JS challenges (according to Hackernoon post)
    1
    export const getLenOfLongestSubstringWithoutRepeatingChars = (
    2
      str: string,
    3
    ): number => {
    4
      // If the string is empty, return 0
    5
      if (str.length === 0) {
  3. Removing timezone offsets before for... Removing timezone offsets before formatting/parsing date-time strings with `date-fns`, etc.
    1
    import { describe, expect, it } from "vitest";
    2
    import { removeTimezoneOffset } from ".";
    3
    
                  
    4
    describe("removeTimezoneOffset", () => {
    5
      it("should remove timezone offset in format -07:00", () => {
  4. My preferred RenovateBot starter con... My preferred RenovateBot starter configuration 🔧
    1
    {
    2
      "$schema": "https://docs.renovatebot.com/renovate-schema.json",
    3
      "extends": [
    4
        "config:recommended"
    5
      ],
  5. swic-courses swic-courses Public

    Web Dev courses for Southwestern Illinois College

    MDX 2