Skip to content

Instantly share code, notes, and snippets.

@Cibernomadas
Last active July 1, 2018 00:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Cibernomadas/46c641a163d09806d73ac74a02c4e546 to your computer and use it in GitHub Desktop.
Save Cibernomadas/46c641a163d09806d73ac74a02c4e546 to your computer and use it in GitHub Desktop.
func (u *User) Avatar(s int) string {
if s < 1 || s > 2048 {
s = 128
}
email := []byte(u.Email)
return fmt.Sprintf("https://s.gravatar.com/avatar/%x?d=identicon&s=%d", md5.Sum(email), s)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment