Aspiring Web Developer & Python Enthusiast
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.
A simple web tool that helps users generate catchy blog titles using custom prompts. Built using HTML, CSS, and JavaScript.
š Live Demo | š View CodeThis 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")
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);
}
Using Python's built-in calendar module to display a full year calendar for 2025.
import calendar
print(calendar.calendar(2025))
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. š
Email: adibarahmanwarsiii@gmail.com
Resume: View My Resume