guid Questions

6

Solved

If I try using the "Create GUID" tool using "Tool" > "Create GUID", I get a box that has six different snippets which contains GUIDs. But it doesn't offer the option of providing only the GUID. I...
Raleighraley asked 30/10, 2019 at 23:2

3

Solved

I am aware of the multitude of questions here as well as Raymond's excellent (as usual) post. However, since the algorithm to create GUIDs was changed apparently, I found it hard to get my hands on...
Kilmer asked 3/5, 2010 at 12:19

9

Solved

How are GUIDs generated in C#?
Reece asked 11/12, 2009 at 14:0

14

Solved

I have an excel file with one order on each row, and I want each order to have a unique identifier, so there will be a Unique ID column. Every time I fill a row, I want Excel to automatically popul...
Ritualism asked 11/8, 2011 at 19:0

2

Solved

I am connecting to a SQL-Server DB using Go 1.6.2. I am using the go-mssqldb driver (github.com/denisenkom/go-mssqldb) with the sql package. My problem is that I am creating uuids with the github....
Algetic asked 2/7, 2016 at 13:56

13

Solved

For my web application (in JavaScript) I want to generate short guids (for different objects - that are actually different types - strings and arrays of strings) I want something like "aX4j9Z" for...
Szymanski asked 6/6, 2011 at 6:52

12

Solved

Here's what I'm using. The token doesn't necessarily have to be heard to guess, it's more like a short url identifier than anything else, and I want to keep it short. I've followed some examples I'...
Silassilastic asked 16/5, 2011 at 17:57

4

Solved

I have this function: function getProduct(id: string){ //return some product } where id is actually GUID. Typescript doesn't have guid type. Is it possible create type GUID manually? functio...
Lumumba asked 10/5, 2016 at 16:57

4

Solved

For GUID type in JSON, do we need double quote like "Id": "9903ED01-A73C-4874-8ABF-D2678E3AE23D" or just like "Id" : 9903ED01-A73C-4874-8ABF-D2678E3AE23D
Clothbound asked 19/11, 2010 at 23:39

6

Solved

Question: is there a better way to do that? VB.Net Function GuidToBase64(ByVal guid As Guid) As String Return Convert.ToBase64String(guid.ToByteArray).Replace("/", "-").Replace("+", "_").Replace...
Purgation asked 23/6, 2009 at 12:51

4

I used this accepted answer to create an Enum of Guids. public enum AccessRoles { [EnumGuid("2ED3164-BB48-499B-86C4-A2B1114BF1")] SysAdmin =1, [EnumGuid("A5690E7-1111-4AFB-B44D-1DF3AD66D435")] ...
Hermann asked 31/10, 2017 at 20:45

6

I want to create a short GUID. Is there any way to create a short unique code like short GUID? I want to create a ticket tracking number.
Hyacinthia asked 14/11, 2011 at 6:56

5

Solved

Is there a way to generate a new GUID from inside the Inno Setup script ?
Alphonsoalphonsus asked 28/8, 2009 at 13:45

6

Solved

Is it possible to declare a constant Guid in C#? I understand that I can declare a static readonly Guid, but is there a syntax that allows me to write const Guid?
Horticulture asked 7/2, 2011 at 21:5

7

Solved

Is this even possible? I don't even think it is, but I saw some code that was trying to do it. However, my unit tests showed that it was not working. I did see some similar thoughts: Converting G...
Monochloride asked 10/10, 2010 at 14:30

5

Solved

What's the difference between Guid.NewGuid() and new Guid()? Which one is preferred?
Sorority asked 13/8, 2012 at 16:10

4

Solved

Is there any way to implement the Guid COMB identity strategy for objects in the new Entity Framework 4.1 using the CodeFirst design? I thought setting the StoreGeneratedPattern would work, but it ...

12

Solved

I've just imported a bunch of data to a MySQL table and I have a column "GUID" that I want to basically fill down all existing rows with new and unique random GUID's. How do I do this in MySQL ? ...
Ie asked 8/6, 2011 at 14:53

6

Solved

I'm integrating/testing with a remote web service and even though it's the "QA" endpoint, it still enforces a unique email address on every call. I can think of DateTime.Now.Ticks (e.g. 6349703723...
Orbicular asked 21/2, 2013 at 18:15

8

Solved

In my iOS Swift app I want to generate random UUID (GUID) strings for use as a table key, and this snippet appears to work: let uuid = CFUUIDCreateString(nil, CFUUIDCreate(nil)) Is this safe? ...
Natoshanatron asked 26/6, 2014 at 10:35

7

How to create GUIDs in Visual Studio 2013? I had an add in that worked well in VS2012 but it does not work in VS2013. I found this Create GUID in VS2012 and this How to convert VS2012 add ins to VS...
Bonilla asked 9/10, 2013 at 21:13

11

Solved

I have a problem that is really easily solved with GUIDs. In particular, for a password reset workflow, I would like to send a GUID token to a user's email and have them reset their password using ...
Fuddyduddy asked 13/7, 2009 at 3:20

4

Solved

I already make twice same bug in code like following: void Foo(Guid appId, Guid accountId, Guid paymentId, Guid whateverId) { ... } Guid appId = ....; Guid accountId = ...; Guid paymentId = ...; ...
Monkeypot asked 12/12, 2018 at 17:50

8

Solved

How do I create a GUID/UUID in Python that is platform independent? I hear there is a method using ActivePython on Windows but it's Windows only because it uses COM. Is there a method using plain P...
Beore asked 10/2, 2009 at 23:51

8

Solved

I'm working on a web service which requires a new GUID() passed as a reference to a method within the service. I am not familiar with C# or the GUID() object, but require something similar for PH...
Kreitman asked 10/2, 2014 at 7:20

© 2022 - 2024 — McMap. All rights reserved.