Skip to content
View kubarskii's full-sized avatar
☀️
Working from home
☀️
Working from home
  • EPAM Systems
  • Russia, Saint-Petersburg/Turkey, Antalya

Organizations

@Inquir-search
Block or Report

Block or report kubarskii

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 Loading

  1. PSX-emu-JS PSX-emu-JS Public

    JavaScript 1

  2. blockchain-todo blockchain-todo Public

    JavaScript 1

  3. redux architecture implementation ex... redux architecture implementation example
    1
    class Observer {
    2
        #initialValue;
    3
        #subscriptions = [];
    4
    
                  
    5
        constructor(initialValue) {
  4. Trampoline example Trampoline example
    1
    function sum(n, s = 0) {
    2
        return (n) ? () => sum(n - 1, s + n) : s
    3
    }
    4
    
                  
    5
    function trampoline(fn) {