Category: Node.Js
August 5, 2024
algorithms, BASH, c / c++, c #, C/C++, C# (CSharp), Go, Go Programming, Hashing, java, Java, javascript, Node.Js, php, PHP, programming languages, Python, Rust
A simple yet effective hash function for strings is the well-known “djb2” algorithm by Daniel J. Bernstein. It is simple to implement and has good performance characteristics for many …
Checking the Balances of a BTC/bitcoin wallet address can be done in two ways: Querying a Node, or Querying a Third party API. Querying a Node requires running your …
To send ETH using NodeJS, you can utilize the web3.js library. Here’s a basic example that demonstrates how to send ETH from one account to another: First, make sure …
December 9, 2020
algorithms, BASH, bash script, c / c++, c #, C/C++, C# (CSharp), java, Java, javascript, Node.Js, php, PHP, programming languages, python, Python, Rust, string, vbscript, VBScript
You are given a lowercase alphabet string text. Return a new string where every character in text is mapped to its reverse in the alphabet, so that a becomes …
The CloudFlare Worker is a Serverless Service (similar to Amazon Lambda, Google Function) that we can use to deploy functions in the edge network. The serverless is the future …