Skip to content
View kimiashz's full-sized avatar
☺️
I'm learning new things ...
☺️
I'm learning new things ...

Block or report kimiashz

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. Simple Tree implementation with Java... Simple Tree implementation with JavaScript
    1
    // Make a node
    2
    function make(name,children){
    3
    	var node = {name};
    4
    	if(Array.isArray(children)) node.children = children;
    5
    	return node;
  2. lazy-loading lazy-loading Public

    Install React, react-router, babel, webpack manually, Configure all of them to work together manually, Test for Using lazy-loading for Post-list.

    JavaScript 1

  3. kimia-notify kimia-notify Public

    Tiny NPM package that ease showing notifications. The first NPM package. I used React, Redux and sass.

    JavaScript 2

  4. use-debounce use-debounce Public

    useDebounce and useThrottle that could easily solve the problem with using debounce and throttle in react.

    JavaScript 2

  5. cancellablePromise cancellablePromise Public

    add the cancel state to native Promise

    JavaScript 1