Skip to content
View srikiranvelpuri's full-sized avatar
🎯
Focusing
🎯
Focusing
Block or Report

Block or report srikiranvelpuri

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

Hello there! I'm Sri Kiran Velpuri

Software Engineer @Copart | Frontend Developer & Creative Enthusiast

srikiranvelpuri

💫 About Me

With over 2 years of experience under my belt, I'm passionate about crafting user interfaces that strike the perfect balance between form and function.

Beyond coding, I'm an amateur photographer and a handy gamer 😜.

What I Bring to the Table

I've got a solid grasp of Material's design principles and I'm always eager to stay ahead of the curve with emerging UI trends.

My strength lies in connecting users with seamless experiences through well-thought-out frameworks and subtle UX optimisations.

🔭 What I'm Up to Now

Right now, I'm diving into the fascinating world of Large Language Models (LLMs) and integrating them within React Native applications.

👯 Let's Collaborate!

I'm keen on teaming up on projects involving React-based mobile and web applications. If you've got something in mind, let's chat!

💬 Get in Touch

Got questions/suggestions about React or React Native development? Feel free to reach out.

Looking forward to potentially working together and creating something awesome! 🚀

Gmail

🌐 Socials

LinkedIn Instagram YouTube

💻 Tech and Tools

JavaScript Java Python

Front-End

TypeScript React React Native Redux React Router React Hook Form

MUI Chart.js Bootstrap Styled Components

HTML5 CSS3 SASS Markdown

ESLint Prettier

Netlify Docker

Back-End

FastAPI Express.js NodeJS

Firebase MongoDB MySQL

Postman

Package Managers

NPM Yarn Homebrew

AI/ML

TensorFlow Keras

Project Management and Collaboration

Jira Confluence Discord

Editting

Adobe Lightroom Classic Da Vinci Resolve

📊 GitHub Stats

GitHub Streak Top Languages

Pinned Loading

  1. Wuzzle Wuzzle Public

    Simple yet enhanced wordle clone built using ⚛️ReactJS

    JavaScript

  2. react-native-tflite-playground react-native-tflite-playground Public

    A playground for integrating TensorFlow Lite (TFLite) with React Native (android).

    Java

  3. colliding_bubbles colliding_bubbles Public

    A simple web-based fidget game with collision detection and resolution

    JavaScript 1

  4. OCRScanner OCRScanner Public

    A hybrid application for text recognition built using React Native

    Java 1

  5. Postman PreRequestScript to check if... Postman PreRequestScript to check if an OAuth token has expired and, if so, refreshes it by making a new authentication request.
    1
    const expiryDate = new Date(pm.environment.get('tokenExpiryDate'));
    2
    const currDate = new Date(Date.now());
    3
    const isTokenExpired = (isNaN(expiryDate) || expiryDate) < currDate;
    4
    
                  
    5
    if(isTokenExpired){
  6. A pure JavaScript debounce function ... A pure JavaScript debounce function for optimizing function calls, particularly useful for handling rapid user input events.
    1
    function debounce(func, delay) {
    2
    	let timeoutId;
    3
    
                  
    4
    	return function () {
    5
    		const context = this;