Latest
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&
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
Things to do after installing Fedora 35
1. Update DNF config
sudo nano /etc/dnf/dnf.conf
Append this:
fastestmirror=True
max_parallel_downloads=10
defaultyes=True
Save and exit
2. Update the system
sudo dnf update
3. Enable RPM Fusion
sudo dnf install https://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-$(rpm -E %fedora).noarch.rpm
sudo