Hannes Nevalainen
Hannes Nevalainen
I'll try to find some time for this during the holidays. I'm not sure how to do things conditionally based on available dependencies, but that will be a little exercise...
Not with global state like that. ``` ruby exp = Time.now.to_i + 4 * 3600 exp_payload = { :data => 'data', :exp => exp } token = JWT.encode(exp_payload, hmac_secret, 'HS256')...
I'm willing to invest some time into this endeavor. I think the verification API needs an overhaul too and it would be a good to look into that if we...
The workaround you provided works as intended.
I will probably need this is one of my projects and will probably take a stab at implementing it.
Screenshot is from a 34" display, 3440x1440. It looks a bit better on the laptop display though:
I saw that too with `next-ls` but it fixed itself somehow, maybe I restarted zed or something like that. 🤷🏻
Same problem in with a Swedish (nordic) keyboard.
Here is some code for validating and calculating the checksum of Swedish personal numbers using Luhns algorithm. There are 2 versions available, one recursive and one based on Enum. ```elixir...
just realized maybe usage of `catch` and `throw` would fit here, same semantics as exceptions but it is not exceptions ;)