You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it is good idea if it replace _0xZZZ with readable names like namora/potato/mokaro/kalimu instead of short names a/b/ab/cb
here an idea to generate the names
function generateName() {
let result = '';
let chars = '';
for (let i = 0; i < 6; i++) {
chars = i % 2 == 0 ? 'bcdfghjklmnprstwy' : 'aiueo';
result += chars.charAt(Math.floor(Math.random() * chars.length));
}
return result;
}
generateName();
// namora/potato/mokaro/kalimu
The text was updated successfully, but these errors were encountered:
I think it is good idea if it replace
_0xZZZ
with readable names likenamora/potato/mokaro/kalimu
instead of short namesa/b/ab/cb
here an idea to generate the names
The text was updated successfully, but these errors were encountered: