Skip to content
View elawad's full-sized avatar

Block or report elawad

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.

Maximum 250 characters. Please don't include any personal information such as legal names or email addresses. 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. web-workers-demo web-workers-demo Public

    Web Workers demo in React.

    TypeScript 3

  2. graphql-demo graphql-demo Public

    Demo app using GraphQL and Apollo.

    JavaScript

  3. elawad.github.io elawad.github.io Public

    GitHub Pages.

    JavaScript

  4. Format file size like macOS Format file size like macOS
    1
    function formatSize(size) {
    2
      const base = 1000; // 1000 or 1024
    3
      const kb = base ** 1;
    4
      const mb = base ** 2;
    5
      const gb = base ** 3;