Skip to content

Instantly share code, notes, and snippets.

View montasim's full-sized avatar
๐Ÿ’ญ
๐—Ÿ๐—ข๐—ข๐—ž๐—œ๐—ก๐—š ๐—™๐—ข๐—ฅ ๐—ก๐—˜๐—ช ๐—ข๐—ฃ๐—ฃ๐—ข๐—ฅ๐—ง๐—จ๐—ก๐—œ๐—ง๐—œ๐—˜๐—ฆ.

๏ผญโ™ข๏ผฎ๏ผดฮ›๏ผณ๏ผฉ๏ผญ montasim

๐Ÿ’ญ
๐—Ÿ๐—ข๐—ข๐—ž๐—œ๐—ก๐—š ๐—™๐—ข๐—ฅ ๐—ก๐—˜๐—ช ๐—ข๐—ฃ๐—ฃ๐—ข๐—ฅ๐—ง๐—จ๐—ก๐—œ๐—ง๐—œ๐—˜๐—ฆ.
View GitHub Profile
@montasim
montasim / windows-license-key.md
Last active May 16, 2025 15:12
Windows License Key

Windows 10/11 Pro Activation Keys [Retail]

  1. 9TW9M-VNGKX-WGCTB-47CKX-GJF9G
  2. 9TPN4-HW9WD-BFXH7-RXPCC-BTDGT

Worldwide Global Key Lifetime License

  1. VK7JG-NPHTM-C97JM-9MPGT-3V66T

Windows 10 Family :

@montasim
montasim / iobit-driver-booster-license-key.txt
Last active December 4, 2024 08:13
Iobit Driver Booster License Key
Iobit Driver Booster PRO
key : 07CB7-C38C6-5B122-05440
key : 4A833-0FF38-A2F7E-42840
key : 344F3-D086F-EF7AD-8FA40
key : 4A833-0FF38-A2F7E-42840
key : 7A4A7-27FA2-BBDDB-CBE40
@montasim
montasim / displayNotification.js
Last active May 21, 2024 07:56
Custom Notification with SweetAlert2 and Tailwind CSS
const displayNotification = (
title = 'You are offline',
message = 'It seems like you have lost your internet connection. Please check your network settings and try again.',
visibleTimeInMilliseconds = 2500
) => {
let timerInterval;
Swal.fire({
toast: true,
position: 'top-end',
@montasim
montasim / loadingSpinner.js
Last active May 21, 2024 07:57
Custom Loading Spinner with SweetAlert2 and Tailwind CSS
const show = (
text = 'Please wait, the system is preparing necessary data.'
) => {
Swal.fire({
width: '550px',
html: `
<div class="bg-transparent flex flex-col items-center justify-center gap-4">
<img class="w-20" src="../media/gifs/lightBlueLoadingSpinner.gif" alt="Loading gif">
<strong>${text}</strong>

Conventional Commit Messages

See how a minor change to your commit message style can make a difference.

Tip

Have a look at git-conventional-commits , a CLI util to ensure these conventions and generate verion and changelogs

Commit Message Formats

Default

Project Name

Project Sample Gif


Requirements to Run the Project

@montasim
montasim / file-extensions.js
Last active June 27, 2024 17:34
Defines common file extension types for use in API responses. These file extension types represent various types of files that can be served by the API. Adjust these file extension types as needed to align with the APIs content requirements.
/**
* @fileoverview Defines common file extension types for use in API responses.
* These file extension types represent various types of files that can be served by the API.
* Adjust these file extension types as needed to align with the APIs content requirements.
*
* @author Mohammad Montasim -Al- Mamun Shuvo
* @date 2024-03-03
*/
/**
@montasim
montasim / mime-types.js
Last active January 28, 2025 08:29
Defines common MIME types for use in API responses. These MIME types represent various types of content that can be served by the API. Adjust these MIME types as needed to align with the APIs content requirements.
/**
* @fileoverview Defines the various MIME types used in the application.
* This module exports an object that contains the different MIME types
* the application can handle. These MIME types are used to identify the format of data being processed or served.
*
* @module constants/mimeTypes
* @version 1.0.0
* @license CC BY-NC-ND 4.0
*
* @contact Mohammad Montasim-Al-Mamun Shuvo
@montasim
montasim / http-status-codes.js
Last active January 28, 2025 08:13
Defines common HTTP status codes for use in API responses. These status codes represent various states of HTTP responses and are commonly used to communicate the result of API requests. Adjust these codes as needed to align with the APIs response requirements.
/**
* @fileoverview Defines common HTTP status codes for use in API responses.
* These status codes represent various states of HTTP responses and are
* commonly used to communicate the result of API requests.
* Adjust these codes as needed to align with the API's response requirements.
*
* @module constants/httpStatus
* @version 1.0.0
* @license CC BY-NC-ND 4.0
*
@montasim
montasim / vercel.json
Created June 24, 2024 17:12
Sample JSON for deploying a project to Vercel.
{
"version": 2,
"builds": [
{
"src": "./src/server.js",
"use": "@vercel/node"
}
],
"routes": [
{