gravatar Questions

3

Solved

http://play.golang.org/p/SKtaPFtnKO func md(str string) []byte { h := md5.New() io.WriteString(h, str) fmt.Printf("%x", h.Sum(nil)) // base 16, with lower-case letters for a-f return h.Sum(n...
Theresatherese asked 11/10, 2013 at 23:56

4

Solved

I just made a demo after seeing a similar one in the Ember.js documentation that gets your gravatar based on your email. I’m currently using [email protected] as the default but that seems wro...
Vivisection asked 22/1, 2017 at 0:54

12

Solved

I am using gravatars and it's rather often when I downscale them with css, and I believe Google Chrome used to do it properly until recently ( I may be wrong, not sure when exactly the problem star...
Stonge asked 19/6, 2016 at 11:13

6

Solved

There is a simple way with php, a simple script or URL manipulation to build a URL for the gravatar image corresponding to an email? Ex. http://gravatar.com/avatars/[email protected] and this...
Tannie asked 27/4, 2010 at 5:9

1

Solved

Why is the output of hashlib.md5().hexdigest() different than md5sum and openssl output? $ echo "test string" | md5sum f299060e0383392ebeac64b714eca7e3 - $ echo "test string" | openssl dgst -md5 (...
Stahl asked 25/5, 2018 at 16:11

5

Solved

I have implemented gravatar for a portal I am building and wanted to know if there is a default image URL for gravatar? Not all people who visit the site are logged in or have email addresses, in s...
Pokpoke asked 21/4, 2010 at 14:28

2

Solved

What's the fastest way to implement Gravatar URLs in Laravel? I have a mandatory email address field, but I don't want to create a new column for Gravatars, and I'd prefer to use the native Auth::u...
Vigilantism asked 18/5, 2014 at 17:34

5

Solved

Whilst the Gravatar service's API (well, it's really just a URL) is pretty straightforward, is there a simple helper method out there that does a good job of reflecting all the options available fo...
Sweeping asked 24/8, 2010 at 22:18

4

Solved

is there a way to find the the profile image of a user that's logged in using his/her google account (through OpenID). I've checked stackoverflow and it seems they're using gravatar service to as...
Peplos asked 23/10, 2010 at 13:55

4

Solved

Just trying to crate a simple comment form on a blog. I want to load the user's gravatar (using jQuery) when he/she writes this in the email box. How can I do that?
Heraclea asked 1/4, 2009 at 12:51

2

Solved

I have gone through this railscast on Gravatars and i now have the below helper method in my application helper. module ApplicationHelper def avatar_url(user) gravatar_id = Digest::MD5.hexdigest...
Horsehair asked 16/1, 2013 at 15:31

2

We have a system that will integrate in some ways with Office 365, and we would like to use the profile picture set by the user in the Office 365 system, rather than storing this image/reference ou...
Staphylo asked 18/9, 2012 at 12:57

1

var gravatar1; var gravatar2; var email1 = $(email1).val(); email1 = $.trim(email1); email1 = email1.toLowerCase(); email1 = md5(email1); gravatar1 = 'http://www.gravatar.com/avatar/' + email1; var...
Marjorie asked 10/9, 2015 at 6:36

3

Solved

How can I just return false or true if email address is register at gravatar with php? Tnx
Skit asked 2/11, 2010 at 9:29

5

How do I add a link that would let user change their Gravatar on my site? (The same way you can change your Gravatar on Wordpress) Thanks, Kenneth
Cata asked 26/3, 2009 at 8:10

3

I show a gravatr image of users in my site. How can I know the best highest resolution to use? e.g. which parameter "s" should be. https://secure.gravatar.com/avatar/?s=250 of course it depends...
Platelet asked 26/6, 2012 at 9:1

1

Solved

I decided I wanted to change my gravatar to be circular. I have it circular on my blog with css and prefer the effect so decided to use a bit of imagemagick to give my image a circular alpha channe...
Skidproof asked 9/6, 2014 at 23:38

3

Solved

I am on development environment on localhost:3000 I followed railscasts episode on Gravatar. I am trying to set my custom avatar image that is located in assets/images. The code I use is this: ...
Spindlelegs asked 13/2, 2014 at 19:39

1

For months we have been using a different default gravatar image for members of the site but suddenly this is no longer working. Here is the error "we cannot complete this request remote data coul...
Mimas asked 17/3, 2014 at 14:37

3

Solved

using this gem https://github.com/sinisterchipmunk/gravatar how do i check if gravatar for specified email exist or not? I think i am missing some force default option? Because this url = Gravata...
Midwinter asked 20/7, 2012 at 15:29

4

Solved

In the context of having a list of user that has an icon next to their name, is it better to cache all images of Gravatar for few minutes or it's fine to directly display the image from Gravatar? T...
Mother asked 14/9, 2009 at 15:9

3

Solved

Where should I start if I want to integrate Gravatars for the users in my Java application?
Phenice asked 18/1, 2011 at 4:34

1

Solved

I have a CheckBoxList control that contains dynamically generated checkbox items. This checkboxlist will contain usernames. I am using Gravatar control from AjaxControlToolkit to allow users to hav...
Caryncaryo asked 13/7, 2013 at 16:14

3

I'm trying to get a user's facebook profile picture based on their email address. Effectively, I want to offer my users the option between using Gravatar for their image, or Facebook. However, the ...
Danner asked 28/6, 2010 at 3:33

7

Solved

I have gotten the gravatar service working on my site. But I would like to know if the user has uploaded their picture or not. Is there a way to know this?
Galvani asked 20/1, 2010 at 17:50

© 2022 - 2024 — McMap. All rights reserved.