Skip to content
View Prakashdeveloper03's full-sized avatar
🎯
Always Learning
🎯
Always Learning
Block or Report

Block or report Prakashdeveloper03

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

header

வணக்கம் (Vanakkam), I am Siva Prakash

I'm an Tech Enthusiast from India ❤️


I am a self motivated student currently pursuing a Master of Computer Applications at the College of Engineering, Guindy. Discovered my passion for crafting data-driven applications, I naturally gravitated towards the dynamic realm of software engineering. Presently, I am engaged in self-paced mini-projects focusing on both machine learning and backend development, honing my skills and expanding my knowledge in these fields.


PRs Welcome name age focus living Visitors count Last Commit

😉 About Me :

  • 🔭 I’m currently working on Deep Learning
  • 🌱 I’m currently learning Computer Vision
  • 👯 I’m looking to collaborate on Machine Learning
  • 😄 Pronouns : Siva/Prakash
  • ⚡ Fun fact : I listen to music atleast 30 mins/day

⚡ Recent Activity :

  1. 🎉 Merged PR #5 in Prakashdeveloper03/CareerBot
  2. 💪 Opened PR #5 in Prakashdeveloper03/CareerBot
  3. 🔒 Closed issue #4 in Prakashdeveloper03/CareerBot
  4. ❌ Closed PR #5 in rizkimcitra/expense-app
  5. 💪 Opened PR #5 in rizkimcitra/expense-app

A little more about me...

from fastapi import FastAPI, HTTPException, status
from datetime import datetime

app = FastAPI()

@app.get("/name", status_code=status.HTTP_200_OK)
async def get_name():
    return {"Name": "Siva Prakash"}

@app.get("/age", status_code=status.HTTP_200_OK)
async def get_age():
    birth_date = datetime(2001, 3, 10)
    current_year = datetime.now().year
    age = current_year - birth_date.year
    if datetime.now() < datetime(current_year, 3, 10):
        age -= 1
    return {"Age": age}

@app.get("/description", status_code=status.HTTP_200_OK)
async def get_description():
    return {"Description": ["Passionate", "Optimistic", "Energetic", "Team Player"]}

@app.get("/education", status_code=status.HTTP_200_OK)
async def get_education():
    education = [
        {"College": "College of Engineering, Guindy", "Year": [2022, 2023, 2024]},
        {"College": "Apollo arts and science college", "Year": [2019, 2020, 2021, 2022]},
        {"School": "Seventh Day Adventist Matriculation Higher Secondary School", "Year": [2017, 2018, 2019]}
    ]
    return education

if __name__ == "__main__":
    import uvicorn
    uvicorn.run(app, host="0.0.0.0", port=5000)

📱 Connect with Me :

🚀 Languages and Tools :

⚡ Programming languages

Python C++ Typescript

🕸️ Frontend Development

HTML Sass Bootstrap Tailwindcss React Markdown

💥 Backend Development

Django Flask FastAPI Express.js Node.js

🧩 Data Science and Machine Learning

NumPy Pandas ScikitLearn OpenCV Keras Tensorflow PyTorch Streamlit

🗄️ Databases and Cloud

PostgreSQL MongoDB Redis Supabase Google Cloud

💻 Workspace and Tools

Windows Ubundu Fedora Git Docker Sublime text Visual Studio Code

📈 Statistics and Languages :

GitHub Profile Stats
stats Prakashdeveloper03's streak
GitHub Languages Stats

languages


GitHub Trophy Stats

trophy stats


GitHub Contributions Graph

contributions graph

Pinned

  1. Pricefy Pricefy Public

    Pricefy app is used to predict the price of the car based on certain input parameters created using python's scikit-learn, fastapi, numpy and joblib packages.

    Python 8 2

  2. Diabetes-Predictor Diabetes-Predictor Public

    Diabetes Predictor App used to predict whether a person has diabetes or not based on certain input parameters created using python's scikit-learn, fastapi, numpy and joblib packages.

    Python 7 1

  3. AI.ML AI.ML Public

    This repository contains all my source code for practicing MCA Semester 3 AI & ML lab assignments in Python programming language.

    Jupyter Notebook

  4. Expense-Tracker Expense-Tracker Public

    This repository contains source code of expense tracker created using HTML, SCSS, Angular and Material UI.

    TypeScript