Roman Tataurov
Roman Tataurov
According information in `hanami-model` README ``` Hanami::Model supports Ruby (MRI) 2.6+ ``` But rubocop still relied on TargetRubyVersion 2.3. Moreover seems it caused CI broken. So this patch should fix...
Accidentally found here suspicious code https://github.com/DivanteLtd/vue-storefront-api/blob/7d60cfc22083653fc48ed176aec8e2e848cbf4b4/src/platform/magento2/stock.js#L4 Seems base class should be ``AbstractStockProxy``, but not an ``AbstractUserProxy``
Found Solidus using outdated fork of Sortable.js This is component used as Sortable now https://github.com/components/RubaXa-Sortable The only reason of existing of RubaXa-Sortable fork is composer support what is really a...
Suspect here line should be ended with comma instead of ``;`` https://github.com/dalpo/rails_admin_nestable/blob/master/app/assets/javascripts/rails_admin/jquery.nestable.js#L31
With `BINANCE_TEST_NET_ENABLE=true` On this test code ```ruby require 'rubygems' require 'bundler/setup' require 'binance-ruby' Binance::Api.all_coins_info! ``` My Gemfile ```ruby source 'https://rubygems.org' gem 'binance-ruby' ``` I am getting the following errors: ```...
Got this issue `/home/rof/cache/bundler/ruby/2.6.0/gems/configurable_engine-0.5.0/app/models/configurable.rb:84: warning: BigDecimal.new is deprecated; use BigDecimal() method instead.`
Tested ``find_primitime_root`` function over known values from here https://en.wikipedia.org/wiki/Primitive_root_modulo_n#Elementary_example So something goes wrong. Pretty often your function generate wrong value. Prepared tests to check it. To reproduce need to run...
Got an error when tried to parse date in a russian format with month name specified in russian So prepared a test to format datetime using "%B" flag which mean...
We have the following code: https://github.com/PurpleI2P/i2pd/blob/6439e227f67d88cb9bc6ac95c04b397faa148727/libi2pd/SSU2Session.cpp#L1151-L1152 Here is a CreatePaddingBlock function implementation: https://github.com/PurpleI2P/i2pd/blob/6439e227f67d88cb9bc6ac95c04b397faa148727/libi2pd/SSU2Session.cpp#L2640-L2650 So we have the flowing params which are rally a constants: ```c size_t SSU2Session::CreatePaddingBlock (uint8_t * buf,...
I am building branch khadas-linux-6.1.y with fenix tool using docker and got errors related to preprocessing floating expressions. Related issue https://bugs.launchpad.net/gcc-arm-embedded/+bug/1969997 To reproduce issue we can use the following code...