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

  • 🌱 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 sports entertainment.
    • Powerlifter (Beginner) πŸ‹οΈβ€β™‚οΈ!

Connect with me:

manavm1990 codefinity ucwgoouzz4fo9azdcvfi8lwg

manavm1990

 manavm1990

manavm1990

Pinned Loading

  1. python-playground Public

    Lurning Python 🐍

    Python

  2. My Strict TS Config
    1
    {
    2
      "$schema": "https://json.schemastore.org/tsconfig",
    3
      "display": "Base",
    4
      "compilerOptions": {
    5
        "lib": ["dom", "dom.iterable", "esnext"],
  3. 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' πŸ€·πŸΎβ€β™‚οΈ
  4. Some expert level JS challenges (acc...
    1
    export const getLenOfLongestSubstringWithoutRepeatingChars = (
    2
      str: string,
    3
    ): number => {
    4
      // If the string is empty, return 0
    5
      if (str.length === 0) {
  5. Removing timezone offsets before for...
    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", () => {
  6. My preferred RenovateBot starter con...
    1
    {
    2
      "$schema": "https://docs.renovatebot.com/renovate-schema.json",
    3
      "extends": [
    4
        "config:recommended"
    5
      ],