Questions tagged [uid]

uid refers to a string used for record keeping which is not guaranteed to be unique, but should be in the large majority of use cases.

uid stands for one of the following:

  • user identifier
  • unique identifier

References

368 questions
0
votes
1 answer

How can the maildir format accomodate flags/UIDs on recent messages?

I am using the maildir (maildir++, actually) email backend format for storing messages on a custom IMAP server. I have a good understanding of the relevant email protocols and maildir format, but this is one question I've had for a while that's been…
InterLinked
  • 1,247
  • 2
  • 18
  • 50
0
votes
0 answers

Convert 10-digit RFID tag value to UID

I have purchased 5YOA RFID card reader but I have trouble understanding the reading values. The reader is showing the value 0014344302 (I assume this is 10-digits representation), while the UID value is 6E:E0:DA:DF. Is there any connection between…
patak
  • 33
  • 6
0
votes
0 answers

Is there a way to get the UID generated by the NFC controller of my Android phone when a RFID reader is brought near the phone?

I am trying to build a RFID tag emulator on android using Flutter framework. The RFID reader that I am working with uses the UID for identification. It then sends this UID back to a server and authenticates whether it is a valid RFID or not. I know…
0
votes
1 answer

How to easily modify the UID of a Mifare Classic Card?

I want to modify the UID of a Mifare Classic Mini 13.56MhZ card, in order to duplicate the one I use to access my dormroom. I believe the security of the door is only based on the UID. I made a lot of research on the web but couldn't find a precise…
mog
  • 1
0
votes
0 answers

How to get next greater existent message uid from remote mail server by using PHP IMAP functions?

In the beginning, suppose that there are 3 messages on the remote mail server. Uid 1, 2, 3 We download them by using PHP IMAP functions (namely POP3 connection). Mail server provides us with next uid, i.e. uid 4. And we save it. Several days later,…
Bayram
  • 1
0
votes
0 answers

Creating calendar appointments (ics) - GUID or database primary key as UID

I am working on an application in which you can sign up for workshops, among other things. When you do that, you receive an invitation by mail in the form of an ICS file. I want that when you sign out again or the workshop is canceled, you get…
SideSky
  • 313
  • 3
  • 15
0
votes
0 answers

Writing to Firebase Database from Sign Up Screen Error on Flutter

I'm creating an app in Flutter using both the Firebase Authentication plugin as well as the RT Database plugin. The concept is that the user inputs some simple data such as their name, email, phone and password and signs up for an account. The…
0
votes
1 answer

How to find a user Instagram uid and uidb36?

Now I am testing Instagram. How to find any user Instagram uid or uidb36? I am try to reset my password via Email address, Instagram server send me two link one short link and another is very long link. example: short…
0
votes
1 answer

Google differentiates between www.domain.com and domain.com with Omniauth/OpenID

I have Facebook, Aol, Yahoo and My OpenID working correctly with Omniauth using either www.my-domain.com and my-domain.com for the same account. Sadly, Google treats these separately and if after registering with www.my-domain.com and then trying to…
ants
  • 1,097
  • 1
  • 7
  • 13
0
votes
1 answer

A special function for uids

I have an unique identifier (uid) x, and given an integer j, I need a function f such that f(x, j) is another uid (in the same "domain" as x) such that f(x, j1) = f(x, j2) if and only if j1 = j2 and f(x, j) != x for any j. A naive way to do this is…
0
votes
1 answer

How to create a file or template owned by a user that does not exist on the host with ansible?

I'm experimenting with podman rootless. Users in containers get assigned a subuid / subgid space from the host. Files created or updated from a user in the container environment belong to the user id space, that doesn't exist on the host. That's…
tdoe
  • 11
  • 1
  • 2
0
votes
1 answer

Proxmox LXC container can't write to mount, how do I properly map the UID and GID?

Hello everyone, I'm biting my teeth out since days to properly map a user ID from my PVE host into my LXC. My situation: I'm running Proxmox Virtual Environment 7.2-11. I do want to run my Nextcloud instance inside an unprivileged LXC and I do have…
Kontr0x
  • 1
  • 5
0
votes
0 answers

Flutter NFC iOS Mifare UID reading

Guys, I need your help, please. What do I need: to get the tag's UID using iOS app What do I have: I have an app Flutter, which works fine on Android (I can read the tag's UID) and do nothing on iOS Details: I have this type of cards (plastic…
Himu
  • 1
  • 2
0
votes
0 answers

AttributeError: 'AnonymousUser' object has no attribute 'is_email_verified'

I have django app with registration system in it and it doesn't work as expected. I recently added email verification in my view and because of that I get error. For email verification I have 2 functions. One function sends email, the other verifies…
0
votes
0 answers

Get UID tag in WebUSB in node - Reader ACR122u

I am building a node application, which should read information from an NFC reader connected through USB. I´m able to power up the device, I can read ATR, but unable to read UID of a card, when the card is connected. I´m starting with node-usb and…