Skip to content
View IDDT's full-sized avatar
  • Bangkok, Thailand
Block or Report

Block or report IDDT

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. thai-tokenizer thai-tokenizer Public

    Fast and accurate Thai tokenization library.

    Python 5 2

  2. Barrier in Javascript. Barrier in Javascript.
    1
    class Barrier {
    2
      count = 0;
    3
      resolver = () => {};
    4
      awaitable = Promise.resolve();
    5
      acquire() {
  3. Async Lock in Javascript. Async Lock in Javascript.
    1
    class AsyncLock {
    2
      constructor () {
    3
        this.awaitable = Promise.resolve();
    4
      }
    5