Irfan Mehmud
@Irfan140
Irfan Mehmud
@Irfan140
Undergrad student who loves solving problems and working with code.
Undergrad student who loves solving problems and working with code.
Haldia, India
Devfolio stats
Devfolio stats
2
projects
2
0
prizes
0
12
hackathons
12
0
Hackathons org.
0
GitHub
GitHub
500
contributions in the last year
Apr
S
M
T
W
T
F
S
Mar
0
stars earned
54
repositories
26
followers
Meal-Analyzer-App
An intelligent React Native mobile application that uses AI to analyze food images and provide comprehensive nutritional information, health advice, and dietary recommendations.
TypeScript
0Stars
0Forks
Movie-Discovery-App
A modern, feature-rich movie discovery application built with React Native and Expo, featuring trending movies, search functionality, and detailed movie information powered by The Movie Database (TMDB) API and Appwrite.
TypeScript
0Stars
0Forks
Note-App
A full-stack note-taking application built with React Native (Expo), Node.js/Express, and PostgreSQL. Features user authentication via Clerk, AI-powered note summarization via a Python microservice, and a clean, modern interface for creating, editing, and managing notes.
TypeScript
0Stars
0Forks
Weather_App
A modern, feature-rich weather application built with React Native and Expo that provides real-time weather information for any city worldwide.
TypeScript
0Stars
0Forks
Medium Posts
Medium Posts
Singleton Design Pattern
medium.com
Singleton means a class which can only be instantiate once. If we again try to instantiate the class it will just return us the earlier object. Singleton design pattern is used to implement singleton class. Introduction Without implementing singleton pattern the code will look like this: class NoSingleton: def __init__(self): print("Singleton Constructor called. New Object created.") if __name__ == "__main__": s1 = NoSingleton() s2 = NoSingleton() print(s1 is s2) Output Singleton...

Factory Design Pattern
medium.com
In our last blog we talked about strategy design pattern In today’s blog we will learning a new design pattern. Introduction In real world factory is something from which we get the products. In the same way in LLD, Factory is a class from which we get our objects. Main goal of Factory Design pattern is to seperate business logic and object creation logic. There are 3 types of Factory Design: Simple Factory. (not a design pattern by itself, it is more like a design principle) Factory Method. Abstract Fa...

Strategy Design Pattern
medium.com
In today’s blog and the upcoming ones we will be discussing about various design patterns. Officially there are 23 designs patterns. First of all, what do you mean by design pattern ? A design pattern simply means an approach to solve any we face while developing any application. People faced similar problems earlier and come up with 23 design patterns. Instead of reinventing the wheel we use these patterns whenever we we face some specific problem, which we will be discussing in depth. Fundamentally all...