July 28, 2022
blockchain, Cryptocurrency, Cryptocurrency, javascript, nodejs, php, python, Smart Contract, Tron Blockchain, USDT
USDT and USDD are two stable coins on Tron Blockchain. They are both TRC-20 tokens or coins. There are Shasta and Nile Test Net on which the TRC-20 contract …
We can compute the Greatest Common Divisor (GCD) using Iterative Divide/Remainder Method. The following is the GCD implementation in BASH Programming: #!/bin/bash function gcd() { local x=$1 local y=$2 …
The Hamming Distance is the number of different symbols between two strings/numbers (equal length). It can be also considered as the number of changes required to convert from one …
Unfortunately, in LUA, there is no inbuilt string splitting function, which is very inconvenient. However, you could use string.gmatch to begin a regular expression matching and the following is a …
October 17, 2013
16 bit, assembly language, code, DOS, DOSBOX, implementation, MSDOS 16-bit, programming languages, string, windows
16-bit DOS has been obsolete. But learning 16-bit Assembly helps up understand how underlying system works and it is fun programming using assembly. 16-bit Assembly is similar to 32-bit …