Skip to content
View ikawka's full-sized avatar

Block or report ikawka

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. pluckjson pluckjson Public

    Pick values from a JSON string

    JavaScript

  2. react-microfrontend react-microfrontend Public

    Micro front-end proof of concept

    JavaScript

  3. simple-char-count simple-char-count Public

    JQyuery Plugin - Simple Character Counter

    JavaScript

  4. Human readable filesize Human readable filesize
    1
    <?php 
    2
    function human_filesize($bytes, $decimals = 2) {
    3
        $sz = 'BKMGTP';
    4
        $factor = floor((strlen($bytes) - 1) / 3);
    5
        return sprintf("%.{$decimals}f", $bytes / pow(1024, $factor)) . @$sz[$factor];
  5. Global Store with React Context Global Store with React Context
    1
    /*
    2
      ===== store.js =====
    3
      import createStore from '@store'
    4
      const initialState = { foo: 'bar' }
    5
      export const { Provider, connect } = createStore(initialState)
  6. konva-annotator konva-annotator Public

    Image annotator using Konva

    TypeScript