László GÖRÖG
László GÖRÖG
| Bits | Signedness| End year | | --- | --- | --- | | 32 | Signed | 2038 | | 32 | Unsigned | 2106 | | 33...
@bradleypeabody I think the variable subsecond handling in UUIDv7 was added because not all languages can return unix timestamp with nanosecond precision eg. JavaScript, PHP. Changing the position of the...
@edo1 > [...] The target is `P collisions/year`: the annual collision probability when every nanosecond new UUID is generated. [...] Is the spreadsheet correct? The "when every nanosecond new UUID...
> Also added collision probability for 20 years and 100 years (columns `P collisions/20y` and `P collisions/100y`). For time based UUIDs the number of years shouldn't matter. - I generate...
Got it, thanks for the explanation.
Can I suggest a more generic approach for `link-flags`? Something like the following: ``` - name: App is linked to rabbitmq instance dokku_service_link: app: "{{ app_name }}" name: "{{ app_name...
By looking at the linked PR and the code it seems it is doable at the moment by setting `--global` for the app name. It is a dirty hack but...
Thanks. I will try out the command on a droplet today. About the testing part, I just want to know how can I try this in development Ansible role.
When an app is already linked then running the link command again regarding of flags will result in the following message: ``` Already linked as DATABASE_URL ``` However, I couldn't...
For checking an existing link one can use `dokku --quiet :linked `. I was looking for a command which could be used to tell if a flag is set or...