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

Highlights

  • Pro
Block or Report

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

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

    Generate soft UI CSS code using tailwindcss

    JavaScript 137 20

  3. pumpkin.js pumpkin.js Public

    A mini-library for helpful JS functions ๐ŸŽƒ

    JavaScript 14

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