Skip to content
View xuab's full-sized avatar
  • Cycle
  • Lille, France
  • 22:10 (UTC +02:00)

Block or report xuab

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. life-shaders life-shaders Public archive

    The Game of Life using shaders

    JavaScript

  2. life-workers life-workers Public archive

    The Game of Life using Web Workers, SharedArrayBuffer, Atomics, and OffscreenCanvas

    JavaScript 1

  3. JavaScript combination generators JavaScript combination generators
    1
    // abc -> [], a, b, c, ab, ac, bc, abc
    2
    function* powerSet (l) {
    3
      for (let i of Array(1 << l.length).keys())
    4
        yield l.filter((_, j) => i & 1 << j)
    5
    }
  4. mini-lisp mini-lisp Public archive

    A mini Lisp interpreter in TypeScript

    TypeScript