B.Tech AI & Data Science Hello, I'm

Prasanna V

AI Enthusiast Data Analyst Game Developer

I have an active interest in Artificial Intelligence, Data Analysis and Game Development, also built various projects in all three domains.I enjoy working on logic-driven projects and exploring the process of making interactive games.I am currently completing my final semester. Currently, I am open to internship and full-time job opportunities, especially in the field of Data Analysis.

Prasanna V
Projects
0 Projects Built with passion
Certificates
0 Certificates Continuously learning
Internships
0 Internships Industry experience

SCROLL TO EXPLORE
Down

Languages I Speak

IN

Tamil

Native
IN

Kannada

Proficient
GB

English

Professional
JP

Japanese

Learning

Certificates

English Assessment

Cambridge Assessment English

View Certificate ↗

NAT-TEST Certificate

Japanese Language Proficiency

View Certificate ↗

Education

A timeline of my education and the knowledge that continues to build me.

01
SSLC

GBHS School, Mecheri

Star
Marks 378 / 500 (75.6%)
Ribbon
02
HSC

GBHS School, Mecheri

Star
Marks 443 / 600 (73.8%)
Book
03
PRESENT (8th SEM)

B.Tech (AI & DS)

Building AVS Engineering College,
Salem
Chart
CGPA 8.0 / 10 (According to 7th sem result)
Cap

Skills & Tools

The technologies and tools I use to build, design, and bring ideas to life.

</>

Programming Languages

Core programming languages I use to build applications and solve problems.

Python Python
Java Java
C# C#
🎮

Game Development

I use Unity to create interactive 2D/3D games and immersive experiences.

Unity
Unity
📊

Data Science & ML

Libraries and environments I use for modeling, analysis, and API integrations.

Pandas Pandas
NumPy NumPy
Jupyter Jupyter
SciKit-Learn scikit-learn
API REST APIs
🌐

Web Development

Technologies for building responsive and interactive web interfaces.

HTML5 HTML
CSS3 CSS
JavaScript JavaScript
🛠️

Development Tools

Essential tools for version control, collaboration, and coding.

GitHub Git & GitHub
VSCode VSCode
🗄️

Databases

Query languages and database systems I use for data storage and retrieval.

SQL SQL
MySQL MySQL

Generative AI & Assistants

Cutting-edge AI systems and tools I leverage for enhanced development, logic structuring, and productivity.

Gemini
Gemini
ChatGPT
ChatGPT
Claude
Claude
Antigravity
Antigravity
💼

Productivity & Analytics Tools

Tools I use to stay organized, create documents, analyze data, and present ideas effectively.

Word
Microsoft Word
PowerPoint
Microsoft PowerPoint
Excel
Advanced Excel
Power BI
Power BI

Certificates

A collection of certifications that reflect my learning journey and technical growth.

Projects

A selection of projects where I used my knowledge and skills to build something new.

⭐ FEATURED PROJECT
Cortex

Cortex

AI Voice Assistant

🎙️
100% Offline

No external APIs — runs fully on-device

🧠
Custom NLU Engine

JSON-trained intent classification model

Neural Sync

Mini n8n-style voice-driven automation

👥
Team Leader

Final year project — led the team

Offline-first voice assistant with real-time speech interruption, Knowledge Graph GUI, and a custom NLU engine. Features a repositionable on-screen status window, a Control Center for settings, and Neural Sync automation.

Python Faster-Whisper NLU NLP TTS
GitHub View on GitHub
Web Dev

Game Zone Platform

This is the project I have developed during my MERN stack internship. This is not focused on games, intead it was primarly focused on the Backend connectivity with MongoDb and the CRUD operations. The primary functions as follows,
1. Saves user data on MongoDb.
2. Retrives user data from MongoDb.
3. Updates user data on MongoDb.
4. Deletes user data from MongoDb.
5. Allows or denies user to log in according to the username and password. The user can play games only after logging in.
Currently the live demo only shows Login page, due to the inactiveness of MongoDB database.

Web Dev HTML/CSS JS MongoDB Express Node
Game Dev

Unity 3D Terrain & Character

A simple game made in unity with the help of C#. This game contains a single character which can do, Walking, Sprinting and jumping.
The map is prepared by the unity's inbuild terrain feature. It features different types of biomes, such as forests, mountains, deserts, and oceans.
There's no specified lighting system is used. But the lightbox is used to put a stunning sunny weather.
I developed this game for only to undersatnd the unity engine and for publishing it. So the game has not published yet. I have planned this to move for a good exploring game, but my PC is not able to run it smoothly. So I have to pause this project.

Unity C# Assets
Expand
Data Science

Gold Price Tracker

I took this project is to purely understand the inteegration of API, python flask and data analysis.The project fetches the current gold price from an API(Gold API) and displays it on the web page. Apart from that i have took a dataset, which includes the data of past gold rates and trained them to predict the price of the next day's gold rate. Also it support both Dark and light themes.

Data Analysis Python Web API
Expand
WebGame

Chess Game

This is a simple chess game for two players. It is a web based application which can be played on any device with a web browser. I developed this game to understand the basic logic of chess. The game features a simple and intuitive interface, with a focus on gameplay and user experience. The game is played on a standard 8x8 chessboard, with two players taking turns to move their pieces. The game ends when one player's king is checkmated, or if a stalemate occurs. This game was fully developed by using HTML, CSS, and JS.

Logic WebGame Algorithm HTML/CSS JS
WebGame

Future Sight

