-
The `hashids_t` struct is not thread safe and shouldn't be shared between threads. I don't think we care about that though.
The real issue is error reporting. Currently there's global state for error…
-
Is Ticks too big a number, or is there another problem? Changing the min length doesn't seem to make a difference. Many thanks for looking at this.
Ticks example: 635343802323744811
```
var h = new …
-
`Hashids#internal_decode` uses `String#tr` incorrectly. It is being used to replace all characters in `@seps`/`@guards` with a space, but the first argument to `tr` is in fact a Ruby "character select…
-
[Hashids](http://hashids.org/) is a library to obfuscate ids in short and nice format. It would be great if obfuscate_id could support more encode/decode algorithms like this and even some others.
-
can not use Long.MAX_VALUE
Hashids hashids = new Hashids();
String encode = hashids.encode(Long.MAX_VALUE);
System.out.println(encode);
-
## The dependency [hashids](https://github.com/ivanakimov/hashids.js) was updated from `1.1.4` to `1.2.0`.
🚨 [View failing branch](https://github.com/doughsay/room.js/compare/master...doughsay:green…
-
Hi! I'm conducting some tests with hashids using a specific set of characters and noticed that the configuration is somehow not being respected?
```elixir
config :ecto_hashids,
prefix_separator…
-
## The dependency [hashids](https://github.com/ivanakimov/hashids.js) was updated from `1.1.4` to `1.2.0`.
🚨 [View failing branch](https://github.com/carlsonorozco/adonis-hashids/compare/master...ca…
-
https://sampo.co.uk/blog/masking-ids-in-urls-using-hash-ids-in-laravel
-
I'm seeing that the salt is limited in usable length (contrary to popular assumptions that you should use a "long random string"). For example, here's a session:
```
>>> from hashids import Hashid…