Posts

Top international payment gateway transaction fee comparison (2024)

There are lots of top international Payment gateway over the internet to get paid online. You must be confused which payment gateway to choose for receiving money from different market places and transfer to your own local bank account. Which payment gateway charge low fee for receiving money and low charge for transferring to local bank account. Bellow is the comparison in between Payoneer, Skrill and PayPal. Payment gateway Name Account & Card maintenance - charge Transfer in between same wallet - charge Transfer from wallet to local bank account - charge Receive from market place to wallet - charge 1.       Payoneer Annual account fee = 29.95 USD (If you have received less than 2,000.00 USD (or equivalent) in payments per Year)   Annual card fee: First card = 29.95 USD   Additional cards in any currency = Free FREE EUR, USD, GBP, and more SWIFT (wire) bank tra

How to Manage Boot Configuration of Windows using CMD

Image
In CMD (Command Prompt), the "bootcfg" command is used to manage the boot configuration data (BCD) for Windows operating systems. This command is used primarily to configure the boot.ini file for older versions of Windows, as newer versions use the BCD store. The syntax for the "bootcfg" command is: bootcfg [options] The " options " argument is optional and can be used to modify the behavior of the command. For example, the " /add " option can be used to add a new operating system entry to the boot configuration data. For example, if you want to reconfigure boot.ini file to remove any defects, you may use the following command: bootcfg /rebuild The command will scan all drives for any Windows installations, display the results, and step you through building the boot.ini file. Note that the " bootcfg " command is not available in newer versions of Windows, which use the BCD store instead of the boot.ini file. In these version

How to Delete Files using CMD

Image
In CMD (Command Prompt), the " del " command is used to delete one or more files.   The syntax for the " del " command is: del [options] file_name(s)   The " options " argument is optional and can be used to modify the behavior of the command. For example, the " /p " option will prompt the user to confirm before deleting each file. For example, to force delete a file named "file.txt", you can use the following command: del /f file.txt This will delete the file permanently in the current directory.   Note that the " del " command permanently deletes files and cannot be undone. It is important to be cautious when using this command to avoid accidentally deleting important files. Additionally, the " del " command is not specific to CMD and is also available in other command-line interfaces, such as PowerShell and Linux terminal.

How to Clear Unnecessary Empty Data Blocks from System using CMD

Image
In CMD (Command Prompt), the "defrag" command is used to defragment a hard drive. Defragmentation is the process of reorganizing the files on a hard drive so that they are stored in contiguous blocks. This can improve the performance of the hard drive by reducing the time it takes to read and write data. The syntax for the "defrag" command is: defrag [volume] [/a] [/h] [/m] [/u] [/v] Where " volume " is the drive letter or mount point of the volume you want to defragment, and the optional parameters are: /a: Analyze the volume and display a summary of the fragmentation levels /h : Run the defragmentation operation at a higher priority /m : Defragment multiple volumes simultaneously /u : Print the progress of the operation on the screen /v: Verbose output that displays detailed information about the defragmentation process For example, to defragment the C drive and display progress on the screen, you can use th

How to Get Inverse of a Matrix in Excel

Image
The MINVERSE function in Excel is used to return the inverse matrix of a given matrix. The inverse of a matrix is a matrix that, when multiplied by the original matrix, results in the identity matrix. The syntax for the MINVERSE function is: =MINVERSE(matrix) Where ‘ matrix’ is the range of cells that contain the matrix you want to invert. For example, you have a 4x4 matrix stored in A1 to C3 cells. To find the inverse of the matrix, you can simply use the formula: Note that the matrix argument must be a square matrix (i.e., the number of rows and columns must be equal). If the matrix is not invertible (i.e., its determinant is zero), the MINVERSE function will return the #VALUE! error.  

How to Enable or Disable Extended Ctrl+C Features using CMD

Image
In CMD (Command Prompt), the "break" command is used to enable or disable the extended CTRL+C checking feature. When the extended CTRL+C checking feature is enabled, pressing CTRL+C will cause the command prompt to prompt the user to confirm that they want to terminate the running command. The syntax for the "break" command is: break [on | off]   The "on" option enables the extended CTRL+C checking feature, and the "off" option disables it. By default, the extended CTRL+C checking feature is turned on in Windows. For example, to turn off the extended CTRL+C checking feature, you can use the following command: break off This will disable the extended CTRL+C checking feature, and pressing CTRL+C will immediately terminate the running command without prompting for confirmation. Note that some commands may override the extended CTRL+C checking feature and terminate immediately when CTRL+C is pressed, regardless of whether the feature is e

How to Get Determinant of a Matrix in Excel

Image
The MDETERM function in Excel returns the matrix determinant of an array. The syntax for the MDETERM function is: MDETERM(array) where array is the array or range containing the matrix. Here is an example of how to use the MDETERM function in Excel. Suppose you have a 4x4 matrix stored in A1 to C3 cells. To find the determinant, you can simply use the formula:  Note that the MDETERM function can only be used with arrays that have the same number of rows and columns, otherwise it will return the #VALUE! error.