Skip to content
View mjy9088's full-sized avatar
  • 대한민국
  • 19:14 (UTC +09:00)
Block or Report

Block or report mjy9088

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
mjy9088/README.md

Hi there 👋

Pinned

  1. MTL-C MTL-C Public

    MTL for C

    C

  2. Typescript CriticalSection Typescript CriticalSection
    1
    interface Pending {
    2
      resolve: (value: any) => void;
    3
      reject: (error: any) => void;
    4
      criticalSection: () => Promise<unknown>;
    5
    }
  3. split4sync split4sync Public

    Split large files into multiple parts to prevent synchronization failures due to file size limitations

    Makefile

  4. remove invisible elements from DOM tree remove invisible elements from DOM tree
    1
    var InfiniteScroll = window.InfiniteScroll = (function () {
    2
      var instanceKey = window.Symbol ? Symbol('InfiniteScroll') : '__IE_POLYFILL__SYMBOL__INFINITE_SCROLL';
    3
      function result(options) {
    4
        if (!(this instanceof result)) {
    5
          throw new Error('InfiniteScroll must called with new operator and options object');
  5. developers-algorithm-study/mjy9088 developers-algorithm-study/mjy9088 Public

    Python

  6. Input autocompletion Input autocompletion
    1
    var InputAutocomplete = window.InputAutocomplete = (function () {
    2
      function result(options) {
    3
        if (!(this instanceof result)) throw new Error('InputAutocomplete is a constructor');
    4
        if (!options) throw new Error('InputAutocomplete requires options to be provided');
    5
        this.inputElement = options.inputElement;