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

Highlights

  • Pro

Block or report sambeevors

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. Four-Week-Frontend Public

    A structured, 28-day coding adventure designed to help beginners establish and enhance their web development skills 👨‍💻

    4

  2. tailwindcss-neumorphism Public

    Generate soft UI CSS code using tailwindcss

    JavaScript 153 23

  3. pumpkin.js Public

    A mini-library for helpful JS functions 🎃

    JavaScript 15

  4. tHiS Is a sTuPiD IdEa
    1
    const toSpongeCase = string =>
    2
          [...string]
    3
            .map((x, i) => x[`to${i % 2 ? 'Upper' : 'Lower'}Case`]())
    4
            .join('')