Hello, I'm Adiba Rahman

Aspiring Web Developer & Python Enthusiast

About Me

I'm a passionate learner currently pursuing a B.Sc and NIELIT O-Level certification. I enjoy designing clean websites and writing Python code. I aim to build meaningful tech solutions and grow as a professional developer.

Skills

Projects

šŸ“ Blog Title Generator

A simple web tool that helps users generate catchy blog titles using custom prompts. Built using HTML, CSS, and JavaScript.

šŸ”— Live Demo | šŸ“‚ View Code
GitHub Badge

šŸŽ“ Student Grade Calculator (Python)

This project takes student marks and returns the grade based on score using simple if-elif conditions.

marks = int(input("Enter your marks: "))

if marks >= 90:
    print("Grade A")
elif marks >= 75:
    print("Grade B")
elif marks >= 50:
    print("Grade C")
else:
    print("Fail")
      

šŸ’” LED Blink with Arduino (IoT)

My first IoT project using Arduino Uno. The code blinks an LED connected to pin 13 every second.

void setup() {
  pinMode(13, OUTPUT);
}

void loop() {
  digitalWrite(13, HIGH);
  delay(1000);
  digitalWrite(13, LOW);
  delay(1000);
}
      

šŸ“… Python Calendar Generator

Using Python's built-in calendar module to display a full year calendar for 2025.

import calendar
print(calendar.calendar(2025))
      

My Blog

Here are some blog topics I’m planning to write about soon:

Stay tuned! I’m currently writing these and will publish them right here very soon. 😊

Contact Me

Email: adibarahmanwarsiii@gmail.com

Resume: View My Resume

GitHub Icon github.com/adibaarahman