Skip to content
View ChildrenofkoRn's full-sized avatar
💠
💠
Block or Report

Block or report ChildrenofkoRn

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned

  1. tradescantia tradescantia Public

    Tradescantia - portfolio project on Rails

    Ruby

  2. GisMeteoService GisMeteoService Public

    rack service for weather

    Ruby

  3. SQLZoo.net solutions 2023.04.22 SQLZoo.net solutions 2023.04.22
    1
    -- Select SQL Engine: MySQL
    2
    -- 
    3
    -- 
    4
    -- ==================================================================
    5
    -- SELECT basics
  4. decolmor decolmor Public

    Gem for converting color spaces from/to: HEX/RGB/HSL/HSV/HSB/CMYK

    Ruby

  5. nonlinear sequence generator between... nonlinear sequence generator between numbers on Ruby
    1
    ```ruby
    2
    def get_sequence_nonlinear(count, start = 0, stop = 1, curvature: 1)
    3
      step = 1 / (count - 1).to_f
    4
      linear_steps = 0.step(by: step, to: 1)
    5
      sequence = if curvature.positive?
  6. slow Numo::NArray#diff (differences ... slow Numo::NArray#diff (differences between array elements on Ruby)
    1
    ```ruby
    2
    require "benchmark/ips"
    3
    require 'numo/narray'
    4
    
                  
    5
    Benchmark.ips do |x|