Hector Perez
Resistor Color Code
NATO Phonetic Alphabet
Cyrillic Alphabet
Greek Alphabet
Find a String inside a JSON object with recursivity in Node.JS
Simple thing:
const THE_UNKNOWN = {
a: 2,
b: "hello",
c: {
d: 34.21,
e: "TARGET",
f: {
g: "not easter egg",
h: {
i: "TARGET"
}
},
j: [
{
k: 308
},
{
l: "TARGET"
}
],
m: [
"some",
"string",
"array",
"TARGET"
]
}
};
function find(what, her
Generate SSH Keys in Linux (Fedora 35)
RSA
The simplest way is to execute the following command:
ssh-keygen -t rsa
This is how the whole process looks like in console. Please note that I did override the default key-pair location.
[terminator@fedora ~]$ ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save