Hello World, I am
Mst. Tania
Bridging Logic & Vision.
A passionate Computer Science student based in Dhaka, specializing in object-oriented programming, algorithmic problem-solving, and building robust software solutions.
About Me
I am currently pursuing my B.Sc. in Computer Science & Engineering at the International University of Business Agriculture & Technology (IUBAT). My academic journey has been driven by a deep curiosity about how systems work under the hood.
I have cultivated a strong foundation in core software engineering principles, frequently diving deep into C# and Java to solve complex object-oriented problems, master exception handling, and implement data structures. Beyond traditional software development, I have a profound interest in Image Processing and computer vision. I enjoy the mathematical beauty behind manipulating pixels—from exploring histogram equalization and Otsu's thresholding method to applying Laplacian filters and understanding the architecture of Convolutional Neural Networks (CNNs).
Being bilingual in Bengali and English allows me to grasp complex algorithmic concepts intuitively before translating them into clean, documented, professional code. Whether it is building a web application or solving an academic logic puzzle, I am always eager to learn, adapt, and build.
Tech Arsenal
Languages & Core Concepts
Specialized Domains
Web & Tools
Project Gallery
Admit Card Generation System
A secure, automated web application designed to handle student data and dynamically generate examination admit cards. Features a robust backend for data management and a clean, responsive front-end.
Applied Image Processing
Academic explorations into computer vision algorithms. Implemented mathematical models for image enhancement including Histogram mapping, Otsu's method for variance, Laplacian filtering, and morphological opening/closing techniques.
Fire Hazard Prevention Logic
A hardware-simulation project mapping out safety systems. Designed the core detection and response logic using digital logic gates and successfully simulated the environment using Proteus software.
Code Spotlight
A glimpse into my approach to structured, object-oriented problem solving. Here is an example demonstrating clean exception handling and encapsulation in C#.
using System;
namespace Portfolio.Logic
{
// Demonstrating robust exception handling and class architecture
public class ImageProcessor
{
public void ApplyLaplacianFilter(byte[,] imageMatrix)
{
try
{
if (imageMatrix == null || imageMatrix.Length == 0)
{
throw new ArgumentException("Image matrix cannot be empty.");
}
// Convolution logic here...
Console.WriteLine("Filter applied successfully.");
}
catch (IndexOutOfRangeException ex)
{
Console.WriteLine($"Matrix boundary error: {ex.Message}");
}
catch (Exception ex)
{
Console.WriteLine($"Critical Failure: {ex.Message}");
}
finally
{
Console.WriteLine("Processing routine terminated.");
}
}
}
}
Education
B.Sc. in Computer Science & Engineering
International University of Business Agriculture & Technology (IUBAT)
CGPA: 3.18 / 4.00
Higher Secondary Certificate (HSC)
Rofiqul Islam Mohila College
GPA: 5.00 / 5.00
Secondary School Certificate (SSC)
Bajitpur R.N Girls High School and College
GPA: 4.89 / 5.00