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

Block or report tanpld

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. clothing-shop clothing-shop Public

    A Master Project building with React - E-Commerce Clothing Website - https://tanpld.github.io/clothing-shop/#/

    JavaScript 1

  2. demo-wallet demo-wallet Public

    TypeScript

  3. Password regex Password regex
    1
    /^(?=.*\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[a-zA-Z])(?=.*[*.!@$%^&(){}[\]\:\;\<\>\,\.\?\/\~\_\+\-\=\|\\]).{8,32}$/gm
    2
    
                  
    3
    At least one digit [0-9]
    4
    At least one lowercase character [a-z]
    5
    At least one uppercase character [A-Z]
  4. maskString.js maskString.js
    1
    const maskedFirst4Char = (value: string): string => {
    2
      return value.replace(/.(?=.{4})/g, '*');
    3
    }
    4
    
                  
    5
    const maskPhoneNumber = (phone: string): string => {
  5. YearSelect.tsx YearSelect.tsx
    1
    import { ChevronLeftIcon, ChevronRightIcon } from "@heroicons/react/24/solid";
    2
    import clsx from "clsx";
    3
    import { useState, useMemo } from "react";
    4
    
                  
    5
    interface YearCalendarProps {
  6. Responsive + Persistent Drawer + App... Responsive + Persistent Drawer + AppBar Layout - React Component MaterialUI
    1
    import React, { useState, useEffect } from "react";
    2
    import {
    3
      makeStyles,
    4
      Theme,
    5
      createStyles,