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

C
C++
C#
Java
PHP
Object-Oriented Programming (OOP)

Specialized Domains

Image Processing
Computer Vision (CNNs)
Morphological Operations
Algorithm Design

Web & Tools

HTML/CSS/JS
Tailwind CSS
MySQL
WordPress / WooCommerce
Linux (Ubuntu)
Git & GitHub

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#.

SystemAnalyzer.cs
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

2023 — Present

B.Sc. in Computer Science & Engineering

International University of Business Agriculture & Technology (IUBAT)

CGPA: 3.18 / 4.00

2020

Higher Secondary Certificate (HSC)

Rofiqul Islam Mohila College

GPA: 5.00 / 5.00

2018

Secondary School Certificate (SSC)

Bajitpur R.N Girls High School and College

GPA: 4.89 / 5.00