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

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 Data Enthusiast from India ❤️


I am a self-motivated professional holding a Master of Computer Applications. With a strong focus on developing data-driven applications, I have cultivated expertise in software engineering. Currently, my work spans projects encompassing both machine learning and data engineering domains. I am eager to apply my skills and experience to deliver impactful contributions within a dynamic and challenging work environment.


PRs Welcome name age focus living Visitors count Last Commit

😉 About Me :

  • 🔭 I’m currently working on Data Engineering
  • 🌱 I’m currently learning Cloud Computing
  • 👯 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 #1 in Prakashdeveloper03/Blind-75
  2. 💪 Opened PR #1 in Prakashdeveloper03/Blind-75
  3. 🎉 Merged PR #1 in Prakashdeveloper03/Sharan
  4. 💪 Opened PR #1 in Prakashdeveloper03/Sharan
  5. 🎉 Merged PR #5 in Prakashdeveloper03/SDE-Sheet

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 Java Scala

💥 Backend Development

Spring Boot FastAPI GraphQL

🧩 Machine Learning

NumPy Pandas Plotly ScikitLearn Keras Tensorflow PyTorch Streamlit

🗄️ Databases

PostgreSQL MongoDB Redis Neo4J TimescaleDB Elasticsearch Cassandra

⛈️ Cloud Platforms

Snowflake Bigquery Databricks Google Cloud

❄️ Data Engineering

Apache Spark Apache Hadoop Apache Airflow Apache Flink Apache Kafka

⛽ Devops

Git Docker Kubernetes Kibana CircleCI

💻 Workspace and Tools

Ubundu Dbt Looker Postman Gradle Neovim

📈 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 Loading

  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