- 9TW9M-VNGKX-WGCTB-47CKX-GJF9G
- 9TPN4-HW9WD-BFXH7-RXPCC-BTDGT
Worldwide Global Key Lifetime License
- VK7JG-NPHTM-C97JM-9MPGT-3V66T
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 |
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', |
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> |
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
/** | |
* @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 | |
*/ | |
/** |
/** | |
* @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 |
/** | |
* @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 | |
* |
{ | |
"version": 2, | |
"builds": [ | |
{ | |
"src": "./src/server.js", | |
"use": "@vercel/node" | |
} | |
], | |
"routes": [ | |
{ |