Skip to main content
Topic: Questions about Gravatar (Read 706 times) previous topic - next topic
0 Members and 1 Guest are viewing this topic.

Questions about Gravatar

Hi!

I would need help with this, because I don't know really, how this works and how the "gravatars" are looking - so I have problems with translation here:

gravatare.jpg

Code: [Select]
$txt['gravatar'] = 'Gravatare';
$txt['avatar_gravatar_enabled'] = 'Aktiviere Gravatare';
$txt['gravatar_rating'] = 'Gravatar-Rating';
$txt['gravatar_default'] = 'Default image to show when an email address has no matching Gravatar';
$txt['gravatar_none'] = 'Default of the gravatar logo';
$txt['gravatar_identicon'] = 'A geometric pattern based on an email hash';
$txt['gravatar_monsterid'] = 'A generated "monster" with different colors, faces, etc';
$txt['gravatar_wavatar'] = 'Generated faces with differing features and backgrounds';
$txt['gravatar_retro'] = 'Awesome generated, 8-bit arcade-style pixelated faces';
$txt['gravatar_robohash'] = 'A generated robot with different colors, faces, etc';

Are there really "monsters" and "robots" to see?  :shocked: What is an "email hash"?  :embarrassed:  And this one I don't understand at all: "Awesome generated, 8-bit arcade-style pixelated faces". What does this mean?

Maybe someone can show me examples?

Is this the default gravatar?

Re: Questions about Gravatar

Reply #1

I'll take a stab Ruth... please forgive me if I am not providing knowledge you don't already have..

Gravatar stands for Globally Recognized Avatar and is a profile picture assistant that, among other potential uses, allows you to have the same picture as your avatar on most websites on the internet

Here's some 8-Bit pixelated arcade examples:
arcade.jpg

