Nothing Special   »   [go: up one dir, main page]

Skip to content
View manavm1990's full-sized avatar
๐Ÿ 
Working from home
๐Ÿ 
Working from home

Sponsoring

@basarat
@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 python-playground Public

    Lurning Python ๐Ÿ

    Python

  2. My Strict TS Config 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 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... 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) {
  5. 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", () => {
  6. 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
      ],