Serhii Potapov
Serhii Potapov
External validator freezes resource model ``` ruby class User attr_accessor :name, :age end class UserValidator include Aequitas validates_presence_of :name end user = User.new validator = UserValidator.new(user) puts validator.valid? # =>...
Lets say I have the next model and external validator: ``` ruby class User attr_accessor :name, :age end class UserValidator include Aequitas validates_presence_of :name end user = User.new validator =...
Currently a user (human who has an access to admin panel) can be created only running rake task. It would be good to have an ability to manage users: -...
Hey, I just watched [your talk](https://www.youtube.com/watch?v=f1ln5j3aoSI) and you mentioned there, that you use `BTreeMap` and I thought I can try to contribute to make it a little bit faster. This...
This PR goes on top of https://github.com/mre/hyperjson/pull/43 Changes: * Initialize `entites` with default capacity > 0. This may safe some extra memory allocations. Benchmarks are again slightly contradictional. Please consider...
This is issue is a reminder for myself. Possible options: * Chars frequencies * 2-grams? * The most frequent words (100 or 1000)? * Smart/complex resolve between _LangA_ and _LangB_...
Maybe create an FAQ section for developers?
Make the alphabet score calculation implemented in https://github.com/greyblake/whatlang-rs/pull/108 generic and reuse same implementation for Cyrillic. Ensure there is sufficient unit test coverage first.
https://github.com/pemistahl/lingua-rs Explain in which situations users should prefer one over another.