This document defines two unique identifiers:
- a custom UUID based on RFC 9562;
- a custom Tag URI based on RFC 4151.
SHA-256 UUIDv8
| package com.example; | |
| import java.nio.charset.StandardCharsets; | |
| // https://www.youtube.com/watch?v=siV5pr44FAI | |
| public final class NonCryptoHash { | |
| // http://www.mrob.com/pub/comp/crc-all.html (crc32-adler) | |
| private static final int[] crc32tab = { // | |
| 0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, // |
| diff --git a/src/main/java/io/hypersistence/tsid/TSID.java b/src/main/java/io/hypersistence/tsid/TSID.java | |
| index 1ca20ca..665f081 100644 | |
| --- a/src/main/java/io/hypersistence/tsid/TSID.java | |
| +++ b/src/main/java/io/hypersistence/tsid/TSID.java | |
| @@ -36,6 +36,7 @@ import java.util.concurrent.atomic.AtomicInteger; | |
| import java.util.concurrent.locks.ReentrantLock; | |
| import java.util.function.IntFunction; | |
| import java.util.function.IntSupplier; | |
| +import java.util.function.Supplier; | |
O DELAS_PBv2 é um dicionário de Palavras Simples para o Português Brasileiro. Possui aproximadamente 67.500 canônicas associadas a suas regras de flexão. Foi atualizado em 07/05/2015.
URL: http://www.nilc.icmc.usp.br/nilc/projects/unitex-pb/web/dicionarios.html
O projeto Unitex-PB: a construção de recursos lingüístico-computacionais para o português do Brasil.
| a | |
| à | |
| AAC | |
| Aachen | |
| Aalborg | |
| Aarhus | |
| aba | |
| abas | |
| abacate | |
| abacates |
| Aarão | |
| Abade | |
| Abadia | |
| Abadiânia | |
| Abaetetuba | |
| Abaeté | |
| Abaiara | |
| Abaixo | |
| Abaré | |
| Abatiá |
These scripts in this file can be used to find dead rules in espeak-ng's pt_rules, the rules file for Portuguese language.
First you need lists of words:
| #!/bin/bash | |
| # | |
| # A scritp that says a list of words, until you answer good or not for each one of them. | |
| # | |
| # The answers are logged into a file called `espeak-ng-say-list.log`. | |
| # | |
| # Usage: | |
| # | |
| # espeak-ng-say-list.sh LIST [VOICE] |
This document describes a simple plain text ledger based on ledger-cli and cookie-jar format.
The goal of this document is to describe a bookkeeping format that is simple enough to be parsed with regular Unix tools such as Awk.
Cookie-jar format:
| #!/bin/bash | |
| # | |
| # Exports a virtual machine from VirtManager to a given directory. | |
| # | |
| # Usage: | |
| # | |
| # # how to export a virtual machine | |
| # ./virt-manager-export.sh EXPORT_DIRECTORY VIRTUAL_MACHINE_NAME | |
| # |