I presume a library (local or web) to pick from (e.g. https://en.gravatar.com/ )
 
"Email hash" I suspect is doing an md5 hash (or similar) on the email to produce a unique identifier to associate with a gravatar (so that the same gravatar isn't used for multiple different emails, or, conversely, md5 hash on a part of the email that is uniquely common to all your emails [From: Address] so the same gravatar is always associated with the sender or member posting).

The latter used to be very popular, now maybe not so much?

I don't know if or how any of these are used with EA (anymore, if ever?) - that I'll defer to @Spuds (et. al.)
If they are supported as "web enabled", it's handy, as then storing unique avatars for every user in the local database isn't necessary 
Last Edit: March 31, 2023, 12:05:40 pm by Steeley

// Deep inside every dilemma lies a solution that involves explosives //

Re: Questions about Gravatar

Reply #2

Thank you very much for your help and your explanations, Steeley! :smiley:

Now I can translate this strings.

 

Re: Questions about Gravatar

Reply #3

Gravatar is a service that allows you to associate an image/avatar with your email address, and then use that on sites that support Gravatar (its very popular)

If a user does not have a Gravatar, and they still choose Gravatar from the Forum Profile "Personalized Picture" area, then ElkArte will request an image from the Gravatar service. 

To do this it uses a "hash" of the users email address.  A hash is a hexadecimal representation of the email address which simply makes it compliant with web requests.   For example johndoe@someemail.com is represented as n3d99ef7fedf0fe77dd3171b3dfd03c`

The image returned is unique, and which "type" of image it returns depends on which library you choose, none, identicon, retro, monster,  wavatar or robot.

Default/None is simply: default.jpg
The rest will be unique to the email address / hash and have a style based on the library chosen
Robot: robot.png Monster: monster.png Retro (like old arcade games) retro.png Wavatar: wavatar.png Identicon (like a QR code): identicon.png

As for the descriptions in the Admin.english.php file, those come straight from Gravatar's documentation  :smiley:  I tried to find some German translations and could only come up with some of them as Gravatars own translations are missing!
Code: [Select]
$txt['gravatar'] = 'Gravatars';
$txt['avatar_gravatar_enabled'] = 'Gravatar für Forenbenutzer aktivieren?';
$txt['gravatar_default'] = 'Standardbild, das angezeigt wird, wenn einer E-Mail-Adresse kein Gravatar zugeordnet ist';
$txt['gravatar_none'] = 'Standard des Gravatar-Logos';
$txt['gravatar_identicon'] = 'Ein geometrisches Muster basierend auf einem E-Mail-Hash';
$txt['gravatar_monsterid'] = 'Ein generiertes "Monster" mit verschiedenen Farben, Gesichtern, etc.';
$txt['gravatar_wavatar'] = 'Generierte Gesichter mit unterschiedlichen Eigenschaften und Hintergründen';
$txt['gravatar_retro'] = 'Fantastische generierte, 8-Bit-Videospiel-artige, verpixelte Gesichter';

Hope that helps.



Re: Questions about Gravatar

Reply #4

Thank you very much; Spuds! :smiley:

I translated it this way now:

Code: [Select]
$txt['gravatar'] = 'Gravatare';
$txt['avatar_gravatar_enabled'] = 'Aktiviere Gravatare';
$txt['gravatar_rating'] = 'Gravatar-Rating';
$txt['gravatar_default'] = 'Angezeigte Grafiken, wenn einer E-Mail-Adresse kein Gravatar zugeordnet ist:';
$txt['gravatar_none'] = 'Standard Gravatar-Logo';
$txt['gravatar_identicon'] = 'Geometrische Muster, basierend auf dem E-Mail-Hash';
$txt['gravatar_monsterid'] = 'Generierte "Monster" mit verschiedenen Farben, Gesichtern, etc.';
$txt['gravatar_wavatar'] = 'Generierte Gesichter mit verschiedenen Eigenschaften und Hintergründen';
$txt['gravatar_retro'] = 'Awesome-generierte 8-bit "Pixel-Gesichter" im Stil von Video-Spielen';
$txt['gravatar_robohash'] = 'Generierte "Roboter" mit verschiedenen Farben, Gesichtern, etc.';

Re: Questions about Gravatar

Reply #5

Quote from: Spuds –
 A hash is a hexadecimal representation of the email address which simply makes it compliant with web requests.   For example johndoe@someemail.com is represented as n3d99ef7fedf0fe77dd3171b3dfd03c`


Just some additional info if anyone is not familiar with hashing - as Spuds said it's a hex representation of a string, 32 hex characters in this case.  "Checksum" is an early version of 'hashing', typically used as "version control" to verify that the hashed object hasn't been changed since it was "authenticated". However, an 8-bit checksum isn't very reliable, as the possible hashes are limited, and the odds having two strings (or files, whatever), with the same checksum are fairly high. Sixteen-bit checksums are better, 32-bit better still.

For the record, I actually did see a file that was edited/updated, and both the original and the edited file had the exact same 32-bit checksum (termed "collision"). Trust me, it blew us all away.. so much for version control with CS-32... 

MD5 uses a more complex hash algorithm and the probability of two different hashed objects producing the same hash, and then observed and compared by the same entity, is almost infinitely small. BUT if MD5 isn't sufficiently "secure", well then there's SHA-256, 64-hex bit. However, it takes much longer to produce a SHA-256 hash as an MD5 hash. This becomes an issue when what you are hashing is a large digital object (say, a 10 Terrabyte hard disk..). Do you really need that degree of "integrity verification"? The number of possible values that can be returned by a a 256-bit hash (64 hex) function, for instance, is estimated at roughly the same as the number of unique atoms in the universe. The odds of two random events producing the exact same object1 (resulting in the same hash value) is greater than the odds of duplicating hash values on different objects. 

Hashing is not encryption as some associate it with, in that reversing the hash (decrypting) into the original string or file is almost impossible. This makes transmitting hash representations themselves very secure. If you receive "3d99ef7fedf0fe77dd3171b3dfd03c` there's virtually no way you're going to be able to reverse it directly into  johndoe@someemail.com. So, you get 3d99ef7fedf0fe77dd3171b3dfd03c, that's cool, but you have no way of knowing if it's a representation of a jpg of an elephant, a digital master of Pink Floyd's "Umaguma", or a nuclear launch code.
 
I have a computer forensics certification, and used to be licensed to testify as an expert witness in court.  I used MD5 hashing extensively, taking a hash of a file,  hard-drive, etc, and then imaging that file, hard drive, and hashing that. If the image has the same hash value as the original hard drive, I can be absolutely certain they are identical, and I can then work with the image and "prove" that whatever I discover in the image is also contained in the original. If anyone changes so much as a bit in the original (or the image) after it has been hashed, it will produce a different MD5 hash value and is evidence the original object "has been tampered with" since it was hashed.  And if I wanted even more certainty in insuring transmission or transfer integrity, I'd hash the hash and transfer that separately so that the recipient can confirm the hash itself received separately wasn't corrupted during transmission or transfer.

1See "Quantum Entanglement"

All that said, my absolute favorite hash is "corned beef".

// Deep inside every dilemma lies a solution that involves explosives //

Re: Questions about Gravatar

Reply #6

Quote from: Steeley – All that said, my absolute favorite hash is "corned beef".

You seem to be hungry all the time, Steeley. Lol. First german sausages, now corned beef...

I just tried this with the gravatars on test forum.
Thats nice. I love the "monsters", they are cute. :)
But on our forum the geometric patterns will look the best.

Re: Questions about Gravatar

Reply #7

Quote from: Ruth –
You seem to be hungry all the time, Steeley. Lol. First german sausages, now corned beef...


Me?  ME??  YOU are the one who started talking about wurst and hash.. You'll have to talk to Pavlov about the drool..

// Deep inside every dilemma lies a solution that involves explosives //