Questions tagged [user-profile]

The user profile is a section, page or tab, used to manage and display a set of personal information of a certain user.

The user profile (or sometimes called simply "profile") is a section, page or tab, used to manage and display one or more sets of personal information of a certain user.

The user profile is considered a digital representation of the user, and is often associated with the online identity of the user.

User profiles can contain various user-related content - first/last name, nickname, avatar, email address and other user-specific fields.

Often, a user profile can have capabilities for personalizing the public profile view and changing the access settings in order to make certain data visible only to certain users.

710 questions
121
votes
5 answers

How can I find all public comments for a Github user?

Until recently I was able to find all my public comments using a link on my profile page. I was using this functionality to keep track of all issues where I have commented, but not contributed anything. It was under a section called "Public…
BillyTom
  • 2,519
  • 2
  • 17
  • 25
36
votes
3 answers

How to check similarity of two images that have different pixelization

I am running a python code to check similarity of Quora and Twitter users profiles photos, but i am not getting a positive result when images are the same. This is the code for comparing the two images : path_photo_quora=…
36
votes
7 answers

Where are the Visual Studio settings stored?

I'm using visual studio 2013. The company I work for has changed domain names (eg from abc.com to ayebecee.com) which obviously means that a new login profile has to be created etc. Now I started up visual studio but all the addons I installed and…
Eminem
  • 7,206
  • 15
  • 53
  • 95
26
votes
8 answers

Django - Create user profile on user creation

I'm following Django documentation here in order to achieve a simple objective: Create a user profile as soon as a new user is created. I have an 'accounts' app and my accounts.models looks like this: # -*- coding: utf-8 -*- from django.db import…
Limaaf
  • 3,296
  • 3
  • 18
  • 17
25
votes
1 answer

Get rid of get_profile() in a migration to Django 1.6

With Django 1.5 and the introduction of custom user models the AUTH_PROFILE_MODULE became deprecated. In my existing Django application I use the User model and I also have a Profile model with a foreign key to the User and store other stuff about…
Jens Lundstrom
  • 702
  • 8
  • 15
24
votes
4 answers

Django Admin: Ordering of ForeignKey and ManyToManyField relations referencing User

I have an application that makes use of Django's UserProfile to extend the built-in Django User model. Looks a bit like: class UserProfile(models.Model): user = models.ForeignKey(User, unique=True) # Local Stuff image_url_s =…
dannyman
  • 621
  • 1
  • 9
  • 27
21
votes
3 answers

How to create a Chrome profile programmatically?

Development, testing, staging environments are controlled via different proxy servers in my setup. I want to script creation of multiple Chrome profiles (sometimes called "user" or "person") and connect to a different proxy server for each of them.…
Alan Tam
  • 2,027
  • 1
  • 20
  • 33
14
votes
2 answers

Android - Get list of users and profile name

We can create several users and profiles on an Android devices, for example, there is a Main User, and I also set a Work Profile with name "Work Profile". Using the following adb command: adb shell pm list users I'm getting this…
ZouBi
  • 283
  • 1
  • 2
  • 6
12
votes
4 answers

Add a Profile Picture in form in HTML and CSS

I am creating a form in which I need a Profile picture of the user and I want that the picture is in a circle or a ectangular form. By default the area of image should be black or a dummy picture. When the user clicks on the area then he/she is…
Nakhhhh
  • 305
  • 1
  • 4
  • 14
10
votes
2 answers

Use R code or Windows user variable ("%userprofile%") in YAML?

In my yaml call I have --- title: "`r paste0('Test. Done ', format(Sys.Date(), '%B-%Y'))`" output: word_document: fig_caption: yes fig_height: 4 fig_width: 7 reference_docx: %userprofile%\Documents\template.docx --- But YAML…
Andreas
  • 6,612
  • 14
  • 59
  • 69
10
votes
2 answers

Set default user profile picture to an image of their initials

More and more I am seeing companies set a user's default profile picture as shown in the screenshot below which is from the Google homepage... How have Google achieved this?
user4258956
9
votes
3 answers

Get first file in directory PHP

I want to get the first file in a directory using PHP. I am trying to make a function where the users on my website can change their profile picture. To show their profile picture on their profile page I want to get the first image in their profile…
Dromnes
  • 302
  • 2
  • 3
  • 12
8
votes
2 answers

Device not configured after sshfs attempt

After using sshfs on my Mac I am no longer able to see my user directory. When I open a terminal window I see the following: Last login: Mon May 22 10:54:30 on ttys003 mkdir: /Users//.bash_sessions: Device not configured -bash:…
runnerpaul
  • 5,942
  • 8
  • 49
  • 118
8
votes
3 answers

ClickOnce uninstall for normal non admin accounts

I have 2 accounts on my Win 10 Pro computer. One with and the other default without admin rights. I can with an non admin account install ClickOnce applications that I have created with Visual Studio 2016. That works. But as soon as I try to…
Peter Vogt
  • 353
  • 1
  • 4
  • 16
8
votes
0 answers

Collapsing layout in a tool bar with Images and text and icons in Android

I was trying a custom activity as like Whatsapp Group Profile page, where I need to place , 1 Image in left and two text in a layout to the right of image and two icons in the right. The collapsing layout which is currently available is with…
1
2 3
47 48