Skip to content
View valakhosravi's full-sized avatar
πŸ€“
Work hard
πŸ€“
Work hard
  • Iran

Block or report valakhosravi

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
valakhosravi/README.md

Hi there, I'm Vala! πŸ‘‹

I'm a coding enthusiast who loves to build awesome applications that are not just functional, but also user-friendly and cool. From developing web and mobile apps to data engineering, I'm always up for a coding challenge. You can also find me on these platforms

Stackoverflow LinkedIn

πŸ“« Contact

Feel free to connect with me and check out my projects! 😎

Pinned Loading

  1. Interview-Questions-Answers Interview-Questions-Answers Public

    This repository contains a collection of interview questions for developers. The questions are designed to cover a wide range of topics and difficulty levels, from basic to advanced.

    70 6

  2. docker-django-postgres-gunicorn-nginx docker-django-postgres-gunicorn-nginx Public

    TypeScript 2

  3. crypto-watchlist-express.js crypto-watchlist-express.js Public

    JavaScript

  4. Input for verification codes Input for verification codes
    1
    import React, { useEffect, useRef } from "react";
    2
    
                  
    3
    export default function InputCode({ length }: { length: number }) {
    4
      const inputRefs = Array.from({ length }, () =>
    5
        useRef<HTMLInputElement>(null)
  5. timer button in react timer button in react
    1
    import React, { useEffect, useState } from "react";
    2
    
                  
    3
    export default function TimerButton({
    4
      duration,
    5
      action,