Skip to main content
3 votes
1 answer
136 views

The UUID specifications, RFC 9562 & RFC 4122, both define a canonical textual representation of 128 bits as groups of hexadecimal digits delimited by HYPHEN-PLUS character, 8-4-4-4-12, like this: ...
Basil Bourque's user avatar
1 vote
1 answer
136 views

I'm having trouble querying UUID values stored as BLOB(16) in SQLite3 using Go (with goqu). I insert a UUID using uuid.New().MarshalBinary() and this works correctly. However, when I try to select the ...
StephenHawking's user avatar
-4 votes
2 answers
166 views

I get this error: "message": "Malformed UTF-8 characters, possibly incorrectly encoded", This is my real id with UUID in the database: 944CC79D-5980-4587-8A52-000A2F11D7D1 ...
Fajar Alam's user avatar
1 vote
1 answer
86 views

During performance test we got some error from Azure Storage saying that com.azure.storage.blob.models.BlobStorageException: Status code 409, "BlobAlreadyExistsThe specified blob already exists. ...
Viktor's user avatar
  • 1,531
4 votes
3 answers
2k views

I'm building a URL shortener app in Node.js (v20.16.0) using Express. In my controller/user.js, I try to import uuid like this: const { v4: uuidv4 } = require('uuid'); But when I run npm start, I get ...
Hamza Fareed's user avatar
0 votes
1 answer
69 views

We want to assign UUIDs to our front end Vue user-interactable elements (inputs, buttons, links, dropdowns, etc) for our automated testing. We want to structure this in a way that allows common ...
dtthom09's user avatar
  • 297
1 vote
2 answers
91 views

Working: #!/usr/bin/python3 import re path = "/a/b/c/e72cc82c-e83a-431c-9f63-c8d80eec9307" if re.match(r"/a/b/c/[a-f0-9]{8}-[a-f0-9]{4}-4[a-f0-9]{3}-[89aAbB][a-f0-9]{3}-[a-f0-9]{12}$&...
Qiang Xu's user avatar
  • 4,921
0 votes
1 answer
44 views

I want to test MarkAsRead function via routing, my route was Route::post('notifications/{id}', [NotificationController::class, 'markAsRead']); and it was in API routing of auth:sanctum api route Route:...
TheBetweener's user avatar
-1 votes
1 answer
93 views

I need to patch the uuid.New() function in my tests but I faced the following problem: the patching works only in debug mode. Here is some example of code which I wrote trying to fix the problem: ...
pizhlo's user avatar
  • 143
0 votes
0 answers
85 views

I have created a user table in Hasura with the following schema: id: UUID generated by gen_random_uuid(). name: String. email: String. I am building a Go application using the go-graphql-client ...
Fa Re's user avatar
  • 11
2 votes
0 answers
144 views

For testing purposes on a table like this: CREATE TABLE my_table ( id UUID DEFAULT gen_random_uuid() PRIMARY KEY, . . ...I would like to get the same id's on each test run to better ...
Kjetil S.'s user avatar
  • 3,869
21 votes
2 answers
3k views

According to the UUID standard RFC 4122, UUIDs should be treated as unsigned int 128 and comparison should be done that way: Rules for Lexical Equivalence: Consider each field of the UUID to be ...
Gabriel Furstenheim's user avatar
0 votes
1 answer
84 views

I'm getting the following error while attempting to create a superuser on Django 5.0.4 Rest API ValueError: badly formed hexadecimal UUID string Here is the stack trace : Here is the stack trace : ...
Ananth's user avatar
  • 489
0 votes
1 answer
100 views

I'm building a library which uses a header named uuid.h. Unfortunately, on some GNU/Linux distributions, this header is located at /usr/include/uuid/uuid.h and on others it's located at /usr/include/...
einpoklum's user avatar
  • 138k
3 votes
1 answer
187 views

I am using MinGW64 which has the necessary headers to use WASAPI. However, following the WASAPI programming guide I added following code: const CLSID CLSID_MMDeviceEnumerator = __uuidof(...
Manatee Pink's user avatar

15 30 50 per page
1
2 3 4 5
222