Ladislav Gallay
Ladislav Gallay
What about using some pure PHP coffee compiler so there is no need for any additional installations? I've found https://github.com/alxlit/coffeescript-php. If you were thinking about this or you don't find...
In Rails form is :confirm for link_to deprecated. Replaced by data-confirm.
When trying to parse this PDF _rose_production_split_pages.pdf_ (file was removed), we're getting error: ``` RangeError: index out of range # /Users/laykou/.rvm/gems/ruby-3.1.0/gems/combine_pdf-1.0.22/lib/combine_pdf/parser.rb:364:in `pos=' # /Users/laykou/.rvm/gems/ruby-3.1.0/gems/combine_pdf-1.0.22/lib/combine_pdf/parser.rb:364:in `_parse_' # /Users/laykou/.rvm/gems/ruby-3.1.0/gems/combine_pdf-1.0.22/lib/combine_pdf/parser.rb:79:in `parse' # /Users/laykou/.rvm/gems/ruby-3.1.0/gems/combine_pdf-1.0.22/lib/combine_pdf/pdf_public.rb:98:in...
We have `/health_check` requests which are being used by Docker Swarm to check if the container is healthy. We would like to ignore these requests in performance matrix. Is it...
I'd like to ask if there already is or if you could add documentation about Redis keys and maybe a flow chart? E.g. what is "AVAILABLE", "EXISTS" and "GRABBED" keys...
According to this https://www.atlantbh.com/how_to_detect_colour_brightness_in_ruby/ ​brightness should be calculated as ``` sqre(red^2 * 0.299 + green^2 * 0.587 + blue^2 * 0.114) ``` rather than ``` red * 0.299 + green...
# Bug Report ## Describe the bug Using the custom `data-controller` above `data-reflex` is ignored and reflex is always executed with default `stimulus-reflex` controller. This breaks behavior and callbacks described...
Is it possible to anonymize values in JSONs (simple) structure? Let's say I have JSONB column: ``` data ---- {"first_name":"Michael","phone":"+123456"} ``` and I want to anonymize `data->>'first_name'`. Would that work...
There's a deprecation Warning: **Using / for division outside of calc() is deprecated and will be removed in Dart Sass 2.0.0.** Recommendation: `math.div($min * 100, $middle) or calc($min * 100...
Is there a way to preload multiple attributes at once? Having: ```ruby class Transaction < ApplicationRecord kredis_datetime :locked_at end Transaction.limit(100).each do |transaction| puts transaction.locked_at end ``` triggers 100 `Kredis Proxy...