Future sight is a memory puzzle game. Here the square is the player character. The opposing shape will do a specified set of combos, after watching keenly all the moves, the user aslo wants to move at the same direction. If the user misses any one then user is considered as lose.
There's also a custom game mode available, where user can define how many combos the opponent must do and the speed of the move. This will help the user to practice a specified number of combo multiple times and remember things easily.

WebGame Interface Geimini
Add

Ready for the Next

I truly believe the most exciting project is always the next one. If you have a vision or a challenge you’d like to tackle, this space is waiting and I am ready to start whenever you are.

Let's Collaborate →

Data Analysis

Two real-world analytical projects built end-to-end — from raw data to business insight. Always expanding with more on the way.

MySQL
MySQL · Database Engineering

Smart Banking Engine

Automated Financial Ledger & Real-Time Fraud Prevention

A fully structured banking database built in MySQL from scratch, featuring a 3-table relational schema (Customers, Accounts, Transactions) with cascading foreign keys. Engineered two production-grade database triggers: one that prevents overdrafts at the database level, and one that detects and blocks physically-impossible fraud transactions using a geo-velocity algorithm.

50 Customers
2 Security Triggers
1 Window Function
🔐 Live Fraud Simulator
Delhi ATM 12:00 PM Waiting...
New York Terminal 12:03 PM Waiting...

MySQL Database Triggers Window Functions Relational Schema Risk Analytics
smart_banking.sql
CREATE TRIGGER before_transaction_insert
BEFORE INSERT ON transactions
FOR EACH ROW
BEGIN
  -- 1. Overdraft Protection
  DECLARE current_balance DECIMAL(10,2);
  SELECT COALESCE(SUM(amount),0)
    INTO current_balance
    FROM transactions
    WHERE account_id = NEW.account_id;

  IF NEW.transaction_type = 'Withdrawal'
    AND (current_balance + NEW.amount) < 0 THEN
    SIGNAL SQLSTATE '45000'
    SET MESSAGE_TEXT = 'Insufficient funds.';
  END IF;

  -- 2. Geo-Velocity Fraud Detection
  IF time_diff_minutes < 10 THEN
    SIGNAL SQLSTATE '45000'
    SET MESSAGE_TEXT = 'FRAUD: Impossible Velocity!';
  END IF;
END
Power BI
Power BI · Business Intelligence

Global AI Workforce & Salary Insights Dashboard

2025–2026 · Enterprise-Grade 3-Page Interactive Report

👔 CHROs 🔍 Tech Recruiters 📊 Financial Planners

An enterprise-grade, interactive 3-page Power BI report tracking global AI hiring volumes, compensation benchmarks, and market tier extremes. Built on a Star Schema data model with a Many-to-Many skill bridge table, Power Query ETL, and native Field Parameters for dynamic axis switching.

Page 1 - Global Market Overview

Dynamic geographic map of global hiring density + industry velocity bar chart with cross-filtering architecture.

Star Schema Model

Fact_Postings + 4 dimension lookup tables for optimized filtering.

🔀
M:M Bridge Table

Fact_Job_Skills with bidirectional cross-filtering for skills data.

📊
Field Parameters

Dynamic axis switching across 5 dimensions with a single click.

🧹
Power Query ETL

Pipe-delimited skill column split into 93 unique skill assets.

Power BI DAX Power Query Star Schema ETL Data Modeling
MySQL
MySQL · Database Engineering

Smart Banking Engine

Automated Financial Ledger & Fraud Prevention

A fully structured banking database built in MySQL with a 3-table relational schema (Customers, Accounts, Transactions). Features two production-grade triggers: one for overdraft protection and one for geo-velocity fraud detection.

50 Customers
2 Triggers
1 Window Fn
🔐 Live Fraud Simulator
Delhi ATM · 12:00 PM Waiting...
New York · 12:03 PM Waiting...

MySQLTriggersWindow FunctionsRisk Analytics
Power BI
Power BI · Business Intelligence

Global AI Workforce & Salary Dashboard

2025–2026 · 3-Page Interactive Report

Enterprise-grade 3-page Power BI report tracking global AI hiring, compensation benchmarks, and market tiers. Built on a Star Schema with M:M skill bridge table, Power Query ETL, and Field Parameters.

Page 1 - Global Market Overview

Geographic map of global hiring density + industry velocity bar chart.

Star Schema
🔀M:M Bridge
📊Field Params
🧹Power Query ETL
Power BIDAXPower QueryStar SchemaETL

Internships

Hands-on experience gained through industry internships and collaborative work.

AI

Machine Learning Intern

ABE Group of Companies

Calendar Aug 12, 2024 – Aug 30, 2024
Overview Overview: Worked on implementing foundational Machine Learning models and Data Pre-processing.

Responsibilities Key Responsibilities:

  • Explored data preprocessing techniques and feature engineering to improve model accuracy.
  • Implemented supervised learning algorithms to solve classification and regression problems.
  • Explored various ML accuracy metrics and evaluation techniques.

Technologies Technologies Used:

Python Scikit-Learn Pandas NumPy Anaconda
Stack

MERN Stack Intern

Livewire – Salem

Calendar Feb 2025
Overview Overview: Developed a full-stack application focusing on secure user authentication and efficient database management.

Project Key Project: Passport Authentication & CRUD System.

Key Responsibilities:

  • Implemented secure user authentication using Passport.js, handling session-based login and registration.
  • Designed and executed CRUD operations to manage data flow between the frontend and MongoDB.
  • Built responsive UI components using React and integrated them with a Node.js/Express backend.

Technologies Technologies Used:

HTML CSS JavaScript MongoDB Express.js React Node.js

Contact

I'm always open to interesting conversations, collaborations, and opportunities. Feel free to reach out through any of the channels below.

User
Mail
Message