
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
humanized-codes
Advanced tools
Humanized codes are meant to be handled by people, written on paper and shared. The codes only use decimal digits (0..9) and uppercase letters, they are meant to be short code to identify a small or big numbers.
Humanized codes are meant to be handled by people, written on paper and shared. The codes only use decimal digits (0..9) and uppercase letters, they are meant to be short code to identify a small or big numbers.
For example they can be used to encode a database integer ID or a specific date.
Ex.
The date date=2020-01-31T15:01:17.647Z can be passed to a person using this code K62AP58V.
Ex.
A small-big number 20880 can be written as G40
Ex.
Big number 7607118767 can be written as 3HT2YEN
npm install humanized-codes --save
It can be used with browser or node.
const {
codeSystem,
base36
} = require("humanized-codes");
// Use base 36 system (36 symbols)
// 1. encode a date,
const dateHumanCode = base36.encode(new Date().getTime());
console.log("Date Human Code => " + dateHumanCode + ", date=" + new Date(base36.decode(dateHumanCode)).toISOString());
// 2. encode a small or big number,
const bigNumber = Math.floor(Math.random() * 10000000000);
const bigNumberHumanCode = base36.encode(bigNumber);
console.log("Big Number Human Code => " + bigNumberHumanCode + ", decoded=" + base36.decode(bigNumberHumanCode) + "=" + bigNumber);
// 3. make a composed code.
const code = `${bigNumberHumanCode}-${dateHumanCode}`;
const [n, d] = code.split("-");
console.log("Code: " + code + ", decoded: " + base36.decode(n) + ", " + new Date(base36.decode(d)).toISOString());
// Use base 16 system (16 symbols, hexadecimal)
const hexBase = codeSystem(16);
const dateHexHumanCode = hexBase.encode(new Date().getTime());
console.log("Date Hex Human Code => " + dateHexHumanCode + ", date=" + new Date(hexBase.decode(dateHexHumanCode)).toISOString());
FAQs
Humanized codes are meant to be handled by people, written on paper and shared. The codes only use decimal digits (0..9) and uppercase letters, they are meant to be short code to identify a small or big numbers.
The npm package humanized-codes receives a total of 1 weekly downloads. As such, humanized-codes popularity was classified as not popular.
We found that humanized-codes demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.