Hello. My name is A.R. ZERIN. I am an Entrepreneur, Technology Optimist and a Software Engineer from Dhaka, Bangladesh .
Programming is my passion. Life is beautiful, so I am trying hard to enjoy it.
I have completed my Undergraduate Degree in Computer Science & Engineering at 2004 and working in the era of IT for last 14+ years dedicatedly.
I am a believer of, “He who aims at the sky, shoot higher much than he who aims at a tree“.

Ethics Life Lifestyle
PAIN + REFLECTION = PROGRESS
January 16, 2025
0
There is no avoiding pain if you are going after ambitious goal.
Principal
January 16, 2025
0
Amazon’s Leadership Principles (LPs) are a core part of their culture and hiring process.   Customer Obsession Ownership Invent and Simplify Are Right, A Lot Learn and Be Curious Hire and Develop the Best Insist on the Highest Standards Think Big Bias for Action Frugality Earn Trust Dive Deep Have Backbone Deliver Results Detail Explanation: […]
MongoDB NoSQL
Step-by-Step Guide to Setting Up MongoDB on macOS
January 1, 2025
0
Setting up MongoDB on macOS can be a straightforward process if you follow the right steps. Here’s how I did it on my macOS ARM 64 system using MongoDB Community Server version 8.04. Step 1: Download MongoDB I started by downloading MongoDB from the MongoDB Community Server. I selected the following options: Version: 8.04 Platform: […]
Machine Learning
Building a Next Word Prediction Model Using Deep Learning and Python
December 16, 2024
0
, , ,
Introduction to Next Word Prediction Next word prediction is a powerful language modeling task in machine learning. The goal of this task is to predict the most likely word (or sequence of words) that follows a given input context. It relies on statistical patterns and linguistic structures to generate predictions based on the provided context. […]
Data Science ETL Machine Learning
Building an ETL Pipeline with PySpark: A Step-by-Step Guide
December 16, 2024
0
An ETL (Extract, Transform, and Load) pipeline is an essential data engineering process that extracts raw data from sources, transforms it into a clean, usable format, and loads it into a target storage system for analysis. For large-scale data processing, PySpark—with its distributed computing capabilities—is a robust choice. In this guide, we’ll walk through building […]
Docker
How to Docker Container for Laravel 11 App with php 8.2
December 14, 2024
0
,
Suppose you are buiding a project that you want to provide Docker Container as well so that other team members can use the same project using same machine environment like your product machine: First I am creating laravel app named MyApp:: # composer create-project laravel/laravel MyApp Create a Folder docker-setup, copy the folder MyApp contents […]
Server
How to Connect to Bluehost server using Shell Access
December 5, 2024
0
, ,
Manually generating your SSH key in macOS To open the macOS Terminal, follow these steps: In Finder, choose Utilities from the Applications folder. Find Terminal in the Utilities listw. Open Terminal. Generating an SSH key An SSH key consists of a pair of files. One is the private key, which should never be shared with anyone. The other is the public […]
Machine Learning
What is Mean Squared Error (MSE)?
October 17, 2024
0
Introduction When working with machine learning models, especially in regression tasks, it’s crucial to evaluate how well your model is performing. One of the most commonly used metrics for this purpose is Mean Squared Error (MSE). In this blog, we’ll break down what MSE is, why it’s important, and walk through a simple Python example […]
OOP Software Engineer Interview Question
OOP Interview Question
October 15, 2024
0
1) What is Object-Oriented Programming (OOP)? Answer:   OOP is a programming paradigm based on the concept of objects, which  can contain data in the form of fields (attributes or properties), and code in the form of procedures (methods or functions). 2) What are the four main principles of OOP? Answer:   Encapsulation, Inheritance, Polymorphism, and Abstraction. […]
Google Colab
How to Install & Run Python Flask in Google Colab with Ngrok | Step-by-Step Guide
October 13, 2024
0
, , ,
In this video, I’ll show you how to install and run a Python Flask web application in Google Colab and expose it to the internet using Ngrok. Learn how to set up Flask, handle Ngrok for public URLs, and test your Flask app live. This tutorial is perfect for Python developers who want to quickly […]