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.
SCROLL TO EXPLORE
Languages I Speak
Tamil
NativeKannada
ProficientEnglish
ProfessionalJapanese
LearningCertificates
Education
A timeline of my education and the knowledge that continues to build me.
GBHS School, Mecheri
GBHS School, Mecheri
B.Tech (AI & DS)
Salem
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.
Game Development
I use Unity to create interactive 2D/3D games and immersive experiences.
Data Science & ML
Libraries and environments I use for modeling, analysis, and API integrations.
Web Development
Technologies for building responsive and interactive web interfaces.
Development Tools
Essential tools for version control, collaboration, and coding.
Databases
Query languages and database systems I use for data storage and retrieval.
Generative AI & Assistants
Cutting-edge AI systems and tools I leverage for enhanced development, logic structuring, and productivity.
Productivity & Analytics Tools
Tools I use to stay organized, create documents, analyze data, and present ideas effectively.
Certificates
A collection of certifications that reflect my learning journey and technical growth.
Python for Data Science
IBM / Cognitive Class
Data Analysis with Python
IBM / Cognitive Class
Python Basic
HackerRank
Java Basic
HackerRank
Machine Learning Basic
Vodafone Idea Foundation
SQL Intermediate
HackerRank
DCA Certificate
CCI Computer Education
AI Powered Full Stack
Workshop
eContent Development
Video Resources Program
Unity Essentials Pathway
Unity Technologies
Certificate
Projects
A selection of projects where I used my knowledge and skills to build something new.
Cortex —
AI Voice Assistant
Offline-first voice assistant with real-time speech interruption, a Knowledge Graph GUI, and a custom NLU
engine for intent classification.
This is the biggest and a project which I have worked in a team. I
have took the Team leader
role in this project. This Voice assistant is submitted as our final year project in our college. This
voice assistant importantly focused
the 100% offline functionable and less CPU and RAM consumption.
We are still upgrading this project.
We used no external APIs,
we just created a Json dataset and trained our model on our own.
This has a repositionable always on
screen status window GUI.
There's a control center which used to change the settings of Cortex. Neural sync is literally a mini n8n
automation, which allows the
users to draw automation flowcharts and voice command them to operate as per need.
Cortex
AI Voice Assistant
No external APIs — runs fully on-device
JSON-trained intent classification model
Mini n8n-style voice-driven automation
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.
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.
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.
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.
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.
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.
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.
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.
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
Global AI Workforce & Salary Insights Dashboard
2025–2026 · Enterprise-Grade 3-Page Interactive Report
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.
Dynamic geographic map of global hiring density + industry velocity bar chart with cross-filtering architecture.
Fact_Postings + 4 dimension lookup tables for optimized filtering.
Fact_Job_Skills with bidirectional cross-filtering for skills data.
Dynamic axis switching across 5 dimensions with a single click.
Pipe-delimited skill column split into 93 unique skill assets.
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.
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.
Geographic map of global hiring density + industry velocity bar chart.
Internships
Hands-on experience gained through industry internships and collaborative work.
Machine Learning Intern
ABE Group of Companies
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 Used:
MERN Stack Intern
Livewire – Salem
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.