Passionate about creating functional, beautiful and user-friendly experiences.
Hello! I'm Debashish, an engineer with a passion for building innovative and user-friendly technologies. I've accomplished my Bachelor's degree in Computer Science and Engineering at Daffodil International University. AI and Machine Learning are my areas of interest. I'm currently working as a freelancer and building my own projects. I'm also a full-stack developer with a keen eye for design and a love for modern technologies. I specialize in creating dynamic, responsive web applications & mobile applications that provide exceptional user experiences.
When I'm not coding, you can find me exploring new technologies, contributing to open-source projects, or designing user interfaces that push the boundaries of what's possible on the web.

Technologies I work with to bring ideas to life
Loading...
Projects and initiatives I'm actively developing
Developing an AI-incorporated security system featuring real-time video surveillance, face recognition, anomaly detection, and secure access control. Built using Python, TensorFlow, OpenCV, React, Node.js, and cloud infrastructure on AWS, focusing on scalability, data security, and real-world deployment.
Contributing to Datasets, Models, PyPl, GitHub, and open-source projects
My open-source contributions and coding activity
Some of my favorite code snippets and utilities
A reusable debounce hook for React
function useDebounce<T>(value: T, delay: number): T {
const [debouncedValue, setDebouncedValue] = useState<T>(value);
useEffect(() => {
const handler = setTimeout(() => {
setDebouncedValue(value);
}, delay);
return () => {
clearTimeout(handler);
};
}, [value, delay]);
return debouncedValue;
}Neural network model for binary classification
def train_model(X_train, y_train):
model = Sequential([
Dense(128, activation='relu', input_shape=(X_train.shape[1],)),
Dropout(0.3),
Dense(64, activation='relu'),
Dense(1, activation='sigmoid')
])
model.compile(
optimizer='adam',
loss='binary_crossentropy',
metrics=['accuracy']
)
model.fit(X_train, y_train, epochs=50, batch_size=32)
return modelProfessional certifications and recognitions
What I enjoy when I'm not coding
Capturing moments and exploring creative perspectives
Tech books, sci-fi novels, and research papers
Strategy games and indie titles
Exploring nature and staying active
Playing guitar and discovering new artists
Experimenting with new recipes and cuisines
Subscribe to my newsletter for the latest blog posts, projects, and tech insights.
My latest thoughts, insights, and updates from the world of technology.
Have a project in mind? Let's discuss how we can work together.